/* =========================================================
   KAAMZEN — Shared Stylesheet (V2 — full updated file)
   Design tokens: greens (#2E7D32 / #6FBF73 / #D4EDBB), off-white base,
   warm gold accent for ratings, ink text with a green tint.
   Display face: Fraunces (crafted/trust feel) — Body: Inter — Data: IBM Plex Mono
   ========================================================= */

:root{
  --green-deep:   #2E7D32;
  --green-deep-2: #1F5F24;
  --green-mid:    #6FBF73;
  --green-light:  #D4EDBB;
  --offwhite:     #F7F7F2;
  --paper:        #FFFFFF;
  --ink:          #16241A;
  --ink-soft:     #445046;
  --gold:         #C99A3C;
  --line:         rgba(22,36,26,0.10);
  --shadow:       0 10px 30px rgba(22,36,26,0.08);
  --radius:       16px;
  --radius-sm:    10px;
  --maxw:         1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--offwhite);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; }

h1,h2,h3,h4{
  font-family:'Fraunces', serif;
  font-weight:600;
  line-height:1.15;
  margin:0 0 .5em;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-deep-2);
  font-weight:600;
  margin-bottom: 14px;
}
.eyebrow::before{
  content:"";
  width:16px; height:2px;
  background: var(--green-mid);
  display:inline-block;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight:600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: var(--green-deep);
  color: #fff;
  box-shadow: 0 8px 20px rgba(46,125,50,0.28);
}
.btn-primary:hover{
  background: var(--green-deep-2);
  box-shadow: 0 10px 26px rgba(46,125,50,0.38);
  transform: translateY(-2px);
}

