:root{
  --charcoal:#273342;
  --charcoal-dark:#1b2430;
  --orange:#f7a114;
  --white:#ffffff;
  --charcoal-92:rgba(39,51,66,.92);
  --charcoal-84:rgba(39,51,66,.84);
  --charcoal-18:rgba(39,51,66,.18);
  --charcoal-10:rgba(39,51,66,.10);
  --charcoal-07:rgba(39,51,66,.07);
  --orange-18:rgba(247,161,20,.18);
  --orange-10:rgba(247,161,20,.10);
  --orange-08:rgba(247,161,20,.08);
  --shadow:0 18px 44px rgba(39,51,66,.16);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--white);
  color:var(--charcoal);
  font-family:Poppins,Arial,sans-serif;
  font-size:18px;
  line-height:1.7;
}

a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
iframe{display:block;width:100%}
.container{width:min(1160px,calc(100% - 48px));margin:auto}

.skip-link{
  position:fixed;
  top:-80px;
  left:20px;
  z-index:100;
  background:var(--white);
  color:var(--charcoal);
  padding:10px 16px;
  font-weight:700;
}

.skip-link:focus{top:20px}

.topbar{
  background:var(--charcoal-dark);
  color:var(--white);
}

.topbar-inner{
  min-height:56px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  align-items:center;
}

.topbar-item{
  display:grid;
  gap:2px;
  font-size:13px;
}

.topbar-item strong{
  color:var(--orange);
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.site-header{
  position:sticky;
  top:0;
  z-index:30;
  background:var(--white);
  box-shadow:0 2px 16px var(--charcoal-10);
}

.nav{
  min-height:94px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand img{
  width:212px;
  height:78px;
  object-fit:contain;
  object-position:left center;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  font-size:15px;
  font-weight:700;
}

.nav-links a{
  position:relative;
  padding:8px 0;
}

.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:2px;
  height:2px;
  background:var(--orange);
  transform:scaleX(0);
  transform-origin:right;
  transition:transform .25s ease;
}

.nav-links a:hover::after{
  transform:scaleX(1);
  transform-origin:left;
}

.button{
  display:inline-flex;
  min-height:54px;
  align-items:center;
  justify-content:center;
  padding:13px 24px;
  border:1px solid var(--orange);
  background:var(--orange);
  color:var(--white);
  font-size:14px;
  font-weight:700;
  letter-spacing:.03em;
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease,color .25s ease;
}

.button:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 28px var(--orange-18);
}

.button-small{
  min-height:44px;
  padding:10px 18px;
}

.button-light{
  background:var(--white);
  color:var(--charcoal);
  border-color:var(--white);
}

.text-link{
  display:inline-flex;
  align-items:center;
  color:var(--white);
  font-size:15px;
  font-weight:700;
}

.hero{
  position:relative;
  overflow:hidden;
  color:var(--white);
  isolation:isolate;
}

.hero-backdrop{
  position:absolute;
  inset:0;
  z-index:-3;
  background:url("Images/garage-door-3.webp") center/cover no-repeat;
  transform:scale(1.05);
  animation:slow-pan 16s ease-in-out infinite alternate;
}

.hero-overlay{
  position:absolute;
  inset:0;
  z-index:-2;
  background:
    linear-gradient(90deg,var(--charcoal-92) 0%,var(--charcoal-84) 48%,rgba(39,51,66,.48) 76%,rgba(39,51,66,.22) 100%),
    radial-gradient(circle at 80% 20%,rgba(247,161,20,.34),transparent 28%);
}

.hero-layout{
  min-height:730px;
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(320px,.74fr);
  gap:36px;
  align-items:center;
  padding:92px 0 116px;
}

