/* ============================================
   ZEST CLEANING — BOOKING ESTIMATOR
   Palette: deep forest green + citrus zest accent
   ============================================ */

:root{
  --ink:        #101B2D;
  --forest:     #0E2A4A;   /* deep navy — primary brand color */
  --forest-2:   #163A63;   /* lighter navy — secondary */
  --teal:       #5E7A9E;   /* cool slate blue — links/secondary accent */
  --zest:       #D8B657;   /* gold — matches the logo lettering */
  --zest-deep:  #B8933A;   /* deeper gold — hover states */
  --paper:      #F7F8FA;
  --panel:      #FFFFFF;
  --line:       #E4E7ED;
  --muted:      #5C6678;

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 9px;

  --shadow-soft: 0 20px 45px -25px rgba(22,33,27,0.35);
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin:0;
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

.wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

a{ color: inherit; text-decoration: none; }

/* ---------- Header ---------- */

/* Header rules consolidated below in "SITE-WIDE NAV" section */
.logo-dot{ color: var(--zest-deep); }


/* ---------- Eyebrow ---------- */

.eyebrow{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 14px;
}
.eyebrow.center{ text-align:center; }

/* ---------- Hero ---------- */

.hero{
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before{
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,182,87,0.2), transparent 70%);
  filter: blur(60px);
  top: -140px; right: -100px;
  z-index: 0;
  animation: drift-a 14s ease-in-out infinite;
}

.hero-grid{
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-copy h1{
  font-size: clamp(34px, 4.4vw, 50px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  color: var(--forest);
}

.hero-sub{
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 42ch;
}

.trust-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-list li{
  font-size: 14px;
  font-weight: 600;
  color: var(--forest-2);
  padding-left: 26px;
  position: relative;
}
.trust-list li::before{
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--zest);
}
.trust-list li::after{
  content: "";
  position: absolute;
  left: 5px; top: 6px;
  width: 6px; height: 9px;
  border-right: 2px solid var(--forest);
  border-bottom: 2px solid var(--forest);
  transform: rotate(45deg);
}

/* ---------- Estimator card ---------- */

.estimator-card{
  background: var(--panel);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  overflow: hidden;
}

#booking-form{
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  border-right: 1px solid var(--line);
}

.field-block{ display:flex; flex-direction:column; gap:10px; }

.field-label{
  display:flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--forest);
}

.field-value{
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  text-transform: none;
  letter-spacing: normal;
}

input[type="range"]{
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--zest) 0%, var(--zest) var(--fill,30%), var(--line) var(--fill,30%));
  outline: none;
}
input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--forest);
  border: 3px solid var(--zest);
  cursor: pointer;
}
input[type="range"]::-moz-range-thumb{
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--forest);
  border: 3px solid var(--zest);
  cursor: pointer;
}

