/* ===============================
   GLOBAL RESET
=============================== */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}

body{
  color:#333;
  line-height:1.6;
}

/* ===============================
   HEADER
=============================== */

header{
  background:white;
  border-bottom:1px solid #eee;
}

.nav-grid{
  max-width:1200px;
  margin:auto;
  padding:8px 40px 12px 40px;
  display:grid;
  grid-template-columns:260px 1fr;
  align-items:start;
  column-gap:20px;
}

.logo-wrap{
  display:flex;
  align-items:flex-start;
}

.logo{
  height:95px;
  display:block;
}

.right-wrap{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
}

.phone{
  background:#ec252f;
  color:white;
  padding:12px 26px;
  text-decoration:none;
  font-weight:bold;
  border-radius:999px 0 0 999px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  line-height:1;
  margin-top:4px;
  margin-bottom:18px;
}

.phone img{
  width:14px;
  height:14px;
  filter:brightness(0) invert(1);
}

.hidden-number{
  display:none !important;
}

.menu{
  display:flex;
  list-style:none;
  gap:34px;
  font-size:14px;
  font-weight:400;
  font-family:"Century Gothic", Arial, sans-serif;
  align-items:center;
  justify-content:flex-end;
}

.menu a{
  text-decoration:none;
  color:#000;
  font-weight:400;
}

.menu a:hover{
  color:#ec252f;
}

.menu a.active{
  color:#ec252f;
  font-weight:600;
}

/* ===============================
   HERO
=============================== */

.hero{
  height:520px;
  background-size:cover;
  background-position:center;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:white;
}

.hero h1{
  font-size:70px;
  margin-bottom:10px;
  font-weight:720;
}

.hero p{
  font-size:30px;
  margin-bottom:20px;
  font-weight:600;
}

/* ===============================
   BANNER
=============================== */

.banner{
  background:#ec252f;
  color:white;
  text-align:center;
  padding:18px;
  font-size:20px;
  font-weight:700;
  letter-spacing:1px;
  font-family:"Montserrat", Arial, sans-serif;
}

.banner,
.banner h2{
  font-family:"Montserrat", Arial, sans-serif;
}

/* ===============================
   ABOUT
=============================== */

.about{
  max-width:900px;
  margin:60px auto;
  text-align:center;
  padding:0 20px;
  color:#555;
}

/* ===============================
   BUTTON
=============================== */

.btn-black{
  display:inline-block;
  background:#000;
  color:#fff;
  padding:12px 25px;
  text-decoration:none;
  font-weight:bold;
  border-radius:8px;
  border:none;
  cursor:pointer;
  margin-top:35px;
}

.btn-black:hover{
  background:#222;
  color:#fff;
  text-decoration:none;
}

/* ===============================
   SERVICES
=============================== */

.services{
  padding:60px 20px;
  text-align:center;
}

.services h2{
  font-size:32px;
  margin-bottom:50px;
  letter-spacing:1px;
  position:relative;
  display:inline-block;
}

.services h2::after{
  content:"";
  display:block;
  width:100px;
  height:4px;
  background:#ec252f;
  margin:3px auto 0;
}

.service-row-alt{
  max-width:1100px;
  margin:0 auto 60px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:start;
  text-align:left;
}

.service-row-alt.reverse{
  grid-template-columns:1fr 1fr;
}

.service-visual img{
  width:100%;
  max-width:520px;
  height:280px;
  object-fit:cover;
  display:block;
  margin-bottom:18px;
}

.service-visual h3{
  font-size:32px;
  margin-bottom:2px;
  color:#ec252f;
  font-weight:700;
}

.service-visual p{
  font-size:18px;
  color:#000;
  margin:0;
}

.service-copy{
  display:flex;
  align-items:center;
  margin-top:35px;
}

.service-copy p{
  font-size:18px;
  line-height:1.8;
  color:#555;
  margin:0;
  max-width:520px;
  text-align:left;
}