.hero-label,
.section-label{
  display:inline-block;
  margin:0 0 16px;
  color:var(--orange);
  font-size:12px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.hero h1{
  max-width:700px;
  margin:0 0 20px;
  font-size:clamp(46px,5vw,78px);
  line-height:1.05;
  letter-spacing:-.05em;
}

.hero p{
  max-width:620px;
  margin:0 0 30px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
}

.hero-card{
  padding:34px 30px;
  background:var(--white);
  color:var(--charcoal);
  box-shadow:var(--shadow);
}

.card-label{
  display:inline-block;
  margin-bottom:14px;
  color:var(--orange);
  font-size:12px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.hero-card h2,
.about-copy h2,
.section-heading h2,
.why-copy h2,
.faq-copy h2,
.cta-layout h2,
.contact-card h2{
  margin:0 0 16px;
  font-size:clamp(34px,3.4vw,56px);
  line-height:1.14;
  letter-spacing:-.04em;
}

.hero-list{
  margin:0 0 26px;
  padding:0;
  list-style:none;
}

.hero-list li{
  position:relative;
  padding-left:24px;
}

.hero-list li + li{margin-top:12px}

.hero-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:11px;
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--orange);
}

.section{padding:104px 0}

.feature-grid,
.stats-grid,
.service-grid,
.testimonial-grid,
.footer-grid{
  display:grid;
  gap:24px;
}

.feature-grid{grid-template-columns:repeat(3,1fr)}
.stats-grid{grid-template-columns:repeat(4,1fr)}
.service-grid{grid-template-columns:repeat(4,1fr)}
.testimonial-grid{grid-template-columns:repeat(3,1fr)}
.footer-grid{grid-template-columns:1.2fr .8fr .8fr}

.feature-card,
.stat-card,
.service-card,
.testimonial-card,
.contact-card,
.cta-card{
  box-shadow:0 12px 28px var(--charcoal-07);
}

.feature-card{
  padding:30px 28px;
  border-top:4px solid var(--orange);
  background:var(--white);
}

.feature-card h2,
.service-body h3,
.footer-grid h3,
.cta-card h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.3;
}

.feature-card p,
.service-body p,
.testimonial-card p,
.contact-list,
.footer-brand-block p{margin:0}

.about-layout,
.why-layout,
.faq-layout,
.contact-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:54px;
  align-items:center;
}

.about-media,
.why-media{
  position:relative;
}

.about-media img,
.why-media img{
  width:100%;
  min-height:460px;
  object-fit:cover;
  box-shadow:var(--shadow);
}

.about-badge{
  position:absolute;
  right:18px;
  bottom:18px;
  padding:20px 22px;
  background:var(--charcoal);
  color:var(--white);
}

.about-badge strong{
  display:block;
  color:var(--orange);
  font-size:34px;
  line-height:1;
}

.about-points{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin-top:28px;
}

.about-points div{
  padding:22px;
  border-top:4px solid var(--orange);
  box-shadow:0 10px 24px var(--charcoal-07);
}

.about-points strong{
  display:block;
  margin-bottom:6px;
  font-size:24px;
}

.stats-band{
  padding:0 0 104px;
}

.stat-card{
  padding:28px 24px;
  background:var(--charcoal);
  color:var(--white);
}

.stat-card strong{
  display:block;
  margin-bottom:8px;
  color:var(--orange);
  font-size:28px;
}

.services{
  background:linear-gradient(180deg,var(--orange-08),var(--white));
}

.section-heading{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:40px;
  margin-bottom:40px;
}

.section-heading.center{
  display:block;
  max-width:760px;
  margin:0 auto 40px;
  text-align:center;
}

.section-heading.center p:last-child{
  margin:0 auto;
  max-width:620px;
}

.section-heading > p{
  max-width:420px;
  margin:0;
}

.service-card{
  overflow:hidden;
  background:var(--white);
}

.service-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.service-body{
  padding:24px;
  border-top:4px solid var(--orange);
}

.why-us{
  background:var(--white);
}

.check-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px 22px;
  margin:28px 0 0;
  padding:0;
  list-style:none;
}

.check-list li{
  position:relative;
  padding-left:24px;
}

.check-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:11px;
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--orange);
}

