/* ===========================================================
   MoveMitra — Brand Stylesheet
   "Har Shift Ka Sachha Mitra"
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root{
  /* Pulled from the logo */
  --blue-deep:   #0e2c63;
  --blue:        #1d4fa3;
  --blue-mid:    #2c63c4;
  --blue-light:  #4f86e0;
  --green-deep:  #14591f;
  --green:       #2e9e44;
  --green-mid:   #45b85a;
  --green-light: #6fd083;

  --ink:         #16202e;
  --slate:       #5b6678;
  --slate-light: #8a93a3;
  --bg:          #f5f8fc;
  --bg-soft:     #eef3fa;
  --white:       #ffffff;

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(14,44,99,0.08);
  --shadow-md: 0 12px 30px rgba(14,44,99,0.12);
  --shadow-lg: 0 24px 60px rgba(14,44,99,0.16);
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; border:none; }
input, select, textarea{ font-family:inherit; }

.container{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}

h1,h2,h3,h4{
  font-family: var(--font-display);
  color: var(--blue-deep);
  line-height:1.15;
  letter-spacing:-0.01em;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family: var(--font-display);
  font-weight:700;
  font-size:13px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color: var(--green);
  margin-bottom:12px;
}
.eyebrow::before{
  content:'';
  width:22px;
  height:2px;
  background: var(--green);
  display:inline-block;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 28px;
  border-radius:10px;
  font-family: var(--font-display);
  font-weight:600;
  font-size:15px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-primary{
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  color:#fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-accent{
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-deep) 100%);
  color:#fff;
  box-shadow: var(--shadow-sm);
}
.btn-accent:hover{ transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline{
  background:transparent;
  color: var(--blue);
  border:2px solid var(--blue);
  padding:12px 26px;
}
.btn-outline:hover{ background: var(--blue); color:#fff; }
.btn-block{ width:100%; }

/* ---------- Header / Nav ---------- */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(14,44,99,0.07);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand img{ height:46px; width:auto; }
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-text strong{
  font-family: var(--font-display);
  font-weight:800;
  font-size:19px;
  color: var(--blue-deep);
}
.brand-text strong span{ color: var(--green); }
.brand-text small{ font-size:11px; color: var(--slate); letter-spacing:0.02em; }

.nav-links{
  display:flex;
  align-items:center;
  gap:34px;
}
.nav-links a{
  font-family: var(--font-display);
  font-weight:600;
  font-size:14.5px;
  color: var(--ink);
  position:relative;
  padding:6px 0;
}
.nav-links a.active,
.nav-links a:hover{ color: var(--blue); }
.nav-links a.active::after{
  content:'';
  position:absolute;
  left:0; bottom:0;
  width:100%; height:2.5px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius:2px;
}
.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-call{
  font-family: var(--font-display);
  font-weight:700;
  font-size:14px;
  color: var(--blue-deep);
  display:flex; align-items:center; gap:6px;
}

.menu-toggle{
  display:none;
  background:none;
  flex-direction:column;
  gap:5px;
  padding:6px;
}
.menu-toggle span{
  width:24px; height:2.5px; background: var(--blue-deep); border-radius:2px;
}

/* ---------- Route divider (signature element) ---------- */
.route-divider{
  position:relative;
  height:60px;
  overflow:hidden;
}
.route-divider svg{ width:100%; height:100%; }

/* ---------- Hero ---------- */
.hero{
  position:relative;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  overflow:hidden;
  padding:72px 0 40px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap:48px;
  align-items:center;
}
.hero h1{
  font-size:46px;
  margin-bottom:18px;
}
.hero h1 .accent{
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero p.lead{
  font-size:17px;
  color: var(--slate);
  max-width:480px;
  margin-bottom:30px;
}
.hero-actions{ display:flex; gap:16px; margin-bottom:34px; flex-wrap:wrap; }

.hero-stats{
  display:flex;
  gap:32px;
  flex-wrap:wrap;
}
.hero-stats div strong{
  display:block;
  font-family: var(--font-display);
  font-size:26px;
  color: var(--blue-deep);
}
.hero-stats div span{
  font-size:12.5px;
  color: var(--slate);
  text-transform:uppercase;
  letter-spacing:0.04em;
}

/* Hero illustration: route from A to B with truck */
.hero-art{
  position:relative;
  background:#fff;
  border-radius:22px;
  box-shadow: var(--shadow-lg);
  padding:30px;
  overflow:hidden;
}
.hero-art svg{ width:100%; height:auto; display:block; }

/* ---------- Trust strip ---------- */
.trust-strip{
  background: var(--blue-deep);
  padding:20px 0;
}
.trust-strip ul{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:16px;
}
.trust-strip li{
  display:flex;
  align-items:center;
  gap:10px;
  color:#dfe9ff;
  font-family: var(--font-display);
  font-weight:600;
  font-size:13.5px;
}
.trust-strip li svg{ width:20px; height:20px; flex-shrink:0; }

/* ---------- Sections ---------- */
section{ padding:84px 0; }
.section-head{
  max-width:640px;
  margin:0 auto 50px;
  text-align:center;
}
.section-head h2{ font-size:34px; margin-bottom:14px; }
.section-head p{ color: var(--slate); font-size:16px; }
.section-soft{ background: var(--bg-soft); }

/* ---------- Service cards ---------- */
.cards-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:26px;
}
.card{
  background:#fff;
  border-radius: var(--radius);
  padding:32px 26px;
  box-shadow: var(--shadow-sm);
  border:1px solid rgba(14,44,99,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-icon{
  width:56px; height:56px;
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
}
.card-icon.green{ background: linear-gradient(135deg, var(--green-mid), var(--green-deep)); }
.card-icon svg{ width:28px; height:28px; stroke:#fff; }
.card h3{ font-size:19px; margin-bottom:10px; }
.card p{ color: var(--slate); font-size:14.5px; }
.card .tags{ margin-top:16px; display:flex; gap:8px; flex-wrap:wrap; }
.card .tags span{
  font-size:11.5px;
  font-weight:600;
  padding:5px 10px;
  border-radius:20px;
  background: var(--bg-soft);
  color: var(--blue);
}

/* ---------- How it works ---------- */
.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  position:relative;
}
.step{
  text-align:center;
  padding:0 16px;
  position:relative;
}
.step-num{
  width:54px; height:54px;
  margin:0 auto 16px;
  border-radius:50%;
  background:#fff;
  border:2.5px solid var(--green);
  color: var(--green-deep);
  font-family: var(--font-display);
  font-weight:800;
  font-size:19px;
  display:flex; align-items:center; justify-content:center;
  position:relative; z-index:2;
}
.step h4{ font-size:16px; margin-bottom:8px; color: var(--blue-deep); font-family:var(--font-display);}
.step p{ font-size:13.5px; color: var(--slate); }
.steps::before{
  content:'';
  position:absolute;
  top:27px; left:12%; right:12%;
  height:2px;
  background: repeating-linear-gradient(90deg, var(--green-light) 0 10px, transparent 10px 18px);
  z-index:1;
}

/* ---------- Testimonials ---------- */
.testimonial-card{
  background:#fff;
  border-radius: var(--radius);
  padding:28px;
  box-shadow: var(--shadow-sm);
  border:1px solid rgba(14,44,99,0.06);
}
.testimonial-card p{ font-size:14.5px; color: var(--slate); margin-bottom:18px; }
.testimonial-person{ display:flex; align-items:center; gap:12px; }
.avatar{
  width:42px;height:42px;border-radius:50%;
  background: linear-gradient(135deg, var(--blue-light), var(--green-mid));
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-family:var(--font-display);font-weight:700;
}
.testimonial-person strong{ display:block; font-size:14px; color: var(--blue-deep); }
.testimonial-person span{ font-size:12px; color: var(--slate-light); }
.stars{ color: var(--green); font-size:13px; margin-bottom:10px; letter-spacing:2px; }

/* ---------- CTA band ---------- */
.cta-band{
  background: linear-gradient(120deg, var(--blue-deep) 0%, var(--blue) 55%, var(--green-deep) 100%);
  border-radius:24px;
  padding:54px 50px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
  color:#fff;
}
.cta-band h2{ color:#fff; font-size:28px; margin-bottom:8px; }
.cta-band p{ color:#dfe9ff; font-size:15px; }
.cta-band .btn-accent{ box-shadow:0 10px 24px rgba(0,0,0,0.2); }

/* ---------- About page ---------- */
.office-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:26px;
}
.office-card{
  background:#fff;
  border-radius: var(--radius);
  padding:30px;
  box-shadow: var(--shadow-sm);
  border:1px solid rgba(14,44,99,0.06);
  border-top:4px solid var(--blue);
}
.office-card.green{ border-top-color: var(--green); }
.office-card h3{ font-size:19px; margin-bottom:6px; }
.office-card .badge{
  display:inline-block;
  font-size:11px; font-weight:700; letter-spacing:0.04em;
  color: var(--green-deep); background: #e7f7ea;
  padding:4px 10px; border-radius:20px; margin-bottom:14px;
  text-transform:uppercase;
}
.office-card ul{ display:flex; flex-direction:column; gap:10px; margin-top:14px; }
.office-card li{ display:flex; gap:10px; font-size:14px; color: var(--slate); align-items:flex-start; }
.office-card li svg{ width:18px; height:18px; flex-shrink:0; stroke: var(--blue); margin-top:2px; }

.value-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.value-item{ text-align:center; }
.value-item .card-icon{ margin:0 auto 16px; }
.value-item h4{ font-family: var(--font-display); font-size:16px; color: var(--blue-deep); margin-bottom:6px;}
.value-item p{ font-size:13.5px; color: var(--slate); }

.timeline{ position:relative; padding-left:30px; }
.timeline::before{
  content:''; position:absolute; left:6px; top:6px; bottom:6px; width:2px;
  background: repeating-linear-gradient(180deg, var(--blue-light) 0 8px, transparent 8px 14px);
}
.timeline-item{ position:relative; padding-bottom:30px; }
.timeline-item::before{
  content:''; position:absolute; left:-30px; top:4px;
  width:14px; height:14px; border-radius:50%;
  background: var(--green); border:3px solid #fff; box-shadow:0 0 0 2px var(--green);
}
.timeline-item strong{ color: var(--blue-deep); font-family: var(--font-display); display:block; margin-bottom:4px;}
.timeline-item p{ color: var(--slate); font-size:14px; }

/* ---------- Map placeholder ---------- */
.map-frame{
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow-sm);
  border:1px solid rgba(14,44,99,0.08);
}
.map-frame iframe{ width:100%; height:340px; border:0; display:block; }

/* ---------- Services page ---------- */
.service-block{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
  margin-bottom:80px;
}
.service-block:nth-child(even) .service-text{ order:2; }
.service-block:nth-child(even) .service-visual{ order:1; }
.service-visual{
  background:#fff;
  border-radius:20px;
  box-shadow: var(--shadow-md);
  padding:30px;
}
.service-visual svg{ width:100%; height:auto; }
.service-text h3{ font-size:26px; margin-bottom:14px; }
.service-text p{ color: var(--slate); margin-bottom:18px; }
.service-list{ display:flex; flex-direction:column; gap:12px; margin-bottom:22px;}
.service-list li{ display:flex; gap:10px; align-items:flex-start; font-size:14.5px; color: var(--ink); }
.service-list li svg{ width:18px; height:18px; stroke: var(--green); flex-shrink:0; margin-top:2px; }

.price-note{
  display:inline-flex; align-items:center; gap:8px;
  background: var(--bg-soft); padding:10px 16px; border-radius:10px;
  font-size:13.5px; color: var(--blue-deep); font-weight:600;
}

/* ---------- Contact / Enquiry form ---------- */
.contact-wrap{
  display:grid;
  grid-template-columns: 1fr 1.15fr;
  gap:44px;
  align-items:start;
}
.contact-info-card{
  background: linear-gradient(160deg, var(--blue-deep), var(--blue));
  color:#fff;
  border-radius:20px;
  padding:38px 32px;
}
.contact-info-card h3{ color:#fff; font-size:22px; margin-bottom:10px; }
.contact-info-card p{ color:#cfe0ff; font-size:14.5px; margin-bottom:26px; }
.contact-info-row{ display:flex; gap:14px; margin-bottom:20px; align-items:flex-start; }
.contact-info-row svg{ width:20px; height:20px; flex-shrink:0; stroke: var(--green-light); margin-top:2px; }
.contact-info-row strong{ display:block; font-size:14px; }
.contact-info-row span{ font-size:13.5px; color:#cfe0ff; }
.social-row{ display:flex; gap:10px; margin-top:24px; }
.social-row a{
  width:38px; height:38px; border-radius:50%;
  background: rgba(255,255,255,0.12);
  display:flex; align-items:center; justify-content:center;
}
.social-row a svg{ width:17px; height:17px; stroke:#fff; }

.form-card{
  background:#fff;
  border-radius:20px;
  padding:36px;
  box-shadow: var(--shadow-md);
  border:1px solid rgba(14,44,99,0.06);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-group{ margin-bottom:18px; }
.form-group label{
  display:block; font-size:13px; font-weight:600;
  color: var(--blue-deep); margin-bottom:7px;
  font-family: var(--font-display);
}
.form-group input, .form-group select, .form-group textarea{
  width:100%;
  padding:13px 14px;
  border-radius:10px;
  border:1.5px solid #dde5f0;
  background: var(--bg-soft);
  font-size:14.5px;
  color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus{
  outline:none;
  border-color: var(--blue);
  background:#fff;
}
.form-group .hint{ font-size:12px; color: var(--slate-light); margin-top:5px; }
.swap-route{
  display:flex; align-items:center; gap:10px;
}
.swap-route .form-group{ flex:1; margin-bottom:0; }
.swap-btn{
  width:40px;height:40px;border-radius:50%;
  background: var(--bg-soft);
  display:flex;align-items:center;justify-content:center;
  margin-top:22px;
  flex-shrink:0;
  transition: background .15s ease, transform .2s ease;
}
.swap-btn:hover{ background: var(--blue); transform: rotate(180deg); }
.swap-btn:hover svg{ stroke:#fff; }
.swap-btn svg{ width:18px; height:18px; stroke: var(--blue); }

/* OTP modal */
.otp-overlay{
  position:fixed; inset:0;
  background: rgba(14,30,63,0.55);
  display:none;
  align-items:center; justify-content:center;
  z-index:1000;
  padding:20px;
}
.otp-overlay.active{ display:flex; }
.otp-box{
  background:#fff;
  border-radius:18px;
  padding:34px 30px;
  max-width:380px; width:100%;
  text-align:center;
  box-shadow: var(--shadow-lg);
  animation: pop .25s ease;
}
@keyframes pop{ from{ transform:scale(.9); opacity:0;} to{transform:scale(1); opacity:1;} }
.otp-box .card-icon{ margin:0 auto 16px; }
.otp-box h3{ font-size:19px; margin-bottom:8px; }
.otp-box p{ font-size:13.5px; color: var(--slate); margin-bottom:20px; }
.otp-inputs{ display:flex; gap:10px; justify-content:center; margin-bottom:18px; }
.otp-inputs input{
  width:44px; height:52px;
  text-align:center;
  font-size:20px;
  font-weight:700;
  border-radius:10px;
  border:1.5px solid #dde5f0;
  background: var(--bg-soft);
  color: var(--blue-deep);
}
.otp-inputs input:focus{ outline:none; border-color: var(--green); background:#fff; }
.otp-resend{ font-size:13px; color: var(--slate); margin-top:10px; }
.otp-resend button{ color: var(--blue); font-weight:700; background:none; }
.otp-resend button:disabled{ color: var(--slate-light); cursor:not-allowed; }
.otp-error{ color:#c23030; font-size:12.5px; margin-top:6px; min-height:16px; }
.otp-close{
  position:absolute; top:14px; right:16px; font-size:18px; color: var(--slate-light);
}

.success-box{ display:none; }
.success-box.active{ display:block; }
.success-icon{
  width:64px; height:64px; border-radius:50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 16px;
}
.success-icon svg{ width:30px; height:30px; stroke:#fff; }

/* ---------- Footer ---------- */
.site-footer{
  background: var(--blue-deep);
  color:#cfe0ff;
  padding:60px 0 24px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1.1fr;
  gap:40px;
  padding-bottom:36px;
  border-bottom:1px solid rgba(255,255,255,0.12);
}
.footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom:14px;}
.footer-brand img{ height:38px; }
.footer-brand strong{ font-family: var(--font-display); font-size:17px; color:#fff; }
.footer-col h4{
  font-family: var(--font-display); font-size:14px; color:#fff;
  margin-bottom:16px; text-transform:uppercase; letter-spacing:0.04em;
}
.footer-col ul{ display:flex; flex-direction:column; gap:10px; }
.footer-col a{ font-size:14px; color:#b9caf0; transition: color .15s ease; }
.footer-col a:hover{ color: var(--green-light); }
.footer-col p{ font-size:13.5px; color:#b9caf0; line-height:1.7; }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding-top:22px; flex-wrap:wrap; gap:10px;
  font-size:12.5px; color:#8ea3d6;
}

/* ---------- Page header (sub-pages) ---------- */
.page-header{
  background: linear-gradient(160deg, var(--bg-soft), var(--bg));
  padding:56px 0 40px;
  text-align:center;
}
.page-header .eyebrow{ justify-content:center; }
.page-header h1{ font-size:38px; margin-bottom:10px; }
.page-header p{ color: var(--slate); max-width:560px; margin:0 auto; }
.breadcrumb{ font-size:13px; color: var(--slate-light); margin-top:10px; }
.breadcrumb span{ color: var(--blue); font-weight:600; }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero h1{ font-size:36px; }
  .cards-grid{ grid-template-columns:1fr 1fr; }
  .office-grid{ grid-template-columns:1fr; }
  .value-grid{ grid-template-columns:1fr 1fr; }
  .steps{ grid-template-columns:1fr 1fr; gap:30px; }
  .steps::before{ display:none; }
  .service-block{ grid-template-columns:1fr; }
  .service-block:nth-child(even) .service-text{ order:1; }
  .service-block:nth-child(even) .service-visual{ order:2; }
  .contact-wrap{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width: 720px){
  .nav-links, .nav-cta .nav-call{ display:none; }
  .menu-toggle{ display:flex; }
  .nav-links.open{
    display:flex; position:absolute; top:100%; left:0; right:0;
    background:#fff; flex-direction:column; padding:20px 24px; gap:18px;
    box-shadow: var(--shadow-md);
  }
  .cards-grid{ grid-template-columns:1fr; }
  .value-grid{ grid-template-columns:1fr 1fr; }
  .form-row{ grid-template-columns:1fr; }
  .cta-band{ flex-direction:column; text-align:center; }
  .footer-grid{ grid-template-columns:1fr; }
  .trust-strip ul{ justify-content:center; text-align:center; }
}

.green-text .gsap-char {
    color: #2e9e44; 
}
.gsap-char {
    display: inline-block;
    white-space: pre; 
}
.green-text {
    white-space: nowrap;
}

/* ===========================================================
   HOME PAGE REFRESH — hero photo, stat band, service photo
   cards, 6-step process, instant estimate band, areas served
   =========================================================== */

/* ---- Hero photo card (replaces SVG illustration) ---- */
.hero-art{ padding:0; }
.hero-photo{
  position:relative;
  border-radius:22px;
  overflow:hidden;
}
.hero-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  aspect-ratio: 4/3;
}
.hero-photo .hero-photo-badge{
  position:absolute;
  left:20px; bottom:20px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(6px);
  border-radius:14px;
  padding:12px 18px;
  display:flex;
  align-items:center;
  gap:10px;
  box-shadow: var(--shadow-md);
}
.hero-photo .hero-photo-badge svg{ width:26px; height:26px; stroke: var(--green); flex-shrink:0; }
.hero-photo .hero-photo-badge strong{ display:block; font-family: var(--font-display); font-size:14px; color: var(--blue-deep); }
.hero-photo .hero-photo-badge span{ font-size:11.5px; color: var(--slate); }

.hero-tags{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  margin:22px 0 30px;
}
.hero-tags span{
  display:flex;
  align-items:center;
  gap:7px;
  font-size:12.5px;
  font-weight:600;
  color: var(--blue-deep);
}
.hero-tags span svg{ width:18px; height:18px; stroke: var(--green); flex-shrink:0; }

/* ---- Stat band ---- */
.stat-band{
  background: var(--blue-deep);
  padding:36px 0;
}
.stat-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:10px;
}
.stat-item{
  position:relative;
  text-align:center;
  color:#fff;
  padding:0 12px;
}
.stat-item:not(:last-child)::after{
  content:'';
  position:absolute;
  right:0; top:8%; bottom:8%;
  width:1px;
  background: rgba(255,255,255,0.15);
}
.stat-item svg{ width:24px; height:24px; stroke: var(--green-light); margin-bottom:8px; }
.stat-item strong{
  display:block;
  font-family: var(--font-display);
  font-size:22px;
  font-weight:800;
}
.stat-item span{
  font-size:11px;
  color:#b9caf0;
  text-transform:uppercase;
  letter-spacing:0.03em;
}

/* ---- Service photo cards ---- */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}
.service-photo-card{
  background:#fff;
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow-sm);
  border:1px solid rgba(14,44,99,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-photo-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-photo{ height:170px; overflow:hidden; }
.service-photo img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .5s ease;
}
.service-photo-card:hover .service-photo img{ transform:scale(1.08); }
.service-photo-body{ padding:0 22px 26px; }
.card-icon-sm{
  width:48px; height:48px;
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  margin-top:-26px;
  margin-bottom:14px;
  border:3px solid #fff;
  box-shadow: var(--shadow-sm);
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  position:relative; z-index:2;
}
.card-icon-sm.green{ background: linear-gradient(135deg, var(--green-mid), var(--green-deep)); }
.card-icon-sm svg{ width:22px; height:22px; stroke:#fff; }
.service-photo-body h3{ font-size:18px; margin-bottom:8px; }
.service-photo-body p{ font-size:14px; color: var(--slate); }

/* ---- 6-step process ---- */
.steps.steps-6{ grid-template-columns:repeat(6,1fr); }
.steps.steps-6::before{ left:8%; right:8%; }

/* ---- Instant estimate band ---- */
.quote-band{ background: var(--bg-soft); }
.quote-grid{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap:44px;
  align-items:center;
}
.quote-photo{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  box-shadow: var(--shadow-lg);
}
.quote-photo img{ width:100%; height:100%; object-fit:cover; aspect-ratio:4/5; }
.quote-form-wrap h2{ font-size:30px; margin-bottom:8px; }
.quote-form-wrap > p{ color: var(--slate); margin-bottom:26px; }
.quick-form{
  background:#fff;
  border-radius:18px;
  padding:30px;
  box-shadow: var(--shadow-md);
  border:1px solid rgba(14,44,99,0.06);
}
.quick-form .btn{ margin-top:6px; }

/* ---- Areas we serve ---- */
.areas-grid{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
  margin-bottom:26px;
}
.areas-grid span{
  background:#fff;
  border:1.5px solid rgba(14,44,99,0.1);
  padding:10px 18px;
  border-radius:30px;
  font-size:13.5px;
  font-weight:600;
  color: var(--blue-deep);
  box-shadow: var(--shadow-sm);
}
.areas-copy{
  max-width:760px;
  margin:0 auto;
  text-align:center;
  color: var(--slate);
  font-size:14.5px;
}

/* ---- CTA band with photo background ---- */
.cta-band.cta-photo{
  background:
    linear-gradient(120deg, rgba(14,44,99,0.90) 0%, rgba(20,89,31,0.85) 100%),
    url('images/poster-banner.jpeg') center/cover no-repeat;
}

/* ---- Footer info strip ---- */
.footer-info-strip{
  border-bottom:1px solid rgba(255,255,255,0.12);
  padding-bottom:30px;
  margin-bottom:30px;
}
.footer-info-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.footer-info-item{
  display:flex; align-items:center; gap:12px;
}
.footer-info-item .fi-icon{
  width:42px; height:42px; border-radius:50%;
  background: rgba(255,255,255,0.1);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.footer-info-item .fi-icon svg{ width:19px; height:19px; stroke: var(--green-light); }
.footer-info-item strong{ display:block; font-size:11px; text-transform:uppercase; letter-spacing:0.04em; color:#8ea3d6; }
.footer-info-item span{ font-size:13.5px; color:#fff; font-weight:600; }

.newsletter-row{ display:flex; gap:8px; margin-top:6px; }
.newsletter-row input{
  flex:1; min-width:0;
  padding:11px 12px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color:#fff;
  font-size:13.5px;
}
.newsletter-row input::placeholder{ color:#8ea3d6; }
.newsletter-row input:focus{ outline:none; border-color: var(--green-light); }
.newsletter-row button{
  width:42px; flex-shrink:0;
  border-radius:8px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
  display:flex; align-items:center; justify-content:center;
}
.newsletter-row button svg{ width:17px; height:17px; stroke:#fff; }
.newsletter-note{ font-size:12px; color:#8ea3d6; margin-top:8px; }

/* ---- Responsive additions ---- */
@media (max-width: 980px){
  .services-grid{ grid-template-columns:1fr 1fr; }
  .steps.steps-6{ grid-template-columns:repeat(3,1fr); }
  .quote-grid{ grid-template-columns:1fr; }
  .quote-photo img{ aspect-ratio:16/9; }
  .footer-info-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width: 720px){
  .services-grid{ grid-template-columns:1fr; }
  .steps.steps-6{ grid-template-columns:1fr 1fr; }
  .stat-grid{ grid-template-columns:1fr 1fr; row-gap:22px; }
  .stat-item:nth-child(2n)::after{ display:none; }
  .stat-item:last-child{ grid-column: 1 / -1; }
  .footer-info-grid{ grid-template-columns:1fr; }
  .hero-tags{ gap:12px 16px; }
}