.range-scale{
  display:flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

.pill-group{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill{
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  transition: all .15s ease;
}
.pill:hover{ border-color: var(--zest-deep); }
.pill.active{
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}

.extras-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.extra-check{
  display:flex;
  align-items:center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.extra-check input{ accent-color: var(--forest); width:16px; height:16px; }
.extra-check b{ color: var(--teal); font-weight: 700; }

.input-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.input-row-3{
  grid-template-columns: 1fr 1fr 1fr;
}

.mini-label{
  display:block;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 6px;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="date"], select, textarea{
  font-family: inherit;
  font-size: 14px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  width: 100%;
  resize: none;
}
select{
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235C6678' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 34px;
  cursor: pointer;
}
input:focus, select:focus, textarea:focus{
  outline: none;
  border-color: var(--teal);
}
textarea{ margin-top: 4px; }

@media (max-width: 560px){
  .input-row-3{ grid-template-columns: 1fr; }
}

/* ---------- Price panel ---------- */

.price-panel{
  background: var(--forest);
  color: #fff;
  padding: 34px 30px;
  display:flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.price-ring-wrap{
  position: relative;
  width: 150px;
  height: 150px;
}

.price-ring{ width:100%; height:100%; transform: rotate(-90deg); }
.ring-track{
  fill:none;
  stroke: rgba(255,255,255,0.15);
  stroke-width: 8;
}
.ring-fill{
  fill:none;
  stroke: var(--zest);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 327;
  stroke-dashoffset: 327;
  transition: stroke-dashoffset .4s ease;
}

.ring-label{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 2px;
  font-weight: 800;
}
.ring-currency{ font-size: 18px; align-self:flex-start; margin-top: 8px; color: var(--zest); }
.ring-amount{ font-size: 40px; letter-spacing: -0.02em; }

.price-breakdown{
  width: 100%;
  display:flex;
  flex-direction:column;
  gap: 8px;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 16px;
}
.pb-row{ display:flex; justify-content: space-between; color: rgba(255,255,255,0.75); }
.pb-discount span:last-child{ color: var(--zest); }
.pb-total{
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  border-top: 1px dashed rgba(255,255,255,0.25);
  padding-top: 10px;
  margin-top: 4px;
}

.btn-primary.submit-booking-btn{
  width: 100%;
  border: none;
  cursor: pointer;
  text-align: center;
  background: var(--zest);
  color: var(--forest);
  box-shadow: 0 14px 28px -16px rgba(216,182,87,0.6);
}
.btn-primary.submit-booking-btn:hover{ background: var(--zest-deep); color: var(--forest); }
.btn-primary.submit-booking-btn:disabled{ opacity: 0.7; cursor: not-allowed; transform: none; }

.price-note{
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-align: center;
  margin: 0;
}
.price-note.error{ color: #FFB4A8; font-weight: 700; }
.price-note.success{ color: var(--zest); font-weight: 700; }

/* ---------- Confirmation panel ---------- */

.confirmation-panel{ text-align: center; }
.confirmation-check{
  width: 52px; height: 52px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: var(--zest);
  color: var(--forest);
  font-size: 26px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.confirmation-panel h3{ font-size: 20px; margin: 0 0 6px; }
.confirmation-ref{ font-size: 13px; color: rgba(255,255,255,0.7); margin: 0 0 18px; }
.confirmation-ref strong{ color: var(--zest); letter-spacing: 0.03em; }

.payment-instructions{
  width: 100%;
  text-align: left;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 20px 20px 16px;
  margin-top: 6px;
}
.payment-instructions h4{
  font-size: 13px;
  color: var(--zest);
  margin: 14px 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.payment-instructions h4:first-child{ margin-top: 0; }
.payment-instructions p{
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 6px;
  line-height: 1.55;
}
.payment-note{ color: rgba(255,255,255,0.65) !important; font-size: 12.5px !important; }
.payment-deadline{
  margin-top: 14px !important;
  padding-top: 12px;
  border-top: 1px dashed rgba(255,255,255,0.2);
  font-size: 12px !important;
  color: rgba(255,255,255,0.6) !important;
}

/* ---------- Steps ---------- */

.steps{ padding: 70px 0 90px; }

.steps-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 26px;
}

.step{
  padding: 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--panel);
}

.step-index{
  display:inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--forest);
  background: var(--zest);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.step h3{ font-size: 18px; margin: 0 0 8px; color: var(--forest); }
.step p{ font-size: 14px; line-height: 1.6; color: var(--muted); margin:0; }

/* ---------- Footer ---------- */

.site-footer{
  border-top: 1px solid var(--line);
  padding: 26px 0;
}
.site-footer p{
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  text-align: center;
}

/* ---------- Responsive ---------- */

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .estimator-card{ grid-template-columns: 1fr; }
  #booking-form{ border-right: none; border-bottom: 1px solid var(--line); }
  .steps-grid{ grid-template-columns: 1fr; }
  .input-row{ grid-template-columns: 1fr; }
}

/* Tablet keeps extras as a 2-up grid; only phones drop to 1 column */
@media (max-width: 560px){
  .extras-grid{ grid-template-columns: 1fr; }
}

/* Small phones (iPhone SE and similar ~320-390px) */
@media (max-width: 480px){
  .wrap{ padding: 0 18px; }
  .hero{ padding: 40px 0 56px; }
  #booking-form{ padding: 24px 20px; gap: 22px; }
  .price-panel{ padding: 26px 20px; }
  .phone-label{ display: none; }
  .ring-amount{ font-size: 34px; }
  .price-ring-wrap{ width: 130px; height: 130px; }
}

/* ============================================
   SITE-WIDE NAV (multi-page header)
   ============================================ */

/* ============================================
   SITE-WIDE NAV (multi-page header)
   ============================================ */

.site-header{
  padding: 0;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,248,250,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow .25s ease;
}
.site-header.scrolled{
  box-shadow: 0 8px 30px -18px rgba(14,42,74,0.35);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo{ display:flex; align-items:center; }
.logo-img{ height: 44px; width: auto; display:block; border-radius: 8px; }

.main-nav{
  display:flex;
  align-items:center;
  gap: 38px;
  margin-left: auto;
}

.nav-link{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--forest-2);
  padding: 8px 0;
  position: relative;
}
.nav-link::after{
  content:"";
  position:absolute;
  left:0; right:100%;
  bottom:2px;
  height: 2px;
  background: var(--zest-deep);
  transition: right .2s ease;
}
.nav-link:hover::after,
.nav-link.active::after{ right: 0; }
.nav-link.active{ color: var(--forest); }

.header-actions{
  display:flex;
  align-items:center;
  gap: 22px;
}

.header-phone{
  display:flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.25;
  padding-right: 22px;
  border-right: 1px solid var(--line);
}
.phone-label{ font-size: 10.5px; color: var(--muted); font-weight:700; text-transform:uppercase; letter-spacing:0.04em; }
.phone-number{ font-size: 14px; font-weight: 800; color: var(--forest); }

.btn-cta{
  background: var(--zest);
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  padding: 12px 22px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  box-shadow: 0 10px 24px -14px rgba(216,182,87,0.7);
}
.btn-cta:hover{ background: var(--zest-deep); transform: translateY(-2px); }

.nav-toggle{
  display:none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px; height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span{
  display:block;
  height: 2px;
  width: 100%;
  background: var(--forest);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px){
  .header-inner{ gap: 10px; }
  .logo-img{ height: 36px; }
  .btn-cta{ padding: 9px 16px; font-size: 12px; }
  .nav-toggle{ display:flex; flex-shrink: 0; }

  .main-nav{
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--panel);
    border-bottom: 1px solid var(--line);
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: max-height .25s ease, opacity .2s ease, padding .25s ease, visibility 0s linear .25s;
  }
  .main-nav.open{
    max-height: 320px;
    padding: 10px 28px 18px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: max-height .25s ease, opacity .2s ease, padding .25s ease;
  }
  .main-nav a{ padding: 10px 0; width: 100%; }
  .header-phone{ display:none; }
  .site-header{ position: sticky; }
}

@media (max-width: 400px){
  .btn-cta{ padding: 8px 13px; font-size: 11.5px; }
  .logo-img{ height: 32px; }
  .header-inner{ gap: 8px; }
}

/* ============================================
   SCROLL-REVEAL
   ============================================ */

[data-reveal]{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].revealed{ opacity: 1; transform: translateY(0); }
[data-reveal="fade"]{ transform: none; }
[data-reveal-delay="1"]{ transition-delay: .1s; }
[data-reveal-delay="2"]{ transition-delay: .2s; }
[data-reveal-delay="3"]{ transition-delay: .3s; }
[data-reveal-delay="4"]{ transition-delay: .4s; }

/* ============================================
   MARKETING HERO (Home page)
   ============================================ */

.hero-marketing{
  padding: 76px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero-marketing::before,
.hero-marketing::after{
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}
.hero-marketing::before{
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(216,182,87,0.22), transparent 70%);
  top: -160px; right: -120px;
  animation: drift-a 14s ease-in-out infinite;
}
.hero-marketing::after{
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(14,42,74,0.10), transparent 70%);
  bottom: -140px; left: -100px;
  animation: drift-b 16s ease-in-out infinite;
}

@keyframes drift-a{
  0%, 100%{ transform: translate(0,0); }
  50%{ transform: translate(-24px, 26px); }
}
@keyframes drift-b{
  0%, 100%{ transform: translate(0,0); }
  50%{ transform: translate(20px, -20px); }
}

@keyframes float-y{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}

.hero-marketing-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items:center;
  position: relative;
  z-index: 1;
}

.hero-marketing h1{
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--forest);
  margin: 0 0 20px;
}
.hero-marketing h1 em{
  font-style: normal;
  color: var(--teal);
  position: relative;
  white-space: nowrap;
}
.hero-marketing h1 em::after{
  content: "";
  position: absolute;
  left: -2%; right: -2%;
  bottom: 6px;
  height: 10px;
  background: rgba(216,182,87,0.35);
  z-index: -1;
  border-radius: 3px;
}

.hero-marketing p.lead{
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 46ch;
  margin: 0 0 30px;
}

.hero-cta-row{ display:flex; gap: 14px; flex-wrap: wrap; }

.btn-primary{
  background: var(--forest);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 15px 26px;
  border-radius: 999px;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  display: inline-block;
  box-shadow: 0 14px 28px -16px rgba(14,42,74,0.55);
}
.btn-primary:hover{ background: var(--forest-2); transform: translateY(-2px); }

.btn-secondary{
  border: 1.5px solid var(--line);
  color: var(--forest);
  font-weight: 700;
  font-size: 14px;
  padding: 15px 26px;
  border-radius: 999px;
  transition: border-color .15s ease, transform .15s ease, background .15s ease;
  display: inline-block;
  background: var(--panel);
}
.btn-secondary:hover{ border-color: var(--zest-deep); transform: translateY(-2px); background: #FBF6E9; }

.hero-visual{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3.2;
  box-shadow: 0 30px 60px -30px rgba(14,42,74,0.45);
  animation: float-y 6s ease-in-out infinite;
}
.hero-visual img{ width:100%; height:100%; object-fit: cover; display:block; }
.hero-visual::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(14,42,74,0.15), transparent 55%);
  pointer-events: none;
}