.btn-ghost{
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover{
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.btn-light{
  background: #fff;
  color: var(--green-deep-2);
}
.btn-light:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

/* ---------- Header ---------- */
header.site-header{
  position: sticky;
  top:0;
  z-index: 100;
  background: linear-gradient(90deg, #F7F7F2 0%, #E8F5DC 50%, #D4EDBB 100%);
  border-bottom: 1px solid rgba(22,36,26,0.08);
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 16px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-family:'Fraunces', serif;
  font-weight:700;
  font-size: 22px;
  color: var(--ink);
}
.logo span{ color: var(--green-deep); }
.logo small{
  display:block;
  font-family:'Inter', sans-serif;
  font-weight:500;
  font-size: 10.5px;
  letter-spacing:.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.logo-chip{
  background: var(--ink);
  border-radius: 12px;
  padding: 8px 18px;
  display:inline-flex;
  align-items:center;
}
.logo-chip img{
  height: 36px;
  width: auto;
  display:block;
}
.logo-img{
  height: 52px;
  width: auto;
}
.header-right{
  display:flex;
  align-items:center;
  gap: 14px;
}
.logo-mark{
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px dashed var(--green-deep);
  display:flex; align-items:center; justify-content:center;
  animation: spin-slow 18s linear infinite;
  flex-shrink:0;
}
.logo-mark svg{ width:18px; height:18px; }

nav.main-nav ul{
  display:flex;
  gap: 32px;
}
nav.main-nav a{
  font-weight:600;
  font-size: 15px;
  color: var(--ink);
  position:relative;
  padding: 6px 0;
}
nav.main-nav a::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:0; height:2px;
  background: var(--green-deep);
  transition: width .2s ease;
}
nav.main-nav a:hover::after,
nav.main-nav a.active::after{
  width:100%;
}
nav.main-nav a.active{ color: var(--green-deep-2); }

.nav-actions{ display:flex; align-items:center; gap:18px; }

.nav-toggle{
  display:none;
  width: 40px; height:40px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background:#fff;
  align-items:center; justify-content:center;
  cursor:pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:"";
  display:block;
  width: 18px; height:2px;
  background: var(--ink);
  position:relative;
  transition: all .2s ease;
}
.nav-toggle span::before{ position:absolute; top:-6px; }
.nav-toggle span::after{ position:absolute; top:6px; }

@media (max-width: 860px){
  nav.main-nav{
    position:absolute;
    top:100%; left:0; right:0;
    background: var(--offwhite);
    border-bottom: 1px solid var(--line);
    display:none;
    padding: 8px 24px 20px;
  }
  nav.main-nav.open{ display:block; }
  nav.main-nav ul{ flex-direction:column; gap:0; }
  nav.main-nav li{ border-top: 1px solid var(--line); }
  nav.main-nav a{ display:block; padding: 14px 0; }
  .nav-toggle{ display:flex; }
  .nav-actions .btn{ display:none; }
}

/* ---------- Hero ---------- */
.hero{
  background: linear-gradient(180deg, #EFF7E6 0%, var(--offwhite) 60%);
  position:relative;
  overflow:hidden;
  padding: 72px 0 60px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items:center;
}
.hero h1{
  font-size: clamp(34px, 5vw, 56px);
  max-width: 14ch;
}
.hero h1 em{
  font-style: normal;
  color: var(--green-deep);
  position:relative;
}
.hero p.lead{
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 28px;
}
.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom: 30px;}
.hero-trust{
  display:flex;
  gap: 28px;
  flex-wrap:wrap;
}
.hero-trust div{ display:flex; align-items:center; gap:8px; font-size:14px; color: var(--ink-soft); font-weight:600;}
.hero-trust svg{ width:18px; height:18px; color: var(--green-deep); flex-shrink:0; }

/* Real photo hero variant */
.hero-visual{
  position:relative;
  max-width: 420px;
  margin: 0 auto;
}
.hero-photo{
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3/4;
  background: var(--green-light);
}
.hero-photo img{
  width:100%; height:100%;
  object-fit: cover;
  object-position: top center;
  display:block;
}
.seal-mini{
  position:absolute;
  width: 108px; height:108px;
  left: -20px; bottom: -20px;
  z-index:2;
}
.seal-mini .seal-ring{ inset:0; border-width:2px; }
.seal-mini .seal-ring.inner{ inset:12px; }
.seal-mini .seal-core{
  width:100%; height:100%;
  padding:10px;
}
.seal-mini .seal-core svg{ width:22px; height:22px; margin-bottom:4px; }
.seal-mini .seal-core .big{ font-size:8.5px; line-height:1.3; }

@media (max-width: 900px){
  .hero-visual{ order:-1; max-width: 280px; }
  .seal-mini{ width:78px; height:78px; left:-14px; bottom:-14px; }
  .seal-mini .seal-core .big{ font-size:6.5px; }
  .seal-mini .seal-core svg{ width:16px; height:16px; }
}

/* Seal — signature visual element */
.seal-wrap{
  position:relative;
  aspect-ratio: 1;
  max-width: 420px;
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
}
.seal-ring{
  position:absolute;
  inset:0;
  border-radius:50%;
  border: 2px dashed var(--green-mid);
  animation: spin-slow 40s linear infinite;
}
.seal-ring.inner{
  inset: 40px;
  border-color: var(--green-deep);
  animation-duration: 30s;
  animation-direction: reverse;
}
.seal-core{
  position:relative;
  width: 62%;
  aspect-ratio:1;
  border-radius:50%;
  background: linear-gradient(145deg, var(--green-deep) 0%, var(--green-deep-2) 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  box-shadow: var(--shadow);
  text-align:center;
  padding: 20px;
}
.seal-core .big{
  font-family:'IBM Plex Mono', monospace;
  font-size: 15px;
  font-weight:600;
  letter-spacing:.06em;
}
.seal-core svg{ width:46px; height:46px; margin-bottom:10px; }
.seal-badge{
  position:absolute;
  background:#fff;
  border-radius: 999px;
  box-shadow: var(--shadow);
  padding: 10px 16px;
  display:flex;
  align-items:center;
  gap:8px;
  font-size: 13px;
  font-weight:700;
}
.seal-badge svg{ width:16px; height:16px; color:var(--gold); }
.seal-badge.b1{ top: 6%; right: -4%; }
.seal-badge.b2{ bottom: 8%; left: -6%; }

@keyframes spin-slow{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .seal-wrap{ order:-1; max-width: 280px; }
}
/* ---------- Stats band ---------- */
.stats-band{
  background: var(--green-deep-2);
  background-image: linear-gradient(120deg, var(--green-deep-2), var(--green-deep));
  color:#fff;
  padding: 44px 0;
}
.stats-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align:center;
}
.stats-grid.cols-3{
  grid-template-columns: repeat(3, 1fr);
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 720px){
  .stats-grid.cols-3{ grid-template-columns: repeat(1, 1fr); gap: 32px; }
}
.stat .num{
  font-family:'IBM Plex Mono', monospace;
  font-size: clamp(28px, 4vw, 42px);
  font-weight:600;
  color: var(--green-light);
}
.stat .label{
  font-size: 13px;
  letter-spacing: .04em;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
}
@media (max-width: 720px){
  .stats-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Section spacing ---------- */
section{ padding: 88px 0; }
.section-head{
  max-width: 640px;
  margin: 0 auto 48px;
  text-align:center;
}
.section-head h2{ font-size: clamp(28px, 3.6vw, 40px); }
.section-head p{ color: var(--ink-soft); font-size: 17px; }

/* ---------- Service cards ---------- */
.grid-4{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 980px){
  .grid-4{ grid-template-columns: repeat(2, 1fr); }
  .grid-3{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .grid-4{ grid-template-columns: 1fr; }
}

.card{
  background: var(--paper);
  border-radius: var(--radius);
  padding: 32px 26px;
  border-top: 3px solid var(--green-mid);
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(22,36,26,0.14);
}
.card .icon{
  width: 52px; height:52px;
  border-radius: 14px;
  background: var(--green-light);
  color: var(--green-deep-2);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 18px;
}
.card .icon svg{ width:26px; height:26px; }
.card h3{ font-size: 19px; margin-bottom: 10px; }
.card p{ color: var(--ink-soft); font-size: 15px; margin:0 0 16px; }
.card .learn{
  font-size: 14px;
  font-weight:700;
  color: var(--green-deep-2);
  display:inline-flex; align-items:center; gap:6px;
}
.card .learn svg{ width:14px; height:14px; transition: transform .2s ease; }
.card:hover .learn svg{ transform: translateX(4px); }
/* ---------- Process (numbered) ---------- */
.process{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}
@media (max-width: 900px){ .process{ grid-template-columns: 1fr; } }
.process-step{ position:relative; padding-left: 8px; }
.process-step .step-no{
  font-family:'Fraunces', serif;
  font-size: 46px;
  color: var(--green-light);
  -webkit-text-stroke: 1.5px var(--green-deep);
  line-height:1;
  margin-bottom: 14px;
  display:block;
}
.process-step h3{ font-size: 19px; }
.process-step p{ color: var(--ink-soft); font-size: 15px; }
.process-line{
  position:absolute;
  top: 26px; left: 46px; right: -32px;
  height:2px;
  background: repeating-linear-gradient(90deg, var(--green-mid) 0 8px, transparent 8px 14px);
}
@media (max-width: 900px){ .process-line{ display:none; } }

/* ---------- Two column feature ---------- */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items:center;
}
@media (max-width: 900px){ .split{ grid-template-columns: 1fr; } }
.feature-list li{
  display:flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.feature-list li:last-child{ border-bottom:none; }
.feature-list svg{ width:20px; height:20px; color: var(--green-deep); flex-shrink:0; margin-top:2px; }
.feature-list h4{ font-family:'Inter'; font-size:16px; font-weight:700; margin:0 0 2px; }
.feature-list p{ margin:0; font-size:14px; color: var(--ink-soft); }

.art-panel{
  background: linear-gradient(150deg, var(--green-light), #EFF7E6);
  border-radius: var(--radius);
  aspect-ratio: 4/3.2;
  display:flex; align-items:center; justify-content:center;
  position:relative;
  overflow:hidden;
}
.art-panel svg{ width: 46%; color: var(--green-deep); opacity:.9; }

/* ---------- CTA band ---------- */
.cta-band{
  background: var(--ink);
  color:#fff;
  border-radius: var(--radius);
  padding: 56px 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 24px;
  flex-wrap:wrap;
}
.cta-band h2{ color:#fff; margin-bottom: 6px; font-size: clamp(24px,3vw,32px); }
.cta-band p{ color: rgba(255,255,255,0.75); margin:0; }

/* ---------- Testimonials ---------- */
.testimonial-card{
  background:#fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.stars{ display:flex; gap:3px; margin-bottom:14px; color: var(--gold); }
.stars svg{ width:16px; height:16px; }
.testimonial-card p.quote{ font-size:15px; color:var(--ink-soft); margin-bottom:18px; }
.testimonial-author{ display:flex; align-items:center; gap:12px; }
.avatar{
  width:40px; height:40px; border-radius:50%;
  background: var(--green-light);
  color: var(--green-deep-2);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-family:'Fraunces', serif;
}
.testimonial-author .name{ font-weight:700; font-size:14px; }
.testimonial-author .role{ font-size:12px; color:var(--ink-soft); }

/* ---------- Forms ---------- */
.form-card{
  background:#fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media (max-width:640px){ .form-row{ grid-template-columns:1fr; } }
.field{ margin-bottom:18px; }
.field label{ display:block; font-size:13px; font-weight:700; margin-bottom:6px; color: var(--ink); }
.field input, .field select, .field textarea{
  width:100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  font-family:'Inter', sans-serif;
  font-size:14px;
  background: var(--offwhite);
  transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none;
  border-color: var(--green-deep);
}
.field textarea{ resize:vertical; min-height:110px; }

/* ---------- Footer ---------- */
footer.site-footer{
  background: var(--ink);
  color: rgba(255,255,255,0.82);
  padding: 64px 0 28px;
  margin-top: 40px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 40px;
}
@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-grid h4{
  color:#fff;
  font-family:'Inter'; font-size:14px; font-weight:700;
  text-transform:uppercase; letter-spacing:.06em;
  margin-bottom: 16px;
}
.footer-grid a, .footer-grid p{ font-size:14px; color: rgba(255,255,255,0.7); }
.footer-grid li{ margin-bottom:10px; }
.footer-grid a:hover{ color: var(--green-light); }
.footer-logo img{
  height: 34px;
  width: auto;
}
.footer-logo{ display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.footer-logo span{ font-family:'Fraunces', serif; font-weight:700; font-size:20px; color:#fff; }
.footer-logo span em{ font-style:normal; color: var(--green-mid); }
.social-row{ display:flex; gap:10px; margin-top:18px; }
.social-row a{
  width:36px; height:36px; border-radius:50%;
  background: rgba(255,255,255,0.08);
  display:flex; align-items:center; justify-content:center;
}
.social-row a:hover{ background: var(--green-deep); }
.social-row svg{ width:16px; height:16px; }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
/* ---------- Page hero (inner pages) ---------- */
.page-hero{
  background: linear-gradient(180deg, #EFF7E6 0%, var(--offwhite) 100%);
  padding: 56px 0 48px;
  text-align:center;
}
.page-hero h1{ font-size: clamp(30px, 4.5vw, 46px); }
.page-hero p{ color: var(--ink-soft); max-width: 60ch; margin: 0 auto; font-size:17px; }
.breadcrumb{
  font-family:'IBM Plex Mono', monospace;
  font-size:12px;
  color: var(--green-deep-2);
  letter-spacing:.08em;
  text-transform:uppercase;
}

/* ---------- Reveal — scroll-triggered entrance animation ---------- */
.reveal{
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: none;
}

.reveal-left{
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.is-visible{
  opacity: 1;
  transform: none;
}

.reveal-right{
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.is-visible{
  opacity: 1;
  transform: none;
}

.reveal-zoom{
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-zoom.is-visible{
  opacity: 1;
  transform: none;
}

/* Stagger service rows and cards slightly for a nicer effect */
.stacked-services .svc-row:nth-child(1){ transition-delay: 0.05s; }
.stacked-services .svc-row:nth-child(2){ transition-delay: 0.1s; }
.stacked-services .svc-row:nth-child(3){ transition-delay: 0.15s; }
.stacked-services .svc-row:nth-child(4){ transition-delay: 0.2s; }
.stacked-services .svc-row:nth-child(5){ transition-delay: 0.25s; }
.stacked-services .svc-row:nth-child(6){ transition-delay: 0.3s; }

.grid-4 .card:nth-child(1){ transition-delay: 0.05s; }
.grid-4 .card:nth-child(2){ transition-delay: 0.1s; }
.grid-4 .card:nth-child(3){ transition-delay: 0.15s; }
.grid-4 .card:nth-child(4){ transition-delay: 0.2s; }

.stat-row .stat-item:nth-child(1){ transition-delay: 0.05s; }
.stat-row .stat-item:nth-child(2){ transition-delay: 0.1s; }
.stat-row .stat-item:nth-child(3){ transition-delay: 0.15s; }
.stat-row .stat-item:nth-child(4){ transition-delay: 0.2s; }
.stat-row .stat-item:nth-child(5){ transition-delay: 0.25s; }

.stats-grid .stat:nth-child(1){ transition-delay: 0.05s; }
.stats-grid .stat:nth-child(2){ transition-delay: 0.1s; }
.stats-grid .stat:nth-child(3){ transition-delay: 0.15s; }

/* Laptop fix: animations ab reduced-motion setting par bhi chalti hain */
@media (prefers-reduced-motion: reduce){
  .reveal, .reveal-left, .reveal-right, .reveal-zoom{
    opacity:0;
    transform:none;
    transition:opacity .6s ease;
  }
  .reveal.is-visible, .reveal-left.is-visible,
  .reveal-right.is-visible, .reveal-zoom.is-visible{
    opacity:1;
  }
  .seal-ring, .logo-mark{ animation: none; }
}

/* ---------- Extra hover polish ---------- */
.svc-row{
  transition: transform .25s ease, box-shadow .25s ease;
}
.svc-row:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(22,36,26,0.14);
}
.area-chips span{
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.area-chips span:hover{
  background: var(--green-deep);
  color:#fff;
  transform: translateY(-2px);
}

/* ---------- Misc ---------- */
.divider-dot{
  width:6px; height:6px; border-radius:50%;
  background: var(--green-mid);
  display:inline-block;
}
.center{
  text-align:center;
}
.mt-40{
  margin-top:40px;
}

/* ===== EXTRA FONT POLISH ===== */
.svc-row .svc-num {
    font-family: 'Fraunces', serif !important;
    font-style: italic;
}

.stat-row .stat-item .figure {
    font-family: 'IBM Plex Mono', monospace !important;
}

/* ===== FLOATING WHATSAPP & CALL BUTTONS ===== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}
.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    position: relative;
}
.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}
.float-btn.whatsapp { background: #25D366; }
.float-btn.call { background: var(--green-deep-2, #1F5F24); }
.float-btn svg { width: 28px; height: 28px; fill: #fff; }
.float-btn .tooltip {
    position: absolute;
    right: 70px;
    background: #16241A;
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-family: 'Inter', sans-serif;
}
.float-btn:hover .tooltip { opacity: 1; }
@media (max-width: 640px) {
    .floating-buttons { bottom: 20px; right: 20px; gap: 12px; }
    .float-btn { width: 55px; height: 55px; }
    .float-btn svg { width: 24px; height: 24px; }
    .float-btn .tooltip { display: none; }
}

/* =========================================================
   V2 UPGRADES (menu animation, desktop boost, stats icons,
   trust panel, footer 5-column)
   ========================================================= */

/* ---- Mobile menu: smooth slide-down animation ---- */
@media (max-width: 860px){
  nav.main-nav{
    display:block;
    max-height:0;
    opacity:0;
    transform:translateY(-14px);
    overflow:hidden;
    padding:0 24px;
    transition:max-height .4s ease, opacity .3s ease, transform .4s ease, padding .4s ease;
  }
  nav.main-nav.open{
    max-height:480px;
    opacity:1;
    transform:translateY(0);
    padding:8px 24px 20px;
  }
}

/* ---- Desktop / Laptop size boost ---- */
@media (min-width: 1200px){
  :root{ --maxw: 1240px; }
  section{ padding: 110px 0; }
  body{ font-size: 17px; }
  nav.main-nav a{ font-size: 16px; }
  .btn{ padding: 16px 34px; font-size: 16px; }
  .hero{ padding: 96px 0 76px; }
  .hero p.lead{ font-size: 20px; }
  .hero-trust div{ font-size: 15px; }
  .section-head h2{ font-size: 44px; }
  .section-head p{ font-size: 18px; }
  .card{ padding: 40px 32px; }
  .card h3{ font-size: 22px; }
  .card p{ font-size: 16px; }
  .svc-row{ padding: 36px 34px; gap: 34px; }
  .svc-row .svc-num{ font-size: 54px; }
  .svc-row .svc-body h3{ font-size: 22px; }
  .svc-row .svc-body p{ font-size: 16px; }
  .stat .num{ font-size: 48px; }
  .stat .label{ font-size: 14px; }
  .process-step h3{ font-size: 22px; }
  .process-step p{ font-size: 16px; }
  .feature-list h4{ font-size: 18px; }
  .feature-list p{ font-size: 15px; }
  .area-chips span{ padding: 11px 22px; font-size: 15px; }
  .testimonial-card{ padding: 34px; }
  .testimonial-card p.quote{ font-size: 16.5px; }
  .cta-band{ padding: 64px 48px; }
  .who-we-are{ padding: 60px 40px; }
  .who-we-are p{ font-size: 17px; }
  .footer-grid a, .footer-grid p{ font-size: 15px; }
  .page-hero h1{ font-size: 50px; }
}

/* ---- Stats band icons — REMOVED per user request ---- */

/* ---- Trust panel — not used on index (wrench stays; kept for other pages) ---- */

/* ---- Footer v2: 5 columns on large screens ---- */
@media (min-width: 1100px){
  .footer-grid{ grid-template-columns: 1.5fr 0.9fr 1fr 1fr 1.2fr; }
}
.footer-grid .f-address{ font-style:normal; }

/* ---- Carousel grab cursor ---- */
.reviews-carousel{ cursor:grab; }
.reviews-carousel:active{ cursor:grabbing; }