.services .btn-black{
  margin-top:10px;
}

/* ===============================
   CONTACT SECTION
=============================== */

.contact-page{
  max-width:1100px;
  margin:60px auto;
  padding:0 20px;
}

.contact-page h2{
  text-align:center;
  font-size:32px;
  margin-bottom:50px;
  letter-spacing:1px;
  position:relative;
  display:block;
}

.contact-page h2::after{
  content:"";
  display:block;
  width:100px;
  height:4px;
  background:#ec252f;
  margin:8px auto 0;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:start;
}

.contact-info p{
  margin-bottom:18px;
  line-height:1.7;
  color:#555;
}

.contact-info a{
  color:#ec252f;
  font-weight:bold;
  text-decoration:none;
}

.contact-info a:hover{
  text-decoration:underline;
}

.contact-form{
  background:#fff;
  padding:35px;
  border-radius:10px;
  box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:12px;
  margin-bottom:15px;
  border:1px solid #ddd;
  border-radius:6px;
  font-size:14px;
  font-family:Arial, Helvetica, sans-serif;
}

.contact-form textarea{
  height:120px;
  resize:vertical;
}

.contact-form select{
width:100%;
padding:12px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
font-family:Arial, Helvetica, sans-serif;
background:white;
color:#777;
}

.contact-form select:valid{
color:#333;
}

.contact-form button{
  cursor:pointer;
}

.btn-call{
  display:inline-block;
  background:#ec252f;
  color:white;
  padding:10px 20px;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
  font-size:14px;
}

.btn-call:hover{
  background:#c91f27;
}

.btn-call{
  display:inline-block;
  background:#ec252f;
  color:white !important;
  padding:10px 20px;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
  font-size:14px;
}

.btn-call:hover{
  background:#c91f27;
  color:white !important;
}

/* ===============================
   CONTACT STRIP
=============================== */

.contact-strip{
  background:#ec252f;
  color:white;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:80px;
  padding:35px 20px;
}

.contact-strip div{
  font-size:16px;
}

.contact-box{
  display:flex;
  align-items:center;
  gap:15px;
  position:relative;
}

.contact-box a{
  color:white;
  text-decoration:none;
}

.contact-box a:hover{
  text-decoration:underline;
}

.contact-box img{
  width:40px;
  height:auto;
  filter:brightness(0) invert(1);
}

.contact-box:not(:last-child)::after{
  content:"";
  position:absolute;
  right:-40px;
  top:50%;
  transform:translateY(-50%);
  width:1px;
  height:60px;
  background:rgba(255,255,255,0.6);
}

.contact-box h3{
  font-size:20px;
  margin-bottom:4px;
}

.contact-box p{
  font-size:14px;
}

/* ===============================
   BRANDS
=============================== */

.brands{
  display:flex;
  justify-content:center;
  align-items:center;
  padding:40px 20px;
  background:white;
}

.brands img{
  width:100%;
  max-width:1100px;
  height:auto;
}

/* ===============================
   FOOTER
=============================== */

.site-footer{
  background:#838383;
  color:white;
}

.footer-top{
  max-width:1200px;
  margin:auto;
  padding:50px 40px 40px;
  display:grid;
  grid-template-columns:1fr 1fr 1fr 1fr;
  gap:40px;
  align-items:start;
}