.testimonials{
  background:var(--charcoal);
  color:var(--white);
}

.testimonials .section-label{color:var(--orange)}

.testimonial-card{
  padding:30px 28px;
  background:var(--white);
  color:var(--charcoal);
}

.testimonial-card strong{color:var(--orange)}

.faq-side{
  display:flex;
  justify-content:center;
}

.faq-copy details{
  margin-top:16px;
  padding:20px 22px;
  border:1px solid var(--charcoal-10);
  box-shadow:0 10px 24px var(--charcoal-07);
}

.faq-copy summary{
  cursor:pointer;
  font-weight:700;
}

.faq-copy details p{
  margin:12px 0 0;
}

.cta-card{
  width:min(380px,100%);
  padding:34px 30px;
  background:var(--charcoal);
  color:var(--white);
}

.cta-band{
  padding:78px 0;
  background:var(--orange);
  color:var(--white);
}

.cta-layout{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.light-label{color:var(--white)}

.contact-card{
  padding:38px;
  background:var(--charcoal-dark);
  color:var(--white);
}

.contact-list{
  margin:0 0 28px;
  padding:0;
  list-style:none;
}

.contact-list li + li{margin-top:12px}

.map iframe{
  min-height:460px;
  border:10px solid var(--white);
  box-shadow:var(--shadow);
}

.site-footer{
  background:var(--charcoal);
  color:var(--white);
}

.footer-grid{
  padding:70px 0 34px;
}

.footer-brand-block img{
  width:182px;
  height:70px;
  object-fit:contain;
  object-position:left center;
  margin-bottom:18px;
}

.footer-links{
  margin:0;
  padding:0;
  list-style:none;
}

.footer-links li + li{margin-top:11px}

.footer-bottom{
  border-top:1px solid var(--orange-18);
  padding:20px 0 28px;
}

.footer-bottom p{
  margin:0;
  text-align:center;
  font-size:13px;
}

.mobile-call{display:none}

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s ease,transform .7s ease;
}

.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

@keyframes slow-pan{
  from{transform:scale(1.05)}
  to{transform:scale(1.1)}
}

@media(max-width:1024px){
  .topbar-inner,
  .hero-layout,
  .about-layout,
  .why-layout,
  .faq-layout,
  .contact-layout,
  .footer-grid{
    grid-template-columns:1fr;
  }
  .feature-grid,
  .stats-grid,
  .service-grid,
  .testimonial-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .section-heading{
    display:block;
  }
  .section-heading > p{
    max-width:none;
    margin-top:14px;
  }
  .cta-layout{
    display:block;
  }
  .cta-layout .button{
    margin-top:22px;
  }
}

@media(max-width:680px){
  .container{width:min(100% - 30px,1160px)}
  .nav-links{display:none}
  .nav{
    min-height:82px;
    gap:12px;
  }
  .brand img{
    width:178px;
    height:64px;
  }
  .hero-layout{
    min-height:auto;
    padding:74px 0 92px;
  }
  .hero h1{font-size:46px}
  .hero-actions{
    flex-direction:column;
    align-items:flex-start;
  }
  .section{padding:78px 0}
  .feature-grid,
  .about-points,
  .stats-grid,
  .service-grid,
  .check-list,
  .testimonial-grid{
    grid-template-columns:1fr;
  }
  .about-media img,
  .why-media img,
  .map iframe{
    min-height:340px;
  }
  .contact-card{
    padding:30px 24px;
  }
  .mobile-call{
    position:fixed;
    right:16px;
    bottom:16px;
    z-index:35;
    width:58px;
    height:58px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:var(--orange);
    color:var(--white);
    box-shadow:0 10px 24px var(--orange-18);
  }
  .mobile-call svg{
    width:24px;
    height:24px;
    fill:none;
    stroke:currentColor;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
  }
}

@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    transition-duration:.01ms!important;
  }
  .reveal{
    opacity:1;
    transform:none;
  }
}
