:root{
  --ink:#101010;
  --charcoal:#1A1D22;
  --charcoal-2:#232730;
  --charcoal-3:#2C313A;
  --steel:#8B9199;
  --steel-light:#B8BCC2;
  --offwhite:#F3F2EF;
  --paper:#FAF9F7;
  --red:#EB1C23;
  --red-bright:#FF3037;
  --red-dark:#AE151C;
  --chrome:#C9CDD3;
  --amber:#E8A33D;
  --line: rgba(255,255,255,0.09);
  --line-dark: rgba(0,0,0,0.08);
  --shadow-lg: 0 30px 60px -20px rgba(0,0,0,0.45);
  --ease: cubic-bezier(.22,1,.36,1);
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:'Manrope',sans-serif;
  background:var(--paper);
  color:var(--ink);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{list-style:none;}
button{font-family:inherit;cursor:pointer;border:none;background:none;}
.wrap{max-width:1280px;margin:0 auto;padding:0 32px;}

h1,h2,h3,h4{
  font-family:'Big Shoulders Display',sans-serif;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:0.01em;
  line-height:1.02;
}
.eyebrow{
  font-family:'JetBrains Mono',monospace;
  font-size:12px;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--red);
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:500;
  margin-bottom:18px;
}
.eyebrow::before{
  content:'';
  width:22px;height:2px;background:var(--red);
  display:inline-block;
}
:focus-visible{outline:2px solid var(--red);outline-offset:3px;}
@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.01ms !important; transition-duration:0.01ms !important;}
}