.footer-links{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.footer-links a{
  color:white;
  text-decoration:none;
  font-size:16px;
}

.footer-links a:hover{
  text-decoration:underline;
}

.footer-links a::before{
  content:"› ";
  margin-right:4px;
}

.footer-social h3{
  font-size:18px;
  margin-bottom:18px;
  font-weight:700;
}

.social-icons{
  display:flex;
  gap:14px;
  align-items:center;
}

.social-icons img{
  width:28px;
  height:28px;
}

.footer-logo{
  text-align:center;
}

.footer-logo img{
  max-width:220px;
  height:auto;
}

.footer-copy p{
  font-size:16px;
  line-height:1.8;
}

.footer-credit{
  margin-top:8px !important;
  font-size:14px !important;
  opacity:0.9;
}

/* ===============================
   RESPONSIVE
=============================== */

@media (max-width: 1024px){

  .menu{
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
  }

  .contact-strip{
    gap:50px;
  }

  .brands img{
    height:50px;
  }
}

@media (max-width: 900px){

  .service-row-alt,
  .service-row-alt.reverse{
    grid-template-columns:1fr;
    gap:35px;
  }

  .service-copy{
    margin-top:0;
  }

  .contact-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .contact-form{
    padding:25px;
  }
}

@media (max-width: 768px){

  header{
    padding:15px 20px;
    position:sticky;
    top:0;
    z-index:1000;
    background:white;
    box-shadow:0 2px 8px rgba(0,0,0,0.08);
  }

  .nav-grid{
    grid-template-columns:1fr auto;
    padding:10px 14px;
    align-items:center;
    column-gap:12px;
    row-gap:8px;
  }

  .logo-wrap{
    display:flex;
    justify-content:flex-start;
    align-items:center;
  }

  .logo{
    height:44px;
  }

  .right-wrap{
    display:contents;
  }

  .phone{
    justify-self:end;
    padding:8px 12px;
    font-size:12px;
    margin:0;
    line-height:1;
  }

  .menu{
    grid-column:1 / -1;
    display:flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:10px 14px;
    margin:4px 0 0 0;
    padding:0;
    font-size:12px;
  }

  .menu li{
    list-style:none;
  }

  .hero{
    height:420px;
    padding:20px;
  }

  .hero h1{
    font-size:34px;
    line-height:1.2;
  }

  .hero p{
    font-size:18px;
  }

  .banner{
    font-size:16px;
    padding:14px 12px;
  }

  .about{
    margin:40px auto;
    padding:0 18px;
    font-size:15px;
  }

  .services{
    padding:45px 18px;
  }

  .services h2,
  .contact-page h2{
    font-size:28px;
    margin-bottom:30px;
  }

.service-visual{
  width:100%;
}

.service-visual img{
  width:100%;
  max-width:none;
  height:220px;
  object-fit:cover;
  display:block;
}

  .service-visual h3{
    font-size:24px;
  }

  .service-visual p,
  .service-copy p{
    font-size:16px;
  }

  .btn-black{
    margin-top:30px;
    padding:12px 22px;
    font-size:14px;
  }

  .contact-strip{
    flex-direction:column;
    gap:20px;
    padding:30px 20px;
  }

  .contact-strip div{
    font-size:15px;
  }

  .brands{
    padding:30px 20px;
  }

  .brands img{
    height:42px;
  }

  .footer-top{
    grid-template-columns:1fr;
    text-align:center;
    padding:40px 20px 30px;
  }

  .footer-links{
    align-items:center;
  }

  .social-icons{
    justify-content:center;
  }

  .footer-copy{
    max-width:500px;
    margin:auto;
  }

  .footer-logo img{
    max-width:180px;
  }
  
  .service-row-alt,
.service-row-alt.reverse{
  display:flex;
  flex-direction:column;
  gap:20px;
  margin-bottom:40px;
}

.service-row-alt .service-visual,
.service-row-alt.reverse .service-visual{
  order:1;
}

.service-row-alt .service-copy,
.service-row-alt.reverse .service-copy{
  order:2;
  margin-top:0;
}

.service-visual h3{
  font-size:22px;
  margin-bottom:4px;
}

.service-visual p{
  font-size:15px;
  margin:0;
}

.service-copy p{
  font-size:16px;
  line-height:1.7;
  max-width:none;
  text-align:left;
}

.contact-box:not(:last-child)::after{
  display:none;
}

.contact-box:not(:last-child){
  border-bottom:1px solid rgba(255,255,255,0.5);
  padding-bottom:20px;
  margin-bottom:20px;
}
}