.hero-badge{
  position:absolute;
  bottom: 20px; left: 20px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display:flex;
  align-items:center;
  gap: 12px;
  box-shadow: 0 12px 30px -18px rgba(0,0,0,0.35);
}
.hero-badge-dot{
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--zest);
  display:flex; align-items:center; justify-content:center;
  font-weight: 800;
  color: var(--forest);
  font-size: 13px;
  flex-shrink: 0;
}
.hero-badge-text strong{ display:block; font-size: 13px; color: var(--forest); }
.hero-badge-text span{ font-size: 12px; color: var(--muted); }

/* ============================================
   STATS STRIP
   ============================================ */

.stats-strip{
  background: var(--forest);
  padding: 46px 0;
}
.stats-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align:center;
}
.stat-number{
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  color: var(--zest);
  letter-spacing: -0.02em;
}
.stat-label{
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

/* ============================================
   SECTION HEADERS (reused across pages)
   ============================================ */

.section{ padding: 84px 0; }
.section-tight{ padding: 60px 0; }
.section-alt{ background: #F3F7F1; }

.section-head{ max-width: 640px; margin: 0 0 44px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align:center; }
.section-head h2{
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--forest);
  margin: 0 0 14px;
  line-height: 1.15;
}
.section-head p{
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* ============================================
   SERVICE CARDS (Home teaser + Services page)
   ============================================ */

.card-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.service-card-media{
  aspect-ratio: 16/10.5;
  overflow: hidden;
  position: relative;
}
.service-card-media img{
  width:100%; height:100%; object-fit:cover; display:block;
  transition: transform .5s ease;
}
.service-card:hover .service-card-media img{ transform: scale(1.06); }

.service-card-body{ padding: 24px 22px 26px; }
.service-card-body h3{ font-size: 18px; color: var(--forest); margin: 0 0 8px; }
.service-card-body p{ font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0 0 14px; }
.service-card-link{
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  display:inline-flex;
  align-items:center;
  gap: 6px;
}
.service-card-link .arrow{ transition: transform .2s ease; }
.service-card-link:hover .arrow{ transform: translateX(4px); }

/* Detailed service rows for the Services page */
.service-detail{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items:center;
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
}
.service-detail:last-child{ border-bottom: none; }
.service-detail:nth-child(even) .service-detail-media{ order: 2; }
.service-detail-media{
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.service-detail-media img{ width:100%; height:100%; object-fit:cover; display:block; }
.service-detail-copy .service-index{
  display:inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.service-detail-copy h3{ font-size: 24px; color: var(--forest); margin: 0 0 12px; }
.service-detail-copy p{ font-size: 15px; line-height: 1.7; color: var(--muted); margin: 0 0 18px; }
.service-features{ list-style:none; margin:0 0 20px; padding:0; display:flex; flex-direction:column; gap:10px; }
.service-features li{ font-size: 14px; font-weight: 600; color: var(--forest-2); padding-left: 24px; position: relative; }
.service-features li::before{
  content:""; position:absolute; left:0; top:4px;
  width:14px; height:14px; border-radius:50%; background: var(--zest);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonial-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 24px;
}
.testimonial-stars{ color: var(--zest-deep); font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-quote{ font-size: 14.5px; line-height: 1.65; color: var(--ink); margin: 0 0 18px; }
.testimonial-person{ display:flex; align-items:center; gap: 12px; }
.testimonial-avatar{
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--zest);
  display:flex; align-items:center; justify-content:center;
  font-weight: 800; color: var(--forest); font-size: 14px;
  flex-shrink: 0;
}
.testimonial-name{ font-size: 13.5px; font-weight: 700; color: var(--forest); }
.testimonial-role{ font-size: 12px; color: var(--muted); }

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner{
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 54px 48px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h2{ color:#fff; font-size: clamp(22px,2.6vw,30px); margin:0 0 8px; font-weight:800; }
.cta-banner p{ color: rgba(255,255,255,0.75); margin:0; font-size: 14.5px; }
.cta-banner .btn-primary{ background: var(--zest); color: var(--forest); }
.cta-banner .btn-primary:hover{ background: var(--zest-deep); }

/* ============================================
   ABOUT PAGE — story / values / timeline
   ============================================ */

.story-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items:center;
}
.story-media{ border-radius: var(--radius-lg); overflow:hidden; aspect-ratio: 4/3.4; }
.story-media img{ width:100%; height:100%; object-fit:cover; display:block; }
.story-copy h2{ font-size: clamp(26px,3vw,34px); color: var(--forest); font-weight:800; margin:0 0 16px; letter-spacing:-0.02em; }
.story-copy p{ font-size: 15px; line-height:1.75; color: var(--muted); margin:0 0 16px; }

.values-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.value-card{
  text-align:center;
  padding: 28px 18px;
}
.value-icon{
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--zest);
  display:flex; align-items:center; justify-content:center;
}
.value-icon svg{ width: 26px; height: 26px; stroke: var(--forest); }
.value-card h4{ font-size: 15px; color: var(--forest); margin: 0 0 8px; }
.value-card p{ font-size: 13.5px; color: var(--muted); line-height:1.6; margin:0; }

.timeline{
  display:flex;
  flex-direction: column;
  gap: 0;
}
.timeline-item{
  position: relative;
  padding: 22px 0 22px 30px;
  margin-left: 90px;
  border-left: 2px solid var(--line);
}
.timeline-item::before{
  content:"";
  position:absolute;
  left:-7px; top: 26px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--zest-deep);
  border: 3px solid var(--paper);
  z-index: 1;
}
.timeline-year{
  position: absolute;
  right: calc(100% + 16px);
  top: 22px;
  width: 74px;
  text-align: right;
  font-weight: 800;
  color: var(--forest);
  font-size: 15px;
  white-space: nowrap;
}
.timeline-item h4{ font-size: 15px; color: var(--forest); margin: 0 0 6px; }
.timeline-item p{ font-size: 13.5px; color: var(--muted); line-height: 1.6; margin:0; }

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-grid{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
}
.contact-info-card{
  background: var(--forest);
  color:#fff;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
}
.contact-info-card h3{ font-size: 19px; margin: 0 0 20px; }
.contact-info-row{
  display:flex; gap: 14px; align-items:flex-start;
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.contact-info-row strong{ display:block; color:#fff; font-size: 13px; margin-bottom: 3px; }
.contact-map{
  margin-top: 26px;
  border-radius: var(--radius-md);
  overflow:hidden;
  aspect-ratio: 4/3;
}
.contact-map iframe{ width:100%; height:100%; border:0; display:block; }

.contact-form-card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.contact-form-card h3{ font-size: 19px; color: var(--forest); margin: 0 0 6px; }
.contact-form-card > p{ font-size: 14px; color: var(--muted); margin: 0 0 24px; }
.contact-form{ display:flex; flex-direction:column; gap: 16px; }
.contact-form .input-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================
   PLACEHOLDER IMAGES (until real photos are dropped in)
   ============================================ */

.img-placeholder{
  width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
  text-align:center;
  background: linear-gradient(135deg, #E9EDF4, #D6DEEA);
  color: var(--forest-2);
  font-size: 12.5px;
  font-weight: 600;
  padding: 16px;
  line-height: 1.5;
}

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

.site-footer-main{
  position: relative;
  background: var(--forest);
  color: rgba(255,255,255,0.85);
  padding-top: 50px;
  margin-top: 20px;
}

.footer-wave{
  position: absolute;
  top: -59px;
  left: 0;
  width: 100%;
  height: 60px;
  display: block;
}
.footer-wave path{ fill: var(--forest); }

.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}

.footer-col h4{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--zest);
  margin: 0 0 18px;
}

.footer-col a{
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 12px;
  transition: color .15s ease, transform .15s ease;
  width: fit-content;
}
.footer-col a:hover{ color: var(--zest); transform: translateX(2px); }

.footer-text{
  display: block;
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
}

.footer-logo-img{
  height: 40px;
  background: #fff;
  padding: 5px 8px;
  border-radius: 8px;
}

.footer-tagline{
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin: 18px 0 20px;
  max-width: 32ch;
}

.footer-social{
  display: flex;
  gap: 10px;
}
.footer-social a.social-icon{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, border-color .15s ease;
  margin-bottom: 0;
}
.footer-social a.social-icon svg{ width: 15px; height: 15px; stroke: #fff; flex-shrink: 0; }
.footer-social a.social-icon:hover{ background: var(--zest); border-color: var(--zest); }
.footer-social a.social-icon:hover svg{ stroke: var(--forest); }
.social-icon:hover{ background: var(--zest); border-color: var(--zest); }
.social-icon:hover svg{ stroke: var(--forest); }

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 22px;
  padding-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p{
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
.footer-bottom-links a{
  display: inline;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  margin-left: 20px;
}
.footer-bottom-links a:hover{ color: var(--zest); }

@media (max-width: 780px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .footer-brand{ grid-column: 1 / -1; }
}
@media (max-width: 480px){
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; }
  .footer-bottom-links a{ margin-left: 0; margin-right: 18px; }
}

/* ============================================
   RESPONSIVE — site pages
   ============================================ */

@media (max-width: 980px){
  .hero-marketing-grid{ grid-template-columns: 1fr; }
  .hero-marketing{ padding: 46px 0 60px; }
  .card-grid{ grid-template-columns: 1fr 1fr; }
  .testimonial-grid{ grid-template-columns: 1fr; }
  .stats-grid{ grid-template-columns: repeat(2, 1fr); }
  .service-detail{ grid-template-columns: 1fr; gap: 24px; }
  .service-detail:nth-child(even) .service-detail-media{ order: 0; }
  .story-grid{ grid-template-columns: 1fr; }
  .values-grid{ grid-template-columns: 1fr 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .contact-form .input-row{ grid-template-columns: 1fr; }
}

@media (max-width: 640px){
  .card-grid{ grid-template-columns: 1fr; }
  .values-grid{ grid-template-columns: 1fr; }
  .cta-banner{ padding: 36px 26px; flex-direction: column; text-align:center; }
  .timeline-item{ margin-left: 20px; padding-left: 24px; }
  .timeline-year{
    position: static;
    width: auto;
    text-align: left;
    display: block;
    margin-bottom: 6px;
  }
}

/* ============================================
   MOTION SAFETY
   ============================================ */

@media (prefers-reduced-motion: reduce){
  .hero-marketing::before,
  .hero-marketing::after,
  .hero::before,
  .hero-visual{
    animation: none !important;
  }
}

/* Keep the estimator card above the decorative hero blob */
.estimator-card{ position: relative; z-index: 1; }

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-float{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #2CBB5D;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -12px rgba(20,60,30,0.55);
  transition: transform .15s ease, box-shadow .15s ease;
}
.whatsapp-float:hover{
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 34px -12px rgba(20,60,30,0.6);
}
.whatsapp-float svg{ width: 27px; height: 27px; position: relative; z-index: 1; }

.whatsapp-ring{
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #2CBB5D;
  animation: whatsapp-pulse 2.4s ease-out infinite;
}
@keyframes whatsapp-pulse{
  0%{ transform: scale(1); opacity: 0.55; }
  100%{ transform: scale(1.7); opacity: 0; }
}
@media (prefers-reduced-motion: reduce){
  .whatsapp-ring{ animation: none; display: none; }
}

.whatsapp-tooltip{
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--forest);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
}
.whatsapp-tooltip::after{
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--forest);
}
.whatsapp-float:hover .whatsapp-tooltip{
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 600px){
  .whatsapp-float{ width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .whatsapp-float svg{ width: 24px; height: 24px; }
  .whatsapp-tooltip{ display: none; } /* no hover on touch devices */
}

/* ---------- Full-width "Your details" fields ---------- */

.input-stack{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.input-stack input,
.input-stack textarea{ width: 100%; }
.input-stack textarea{ margin-top: 0; }

/* ---------- Book Now popup modal ---------- */

.booking-modal{
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
}
.booking-modal.open{ display: block; }

.booking-modal-overlay{
  position: absolute;
  inset: 0;
  background: rgba(8, 24, 19, 0.66);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.booking-modal-dialog{
  position: relative;
  z-index: 1;
  max-width: 1080px;
  width: calc(100% - 28px);
  margin: 4vh auto;
  max-height: 92vh;
  overflow-y: auto;              /* the whole form scrolls inside the popup */
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  animation: modal-pop .22s ease;
}

@keyframes modal-pop{
  from{ opacity: 0; transform: translateY(14px) scale(.985); }
  to{ opacity: 1; transform: translateY(0) scale(1); }
}

.booking-modal-close{
  position: sticky;
  top: 12px;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-left: auto;
  margin-right: 12px;
  margin-bottom: -38px;          /* overlaps the card instead of pushing it down */
  border: none;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  transition: transform .15s ease, background .15s ease;
}
.booking-modal-close:hover{ transform: scale(1.08); background: var(--teal, #1a7a6d); }

body.modal-open{ overflow: hidden; }

@media (max-width: 720px){
  .booking-modal-dialog{
    margin: 2vh auto;
    max-height: 96vh;
    width: calc(100% - 16px);
  }
}

@media (prefers-reduced-motion: reduce){
  .booking-modal-dialog{ animation: none; }
}

/* ---------- Payment result pages (PayPal return / cancel) ---------- */

.payment-result-wrap{
  display: flex;
  justify-content: center;
  padding: 40px 0 20px;
}

.payment-result-card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  max-width: 560px;
  width: 100%;
  padding: 44px 38px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.payment-result-card h1{ font-size: clamp(26px, 4vw, 34px); }

.payment-result-check{
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-result-sub{ color: var(--muted); font-size: 15px; }

.payment-result-details{
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.prd-row{
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.prd-row span{ color: var(--muted); }

.payment-result-options{
  text-align: left;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-result-note{ font-size: 13px; color: var(--muted); }
.payment-result-note a{ color: var(--teal); font-weight: 700; }