/* ============ TOP BAR ============ */
.topbar{
  background:var(--ink);
  color:var(--steel-light);
  font-size:13px;
  border-bottom:1px solid var(--line);
}
.topbar .wrap{
  display:flex;align-items:center;justify-content:space-between;
  height:42px;
}
.topbar-left{display:flex;gap:28px;align-items:center;}
.topbar-left a{display:flex;align-items:center;gap:7px;transition:color .25s var(--ease);}
.topbar-left a:hover{color:#fff;}
.topbar-left svg{width:14px;height:14px;flex-shrink:0;}
.topbar-right{display:flex;gap:16px;align-items:center;}
.topbar-right a{
  width:28px;height:28px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  border:1px solid var(--line);
  transition:all .25s var(--ease);
}
.topbar-right a:hover{background:var(--red);border-color:var(--red);transform:translateY(-2px);}
.topbar-right svg{width:13px;height:13px;}
@media (max-width:760px){ .topbar-left span.hide-sm{display:none;} .topbar-right{display:none;} }

/* ============ HEADER ============ */
header.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(14,16,19,0.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
  transition:padding .3s var(--ease);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  height:88px;
  transition:height .3s var(--ease);
}
.site-header.scrolled .header-inner{height:66px;}
.logo{display:flex;align-items:center;gap:12px;color:#fff;}
.logo-img{height:44px;width:auto;object-fit:contain;transition:transform .3s var(--ease);}
.logo:hover .logo-img{transform:scale(1.04);}
.footer-logo-img{height:40px;filter:brightness(1.15);}
.logo-text{font-family:'Big Shoulders Display';font-weight:900;font-size:19px;letter-spacing:0.01em;line-height:1;color:#fff;}
.logo-text span{color:var(--red);}
.logo-sub{font-family:'JetBrains Mono';font-size:9.5px;letter-spacing:0.16em;color:var(--steel);text-transform:uppercase;margin-top:3px;}
nav.main-nav ul{display:flex;gap:38px;}
nav.main-nav a{
  color:var(--steel-light);font-size:14.5px;font-weight:600;
  position:relative;padding:8px 0;
  transition:color .25s var(--ease);
}
nav.main-nav a::after{
  content:'';position:absolute;left:0;bottom:0;width:0;height:2px;background:var(--red);
  transition:width .3s var(--ease);
}
nav.main-nav a:hover{color:#fff;}
nav.main-nav a:hover::after{width:100%;}
.header-actions{display:flex;align-items:center;gap:22px;}
.phone-cta{display:flex;align-items:center;gap:10px;color:#fff;}
.phone-cta svg{width:18px;height:18px;color:var(--red);}
.phone-cta .num{font-family:'JetBrains Mono';font-weight:500;font-size:15px;}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:13px 28px;
  font-size:13.5px;font-weight:700;letter-spacing:0.03em;text-transform:uppercase;
  border-radius:3px;
  transition:all .3s var(--ease);
  white-space:nowrap;
}
.btn-primary{
  background:var(--red);color:#fff;
  box-shadow:0 8px 20px -6px rgba(214,38,48,0.5);
}
.btn-primary:hover{background:var(--red-bright);transform:translateY(-3px);box-shadow:0 14px 26px -8px rgba(214,38,48,0.65);}
.btn-outline{
  background:transparent;color:#fff;border:1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover{border-color:#fff;background:rgba(255,255,255,0.06);transform:translateY(-3px);}
.btn-outline-dark{background:transparent;color:var(--ink);border:1.5px solid rgba(14,16,19,0.25);}
.btn-outline-dark:hover{border-color:var(--ink);background:rgba(14,16,19,0.05);transform:translateY(-3px);}
.menu-toggle{display:none;width:40px;height:40px;color:#fff;}
@media (max-width:980px){
  nav.main-nav, .phone-cta, .header-actions .btn{display:none;}
  .menu-toggle{display:flex;align-items:center;justify-content:center;}
}

/* mobile drawer */
.mobile-drawer{
  position:fixed;inset:0;background:var(--ink);z-index:200;
  transform:translateX(100%);transition:transform .4s var(--ease);
  display:flex;flex-direction:column;padding:32px;
}
.mobile-drawer.open{transform:translateX(0);}
.mobile-drawer .close-drawer{align-self:flex-end;color:#fff;width:32px;height:32px;margin-bottom:40px;}
.mobile-drawer ul{display:flex;flex-direction:column;gap:6px;}
.mobile-drawer a{color:#fff;font-family:'Big Shoulders Display';font-size:30px;font-weight:700;text-transform:uppercase;padding:14px 0;border-bottom:1px solid var(--line);display:block;}
.mobile-drawer .btn{margin-top:32px;width:fit-content;}

/* ============ HERO ============ */
.hero{
  position:relative;
  background:linear-gradient(150deg,var(--ink) 0%, var(--charcoal) 55%, var(--charcoal-2) 100%);
  color:#fff;overflow:hidden;
  padding:120px 0 100px;
}
.hero::before{
  content:'';position:absolute;inset:0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size:64px 64px;
  opacity:0.35;
  mask-image:radial-gradient(circle at 70% 40%, black 0%, transparent 65%);
}
.hero-grid{
  position:relative;z-index:2;
  display:grid;grid-template-columns:1.05fr 0.95fr;gap:60px;align-items:center;
}
.hero-copy h1{font-size:clamp(42px,5.4vw,74px);color:#fff;margin-bottom:22px;}
.hero-copy h1 em{color:var(--red);font-style:normal;position:relative;}
.hero-copy p.lead{
  font-size:17.5px;line-height:1.65;color:var(--steel-light);max-width:480px;margin-bottom:36px;
}
.hero-btns{display:flex;gap:16px;margin-bottom:52px;flex-wrap:wrap;}
.hero-stats{display:flex;gap:38px;flex-wrap:wrap;}
.hero-stats .stat{border-left:2px solid var(--red);padding-left:16px;}
.hero-stats .stat .num{font-family:'JetBrains Mono';font-size:28px;font-weight:600;color:#fff;line-height:1;}
.hero-stats .stat .label{font-size:12px;color:var(--steel);text-transform:uppercase;letter-spacing:0.08em;margin-top:6px;}

.hero-visual{position:relative;}
.scan-frame{
  position:relative;aspect-ratio:1/1;border-radius:6px;
  background:linear-gradient(160deg,var(--charcoal-3),var(--ink));
  border:1px solid var(--line);
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
}
.scan-frame svg.car-svg{width:78%;color:var(--chrome);}
.scan-line{
  position:absolute;left:0;right:0;top:0;height:2px;
  background:linear-gradient(90deg,transparent, var(--red-bright), transparent);
  box-shadow:0 0 18px 2px rgba(238,46,57,0.8);
  animation:scan 3.2s ease-in-out infinite;
}
@keyframes scan{
  0%{top:6%;opacity:0;}
  8%{opacity:1;}
  50%{top:92%;opacity:1;}
  58%{opacity:0;}
  100%{top:6%;opacity:0;}
}
.corner{position:absolute;width:26px;height:26px;border:2px solid var(--red);opacity:0.85;}
.corner.tl{top:14px;left:14px;border-right:none;border-bottom:none;}
.corner.tr{top:14px;right:14px;border-left:none;border-bottom:none;}
.corner.bl{bottom:14px;left:14px;border-right:none;border-top:none;}
.corner.br{bottom:14px;right:14px;border-left:none;border-top:none;}
.quote-form-card{
  position:relative;background:var(--charcoal-2);
  border:1px solid var(--line);border-radius:8px;
  padding:34px 32px 30px;box-shadow:var(--shadow-lg);
}
.qf-head h3{font-size:24px;color:#fff;margin-bottom:8px;}
.qf-head p{font-size:13.5px;color:var(--steel-light);line-height:1.55;margin-bottom:22px;font-family:'Manrope';text-transform:none;font-weight:500;letter-spacing:0;}
.qf-form{display:flex;flex-direction:column;gap:12px;}
.qf-row{display:grid;grid-template-columns:1fr 1fr;gap:12px;}
.qf-form input,.qf-form select,.qf-form textarea{
  width:100%;background:var(--charcoal-3);border:1px solid var(--line);border-radius:4px;
  padding:12.5px 14px;color:#fff;font-family:'Manrope';font-size:13.8px;
  transition:border-color .3s var(--ease), background .3s var(--ease);
  resize:none;
}
.qf-form select{color:var(--steel-light);appearance:none;}
.qf-form select:valid{color:#fff;}
.qf-form input::placeholder,.qf-form textarea::placeholder{color:var(--steel);}
.qf-form input:focus,.qf-form select:focus,.qf-form textarea:focus{outline:none;border-color:var(--red);background:var(--charcoal-2);}
.qf-submit{width:100%;justify-content:center;margin-top:4px;transition:all .3s var(--ease);}
.qf-foot{display:flex;align-items:center;gap:8px;margin-top:16px;font-size:11.5px;color:var(--steel);}
.qf-foot svg{width:14px;height:14px;flex-shrink:0;}
@media (max-width:520px){.qf-row{grid-template-columns:1fr;}}

.badge-float{
  position:absolute;bottom:-22px;left:-22px;
  background:#fff;color:var(--ink);border-radius:6px;
  padding:16px 20px;box-shadow:var(--shadow-lg);
  display:flex;align-items:center;gap:12px;
}
.badge-float .ico{width:38px;height:38px;border-radius:50%;background:var(--red);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.badge-float .ico svg{width:19px;height:19px;color:#fff;}
.badge-float .t1{font-size:13px;font-weight:800;text-transform:uppercase;letter-spacing:0.02em;}
.badge-float .t2{font-size:11.5px;color:var(--steel);}
@media (max-width:980px){
  .hero-grid{grid-template-columns:1fr;}
  .hero-visual{margin-top:20px;max-width:420px;}
  .badge-float{left:0;}
}

/* ============ TRUST BAR ============ */
.trustbar{background:var(--offwhite);border-bottom:1px solid var(--line-dark);padding:26px 0;overflow:hidden;}
.trustbar .wrap{display:flex;align-items:center;gap:44px;}
.trustbar .tb-label{font-family:'JetBrains Mono';font-size:11.5px;letter-spacing:0.1em;color:var(--steel);text-transform:uppercase;flex-shrink:0;}
.trust-track{display:flex;gap:56px;overflow:hidden;position:relative;flex:1;mask-image:linear-gradient(90deg,transparent,black 8%,black 92%,transparent);}
.trust-track .marquee{display:flex;gap:56px;animation:marquee 26s linear infinite;flex-shrink:0;}
@keyframes marquee{from{transform:translateX(0);}to{transform:translateX(-100%);}}
.trust-track .name{
  font-family:'Big Shoulders Display';font-weight:700;font-size:20px;letter-spacing:0.02em;
  color:var(--steel);opacity:0.7;transition:all .3s var(--ease);white-space:nowrap;
}
.trust-track .name:hover{color:var(--red);opacity:1;}

/* ============ INTRO ============ */
.intro{padding:120px 0;background:var(--paper);}
.intro-grid{display:grid;grid-template-columns:0.9fr 1.1fr;gap:70px;align-items:center;}
.intro-visual{position:relative;}
.intro-panel{
  aspect-ratio:4/5;border-radius:6px;overflow:hidden;position:relative;
  background:linear-gradient(155deg,var(--charcoal-2),var(--ink));
  border:1px solid var(--line-dark);
}
.intro-photo-img{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  transition:transform .6s var(--ease);
}
.intro-visual:hover .intro-photo-img{transform:scale(1.05);}
.intro-panel .grid-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(16,16,16,0.05) 40%, rgba(16,16,16,0.55) 100%);
  pointer-events:none;
}
.intro-tag{
  position:absolute;top:-18px;right:-18px;background:var(--red);color:#fff;
  padding:14px 18px;border-radius:6px;box-shadow:var(--shadow-lg);
  font-family:'Big Shoulders Display';font-weight:800;text-align:center;line-height:1.1;
}
.intro-tag .n{font-size:30px;display:block;}
.intro-tag .s{font-size:10.5px;letter-spacing:0.08em;text-transform:uppercase;font-family:'JetBrains Mono';font-weight:500;}
.intro-copy h2{font-size:clamp(30px,4vw,44px);margin-bottom:22px;color:var(--ink);}
.intro-copy p{font-size:16px;line-height:1.75;color:#4b4f57;margin-bottom:22px;max-width:560px;}
.intro-list{display:grid;grid-template-columns:1fr 1fr;gap:16px 28px;margin:30px 0 36px;}
.intro-list li{display:flex;gap:12px;align-items:flex-start;font-size:14.5px;font-weight:600;color:var(--ink);}
.intro-list svg{width:18px;height:18px;color:var(--red);flex-shrink:0;margin-top:2px;}
@media (max-width:900px){.intro-grid{grid-template-columns:1fr;}.intro-visual{max-width:340px;margin:0 auto 30px;}.intro-list{grid-template-columns:1fr;}}

/* ============ SERVICES ============ */
.services{padding:120px 0;background:var(--paper);color:var(--ink);position:relative;}
.services .eyebrow{color:var(--red);}
.services .section-head p{color:#5b5f66;}
.section-head{max-width:640px;margin-bottom:56px;}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center;}
.section-head h2{font-size:clamp(32px,4.2vw,48px);}
.section-head p{font-size:16px;color:var(--steel-light);margin-top:16px;line-height:1.7;}
.light .section-head p{color:#5b5f66;}
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;}
.service-card{
  background:#fff;border:1px solid var(--line-dark);border-radius:8px;
  overflow:hidden;position:relative;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.service-card:hover{transform:translateY(-8px);box-shadow:0 26px 46px -20px rgba(0,0,0,0.22);border-color:rgba(235,28,35,0.4);}
.sc-photo{position:relative;aspect-ratio:4/3;overflow:hidden;}
.sc-photo img{width:100%;height:100%;object-fit:cover;transition:transform .55s var(--ease);}
.service-card:hover .sc-photo img{transform:scale(1.08);}
.sc-photo::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,transparent 55%,rgba(16,16,16,0.55) 100%);}
.sc-corner{position:absolute;width:18px;height:18px;border:2px solid #fff;opacity:0;transition:opacity .35s var(--ease);z-index:2;}
.sc-corner.tl{top:10px;left:10px;border-right:none;border-bottom:none;}
.sc-corner.br{bottom:10px;right:10px;border-left:none;border-top:none;}
.service-card:hover .sc-corner{opacity:0.9;}
.sc-icon{
  width:52px;height:52px;border-radius:50%;background:var(--red);
  display:flex;align-items:center;justify-content:center;
  position:absolute;bottom:-26px;left:24px;z-index:3;
  box-shadow:0 8px 18px -4px rgba(235,28,35,0.55);
  transition:transform .35s var(--ease);
}
.service-card:hover .sc-icon{transform:scale(1.08) rotate(-6deg);}
.sc-icon svg{width:24px;height:24px;color:#fff;}
.sc-body{padding:40px 26px 30px;}
.service-card h3{font-size:20px;color:var(--ink);margin-bottom:10px;text-transform:uppercase;}
.service-card p{font-size:14.3px;color:#5b5f66;line-height:1.6;}
.sc-link{display:inline-flex;align-items:center;gap:7px;margin-top:18px;font-size:12.5px;font-weight:700;color:var(--red);text-transform:uppercase;letter-spacing:0.04em;}
.sc-link svg{width:14px;height:14px;transition:transform .3s var(--ease);}
.service-card:hover .sc-link svg{transform:translateX(4px);}
@media (max-width:980px){.services-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:640px){.services-grid{grid-template-columns:1fr;}}

/* ============ WHY CHOOSE US ============ */
.why{padding:120px 0;background:var(--paper);}
.why-grid{display:grid;grid-template-columns:0.85fr 1.15fr;gap:70px;align-items:start;}
.why-feats{display:grid;grid-template-columns:1fr 1fr;gap:30px 34px;}
.why-feat{display:flex;gap:18px;}
.wf-ico{width:48px;height:48px;border-radius:50%;border:1.5px solid var(--red);display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:all .3s var(--ease);}
.why-feat:hover .wf-ico{background:var(--red);}
.wf-ico svg{width:21px;height:21px;color:var(--red);transition:color .3s var(--ease);}
.why-feat:hover .wf-ico svg{color:#fff;}
.why-feat h4{font-family:'Manrope';font-weight:800;text-transform:none;font-size:16.5px;color:var(--ink);margin-bottom:6px;letter-spacing:0;}
.why-feat p{font-size:13.8px;color:#5b5f66;line-height:1.6;}
@media (max-width:900px){.why-grid{grid-template-columns:1fr;}.why-feats{grid-template-columns:1fr;}}

/* ============ TESTIMONIALS ============ */
.reviews{padding:120px 0;background:var(--offwhite);}
.reviews-head{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:54px;gap:30px;flex-wrap:wrap;}
.google-score{display:flex;align-items:center;gap:14px;background:#fff;padding:14px 20px;border-radius:8px;box-shadow:0 10px 24px -12px rgba(0,0,0,0.15);}
.google-score .g-logo{font-family:'Manrope';font-weight:800;font-size:22px;}
.google-score .g-logo span:nth-child(1){color:#4285F4;}
.google-score .g-logo span:nth-child(2){color:#EA4335;}
.google-score .g-logo span:nth-child(3){color:#FBBC05;}
.google-score .g-logo span:nth-child(4){color:#4285F4;}
.google-score .g-logo span:nth-child(5){color:#34A853;}
.google-score .g-logo span:nth-child(6){color:#EA4335;}
.google-score .stars{color:#FBBC05;font-size:15px;letter-spacing:1px;}
.google-score .g-meta{font-size:12px;color:var(--steel);}
.reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;}
.review-card{
  background:#fff;border-radius:8px;padding:30px;
  border:1px solid var(--line-dark);
  transition:transform .35s var(--ease), box-shadow .35s var(--ease);
}
.review-card:hover{transform:translateY(-6px);box-shadow:0 22px 40px -18px rgba(0,0,0,0.18);}
.review-card .stars-row{color:#FBBC05;font-size:15px;margin-bottom:16px;letter-spacing:1px;}
.review-card p.quote{font-size:14.5px;color:#3d4048;line-height:1.7;margin-bottom:22px;}
.review-person{display:flex;align-items:center;gap:12px;}
.review-avatar{width:42px;height:42px;border-radius:50%;background:var(--charcoal-2);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700;font-family:'Big Shoulders Display';flex-shrink:0;}
.review-name{font-weight:700;font-size:13.5px;color:var(--ink);}
.review-sub{font-size:11.5px;color:var(--steel);display:flex;align-items:center;gap:5px;}
.review-sub svg{width:11px;height:11px;}
@media (max-width:980px){.reviews-grid{grid-template-columns:1fr;}}

/* ============ FAQ ============ */
.faq{padding:120px 0;background:var(--paper);}
.faq-layout{display:grid;grid-template-columns:0.7fr 1.3fr;gap:70px;}
.faq-list{display:flex;flex-direction:column;gap:14px;}
.faq-item{border:1px solid var(--line-dark);border-radius:6px;overflow:hidden;transition:border-color .3s var(--ease);}
.faq-item.active{border-color:var(--red);}
.faq-q{
  display:flex;justify-content:space-between;align-items:center;gap:16px;
  padding:22px 26px;cursor:pointer;background:#fff;
}
.faq-q h4{font-family:'Manrope';font-weight:700;font-size:15.5px;text-transform:none;letter-spacing:0;color:var(--ink);}
.faq-plus{width:26px;height:26px;border-radius:50%;border:1.5px solid var(--ink);flex-shrink:0;position:relative;transition:all .3s var(--ease);}
.faq-plus::before,.faq-plus::after{content:'';position:absolute;background:var(--ink);top:50%;left:50%;transition:all .3s var(--ease);}
.faq-plus::before{width:10px;height:1.5px;transform:translate(-50%,-50%);}
.faq-plus::after{width:1.5px;height:10px;transform:translate(-50%,-50%);}
.faq-item.active .faq-plus{background:var(--red);border-color:var(--red);}
.faq-item.active .faq-plus::before,.faq-item.active .faq-plus::after{background:#fff;}
.faq-item.active .faq-plus::after{transform:translate(-50%,-50%) rotate(90deg);opacity:0;}
.faq-a{max-height:0;overflow:hidden;transition:max-height .4s var(--ease);background:#fff;}
.faq-a-inner{padding:0 26px 24px;font-size:14.5px;color:#5b5f66;line-height:1.7;}
@media (max-width:900px){.faq-layout{grid-template-columns:1fr;}}

/* ============ BLOG ============ */
.blog{padding:120px 0;background:var(--offwhite);color:var(--ink);}
.blog .section-head p{color:#5b5f66;}
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;}
.blog-card{background:#fff;border-radius:8px;overflow:hidden;border:1px solid var(--line-dark);transition:transform .35s var(--ease), box-shadow .35s var(--ease);}
.blog-card:hover{transform:translateY(-8px);box-shadow:0 26px 46px -20px rgba(0,0,0,0.18);}
.blog-img{aspect-ratio:16/10;position:relative;overflow:hidden;}
.blog-img img{width:100%;height:100%;object-fit:cover;transition:transform .55s var(--ease);}
.blog-card:hover .blog-img img{transform:scale(1.08);}
.blog-cat{position:absolute;top:14px;left:14px;background:var(--red);color:#fff;font-size:10.5px;font-weight:700;text-transform:uppercase;letter-spacing:0.06em;padding:6px 12px;border-radius:3px;z-index:2;}
.blog-body{padding:26px;}
.blog-date{font-family:'JetBrains Mono';font-size:11.5px;color:var(--steel);margin-bottom:12px;}
.blog-body h3{font-size:19px;color:var(--ink);text-transform:none;letter-spacing:0;font-weight:800;margin-bottom:12px;line-height:1.3;}
.blog-body p{font-size:13.8px;color:#5b5f66;line-height:1.6;margin-bottom:18px;}
.blog-read{display:inline-flex;gap:7px;align-items:center;font-size:12.5px;font-weight:700;color:var(--red);text-transform:uppercase;letter-spacing:0.04em;}
.blog-read svg{width:13px;height:13px;transition:transform .3s var(--ease);}
.blog-card:hover .blog-read svg{transform:translateX(4px);}
@media (max-width:980px){.blog-grid{grid-template-columns:1fr;}}

/* ============ CTA ============ */
.cta{
  position:relative;padding:100px 0;color:#fff;overflow:hidden;
  background:linear-gradient(120deg,var(--red-dark),var(--red) 60%, var(--red-bright));
}
.cta::before{
  content:'';position:absolute;inset:0;
  background-image:repeating-linear-gradient(-45deg, rgba(255,255,255,0.06) 0 2px, transparent 2px 34px);
}
.cta-inner{position:relative;z-index:1;display:flex;align-items:center;justify-content:space-between;gap:40px;flex-wrap:wrap;}
.cta-inner h2{font-size:clamp(30px,4vw,46px);max-width:600px;color:#fff;}
.cta-actions{display:flex;gap:16px;flex-wrap:wrap;align-items:center;}
.cta .btn-primary{background:#fff;color:var(--red-dark);box-shadow:0 10px 24px -8px rgba(0,0,0,0.35);}
.cta .btn-primary:hover{background:var(--ink);color:#fff;}
.cta .btn-outline{border-color:rgba(255,255,255,0.5);}
.cta .btn-outline:hover{background:rgba(255,255,255,0.14);border-color:#fff;}

/* ============ PARTNERS STRIP ============ */
.partners-strip{background:var(--red);padding:52px 0;}
.partners-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;max-width:920px;margin:0 auto;}
.partner-box{
  background:#fff;border-radius:6px;aspect-ratio:4/3;
  display:flex;align-items:center;justify-content:center;padding:22px;
  box-shadow:0 14px 28px -12px rgba(0,0,0,0.28);
  transition:transform .3s var(--ease);
}
.partner-box:hover{transform:translateY(-5px);}
.partner-box img{width:100%;height:100%;object-fit:contain;}
@media (max-width:760px){.partners-grid{grid-template-columns:repeat(2,1fr);max-width:420px;}.partners-strip{padding:40px 0;}}

/* ============ FOOTER ============ */
footer{background:var(--charcoal);color:var(--steel-light);padding:80px 0 0;}
.footer-grid{display:grid;grid-template-columns:1.3fr 1fr 1fr 1.2fr;gap:50px;padding-bottom:60px;border-bottom:1px solid var(--line);}
.footer-brand p{font-size:14px;line-height:1.7;color:var(--steel);margin:20px 0 24px;max-width:300px;}
.footer-social{display:flex;gap:10px;}
.footer-social a{width:36px;height:36px;border-radius:50%;border:1px solid var(--line);display:flex;align-items:center;justify-content:center;transition:all .3s var(--ease);}
.footer-social a:hover{background:var(--red);border-color:var(--red);transform:translateY(-3px);}
.footer-social svg{width:15px;height:15px;}
footer h5{font-family:'Manrope';font-weight:800;font-size:13px;letter-spacing:0.08em;text-transform:uppercase;color:#fff;margin-bottom:22px;}
footer .flinks{display:flex;flex-direction:column;gap:13px;}
footer .flinks a{font-size:14.5px;color:var(--steel-light);transition:color .25s var(--ease);position:relative;width:fit-content;}
footer .flinks a:hover{color:var(--red-bright);padding-left:6px;}
.footer-contact li{display:flex;gap:12px;align-items:flex-start;font-size:14px;margin-bottom:16px;color:var(--steel-light);}
.footer-contact svg{width:16px;height:16px;color:var(--red);flex-shrink:0;margin-top:2px;}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;padding:26px 0;font-size:12.5px;color:var(--steel);flex-wrap:wrap;gap:12px;}
.footer-bottom .flegal{display:flex;gap:22px;}
.footer-bottom .flegal a:hover{color:#fff;}
@media (max-width:980px){.footer-grid{grid-template-columns:1fr 1fr;}}
@media (max-width:640px){.footer-grid{grid-template-columns:1fr;}.footer-bottom{flex-direction:column;text-align:center;}}

/* reveal on scroll */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .7s var(--ease), transform .7s var(--ease);}
.reveal.in{opacity:1;transform:translateY(0);}

/* ============ LUXURY + MOBILE REFINEMENT ============ */
:root{
  --gold:#EB1C23;
  --gold-soft:#FF3037;
  --obsidian:#090A0C;
}
body{background:linear-gradient(180deg,#faf9f6 0%,#f4f1eb 100%);}
.wrap{width:min(100% - 40px,1280px);padding:0;}
.site-header{box-shadow:0 10px 35px rgba(0,0,0,.16);}
.logo-img{filter:drop-shadow(0 5px 14px rgba(0,0,0,.35));}
.btn{min-height:48px;border-radius:999px;padding:14px 26px;letter-spacing:.055em;}
.btn-primary{background:linear-gradient(135deg,var(--red-dark),var(--red-bright));box-shadow:0 12px 30px -12px rgba(235,28,35,.85);}
.btn-luxe{
  color:#151515;background:linear-gradient(135deg,var(--gold-soft),var(--gold));
  box-shadow:0 14px 34px -12px rgba(235,28,35,.72);border:1px solid rgba(255,255,255,.35);
}
.btn-luxe:hover{transform:translateY(-3px);box-shadow:0 20px 40px -14px rgba(235,28,35,.9);filter:brightness(1.04);}
.hero{
  min-height:calc(100svh - 130px);display:flex;align-items:center;padding:96px 0 90px;
  background:
    radial-gradient(circle at 78% 20%,rgba(235,28,35,.16),transparent 28%),
    radial-gradient(circle at 8% 85%,rgba(235,28,35,.18),transparent 34%),
    linear-gradient(145deg,#08090b 0%,#111318 48%,#1b1f26 100%);
}
.hero::after{content:'';position:absolute;inset:0;pointer-events:none;background:linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);background-size:25% 100%;opacity:.35;}
.hero-copy h1{font-size:clamp(48px,6.2vw,88px);max-width:760px;letter-spacing:.015em;text-shadow:0 12px 30px rgba(0,0,0,.32);}
.hero-copy h1 em{background:linear-gradient(135deg,#ffd9da,var(--gold));-webkit-background-clip:text;background-clip:text;color:transparent;}
.hero-copy p.lead{font-size:18px;max-width:620px;color:#c7c9ce;}
.hero-btns{margin-bottom:44px;}
.hero-stats{padding-top:25px;border-top:1px solid rgba(255,255,255,.1);}
.hero-stats .stat{border-left-color:var(--gold);}
.hero-stats .stat .num{font-size:30px;}
.quote-form-card{
  background:linear-gradient(160deg,rgba(39,43,52,.9),rgba(16,18,22,.94));
  border:1px solid rgba(255,255,255,.14);border-radius:22px;padding:38px 34px 32px;
  backdrop-filter:blur(20px);box-shadow:0 35px 90px -30px rgba(0,0,0,.8),inset 0 1px rgba(255,255,255,.08);
}
.quote-form-card .corner{border-color:var(--gold);opacity:.55;}
.qf-head h3{font-size:30px;letter-spacing:.025em;}
.qf-head p{font-size:14px;color:#c9ccd2;}
.qf-form input,.qf-form select,.qf-form textarea{
  border-radius:12px;background:rgba(255,255,255,.055);border-color:rgba(255,255,255,.12);padding:14px 15px;
}
.qf-form input:focus,.qf-form select:focus,.qf-form textarea:focus{border-color:var(--gold);box-shadow:0 0 0 3px rgba(235,28,35,.12);}
.qf-submit{min-height:58px;padding:15px 22px;border-radius:16px;font-size:14px;gap:11px;}
.qf-submit svg{width:22px;height:22px;flex:0 0 22px;}
.snap-upload{display:flex;align-items:center;gap:12px;padding:13px 15px;border:1px dashed rgba(235,28,35,.6);border-radius:12px;background:rgba(235,28,35,.07);cursor:pointer;transition:.25s ease;}
.snap-upload:hover{background:rgba(235,28,35,.12);border-color:var(--gold-soft);}
.snap-upload svg{width:21px;height:21px;color:var(--gold-soft);flex:none;}
.snap-upload strong{display:block;color:#fff;font-size:13px;}
.snap-upload span{display:block;color:#aeb2ba;font-size:11.5px;margin-top:2px;}
.snap-upload input{display:none;}
.badge-float{border-radius:14px;border:1px solid rgba(235,28,35,.28);}
.badge-float .ico{background:linear-gradient(135deg,var(--gold-soft),var(--gold));}
.badge-float .ico svg{color:#171717;}
.mobile-snap-bar{display:none;}
@media (max-width:980px){
  .hero{min-height:auto;padding:78px 0 90px;}
  .hero-grid{gap:44px;}
  .hero-copy{text-align:center;}
  .hero-copy h1,.hero-copy p.lead{margin-left:auto;margin-right:auto;}
  .hero-btns,.hero-stats{justify-content:center;}
  .hero-visual{max-width:620px;width:100%;margin:0 auto;}
}
@media (max-width:760px){
  .wrap{width:min(100% - 28px,1280px);}
  .topbar .wrap{justify-content:center;height:36px;}
  .topbar-left{gap:12px;font-size:11.5px;}
  .header-inner{height:70px;}
  .logo-img{height:36px;}
  .hero{padding:54px 0 84px;}
  .hero-copy h1{font-size:clamp(43px,13.5vw,62px);line-height:.96;margin-bottom:20px;}
  .hero-copy p.lead{font-size:15.5px;line-height:1.65;margin-bottom:28px;}
  .eyebrow{font-size:10px;letter-spacing:.12em;justify-content:center;}
  .hero-btns{display:grid;grid-template-columns:1fr;gap:11px;margin-bottom:34px;}
  .hero-btns .btn{width:100%;}
  .hero-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;padding-top:20px;}
  .hero-stats .stat{padding-left:0;border-left:0;text-align:center;}
  .hero-stats .stat .num{font-size:22px;}
  .hero-stats .stat .label{font-size:9px;line-height:1.25;}
  .quote-form-card{padding:27px 18px 22px;border-radius:18px;}
  .qf-head h3{font-size:27px;}
  .qf-row{grid-template-columns:1fr;}
  .qf-submit{min-height:54px;padding:14px 18px;font-size:13px;border-radius:14px;}
  .qf-submit svg{width:20px;height:20px;flex-basis:20px;}
  .badge-float{position:relative;left:auto;bottom:auto;margin:-10px 14px 0;padding:13px 15px;}
  .intro,.services,.why,.reviews,.faq,.blog{padding:78px 0;}
  .section-head{margin-bottom:38px;}
  .mobile-snap-bar{position:fixed;z-index:120;display:flex;left:12px;right:12px;bottom:12px;padding:8px;background:rgba(10,11,13,.88);border:1px solid rgba(255,255,255,.14);border-radius:999px;backdrop-filter:blur(16px);box-shadow:0 16px 40px rgba(0,0,0,.35);}
  .mobile-snap-bar .btn{width:100%;min-height:50px;}
  footer{padding-bottom:80px;}
}



/* ============ MODERN LUXURY DESIGN SYSTEM ============ */
:root{
  --lux-gold:#EB1C23;
  --lux-gold-light:#FF3037;
  --lux-gold-dark:#AE151C;
  --lux-black:#0B0D10;
  --lux-surface:#12151A;
  --lux-surface-2:#191D23;
  --lux-cream:#F7F4EE;
  --lux-muted:#717782;
  --lux-radius:20px;
  --lux-shadow:0 24px 70px rgba(9,12,16,.14);
  --lux-shadow-hover:0 34px 90px rgba(9,12,16,.22);
}

body{
  font-family:'Plus Jakarta Sans','Manrope',sans-serif;
  background:var(--lux-cream);
  letter-spacing:-.012em;
}
h1,h2,h3,h4{
  font-family:'Barlow Condensed','Big Shoulders Display',sans-serif;
  letter-spacing:.015em;
}
.wrap{max-width:1320px;}

/* refined section rhythm */
.intro,.services,.why,.reviews,.faq,.blog{position:relative;isolation:isolate;}
.intro,.services,.why,.reviews,.faq,.blog{padding-top:132px;padding-bottom:132px;}
.intro::before,.services::before,.why::before,.reviews::before,.faq::before,.blog::before{
  content:'';position:absolute;left:50%;top:0;width:min(1160px,calc(100% - 48px));height:1px;
  transform:translateX(-50%);background:linear-gradient(90deg,transparent,rgba(174,21,28,.35),transparent);
}
.section-head{margin-bottom:64px;}
.section-head h2,.intro-copy h2{font-weight:800;letter-spacing:.01em;line-height:.94;}
.section-head p,.intro-copy p{font-size:15.5px;line-height:1.8;}
.eyebrow{color:var(--lux-gold-dark);font-weight:700;letter-spacing:.2em;}
.eyebrow::before{background:linear-gradient(90deg,var(--lux-gold-dark),var(--lux-gold-light));width:30px;}

/* premium buttons */
.btn{border-radius:999px;padding:14px 26px;font-size:12.5px;letter-spacing:.08em;position:relative;overflow:hidden;isolation:isolate;}
.btn::before{content:'';position:absolute;inset:0;transform:translateX(-105%);background:linear-gradient(110deg,transparent,rgba(255,255,255,.28),transparent);transition:transform .6s var(--ease);z-index:-1;}
.btn:hover::before{transform:translateX(105%);}
.btn-primary{background:linear-gradient(135deg,#D71920,#FF3037);box-shadow:0 12px 28px rgba(224,29,36,.28);}
.btn-primary:hover{transform:translateY(-3px) scale(1.015);box-shadow:0 20px 42px rgba(224,29,36,.38);}
.btn-outline,.btn-outline-dark{backdrop-filter:blur(10px);}
.btn-luxe{background:linear-gradient(135deg,var(--lux-gold-light),var(--lux-gold));color:#111318;box-shadow:0 12px 30px rgba(235,28,35,.28);}
.btn-luxe:hover{background:linear-gradient(135deg,#FF6A6F,var(--lux-gold));transform:translateY(-3px);box-shadow:0 18px 40px rgba(235,28,35,.38);}

/* header */
header.site-header{background:rgba(10,12,15,.86);backdrop-filter:blur(22px) saturate(140%);border-bottom-color:rgba(235,28,35,.14);}
nav.main-nav a{font-size:13px;letter-spacing:.035em;}
nav.main-nav a::after{background:linear-gradient(90deg,var(--lux-gold-dark),var(--lux-gold-light));}
.logo:hover .logo-img{transform:scale(1.025);filter:drop-shadow(0 8px 20px rgba(235,28,35,.15));}

/* hero */
.hero{background:
  radial-gradient(circle at 13% 75%,rgba(160,21,27,.24),transparent 34%),
  radial-gradient(circle at 88% 15%,rgba(235,28,35,.08),transparent 28%),
  linear-gradient(140deg,#080A0D 0%,#11151A 58%,#171B21 100%);
}
.hero::after{content:'';position:absolute;right:-8%;top:-20%;width:52vw;height:52vw;border:1px solid rgba(235,28,35,.12);border-radius:50%;box-shadow:0 0 0 70px rgba(235,28,35,.025),0 0 0 140px rgba(235,28,35,.018);pointer-events:none;}
.hero-copy h1{text-shadow:0 16px 50px rgba(0,0,0,.28);}
.hero-copy h1 em{background:linear-gradient(135deg,#F4D990,#C7A45B);-webkit-background-clip:text;background-clip:text;color:transparent;}
.hero-copy p.lead{color:#C0C5CE;}
.hero-stats{padding-top:24px;border-top:1px solid rgba(255,255,255,.09);}
.hero-stats .stat{border-left-color:var(--lux-gold);}
.hero-stats .stat .num{font-family:'Barlow Condensed';font-size:32px;letter-spacing:.02em;}

/* quote form */
.quote-form-card{background:linear-gradient(155deg,rgba(29,33,40,.97),rgba(14,17,21,.98));border:1px solid rgba(235,28,35,.23);border-radius:24px;padding:34px;box-shadow:0 38px 100px rgba(0,0,0,.46),inset 0 1px rgba(255,255,255,.06);}
.quote-form-card::before{content:'';position:absolute;inset:0;border-radius:inherit;padding:1px;background:linear-gradient(135deg,rgba(242,217,149,.5),transparent 35%,transparent 72%,rgba(235,28,35,.32));-webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);-webkit-mask-composite:xor;mask-composite:exclude;pointer-events:none;}
.qf-head h3{font-size:30px;letter-spacing:.03em;}
.qf-form input,.qf-form select,.qf-form textarea{background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.11);border-radius:13px;padding:14px 16px;transition:border-color .25s ease,background .25s ease,box-shadow .25s ease,transform .25s ease;}
.qf-form input:hover,.qf-form select:hover,.qf-form textarea:hover{border-color:rgba(235,28,35,.35);background:rgba(255,255,255,.072);}
.qf-form input:focus,.qf-form select:focus,.qf-form textarea:focus{border-color:var(--lux-gold);box-shadow:0 0 0 4px rgba(235,28,35,.1);transform:translateY(-1px);}
.qf-submit{min-height:56px!important;border-radius:14px!important;background:linear-gradient(135deg,#D51920,#F1262D)!important;box-shadow:0 14px 34px rgba(235,28,35,.28)!important;}
.qf-submit:hover{box-shadow:0 20px 44px rgba(235,28,35,.4)!important;}
.badge-float{border-radius:16px;border:1px solid rgba(235,28,35,.35);box-shadow:0 20px 60px rgba(0,0,0,.25);}
.badge-float .ico{background:linear-gradient(135deg,var(--lux-gold-light),var(--lux-gold));color:#111;}

/* trust bar */
.trustbar{padding:30px 0;background:linear-gradient(180deg,#F4F0E8,#FAF8F4);border-color:rgba(174,21,28,.14);}
.trust-track .name{font-family:'Barlow Condensed';font-size:22px;letter-spacing:.06em;opacity:.52;}
.trust-track .name:hover{color:var(--lux-gold-dark);opacity:1;transform:translateY(-2px);}

/* intro */
.intro{background:linear-gradient(180deg,#FCFBF8,#F5F1E9);}
.intro-panel{border-radius:28px;border:1px solid rgba(174,21,28,.18);box-shadow:var(--lux-shadow);}
.intro-visual:hover .intro-panel{box-shadow:var(--lux-shadow-hover);}
.intro-photo-img{transition:transform .9s var(--ease),filter .5s ease;}
.intro-visual:hover .intro-photo-img{transform:scale(1.065);filter:saturate(1.05) contrast(1.03);}
.intro-tag{background:linear-gradient(135deg,var(--lux-gold-light),var(--lux-gold));color:#15171B;border-radius:16px;box-shadow:0 20px 50px rgba(174,21,28,.28);}
.intro-list li{padding:13px 14px;border-radius:12px;background:rgba(255,255,255,.58);border:1px solid rgba(174,21,28,.1);transition:.3s var(--ease);}
.intro-list li:hover{transform:translateX(5px);border-color:rgba(174,21,28,.35);background:#fff;box-shadow:0 12px 30px rgba(40,30,15,.08);}
.intro-list svg{color:var(--lux-gold-dark);}

/* service cards */
.services{background:#F8F6F1;}
.services-grid{gap:30px;}
.service-card{border-radius:22px;border:1px solid rgba(31,34,39,.08);box-shadow:0 12px 34px rgba(16,18,22,.07);background:rgba(255,255,255,.9);}
.service-card::before{content:'';position:absolute;inset:0;border-radius:inherit;border:1px solid transparent;background:linear-gradient(145deg,rgba(235,28,35,.55),transparent 34%) border-box;mask:linear-gradient(#000 0 0) padding-box,linear-gradient(#000 0 0);mask-composite:exclude;opacity:0;transition:opacity .35s ease;pointer-events:none;z-index:5;}
.service-card:hover{transform:translateY(-12px);box-shadow:0 32px 70px rgba(16,18,22,.16);border-color:rgba(235,28,35,.28);}
.service-card:hover::before{opacity:1;}
.sc-photo{aspect-ratio:16/11;}
.sc-photo::after{background:linear-gradient(180deg,transparent 42%,rgba(9,11,14,.72) 100%);}
.sc-icon{background:linear-gradient(135deg,var(--lux-gold-light),var(--lux-gold));box-shadow:0 12px 26px rgba(174,21,28,.32);}
.sc-icon svg{color:#15171B;}
.service-card h3{font-size:24px;letter-spacing:.025em;}
.sc-link{color:var(--lux-gold-dark);letter-spacing:.08em;}

/* why choose us cards */
.why{background:linear-gradient(180deg,#F4F0E8,#FBFAF7);}
.why-feats{gap:22px;}
.why-feat{padding:24px;border-radius:18px;background:rgba(255,255,255,.74);border:1px solid rgba(174,21,28,.12);box-shadow:0 10px 30px rgba(15,18,23,.05);transition:.35s var(--ease);}
.why-feat:hover{transform:translateY(-7px);background:#fff;border-color:rgba(235,28,35,.45);box-shadow:0 22px 50px rgba(15,18,23,.11);}
.wf-ico{border-color:var(--lux-gold);background:rgba(235,28,35,.08);}
.wf-ico svg{color:var(--lux-gold-dark);}
.why-feat:hover .wf-ico{background:linear-gradient(135deg,var(--lux-gold-light),var(--lux-gold));border-color:transparent;transform:rotate(-7deg) scale(1.06);}
.why-feat:hover .wf-ico svg{color:#111318;}

/* reviews */
.reviews{background:#111419;color:#fff;}
.reviews::before{background:linear-gradient(90deg,transparent,rgba(235,28,35,.4),transparent);}
.reviews .section-head h2{color:#fff;}
.reviews .section-head p{color:#AEB4BE;}
.google-score{background:rgba(255,255,255,.06);border:1px solid rgba(235,28,35,.2);backdrop-filter:blur(16px);box-shadow:none;}
.google-score .g-meta{color:#9299A4;}
.review-card{background:linear-gradient(150deg,#1B1F25,#14171C);border:1px solid rgba(255,255,255,.08);border-radius:22px;padding:32px;box-shadow:0 16px 45px rgba(0,0,0,.18);}
.review-card:hover{transform:translateY(-10px);border-color:rgba(235,28,35,.42);box-shadow:0 28px 65px rgba(0,0,0,.35);}
.review-card p.quote{color:#C4C9D1;}
.review-name{color:#fff;}
.review-avatar{background:linear-gradient(135deg,var(--lux-gold-light),var(--lux-gold));color:#111318;}

/* FAQ */
.faq{background:#FAF8F4;}
.faq-item{border-radius:16px;border-color:rgba(31,34,39,.1);box-shadow:0 8px 26px rgba(16,18,22,.045);transition:.3s var(--ease);}
.faq-item:hover{transform:translateX(5px);border-color:rgba(235,28,35,.38);box-shadow:0 16px 38px rgba(16,18,22,.08);}
.faq-item.active{border-color:var(--lux-gold);box-shadow:0 18px 44px rgba(174,21,28,.12);}
.faq-q{padding:24px 26px;}
.faq-plus{border-color:var(--lux-gold-dark);}
.faq-plus::before,.faq-plus::after{background:var(--lux-gold-dark);}
.faq-item.active .faq-plus{background:linear-gradient(135deg,var(--lux-gold-light),var(--lux-gold));border-color:transparent;}
.faq-item.active .faq-plus::before,.faq-item.active .faq-plus::after{background:#111318;}

/* blog */
.blog{background:linear-gradient(180deg,#F0ECE4,#F8F6F1);}
.blog-grid{gap:30px;}
.blog-card{border-radius:22px;border-color:rgba(31,34,39,.08);box-shadow:0 12px 34px rgba(16,18,22,.07);}
.blog-card:hover{transform:translateY(-12px);box-shadow:0 30px 70px rgba(16,18,22,.16);border-color:rgba(235,28,35,.3);}
.blog-cat{background:linear-gradient(135deg,var(--lux-gold-light),var(--lux-gold));color:#111318;border-radius:999px;padding:7px 13px;}
.blog-body{padding:30px;}
.blog-body h3{font-family:'Plus Jakarta Sans';font-size:18px;line-height:1.45;}
.blog-read{color:var(--lux-gold-dark);letter-spacing:.08em;}

/* CTA */
.cta{padding:110px 0;background:linear-gradient(125deg,#8F1117,#D51B22 55%,#F12930);}
.cta::after{content:'';position:absolute;right:4%;top:50%;width:320px;height:320px;border:1px solid rgba(255,255,255,.14);border-radius:50%;transform:translateY(-50%);box-shadow:0 0 0 45px rgba(255,255,255,.035),0 0 0 90px rgba(255,255,255,.02);}
.cta-inner{position:relative;z-index:2;}
.cta-inner h2{font-size:clamp(38px,5vw,62px);line-height:.95;}
.cta .btn-primary{background:linear-gradient(135deg,var(--lux-gold-light),var(--lux-gold));color:#111318;}

/* footer */
footer{background:#090B0E;padding-top:92px;}
.footer-grid{gap:58px;border-bottom-color:rgba(235,28,35,.14);}
footer h5{color:var(--lux-gold-light);letter-spacing:.12em;}
footer .flinks a{transition:color .25s ease,transform .25s ease;}
footer .flinks a:hover{color:var(--lux-gold-light);transform:translateX(5px);padding-left:0;}
.footer-social a:hover{background:linear-gradient(135deg,var(--lux-gold-light),var(--lux-gold));border-color:transparent;color:#111318;}
.footer-contact svg{color:var(--lux-gold);}

/* accessibility and touch refinement */
.service-card,.review-card,.blog-card,.why-feat,.faq-item{will-change:transform;}
@media (hover:none){.service-card:hover,.review-card:hover,.blog-card:hover,.why-feat:hover,.faq-item:hover{transform:none;}}

@media (max-width:980px){
  .intro,.services,.why,.reviews,.faq,.blog{padding-top:96px;padding-bottom:96px;}
  .quote-form-card{padding:28px;border-radius:20px;}
  .why-feat{padding:21px;}
}
@media (max-width:640px){
  .wrap{padding-left:20px;padding-right:20px;}
  .intro,.services,.why,.reviews,.faq,.blog{padding-top:76px;padding-bottom:76px;}
  .section-head{margin-bottom:40px;}
  .hero{padding-top:74px;padding-bottom:76px;}
  .hero-copy h1{font-size:clamp(48px,15vw,68px);}
  .hero-copy p.lead{font-size:15.5px;}
  .hero-btns{display:grid;grid-template-columns:1fr;gap:11px;margin-bottom:38px;}
  .hero-btns .btn{width:100%;min-height:52px;}
  .hero-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;}
  .hero-stats .stat{padding-left:10px;}
  .hero-stats .stat .num{font-size:25px;}
  .hero-stats .stat .label{font-size:9px;line-height:1.35;}
  .quote-form-card{padding:22px 18px;border-radius:18px;}
  .qf-head h3{font-size:27px;}
  .badge-float{position:relative;left:auto;bottom:auto;margin-top:14px;width:100%;}
  .service-card,.review-card,.blog-card{border-radius:18px;}
  .review-card,.blog-body{padding:24px;}
  .why-feat{padding:19px;border-radius:16px;}
  .cta{padding:78px 0;}
  .cta::after{display:none;}
}



/* ===== Refined introduction and services ===== */
.intro{overflow:hidden;background:radial-gradient(circle at 8% 18%,rgba(235,28,35,.16),transparent 28%),linear-gradient(180deg,#fbfaf7 0%,#f2ede3 100%);}
.intro::after{content:"";position:absolute;width:420px;height:420px;right:-180px;bottom:-230px;border:1px solid rgba(174,21,28,.16);border-radius:50%;box-shadow:0 0 0 72px rgba(235,28,35,.035),0 0 0 144px rgba(235,28,35,.02);z-index:-1;}
.intro-grid{grid-template-columns:minmax(360px,.9fr) minmax(0,1.1fr);gap:clamp(54px,7vw,96px);}
.intro-visual::before{content:"01 / CRAFT";position:absolute;left:-32px;top:48px;z-index:4;font:600 10px/1 'JetBrains Mono';letter-spacing:.22em;color:rgba(21,23,27,.48);transform:rotate(-90deg);}
.intro-panel{aspect-ratio:4/5.25;box-shadow:0 36px 90px rgba(31,25,17,.18);}
.intro-panel::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 48%,rgba(9,11,14,.34));pointer-events:none;}
.intro-tag{top:auto;right:-22px;bottom:28px;padding:18px 22px;min-width:132px;text-align:left;}
.intro-tag .n{font-size:42px;line-height:.9;}
.intro-tag .s{margin-top:7px;display:block;line-height:1.45;}
.intro-copy{position:relative;}
.intro-copy::before{content:"";display:block;width:72px;height:1px;background:linear-gradient(90deg,var(--lux-gold-dark),transparent);margin-bottom:26px;}
.intro-copy h2{max-width:720px;font-size:clamp(42px,5.2vw,68px);line-height:.92;margin-bottom:28px;}
.intro-copy .intro-lead{font-size:18px;line-height:1.75;color:#30343a;max-width:660px;margin-bottom:14px;}
.intro-copy .intro-support{font-size:15px;line-height:1.8;color:#666b73;max-width:650px;margin-bottom:0;}
.intro-list{margin:34px 0 30px;gap:12px;}
.intro-list li{min-height:76px;padding:16px 17px;align-items:center;background:rgba(255,255,255,.68);backdrop-filter:blur(12px);}
.intro-list li:hover{transform:translateY(-4px);}
.intro-list svg{width:22px;height:22px;padding:4px;border-radius:50%;background:rgba(235,28,35,.18);overflow:visible;}
.intro-list li span{display:flex;flex-direction:column;gap:3px;}
.intro-list strong{font-size:14px;letter-spacing:-.01em;}
.intro-list small{font-size:11.5px;font-weight:500;color:#858991;}
.intro-actions{display:flex;align-items:center;gap:24px;flex-wrap:wrap;}
.intro-actions .btn{border-radius:999px;padding:15px 28px;background:linear-gradient(135deg,#171a1f,#2b3038);box-shadow:0 14px 34px rgba(18,21,26,.18);}
.intro-actions .btn:hover{background:linear-gradient(135deg,#9b7736,#d8b66a);color:#111318;}
.intro-text-link{display:inline-flex;align-items:center;gap:9px;font-size:13px;font-weight:800;text-transform:uppercase;letter-spacing:.07em;color:#7d612c;}
.intro-text-link svg{width:17px;transition:transform .3s var(--ease);}
.intro-text-link:hover svg{transform:translateX(5px);}
.intro-proof{display:flex;gap:0;margin-top:34px;padding-top:22px;border-top:1px solid rgba(31,34,39,.1);flex-wrap:wrap;}
.intro-proof span{font:600 10.5px/1.4 'JetBrains Mono';letter-spacing:.08em;text-transform:uppercase;color:#777b82;padding:0 18px;border-right:1px solid rgba(31,34,39,.12);}
.intro-proof span:first-child{padding-left:0;}.intro-proof span:last-child{border-right:0;}

.services{overflow:hidden;background:linear-gradient(180deg,#111419 0%,#171b21 100%);color:#fff;}
.services::before{background:linear-gradient(90deg,transparent,rgba(235,28,35,.55),transparent);}
.services::after{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.026) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.026) 1px,transparent 1px);background-size:72px 72px;mask-image:linear-gradient(to bottom,black,transparent 80%);z-index:-1;}
.services-head{max-width:none;display:grid;grid-template-columns:1.15fr .85fr;gap:72px;align-items:end;margin-bottom:64px;}
.services-head h2{color:#fff;font-size:clamp(42px,5vw,66px);line-height:.94;max-width:760px;}
.services-head-note{padding:0 0 6px 28px;border-left:1px solid rgba(235,28,35,.38);}
.services-head-note p{color:#aeb4be!important;margin-top:11px;font-size:15px;line-height:1.75;}
.services-kicker{font:600 11px/1.2 'JetBrains Mono';letter-spacing:.14em;text-transform:uppercase;color:var(--lux-gold-light);}
.services-grid{gap:26px;counter-reset:service;}
.service-card{counter-increment:service;background:linear-gradient(155deg,#20242b,#171a20);border-color:rgba(255,255,255,.08);box-shadow:0 20px 48px rgba(0,0,0,.2);overflow:hidden;}
.service-card::after{content:"0" counter(service);position:absolute;right:22px;top:18px;z-index:4;font:700 11px/1 'JetBrains Mono';letter-spacing:.12em;color:rgba(255,255,255,.62);background:rgba(12,14,18,.48);border:1px solid rgba(235,28,35,.25);backdrop-filter:blur(10px);padding:8px 10px;border-radius:999px;}
.service-card:hover{transform:translateY(-14px);box-shadow:0 34px 80px rgba(0,0,0,.42);border-color:rgba(235,28,35,.48);}
.sc-photo{aspect-ratio:16/10;}
.sc-photo img{filter:saturate(.82) contrast(1.04);}
.service-card:hover .sc-photo img{transform:scale(1.075);filter:saturate(1.02) contrast(1.06);}
.sc-icon{width:56px;height:56px;left:27px;bottom:-28px;border:4px solid #1b1f25;}
.sc-body{padding:45px 28px 30px;}
.service-card h3{color:#fff;font-size:25px;margin-bottom:12px;}
.service-card p{color:#aeb4be;font-size:14px;line-height:1.72;min-height:72px;}
.sc-link{margin-top:20px;color:var(--lux-gold-light);}
.sc-link::after{content:"";position:absolute;left:0;bottom:-5px;width:0;height:1px;background:var(--lux-gold);transition:width .3s var(--ease);}
.sc-link{position:relative;}
.service-card:hover .sc-link::after{width:100%;}
@media (max-width:980px){.intro-grid{grid-template-columns:1fr;}.intro-visual{max-width:520px}.services-head{grid-template-columns:1fr;gap:24px}.services-head-note{max-width:680px}.service-card p{min-height:0}}
@media (max-width:640px){.intro-copy h2{font-size:42px}.intro-copy .intro-lead{font-size:16px}.intro-tag{right:12px;bottom:12px}.intro-proof{gap:10px 0}.intro-proof span{width:50%;padding:8px 12px}.intro-proof span:nth-child(2){border-right:0}.intro-proof span:last-child{width:100%;padding-left:0}.services-head h2{font-size:40px}.services-head-note{padding-left:18px}.service-card{border-radius:18px}.sc-body{padding:42px 22px 25px}}

/* ============ SERVICES: RED HOVER ACCENT + CTA CARD ============ */
.service-card:hover{box-shadow:0 30px 60px -20px rgba(0,0,0,0.35), 0 0 0 2px var(--red);}
.service-card.cta-card{
  background:linear-gradient(150deg,var(--red-dark),var(--red) 60%,var(--red-bright)) !important;
  display:flex;align-items:center;justify-content:center;text-align:center;
  padding:40px 34px;min-height:100%;
}
.service-card.cta-card::before,.service-card.cta-card::after{display:none;}
.cta-card-inner h3{color:#fff !important;font-size:22px;margin-bottom:14px;}
.cta-card-inner p{color:rgba(255,255,255,0.88) !important;font-size:14px;line-height:1.6;margin-bottom:22px;}
.cta-card-inner .btn{background:#fff;color:var(--red-dark);}
.cta-card-inner .btn:hover{background:var(--ink);color:#fff;transform:translateY(-3px);}
@media (max-width:980px){.service-card.cta-card{grid-column:span 2;}}
@media (max-width:640px){.service-card.cta-card{grid-column:span 1;}}
/* ============ PREMIUM POLISH PASS ============ */
.topbar{background:linear-gradient(90deg,#000 0%,#0d0d0f 100%);}
.topbar-left a,.topbar-left span{letter-spacing:.01em;}
nav.main-nav a{color:#d8dade;font-size:13.5px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;}
nav.main-nav a:hover{color:var(--red-bright);}
nav.main-nav a::after{background:linear-gradient(90deg,var(--red),var(--red-bright));}
.phone-cta{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.14);padding:9px 18px;border-radius:999px;transition:all .3s var(--ease);}
.phone-cta:hover{background:rgba(235,28,35,.14);border-color:rgba(235,28,35,.4);transform:translateY(-2px);}

.why-feat{padding:20px;border-radius:16px;transition:background .35s var(--ease),transform .35s var(--ease);}
.why-feat:hover{background:rgba(235,28,35,.04);transform:translateY(-4px);}
.wf-ico{
  width:52px;height:52px;border-radius:14px;border:none;
  background:linear-gradient(150deg,rgba(235,28,35,.1),rgba(235,28,35,.03));
  box-shadow:inset 0 0 0 1.5px rgba(235,28,35,.28);
}
.why-feat:hover .wf-ico{
  background:linear-gradient(150deg,var(--red-dark),var(--red-bright));
  box-shadow:0 14px 30px -10px rgba(235,28,35,.55);
  transform:rotate(-6deg) scale(1.06);
}
.wf-ico svg{color:var(--red);transition:color .3s var(--ease);}
.why-feat:hover .wf-ico svg{color:#fff;}

.partners-strip{
  position:relative;overflow:hidden;
  background:linear-gradient(135deg,var(--red-dark) 0%,var(--red) 55%,#8f1117 100%);
}
.partners-strip::before{
  content:'';position:absolute;inset:0;
  background-image:radial-gradient(circle at 15% 20%,rgba(255,255,255,.10),transparent 40%),
    radial-gradient(circle at 85% 80%,rgba(255,255,255,.08),transparent 45%);
}
.partners-eyebrow{
  position:relative;z-index:1;text-align:center;color:rgba(255,255,255,.85);
  font-size:11.5px;font-weight:700;letter-spacing:.2em;text-transform:uppercase;margin-bottom:28px;
}
.partners-grid{position:relative;z-index:1;}
.partner-box{border-radius:12px;box-shadow:0 20px 40px -16px rgba(0,0,0,.4);}
.partner-box:hover{transform:translateY(-6px) scale(1.02);box-shadow:0 26px 50px -16px rgba(0,0,0,.5);}

footer{position:relative;}
footer::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,rgba(235,28,35,.5),transparent);}
.footer-bottom{border-top:1px solid rgba(255,255,255,.06);margin-top:4px;}
.footer-social a:hover{transform:translateY(-3px) rotate(-6deg);}

.review-card:hover,.blog-card:hover{box-shadow:0 30px 55px -20px rgba(0,0,0,.28),0 0 0 1px rgba(235,28,35,.18);}
.faq-item.active{box-shadow:0 18px 40px -18px rgba(235,28,35,.18);}
.nav-static{cursor:default;-webkit-touch-callout:none;}






/* =========================================================
   COMPLETE AUTOMOTIVE LOGO
   ========================================================= */

.site-logo {
    display: block;
    width: 260px;
    height: auto;
    max-width: 100%;
}

.site-header .logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.footer-brand .logo {
    display: inline-flex;
    align-items: center;
}

.footer-brand .site-logo {
    width: 250px;
}


/* MOBILE */
@media (max-width: 768px) {

    .site-logo {
        width: 220px;
    }

    .footer-brand .site-logo {
        width: 220px;
    }

}




/* 17th Aug */

/* =========================================================
   FINAL LAYOUT FIX — REMOVE UNWANTED TOP SPACE
   ========================================================= */

html,
body {
    margin: 0 !important;
    padding: 0 !important;
}

body {
    min-height: 100vh;
}

/* WordPress admin bar should not create a huge gap */
body.admin-bar {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Keep the actual website content tight against the top bar */
.topbar {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.site-header {
    margin-top: 0 !important;
}

/* Prevent theme/page wrappers from adding an unwanted gap */
#page,
.site,
.site-content,
.site-main,
main {
    margin-top: 0 !important;
    padding-top: 0 !important;
}





/* =========================================================
   STICKY FOOTER — REMOVE WHITE SPACE BELOW FOOTER
   ========================================================= */

html,
body {
    min-height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#page,
.site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main#primary,
.site-main {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
    width: 100%;
    margin-bottom: 0 !important;
}


/* 17th Aug */

/* =========================================================
   SERVICES DROPDOWN
   ========================================================= */

.has-dropdown {
    position: relative;
}

.nav-arrow {
    display: inline-block;
    margin-left: 6px;
    color: var(--red);
    font-size: 12px;
    transition: transform .25s ease;
}

.has-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

.services-dropdown {
    position: absolute;

    top: calc(100% + 12px);
    left: 50%;

    transform: translateX(-50%) translateY(10px);

    width: 270px;
    padding: 10px;

    background: rgba(17, 19, 23, .98);

    border: 1px solid rgba(235, 28, 35, .35);
    border-radius: 12px;

    box-shadow:
        0 25px 60px rgba(0,0,0,.55),
        0 0 25px rgba(235,28,35,.08);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;

    z-index: 9999;
}

.has-dropdown:hover .services-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateX(-50%) translateY(0);
}

.services-dropdown a {
    display: block !important;
    width: 100%;

    padding: 11px 13px !important;

    color: #c9cdd2 !important;

    font-size: 12px !important;
    font-weight: 700 !important;

    letter-spacing: .04em;

    border-radius: 7px;
}

.services-dropdown a::after {
    display: none !important;
}

.services-dropdown a:hover {
    background: rgba(235,28,35,.10);
    color: #fff !important;

    padding-left: 17px !important;
}


/* =========================================================
   DESKTOP HEADER NAVIGATION — FINAL SPACING FIX
   ========================================================= */

@media (min-width: 981px) {

    /* Main header layout */
    .site-header .header-inner {
        display: flex;
        align-items: center;
        width: 100%;
        gap: 20px;
    }

    /* Logo */
    .site-header .logo {
        flex: 0 0 330px;
        max-width: 330px;
        display: flex;
        align-items: center;
    }

    .site-header .logo img {
        display: block;
        width: 100%;
        max-width: 330px;
        height: auto;
    }

    /* Desktop navigation */
    .site-header .main-nav {
        flex: 1 1 auto;
        min-width: 0;
        display: flex;
        justify-content: center;
    }

    .site-header .main-nav ul {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin: 0;
        padding: 0;
        list-style: none;
        width: 100%;
    }

    .site-header .main-nav li {
        margin: 0;
        padding: 0;
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .site-header .main-nav a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;

        font-size: 13px;
        line-height: 1.2;
        letter-spacing: 0.025em;
        font-weight: 700;

        padding: 8px 0;
    }

    /* Header phone + CTA */
    .site-header .header-actions {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        gap: 16px;
        white-space: nowrap;
    }

    .site-header .phone-cta {
        white-space: nowrap;
    }

    .site-header .btn-primary {
        white-space: nowrap;
    }

}



/* =========================================================
   DESKTOP HEADER — FINAL COMPACT VERSION
   ========================================================= */

@media (min-width: 981px) {

    /* Main header */
    .site-header .header-inner {
        display: flex;
        align-items: center;
        width: 100%;
        gap: 12px;
    }

    /* LOGO */
    .site-header .logo {
        flex: 0 0 280px;
        width: 280px;
        max-width: 280px;
        display: flex;
        align-items: center;
    }

    .site-header .logo img.site-logo {
        display: block;
        width: 280px !important;
        max-width: 280px !important;
        height: auto;
    }

    /* DESKTOP MENU */
    .site-header .main-nav {
        flex: 1 1 auto;
        min-width: 0;
        display: flex;
        justify-content: center;
    }

    .site-header .main-nav ul {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        margin: 0;
        padding: 0;
        list-style: none;
        width: 100%;
    }

    .site-header .main-nav li {
        margin: 0;
        padding: 0;
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .site-header .main-nav a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;

        font-size: 12px !important;
        line-height: 1.1;
        font-weight: 700;
        letter-spacing: 0.015em;

        padding: 6px 0;
    }

    /* PHONE + CTA */
    .site-header .header-actions {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        gap: 12px;
        white-space: nowrap;
    }

    .site-header .phone-cta {
        white-space: nowrap;
        padding: 8px 14px;
    }

    .site-header .phone-cta .num {
        font-size: 14px;
    }

    .site-header .btn-primary {
        white-space: nowrap;
        padding: 13px 24px;
        font-size: 13px;
    }

}



/* =========================================================
   INNER PAGES
   ========================================================= */

.inner-page {
    background: #080a0d;
    color: #f5f5f5;
}


/* HERO */

.inner-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        radial-gradient(circle at 15% 50%, rgba(160,21,27,.22), transparent 35%),
        radial-gradient(circle at 85% 50%, rgba(235,28,35,.10), transparent 35%),
        linear-gradient(135deg,#080a0d,#11151b);
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5,7,10,.25),
            rgba(5,7,10,.75)
        );
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0;
}

.inner-hero .eyebrow,
.section-eyebrow {
    color: #ed1c24;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.inner-hero h1 {
    margin: 0;
    font-size: clamp(54px, 7vw, 100px);
    line-height: .92;
    font-weight: 900;
    text-transform: uppercase;
}

.inner-hero h1 span,
.about-copy h2 span,
.section-heading h2 span,
.inquiry-copy h2 span {
    color: #d9b96a;
}

.inner-hero p {
    max-width: 650px;
    margin-top: 25px;
    color: #c5c8cd;
    font-size: 20px;
    line-height: 1.6;
}


/* ABOUT CONTENT */

.inner-content-section {
    padding: 100px 0;
    background: #0d1014;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 80px;
    align-items: start;
}

.about-copy h2,
.section-heading h2,
.inquiry-copy h2 {
    margin: 0 0 30px;
    font-size: clamp(38px, 4vw, 64px);
    line-height: 1;
    text-transform: uppercase;
}

.about-copy p {
    color: #b9bdc4;
    font-size: 17px;
    line-height: 1.8;
    margin: 0 0 22px;
}


/* HIGHLIGHTS */

.about-highlight {
    display: grid;
    gap: 18px;
}

.highlight-box {
    padding: 28px;
    border: 1px solid rgba(255,255,255,.10);
    border-left: 3px solid #ed1c24;
    background: #15191e;
}

.highlight-number {
    color: #d9b96a;
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 5px;
}

.highlight-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    color: #fff;
}

.highlight-box p {
    color: #999fa8;
    line-height: 1.6;
    margin: 12px 0 0;
}


/* DARK FEATURE SECTION */

.inner-dark-section {
    padding: 100px 0;
    background:
        radial-gradient(
            circle at 50% 0,
            rgba(237,28,36,.08),
            transparent 45%
        ),
        #080a0d;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 55px;
}

.section-heading p {
    color: #aeb3ba;
    font-size: 17px;
    line-height: 1.7;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.feature-card {
    padding: 32px 25px;
    border: 1px solid rgba(255,255,255,.08);
    background: #11151a;
}

.feature-icon {
    color: #ed1c24;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 17px;
    line-height: 1.25;
    margin: 0 0 15px;
}

.feature-card p {
    color: #9da3ab;
    line-height: 1.65;
    margin: 0;
}


/* INQUIRY */

.inner-inquiry-section {
    padding: 100px 0;
    background: #15191e;
}

.inquiry-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    align-items: center;
}

.inquiry-copy p {
    color: #b5bac1;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.inquiry-form {
    padding: 40px;
    border: 1px solid rgba(237,28,36,.35);
    background: #101419;
}

.form-heading h3 {
    margin: 0 0 10px;
    font-size: 30px;
    text-transform: uppercase;
}

.form-heading p {
    color: #9ea4ac;
    margin: 0 0 25px;
}

.inquiry-form form {
    display: grid;
    gap: 14px;
}

.inquiry-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(255,255,255,.10);
    background: #1b2026;
    color: #fff;
    padding: 16px 17px;
    font-family: inherit;
    font-size: 15px;
    border-radius: 4px;
}

.inquiry-form textarea {
    resize: vertical;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
    color: #7f858d;
}

.inquiry-form .btn {
    border: 0;
    cursor: pointer;
}


/* MOBILE */

@media (max-width: 900px) {

    .inner-hero {
        min-height: 360px;
    }

    .inner-hero-content {
        padding: 70px 20px;
    }

    .about-grid,
    .inquiry-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .inner-content-section,
    .inner-dark-section,
    .inner-inquiry-section {
        padding: 70px 20px;
    }

}

@media (max-width: 640px) {

    .inner-hero {
        min-height: 320px;
    }

    .inner-hero h1 {
        font-size: 52px;
    }

    .inner-hero p {
        font-size: 16px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .inquiry-form {
        padding: 25px 20px;
    }

    .inquiry-form .form-row {
        grid-template-columns: 1fr;
    }

}



/* =========================================================
   COMPLETE AUTOMOTIVE
   CONTACT FORM 7 – QUOTE FORM
   ========================================================= */

.cac-quote-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}


/* FORM ROW */

.cac-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}


/* FIELD */

.cac-field {
    width: 100%;
}

.cac-field p {
    margin: 0;
}


/* INPUTS */

.cac-quote-form input[type="text"],
.cac-quote-form input[type="tel"],
.cac-quote-form input[type="email"],
.cac-quote-form select,
.cac-quote-form textarea {

    width: 100%;
    box-sizing: border-box;

    background: rgba(255,255,255,.055);

    border: 1px solid rgba(255,255,255,.11);

    border-radius: 13px;

    padding: 14px 16px;

    color: #ffffff;

    font-family: 'Manrope', sans-serif;

    font-size: 14px;

    line-height: 1.4;

    outline: none;

    transition:
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}


/* TEXTAREA */

.cac-quote-form textarea {

    min-height: 110px;

    resize: none;
}


/* PLACEHOLDERS */

.cac-quote-form input::placeholder,
.cac-quote-form textarea::placeholder {

    color: #9ba0a8;

    opacity: 1;
}


/* SELECT */

.cac-quote-form select {

    color: #9ba0a8;

    appearance: none;

    -webkit-appearance: none;

    background-image:
        linear-gradient(45deg, transparent 50%, #aaa 50%),
        linear-gradient(135deg, #aaa 50%, transparent 50%);

    background-position:
        calc(100% - 20px) 50%,
        calc(100% - 15px) 50%;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;
}

.cac-quote-form select:valid {
    color: #ffffff;
}


/* HOVER */

.cac-quote-form input:hover,
.cac-quote-form select:hover,
.cac-quote-form textarea:hover {

    border-color: rgba(235,28,35,.35);

    background: rgba(255,255,255,.072);
}


/* FOCUS */

.cac-quote-form input:focus,
.cac-quote-form select:focus,
.cac-quote-form textarea:focus {

    border-color: #d9b96a;

    background: rgba(255,255,255,.065);

    box-shadow:
        0 0 0 3px rgba(235,28,35,.10);

    transform: translateY(-1px);
}


/* =========================================================
   PHOTO UPLOAD BOX
   ========================================================= */

.cac-upload-wrapper {
    width: 100%;
}


.cac-upload-box {

    display: flex;

    align-items: center;

    gap: 13px;

    width: 100%;

    box-sizing: border-box;

    padding: 14px 16px;

    border:
        1px dashed
        rgba(235,28,35,.65);

    border-radius: 13px;

    background:
        rgba(235,28,35,.07);

    cursor: pointer;

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}


.cac-upload-box:hover {

    background:
        rgba(235,28,35,.12);

    border-color:
        #d9b96a;

    transform:
        translateY(-1px);
}


/* CAMERA ICON */

.cac-upload-icon {

    width: 24px;

    height: 24px;

    flex: 0 0 24px;

    color: #ff3038;
}


.cac-upload-icon svg {

    width: 24px;

    height: 24px;

    display: block;
}


/* UPLOAD TEXT */

.cac-upload-text {

    display: block;

    min-width: 0;
}


.cac-upload-text strong {

    display: block;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    line-height: 1.35;
}


.cac-upload-text span {

    display: block;

    margin-top: 2px;

    color: #aeb3bb;

    font-size: 12px;

    line-height: 1.4;
}


/* HIDDEN FILE INPUTS */

.cac-hidden-uploads {

    position: absolute;

    width: 1px;

    height: 1px;

    overflow: hidden;

    clip: rect(0,0,0,0);

    clip-path: inset(50%);

    white-space: nowrap;
}


.cac-hidden-uploads p {

    margin: 0;
}


/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.cac-submit-wrap {

    position: relative;

    width: 100%;
}


.cac-submit {

    width: 100% !important;

    min-height: 58px !important;

    padding: 15px 55px 15px 22px !important;

    border: 0 !important;

    border-radius: 14px !important;

    background:
        linear-gradient(
            135deg,
            #d51920,
            #f1262d
        ) !important;

    color: #ffffff !important;

    font-family: 'Manrope', sans-serif !important;

    font-size: 14px !important;

    font-weight: 800 !important;

    letter-spacing: .04em !important;

    text-transform: uppercase !important;

    cursor: pointer;

    box-shadow:
        0 14px 34px rgba(235,28,35,.28);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.cac-submit:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 20px 44px rgba(235,28,35,.40);
}


/* ARROW */

.cac-submit-arrow {

    position: absolute;

    top: 50%;

    right: 20px;

    transform:
        translateY(-50%);

    pointer-events: none;

    color: #ffffff;
}


.cac-submit-arrow svg {

    width: 21px;

    height: 21px;

    display: block;
}


/* =========================================================
   PRIVACY FOOTER
   ========================================================= */

.cac-form-foot {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 2px;

    color: #7f858d;

    font-size: 11.5px;

    line-height: 1.4;
}


.cac-form-foot svg {

    width: 14px;

    height: 14px;

    flex: 0 0 14px;
}


/* =========================================================
   CF7 VALIDATION
   ========================================================= */

.cac-quote-form
.wpcf7-not-valid {

    border-color:
        #ed1c24 !important;
}


.cac-quote-form
.wpcf7-not-valid-tip {

    color:
        #ff5b61;

    font-size:
        11px;

    margin-top:
        5px;
}


.cac-quote-form
.wpcf7-response-output {

    margin:
        12px 0 0 !important;

    padding:
        10px 12px !important;

    border-radius:
        8px !important;

    font-size:
        12px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .cac-form-row {

        grid-template-columns: 1fr;

        gap: 12px;
    }

    .cac-quote-form input[type="text"],
    .cac-quote-form input[type="tel"],
    .cac-quote-form input[type="email"],
    .cac-quote-form select,
    .cac-quote-form textarea {

        font-size: 14px;

        padding: 14px;
    }

    .cac-upload-box {

        padding: 14px;
    }

    .cac-submit {

        min-height: 56px !important;
    }

}


/* =========================================================
   CONTACT FORM 7 - COMPLETE AUTOMOTIVE QUOTE FORM
   ========================================================= */

.cf7-quote-form {
    width: 100%;
    box-sizing: border-box;
}

.cf7-form-head {
    margin-bottom: 26px;
}

.cf7-form-head h3 {
    margin: 0 0 8px;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: .02em;
    color: #ffffff;
}

.cf7-form-head p {
    margin: 0;
    font-size: 17px;
    line-height: 1.5;
    color: #c9cbd0;
}

.cf7-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.cf7-field {
    width: 100%;
    margin-bottom: 18px;
}

.cf7-field input,
.cf7-field textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 17px;
    background: #25282d;
    color: #ffffff;
    font-family: inherit;
    font-size: 17px;
    outline: none;
    transition: .25s ease;
}

.cf7-field input {
    height: 64px;
    padding: 0 24px;
}

.cf7-field textarea {
    min-height: 128px;
    padding: 20px 24px;
    resize: vertical;
}

.cf7-field input::placeholder,
.cf7-field textarea::placeholder {
    color: #9a9da5;
    opacity: 1;
}

.cf7-field input:focus,
.cf7-field textarea:focus {
    border-color: #ed1c24;
    box-shadow: 0 0 0 2px rgba(237,28,36,.10);
}

/* PHOTO UPLOAD */

.cf7-upload-box {
    border: 1px dashed rgba(237,28,36,.8);
    border-radius: 17px;
    background: rgba(237,28,36,.04);
    padding: 22px 24px;
    margin-top: 4px;
    margin-bottom: 22px;
}

.cf7-upload-icon {
    font-size: 27px;
    margin-bottom: 7px;
}

.cf7-upload-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 14px;
}

.cf7-upload-text strong {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.3;
}

.cf7-upload-text span {
    color: #a9abb1;
    font-size: 14px;
}

.cf7-upload-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cf7-upload-fields input[type="file"] {
    width: 100%;
    color: #bfc1c7;
    font-size: 13px;
}

.cf7-upload-fields input[type="file"]::file-selector-button {
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 8px;
    background: #25282d;
    color: #ffffff;
    padding: 8px 12px;
    margin-right: 8px;
    cursor: pointer;
}

/* SUBMIT BUTTON */

.cf7-submit-wrap {
    margin-top: 4px;
}

.cf7-submit {
    width: 100%;
    min-height: 64px;
    border: 0;
    border-radius: 999px;
    background: #ed1c24;
    color: #ffffff;
    font-family: inherit;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: .05em;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.cf7-submit:hover {
    background: #ff242c;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(237,28,36,.25);
}

.cf7-submit:active {
    transform: translateY(0);
}

/* CF7 VALIDATION */

.cf7-quote-form .wpcf7-not-valid {
    border-color: #ed1c24 !important;
}

.cf7-quote-form .wpcf7-not-valid-tip {
    color: #ff5a60;
    font-size: 13px;
    margin-top: 5px;
}

.cf7-quote-form .wpcf7-response-output {
    margin: 18px 0 0 !important;
    padding: 12px 15px !important;
    border-radius: 10px;
    color: #ffffff;
}

/* MOBILE */

@media (max-width: 700px) {

    .cf7-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .cf7-form-head h3 {
        font-size: 27px;
    }

    .cf7-form-head p {
        font-size: 15px;
    }

    .cf7-field input {
        height: 58px;
        padding: 0 19px;
        font-size: 16px;
    }

    .cf7-field textarea {
        min-height: 115px;
        padding: 18px 19px;
        font-size: 16px;
    }

    .cf7-upload-fields {
        grid-template-columns: 1fr;
    }

    .cf7-submit {
        min-height: 58px;
        font-size: 16px;
    }
}


/* =========================================================
   CONTACT FORM 7 — COMPLETE AUTOMOTIVE QUOTE FORM
   Final visual overrides
   ========================================================= */

/* Remove CF7 default paragraph spacing */
.quote-form-card .qf-form form.wpcf7-form > p {
    margin: 0;
    padding: 0;
}

/* Remove unwanted CF7 wrapper spacing */
.quote-form-card .qf-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Main form spacing */
.quote-form-card .qf-form form.wpcf7-form {
    margin: 0;
    padding: 0;
}

/* Two-column row */
.quote-form-card .qf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
    margin: 0 0 16px;
}

/* All standard fields */
.quote-form-card .qf-form input.qf-input,
.quote-form-card .qf-form select.qf-select,
.quote-form-card .qf-form textarea.qf-textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;

    margin: 0 0 16px;
    padding: 14px 16px;

    min-height: 56px;

    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 13px;

    color: #ffffff;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.4;

    outline: none;

    transition:
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}

/* Remove bottom margin from fields inside qf-row */
.quote-form-card .qf-row input.qf-input {
    margin-bottom: 0;
}

/* Textarea — IMPORTANT: keep it compact */
.quote-form-card .qf-form textarea.qf-textarea {
    height: 112px;
    min-height: 112px;
    max-height: 180px;

    resize: vertical;

    padding-top: 15px;
    padding-bottom: 15px;
}

/* Placeholder */
.quote-form-card .qf-form input::placeholder,
.quote-form-card .qf-form textarea::placeholder {
    color: rgba(255,255,255,.48);
    opacity: 1;
}

/* Select text */
.quote-form-card .qf-form select.qf-select {
    color: rgba(255,255,255,.9);
    appearance: auto;
    cursor: pointer;
}

/* Select dropdown options */
.quote-form-card .qf-form select.qf-select option {
    background: #1c1f23;
    color: #ffffff;
}

/* Focus state */
.quote-form-card .qf-form input.qf-input:focus,
.quote-form-card .qf-form select.qf-select:focus,
.quote-form-card .qf-form textarea.qf-textarea:focus {
    border-color: rgba(235,28,35,.75);
    background: rgba(255,255,255,.07);
    box-shadow: 0 0 0 2px rgba(235,28,35,.08);
}

/* =========================================================
   PHOTO UPLOAD
   ========================================================= */

.quote-form-card .snap-upload {
    display: flex;
    align-items: center;
    gap: 14px;

    width: 100%;
    min-height: 78px;

    box-sizing: border-box;

    margin: 0 0 16px;
    padding: 14px 18px;

    background: rgba(235,28,35,.055);
    border: 1px dashed rgba(235,28,35,.65);
    border-radius: 13px;

    color: #ffffff;
    cursor: pointer;

    transition:
        background .25s ease,
        border-color .25s ease;
}

/* Camera icon */
.quote-form-card .snap-upload svg {
    width: 27px;
    height: 27px;
    min-width: 27px;

    color: #ff2630;
}

/* Upload text */
.quote-form-card .snap-upload > span {
    display: flex;
    flex-direction: column;
    gap: 3px;

    line-height: 1.3;
}

.quote-form-card .snap-upload strong {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.quote-form-card .snap-upload > span > span {
    font-size: 14px;
    color: rgba(255,255,255,.55);
}

/* Hide actual file input */
.quote-form-card .snap-upload input[type="file"] {
    display: none;
}

/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.quote-form-card .qf-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: 100%;
    min-height: 68px;

    margin: 0;
    padding: 16px 24px;

    border: 0;
    border-radius: 14px;

    background: #ed1c24;
    color: #ffffff;

    font-family: inherit;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: .02em;

    cursor: pointer;

    box-shadow: 0 14px 28px rgba(237,28,36,.20);

    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.quote-form-card .qf-submit:hover {
    background: #ff252d;
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(237,28,36,.28);
}

.quote-form-card .qf-submit svg {
    width: 20px;
    height: 20px;
}

/* =========================================================
   CF7 RESPONSE / VALIDATION
   ========================================================= */

.quote-form-card .wpcf7-response-output {
    margin: 18px 0 0 !important;
    padding: 12px 14px !important;

    border-radius: 0 !important;

    font-size: 14px;
    line-height: 1.4;
}

/* Hide default individual validation messages until needed */
.quote-form-card .wpcf7-not-valid-tip {
    margin: -10px 0 12px;
    font-size: 12px;
    color: #ff4b52;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .quote-form-card .qf-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

    .quote-form-card .qf-row input.qf-input {
        margin-bottom: 16px;
    }

    .quote-form-card .qf-form input.qf-input,
    .quote-form-card .qf-form select.qf-select {
        min-height: 54px;
        height: 54px;

        padding: 13px 15px;

        font-size: 15px;
    }

    .quote-form-card .qf-form textarea.qf-textarea {
        height: 112px;
        min-height: 112px;
    }

    .quote-form-card .snap-upload {
        min-height: 72px;
        padding: 13px 15px;
    }

    .quote-form-card .snap-upload strong {
        font-size: 15px;
    }

    .quote-form-card .snap-upload > span > span {
        font-size: 13px;
    }

    .quote-form-card .qf-submit {
        min-height: 60px;
        font-size: 16px;
    }
}

/* =========================================================
   INNER PAGE HERO — REDUCE EMPTY TOP SPACE
   ========================================================= */

.inner-hero,
.page-hero,
.about-hero {
    padding-top: 55px !important;
    padding-bottom: 70px !important;
}

/* If the existing generic .hero styles are affecting
   the inner page, keep the content closer to the header */
.inner-hero .hero-grid,
.page-hero .hero-grid,
.about-hero .hero-grid {
    margin-top: 0 !important;
}

/* Desktop */
@media (min-width: 769px) {
    .inner-hero,
    .page-hero,
    .about-hero {
        min-height: 560px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .inner-hero,
    .page-hero,
    .about-hero {
        padding-top: 40px !important;
        padding-bottom: 50px !important;
        min-height: auto;
    }
}


@media (min-width: 769px) {
    .hero.inner-hero,
    .hero.page-hero,
    .hero.about-hero {
        padding-top: 55px !important;
    }
}


/* =========================================================
   ABOUT / INNER PAGE HERO — FINAL POSITION FIX
   ========================================================= */

/* Remove the excessive vertical space below the header */
.about-page .about-hero {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    min-height: 0 !important;
    height: auto !important;
}

/* Actual hero content */
.about-page .about-hero-inner {
    min-height: 0 !important;
    height: auto !important;

    padding-top: 55px !important;
    padding-bottom: 65px !important;

    display: flex !important;
    align-items: flex-start !important;
}

/* Move the text itself upward */
.about-page .about-hero-copy {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Desktop */
@media (min-width: 769px) {

    .about-page .about-hero-inner {
        padding-top: 55px !important;
    }

}

/* Mobile */
@media (max-width: 768px) {

    .about-page .about-hero-inner {
        padding-top: 38px !important;
        padding-bottom: 45px !important;
    }

}


/* =========================================================
   ABOUT HERO IMAGE
   ========================================================= */

.about-page .about-hero {
    position: relative;
    overflow: hidden;

    background-image:
        linear-gradient(
            90deg,
            rgba(7,9,12,.94) 0%,
            rgba(7,9,12,.72) 48%,
            rgba(7,9,12,.38) 100%
        ),
        url('/wp-content/themes/complete-automotive/assets/images/about-us-hero.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Hide the old image layer */
.about-page .about-hero-image {
    display: none !important;
}


/* =========================================================
   ABOUT CONTENT — ROBUST GRID
   ========================================================= */

.about-page .about-content-section {
    width: 100%;
}

.about-page .about-content-grid {
    width: 100%;

    display: grid !important;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(380px, 460px) !important;

    gap: 70px !important;

    align-items: start !important;
}

/* LEFT */
.about-page .about-content {
    min-width: 0;
}

/* RIGHT FORM */
.about-page .about-form-column {
    width: 100%;
    min-width: 0;

    position: sticky;
    top: 100px;
}

/* Statistics */
.about-page .about-highlight-grid {
    width: 100%;

    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;

    gap: 0 !important;
}

.about-page .about-highlight {
    min-width: 0;
}

/* Desktop */
@media (min-width: 901px) {

    .about-page .about-content-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(380px, 460px) !important;
    }

}

/* Tablet/mobile */
@media (max-width: 900px) {

    .about-page .about-content-grid {
        grid-template-columns: 1fr !important;
        gap: 45px !important;
    }

    .about-page .about-form-column {
        position: static !important;
    }

}

/* Mobile statistics */
@media (max-width: 600px) {

    .about-page .about-highlight-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .about-page .about-highlight {
        padding: 20px 10px !important;
    }

    .about-page .about-highlight strong {
        font-size: 28px;
    }

    .about-page .about-highlight span {
        font-size: 10px;
    }

}


/* =========================================================
   MOBILE STICKY CALL / BOOK BAR
   ========================================================= */

.mobile-sticky-cta {
    display: none;
}

@media (max-width: 768px) {

    .mobile-sticky-cta {
        position: fixed;

        left: 0;
        right: 0;
        bottom: 0;

        width: 100%;

        height: 64px;

        display: grid;
        grid-template-columns: 1fr 1fr;

        z-index: 99999;

        box-shadow:
            0 -5px 20px rgba(0,0,0,.25);

        padding-bottom: env(safe-area-inset-bottom);

        background: #ed1c24;
    }

    .mobile-sticky-cta a {
        min-width: 0;

        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;

        color: #fff;

        text-decoration: none;

        font-size: 16px;
        font-weight: 800;

        letter-spacing: .02em;

        transition:
            background .2s ease,
            transform .2s ease;
    }

    .mobile-cta-call {
        background: #ed1c24;
    }

    .mobile-cta-book {
        background: #ed1c24;

        border-left: 1px solid rgba(255,255,255,.55);
    }

    .mobile-sticky-cta a:active {
        transform: scale(.98);
    }

    .mobile-cta-icon {
        font-size: 19px;
        line-height: 1;
    }

    /* Make room so the fixed bar never covers page content */
    body {
        padding-bottom: 64px;
    }

}

/* =========================================================
   FOOTER BRANDING
   ========================================================= */

.footer-branding {
    width: 100%;

    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 4px 8px;

    padding: 18px 25px;

    background: #ed1c24;

    color: #fff;

    font-size: 15px;
    line-height: 1.5;

    text-align: center;
}

.footer-branding a {
    color: #fff;

    text-decoration: none;

    font-weight: 600;
}

.footer-branding a:hover {
    text-decoration: underline;
}

.footer-credit {
    display: inline;
}

@media (max-width: 768px) {

    .footer-branding {
        display: block;

        padding: 18px 15px;

        font-size: 12px;

        line-height: 1.7;

        padding-bottom: 85px;
    }

    .footer-credit {
        display: block;
        margin-top: 3px;
    }

}




/* =========================================================
   HOME HERO — MOVE CONTENT UP
   ========================================================= */

body.home .hero {
    padding-top: 25px !important;
    padding-bottom: 55px !important;
}

body.home .hero-inner {
    transform: translateY(-55px);
}

/* Desktop */
@media (min-width: 1000px) {

    body.home .hero {
        min-height: 650px;
    }

    body.home .hero-inner {
        transform: translateY(-70px);
    }

}

/* Tablet */
@media (min-width: 641px) and (max-width: 999px) {

    body.home .hero-inner {
        transform: translateY(-45px);
    }

}

/* Mobile */
@media (max-width: 640px) {

    body.home .hero {
        padding-top: 20px !important;
    }

    body.home .hero-inner {
        transform: translateY(-30px);
    }

}



/* =========================================================
   ABOUT US — CF7 FORM ONLY
   ========================================================= */

body.page-id-19 .about-cf7-form {
    width: 100%;
}

body.page-id-19 .about-cf7-form p {
    margin: 0 0 13px !important;
    padding: 0 !important;
}

body.page-id-19 .about-cf7-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    margin: 0;
}

body.page-id-19 .about-cf7-form input[type="text"],
body.page-id-19 .about-cf7-form input[type="tel"],
body.page-id-19 .about-cf7-form input[type="email"],
body.page-id-19 .about-cf7-form select,
body.page-id-19 .about-cf7-form textarea {

    width: 100% !important;
    max-width: 100% !important;

    min-height: 56px;

    padding: 15px 17px !important;

    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 14px !important;

    background: rgba(255,255,255,.055) !important;

    color: #fff !important;

    font-family: inherit !important;
    font-size: 16px !important;

    box-sizing: border-box !important;
}

body.page-id-19 .about-cf7-form textarea {
    min-height: 120px !important;
    resize: vertical;
}

body.page-id-19 .about-cf7-form input::placeholder,
body.page-id-19 .about-cf7-form textarea::placeholder {
    color: rgba(255,255,255,.55) !important;
}

body.page-id-19 .about-cf7-form select option {
    background: #20242b;
    color: #fff;
}

body.page-id-19 .about-cf7-form input[type="file"] {
    width: 100%;
    padding: 14px;

    border: 1px dashed rgba(255,35,45,.65);
    border-radius: 14px;

    background: rgba(255,35,45,.06);

    color: rgba(255,255,255,.75);
}

body.page-id-19 .about-cf7-form input[type="submit"] {
    width: 100% !important;

    min-height: 58px;

    margin-top: 8px;

    border: 0 !important;
    border-radius: 14px !important;

    background: #ed1c24 !important;

    color: #fff !important;

    font-size: 17px !important;
    font-weight: 900 !important;

    cursor: pointer;

    box-shadow: 0 12px 30px rgba(237,28,36,.25);
}


/* NAME + PHONE */

body.page-id-19 .about-cf7-form .about-cf7-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin-bottom: 13px;
}

body.page-id-19 .about-cf7-form .about-cf7-row p {
    margin: 0 !important;
}


/* MOBILE */

@media (max-width: 600px) {

    body.page-id-19 .about-cf7-form .about-cf7-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

}


/* =========================================================
   HOME PAGE - QUOTE FORM
   FINAL VERSION
   ABOUT US PAGE IS NOT AFFECTED
   ========================================================= */


/* ---------------------------------------------------------
   FORM COLUMN
   Keep Home form at a controlled width
   --------------------------------------------------------- */

body.home .hero-form-column {
    width: 100% !important;
    max-width: 620px !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    justify-self: end !important;
}


/* ---------------------------------------------------------
   CONTACT FORM
   --------------------------------------------------------- */

body.home .hero-form-column form.wpcf7-form {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}


/* ---------------------------------------------------------
   IMPORTANT:
   CF7 automatically creates <p> wrappers.
   Reset them so they don't create the overlap.
   --------------------------------------------------------- */

body.home .hero-form-column form.wpcf7-form > p {
    margin: 0 0 14px 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}


/* ---------------------------------------------------------
   NAME + PHONE
   --------------------------------------------------------- */

body.home .hero-form-column .qf-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 20px !important;

    width: 100% !important;
    max-width: 100% !important;

    margin: 0 0 14px 0 !important;
    padding: 0 !important;

    box-sizing: border-box !important;
}


/* Remove CF7 paragraph spacing inside row */

body.home .hero-form-column .qf-row p {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
}


/* ---------------------------------------------------------
   CF7 WRAPPERS
   --------------------------------------------------------- */

body.home .hero-form-column .wpcf7-form-control-wrap {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
}


/* ---------------------------------------------------------
   ALL INPUTS
   --------------------------------------------------------- */

body.home .hero-form-column input[type="text"],
body.home .hero-form-column input[type="tel"],
body.home .hero-form-column input[type="email"],
body.home .hero-form-column select,
body.home .hero-form-column textarea {

    display: block !important;

    width: 100% !important;
    max-width: 100% !important;

    min-width: 0 !important;

    box-sizing: border-box !important;

    margin: 0 !important;

    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 14px !important;

    background: rgba(255,255,255,.055) !important;

    color: #ffffff !important;

    font-family: inherit !important;

    font-size: 16px !important;
}


/* ---------------------------------------------------------
   TEXT / PHONE / EMAIL
   --------------------------------------------------------- */

body.home .hero-form-column input[type="text"],
body.home .hero-form-column input[type="tel"],
body.home .hero-form-column input[type="email"] {

    height: 62px !important;

    padding: 0 20px !important;

    line-height: 1.2 !important;

}


/* ---------------------------------------------------------
   SELECT
   --------------------------------------------------------- */

body.home .hero-form-column select {

    height: 62px !important;

    padding: 0 20px !important;

    line-height: 1.2 !important;

}


/* ---------------------------------------------------------
   TEXTAREA
   --------------------------------------------------------- */

body.home .hero-form-column textarea {

    min-height: 130px !important;

    height: 130px !important;

    padding: 17px 20px !important;

    line-height: 1.4 !important;

    resize: vertical !important;

}


/* ---------------------------------------------------------
   PLACEHOLDERS
   --------------------------------------------------------- */

body.home .hero-form-column input::placeholder,
body.home .hero-form-column textarea::placeholder {

    color: rgba(255,255,255,.55) !important;
    opacity: 1 !important;

}


/* ---------------------------------------------------------
   SELECT OPTIONS
   --------------------------------------------------------- */

body.home .hero-form-column select option {

    background: #20242b !important;
    color: #ffffff !important;

}


/* ---------------------------------------------------------
   FILE UPLOAD
   --------------------------------------------------------- */

body.home .hero-form-column input[type="file"] {

    display: block !important;

    width: 100% !important;
    max-width: 100% !important;

    box-sizing: border-box !important;

    margin: 0 0 10px 0 !important;

    padding: 12px 14px !important;

    border: 1px dashed rgba(237,28,36,.65) !important;

    border-radius: 14px !important;

    background: rgba(237,28,36,.05) !important;

    color: rgba(255,255,255,.7) !important;

}


/* ---------------------------------------------------------
   SUBMIT
   --------------------------------------------------------- */

body.home .hero-form-column input[type="submit"] {

    display: block !important;

    width: 100% !important;
    max-width: 100% !important;

    min-height: 60px !important;

    box-sizing: border-box !important;

    margin: 12px 0 0 0 !important;

    padding: 15px 25px !important;

    border: 0 !important;

    border-radius: 14px !important;

    background: #ed1c24 !important;

    color: #ffffff !important;

    font-size: 17px !important;

    font-weight: 800 !important;

    cursor: pointer !important;

    box-shadow: 0 12px 30px rgba(237,28,36,.25) !important;

}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 767px) {

    body.home .hero-form-column {

        width: 100% !important;
        max-width: 100% !important;

    }

    body.home .hero-form-column .qf-row {

        grid-template-columns: 1fr !important;

        gap: 14px !important;

    }

}

/* =========================================================
   HOME HERO FORM — OUTER WIDTH ONLY
   ========================================================= */

@media (min-width: 1025px) {

    body.home .qf-form {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    /* Keep all CF7 fields inside the form */
    body.home .qf-form input,
    body.home .qf-form select,
    body.home .qf-form textarea {
        box-sizing: border-box !important;
        max-width: 100% !important;
    }

    /* Name + Phone */
    body.home .qf-form .qf-row {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 18px !important;
        width: 100% !important;
        margin: 0 !important;
    }

    body.home .qf-form .qf-row > p {
        width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
    }

    body.home .qf-form .wpcf7-form-control-wrap {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
    }

}


/* =========================================================
   HOME HERO — QUOTE CARD WIDTH FIX
   ========================================================= */

@media (min-width: 761px) {

    body.home .hero-grid {
        align-items: start;
    }

    body.home .hero-visual {
        display: flex;
        justify-content: flex-end;
        width: 100%;
    }

    body.home .quote-form-card {
        width: 100%;
        max-width: 600px;
        box-sizing: border-box;
    }

    body.home .qf-form {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

}







/* =========================================================
   HOME PAGE QUOTE FORM — ISOLATED FIX
   DO NOT AFFECT ABOUT US FORM
   ========================================================= */

body.home #quoteForm {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

body.home #quoteForm .qf-form {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* The CF7 row */
body.home #quoteForm .qf-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 20px;
    row-gap: 12px;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remove WordPress/CF7 paragraph spacing */
body.home #quoteForm .qf-row > p {
    margin: 0 !important;
    padding: 0 !important;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

/* Make the CF7 wrapper fill its grid cell */
body.home #quoteForm .qf-row .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Make every field stay inside its grid cell */
body.home #quoteForm .qf-row input,
body.home #quoteForm .qf-row select,
body.home #quoteForm .qf-row textarea {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

/* Full-width fields */
body.home #quoteForm .qf-row > p:nth-child(n+3) {
    grid-column: 1 / -1;
}

/* Textarea */
body.home #quoteForm .qf-row textarea {
    width: 100% !important;
    max-width: 100% !important;
    resize: vertical;
}

/* Submit button */
body.home #quoteForm .qf-row input[type="submit"] {
    width: 100% !important;
    max-width: 100% !important;
}

/* Keep the form card itself contained */
body.home .quote-form-card {
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

    body.home #quoteForm .qf-row {
        grid-template-columns: 1fr;
        row-gap: 12px;
    }

    body.home #quoteForm .qf-row > p {
        grid-column: 1 / -1 !important;
    }

    body.home .quote-form-card {
        max-width: 100%;
    }
}

/* =========================================================
   COMPLETE AUTOMOTIVE — HOME QUOTE FORM
   FINAL CLEAN LAYOUT
   ========================================================= */

/* The #quoteForm element is the actual .qf-form wrapper.
   Keep the quote card and CF7 form at the same controlled width. */

body.home .quote-form-card {
    width: 100% !important;
    max-width: 600px !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
}

body.home #quoteForm {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* CF7 outer wrapper */
body.home #quoteForm .wpcf7,
body.home #quoteForm .wpcf7 form,
body.home #quoteForm form.wpcf7-form {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
}

/* IMPORTANT:
   Contact Form 7 automatically creates <p> wrappers.
   Remove their default margins so we control spacing ourselves. */
body.home #quoteForm form.wpcf7-form > p {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* Make the CF7 form itself control vertical spacing.
   This also handles fields that sit OUTSIDE .qf-row. */
body.home #quoteForm form.wpcf7-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
}

/* =========================================================
   NAME + PHONE ROW
   ========================================================= */

body.home #quoteForm .qf-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;

    /* Desktop:
       22px between Name and Phone
       14px between grid rows */
    column-gap: 22px !important;
    row-gap: 14px !important;

    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;

    box-sizing: border-box !important;
}

/* CF7 <p> elements inside the row */
body.home #quoteForm .qf-row > p {
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* If Email / Damage / Message / Submit are inside the same
   qf-row, make the third and later fields full width. */
body.home #quoteForm .qf-row > p:nth-child(n + 3) {
    grid-column: 1 / -1 !important;
}

/* CF7 field wrapper */
body.home #quoteForm .wpcf7-form-control-wrap {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* =========================================================
   ALL QUOTE FIELDS
   ========================================================= */

body.home #quoteForm input[type="text"],
body.home #quoteForm input[type="tel"],
body.home #quoteForm input[type="email"],
body.home #quoteForm select,
body.home #quoteForm textarea {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;

    box-sizing: border-box !important;

    margin: 0 !important;
}

/* Keep the existing visual field styling */
body.home #quoteForm input[type="text"],
body.home #quoteForm input[type="tel"],
body.home #quoteForm input[type="email"],
body.home #quoteForm select,
body.home #quoteForm textarea {
    font-family: inherit;
}

/* =========================================================
   SUBMIT
   ========================================================= */

body.home #quoteForm input[type="submit"],
body.home #quoteForm button[type="submit"] {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

/* Validation / response messages */
body.home #quoteForm .wpcf7-not-valid-tip {
    display: block;
    margin: 5px 0 0 !important;
}

body.home #quoteForm .wpcf7-response-output {
    margin: 0 !important;
    box-sizing: border-box !important;
}

/* =========================================================
   DESKTOP HERO POSITION
   ========================================================= */

@media (min-width: 761px) {

    body.home .hero-grid {
        align-items: start !important;
    }

    body.home .hero-visual {
        display: flex;
        justify-content: flex-end;
        width: 100%;
        min-width: 0;
    }

    body.home .quote-form-card {
        width: 100% !important;
        max-width: 600px !important;
    }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) and (min-width: 761px) {

    body.home .quote-form-card {
        max-width: 100% !important;
    }

    body.home #quoteForm .qf-row {
        column-gap: 18px !important;
        row-gap: 14px !important;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

    body.home .quote-form-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    /* ONE field per line */
    body.home #quoteForm .qf-row {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;

        /* This is the important mobile spacing */
        row-gap: 14px !important;
        column-gap: 0 !important;

        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    body.home #quoteForm .qf-row > p {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* The form gap also covers fields outside .qf-row,
       e.g. Email Address, Damage Type and Message. */
    body.home #quoteForm form.wpcf7-form {
        gap: 14px !important;
    }

    body.home #quoteForm input[type="text"],
    body.home #quoteForm input[type="tel"],
    body.home #quoteForm input[type="email"],
    body.home #quoteForm select,
    body.home #quoteForm textarea {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
}

/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    body.home .quote-form-card {
        max-width: 100% !important;
    }

    body.home #quoteForm form.wpcf7-form {
        gap: 13px !important;
    }

    body.home #quoteForm .qf-row {
        row-gap: 13px !important;
    }
}

/* =========================================
   SERVICES DROPDOWN - FINAL CLICK / HOVER FIX
   ========================================= */

/*
   The original dropdown had a gap between the
   SERVICES link and the dropdown. When the mouse
   crossed that gap, :hover was lost, so the menu
   could open but its items could not be clicked.

   This version adds an invisible bridge and keeps
   the dropdown above the hero/form content.
*/

.site-header,
.site-header .header-inner,
.site-header .main-nav,
.site-header .main-nav > ul,
.site-header .main-nav > ul > li {
    overflow: visible !important;
}

.site-header {
    position: sticky !important;
    z-index: 10000 !important;
}

.site-header .main-nav {
    position: relative;
    z-index: 10001 !important;
}

.site-header .main-nav > ul {
    position: relative;
    z-index: 10001 !important;
}

.site-header .main-nav li.has-dropdown {
    position: relative;
    z-index: 10002 !important;
}

.services-dropdown {
    position: absolute !important;
    z-index: 10003 !important;

    /* Keep a small visual gap below SERVICES */
    top: calc(100% + 10px) !important;
    left: 50% !important;

    transform: translateX(-50%) translateY(10px);
    pointer-events: none;
}

/* Invisible bridge across the gap.
   This prevents the hover state from disappearing
   while the mouse moves into the dropdown. */
.services-dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 12px;
    background: transparent;
    pointer-events: auto;
}

.has-dropdown:hover .services-dropdown,
.has-dropdown:focus-within .services-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0);
}

.services-dropdown a {
    position: relative;
    z-index: 10004 !important;
    display: block !important;
    width: 100% !important;
    cursor: pointer !important;
    pointer-events: auto !important;
}

.services-dropdown a:hover,
.services-dropdown a:focus {
    pointer-events: auto !important;
}

/* Keep dropdown above hero/form content */
.hero,
.site-main,
main#primary {
    position: relative;
    z-index: 1;
}


/* =========================================
   MOBILE MENU - SLIGHTLY SMALLER TYPOGRAPHY
   ========================================= */

@media (max-width: 980px) {
    .mobile-drawer {
        z-index: 20000 !important;
    }

    .mobile-drawer a {
        font-size: 26px !important;
        line-height: 1.05;
        padding: 11px 0 !important;
    }

    .mobile-drawer .close-drawer {
        margin-bottom: 30px;
    }
}

@media (max-width: 640px) {
    .mobile-drawer a {
        font-size: 25px !important;
        padding: 10px 0 !important;
    }
}
