/*
Theme Name: Make My Garden
Theme URI: https://makemygarden.ae
Author: Make My Garden® / Hyperclean® Technical Services
Description: Professional WordPress theme for Make My Garden® Dubai — landscaping & pool contractors.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
License: Proprietary
Text Domain: make-my-garden
Tags: landscaping, pool, garden, dubai, luxury, services
*/

/* ═══════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════ */
:root {
  --dk:    #081a10;
  --dk2:   #040d08;
  --dk3:   #0b2016;
  --lt:    #f5f9f0;
  --sand:  #edeae0;
  --white: #ffffff;
  --forest:#1d4a2c;
  --sage:  #4e7e3a;
  --lime:  #8dc93a;
  --lime2: #6fa52d;
  --gold:  #c8a84b;
  --pool:  #2f8aaa;
  --t-lt:  rgba(255,255,255,.85);
  --t-lm:  rgba(255,255,255,.58);
  --t-dk:  #1a3a22;
  --t-dm:  #3a5a42;
  --bl:    rgba(255,255,255,.14);
  --bd:    rgba(0,0,0,.09);
  --ease:  cubic-bezier(.16,1,.3,1);
  --gap:   clamp(3.5rem,6vw,6rem);
  --sh:    clamp(1.4rem,7vw,5.5rem);
  --rad:   0;
}

/* ═══════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  background: var(--dk);
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; -webkit-user-drag: none; user-select: none; }
ul, ol { list-style: none; }
p { line-height: 1.76; }
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.1; }
h1 { font-size: clamp(2.8rem,5.5vw,5.4rem); font-weight: 300; }
h2 { font-size: clamp(1.9rem,3.4vw,3.3rem); font-weight: 300; }
h3 { font-size: clamp(1.15rem,1.8vw,1.5rem); font-weight: 400; }
h4 { font-size: 1.1rem; font-weight: 600; }
em { font-style: italic; }
strong { font-weight: 700; }

/* ═══════════════════════════════════════════════
   TYPOGRAPHY UTILITIES
═══════════════════════════════════════════════ */
.section-label {
  font-size: .62rem; font-weight: 600; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .75rem; display: flex; align-items: center; gap: .65rem;
}
.section-label::before {
  content: ''; width: 1.8rem; height: 1px; background: var(--gold); flex-shrink: 0;
}
.section-label.dk { color: var(--sage); }
.section-label.dk::before { background: var(--sage); }
.section-label.gd { color: var(--gold); }
.section-label.gd::before { background: var(--gold); }
.section-label.cn { justify-content: center; }
.section-label.cn::before { display: none; }

/* Gold accents on dark/green backgrounds */
.bg-dk .section-label, .bg-dk3 .section-label, .mid-cta .section-label,
.coverage .section-label, #hero .section-label { color: var(--gold); }
.bg-dk .section-label::before, .bg-dk3 .section-label::before, .mid-cta .section-label::before,
.coverage .section-label::before, #hero .section-label::before { background: var(--gold); }
.bg-dk h2 em, .bg-dk3 h2 em, .mid-cta h2 em, .coverage h2 em,
#hero h1 em, .page-hero h1 em { color: var(--gold); }
.proc-step h3 { color: var(--gold); }
.proc-num { color: var(--gold); }
.ct-hdg em { color: var(--gold); }
.ct-lbl { color: var(--gold); }

/* ═══════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════ */
.shell { padding: var(--gap) var(--sh); }
.shell-sm { padding: clamp(1.8rem,3.5vw,3rem) var(--sh); }

/* ═══════════════════════════════════════════════
   BACKGROUNDS
═══════════════════════════════════════════════ */
.bg-dk  { background: var(--dk); }
.bg-dk3 { background: var(--dk3); }
.bg-lt  { background: var(--lt); color: var(--t-dk); }
.bg-lt h1,.bg-lt h2,.bg-lt h3,.bg-lt h4 { color: var(--t-dk); }
.bg-lt p { color: var(--t-dm); }
.bg-sd  { background: var(--sand); color: var(--t-dk); }
.bg-sd h1,.bg-sd h2,.bg-sd h3,.bg-sd h4 { color: var(--t-dk); }
.bg-sd p { color: var(--t-dm); }

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: 'DM Sans', sans-serif; font-size: .67rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  padding: .95rem 2.1rem; border: none; cursor: pointer;
  transition: all .25s var(--ease); border-radius: 0; text-decoration: none;
  white-space: nowrap;
}
.btn-lime   { background: var(--lime); color: var(--dk2); }
.btn-lime:hover   { background: var(--lime2); transform: translateY(-2px); }
.btn-forest { background: var(--forest); color: #fff; }
.btn-forest:hover { background: var(--sage); transform: translateY(-2px); }
.btn-ow     { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.42); }
.btn-ow:hover     { border-color: var(--lime); color: var(--lime); }
.btn-od     { background: transparent; color: var(--forest); border: 1.5px solid currentColor; }
.btn-od:hover     { background: var(--forest); color: #fff; }

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem var(--sh);
  background: rgba(8,26,16,.96); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bl); transition: box-shadow .3s;
}
#site-nav.scrolled { box-shadow: 0 2px 28px rgba(0,0,0,.45); }
.nav-logo {
  flex-shrink: 0; display: flex; align-items: center;
}
.nav-logo img {
  height: 44px; width: auto; display: block;
  object-fit: contain;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.nav-links { display: flex; align-items: center; gap: .5rem; list-style: none; flex-wrap: nowrap; }
.nav-links a {
  font-size: .5rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.75); transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--lime); }

/* Desktop Dropdown */
.nav-links .has-dropdown { position: relative; }
.nav-links .dropdown {
  display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  min-width: 220px; background: rgba(8,26,16,.98); backdrop-filter: blur(20px);
  border: 1px solid var(--bl); padding: .5rem 0; list-style: none;
  box-shadow: 0 12px 40px rgba(0,0,0,.6); z-index: 600;
}
.nav-links .has-dropdown:hover > .dropdown { display: block; }
.nav-links .dropdown a {
  display: block; padding: .55rem 1.2rem; font-size: .56rem;
  color: rgba(255,255,255,.7); transition: background .15s, color .15s;
}
.nav-links .dropdown a:hover { background: rgba(141,201,58,.08); color: var(--lime); }

.nav-r { display: flex; align-items: center; gap: .4rem; flex-shrink: 0; }
.nav-icon-btn {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border: 1.5px solid var(--lime);
  border-radius: 50%; color: var(--lime); transition: all .2s;
}
.nav-icon-btn:hover { background: var(--lime); color: var(--dk2); }
.nav-cta {
  font-size: .52rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  background: var(--lime); color: var(--dk2); padding: .45rem 1rem; transition: background .2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--lime2); }

/* Mobile Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: .3rem;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px; background: #fff;
  transition: all .3s; transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mob-menu {
  display: none; position: fixed; top: 52px; left: 0; right: 0; bottom: 0;
  background: rgba(8,26,16,.98); z-index: 999; padding: 2rem var(--sh);
  flex-direction: column; gap: 1.2rem; overflow-y: auto;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  font-size: 1.1rem; font-family: 'Cormorant Garamond', serif;
  color: rgba(255,255,255,.85); padding: .5rem 0; border-bottom: 1px solid var(--bl);
}
.mob-menu a:hover { color: var(--lime); }
.mob-menu .mob-cta-link {
  margin-top: 1rem; background: var(--lime); color: var(--dk2); text-align: center;
  padding: 1rem; font-family: 'DM Sans', sans-serif; font-size: .72rem;
  font-weight: 600; letter-spacing: .18em; text-transform: uppercase; border: none;
}

/* Mobile Accordion */
.mob-group { border-bottom: 1px solid var(--bl); }
.mob-parent {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  background: none; border: none; cursor: pointer; padding: .5rem 0;
  font-size: 1.1rem; font-family: 'Cormorant Garamond', serif;
  color: rgba(255,255,255,.85); transition: color .2s;
}
.mob-parent:hover { color: var(--lime); }
.mob-arrow { font-size: .7em; transition: transform .25s; }
.mob-parent[aria-expanded="true"] .mob-arrow { transform: rotate(180deg); }
.mob-sub { display: none; flex-direction: column; padding: 0 0 .5rem 1.2rem; }
.mob-sub.open { display: flex; }
.mob-sub a {
  font-size: .9rem !important; padding: .35rem 0 !important;
  border-bottom: none !important; color: rgba(255,255,255,.6) !important;
}
.mob-sub a:hover { color: var(--lime) !important; }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
#hero {
  min-height: 100svh; position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding-top: 70px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 40%;
  background-repeat: no-repeat;
  transform: scale(1.05); animation: heroZoom 9s ease-out forwards;
  background-color: var(--dk);
}
@keyframes heroZoom { to { transform: scale(1); } }

/* Hero Video */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}
/* Hide video on slow connections / mobile to save bandwidth */
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}
@media (max-width: 768px) {
  .hero-video { display: none; }
}
.hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(155deg, rgba(4,13,8,.22) 0%, rgba(4,13,8,.65) 50%, rgba(4,13,8,.97) 100%);
}
.hero-cnt {
  position: relative; z-index: 2;
  padding: 5vw var(--sh) 6.5vw; max-width: 1100px;
  animation: fadeUp 1.1s .3s var(--ease) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-cnt h1 { color: #fff; margin-bottom: 1.4rem; max-width: 15ch; }
.hero-cnt h1 em { color: var(--lime); }
.hero-sub {
  font-size: clamp(.87rem,1.3vw,1.05rem); color: rgba(255,255,255,.83);
  max-width: 52ch; margin-bottom: 2.5rem; line-height: 1.8;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2.4rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.4rem;
  font-size: .62rem; color: rgba(255,255,255,.72); letter-spacing: .08em; align-items: center;
}
.ht-sep { width: 1px; height: 13px; background: rgba(255,255,255,.22); }
.hero-badges-col {
  position: absolute; bottom: 2.5rem; right: var(--sh); z-index: 2;
  display: flex; flex-direction: column; gap: .42rem; align-items: flex-end;
}
.hbp {
  font-size: .55rem; letter-spacing: .16em; text-transform: uppercase;
  color: #fff; padding: .44rem .9rem;
  background: rgba(8,26,16,.8); backdrop-filter: blur(6px);
  border-left: 2px solid var(--lime); font-weight: 500; white-space: nowrap;
}

/* Page Hero (inner pages) */
.page-hero {
  min-height: 52vh; position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding-top: 70px;
}
.page-hero .hero-bg { animation: none; transform: scale(1); }
.page-hero .hero-cnt { padding: 3vw var(--sh) 5vw; }
.page-hero h1 { font-size: clamp(2.2rem,4vw,4rem); }

/* Hero image placeholder — shows when no bg image loaded */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(29,74,44,.6) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(78,126,58,.4) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(141,201,58,.05) 0%, transparent 70%),
    linear-gradient(160deg, #040d08 0%, #0b2016 35%, #1d4a2c 65%, #081a10 100%);
  opacity: 1;
  transition: opacity .5s;
  z-index: 0;
}
/* Hide placeholder gradient when real image loads */
.hero-bg[style*="url("] { background-size: cover; background-position: center 40%; }
.hero-bg[style*="url("]::after { opacity: 0; }

/* ═══════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════ */
.stats-bar {
  background: #051e12; display: grid; grid-template-columns: repeat(5,1fr);
  padding: 1.9rem var(--sh); border-bottom: 1px solid var(--bl);
}
.stat { text-align: center; padding: .5rem 1rem; border-right: 1px solid var(--bl); }
.stat:last-child { border-right: none; }
.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem,3.5vw,3.2rem); font-weight: 300;
  color: var(--lime); line-height: 1; margin-bottom: .35rem;
}
.stat-n em { font-style: normal; font-size: .75em; }
.stat-l { font-size: .58rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--t-lm); }
.stats-bar-2 { grid-template-columns: repeat(4,1fr); background: var(--forest); border-top: 1px solid rgba(255,255,255,.08); }

/* ═══════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════ */
.trust-bar {
  background: var(--dk3); border-bottom: 1px solid var(--bl);
  padding: 1rem var(--sh);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.trust-lbl { font-size: .58rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--lime); white-space: nowrap; }
.trust-certs { display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; }
.cert {
  font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--t-lm); padding: .3rem .7rem; border: 1px solid var(--bl);
  transition: all .2s; background: rgba(255,255,255,.04);
}
.cert:hover { border-color: var(--lime); color: var(--lime); background: rgba(141,201,58,.1); }
.cert-group-lbl {
  font-size: .52rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); padding: .3rem 0; margin-left: .5rem;
}

/* ═══════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════ */
.mstrip { background: var(--forest); overflow: hidden; padding: .78rem 0; border-top: 1px solid rgba(255,255,255,.06); }
.mtrack { display: flex; gap: 2.5rem; white-space: nowrap; width: max-content; animation: mq 64s linear infinite; }
.mi { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: .55rem; }
.md { width: 4px; height: 4px; border-radius: 50%; background: var(--lime); flex-shrink: 0; }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════
   DESIGN. CRAFT. BEAUTIFY. ENJOY. — TAGLINE SECTION
═══════════════════════════════════════════════ */
.mmg-tagline-section {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(29,74,44,.9) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(78,126,58,.7) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(141,201,58,.08) 0%, transparent 60%),
    linear-gradient(160deg, #040d08 0%, #0b2016 40%, #1d4a2c 70%, #081a10 100%);
  padding: clamp(5rem,12vw,10rem) var(--sh);
  display: flex; align-items: center; justify-content: center;
  min-height: 420px;
}
.mmg-tagline-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.mmg-tagline-inner {
  position: relative; z-index: 2; text-align: center; max-width: 900px;
}
.mmg-tagline-eyebrow {
  font-size: .6rem; font-weight: 700; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: .8rem;
}
.mmg-tagline-eyebrow::before, .mmg-tagline-eyebrow::after {
  content: ''; width: 2.5rem; height: 1px; background: var(--gold); opacity: .5;
}
.mmg-tagline-content {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(.6rem, 2.5vw, 2rem);
}
.mmg-tagline-word {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 300;
  color: rgba(255,255,255,.9);
  letter-spacing: .02em;
  line-height: 1.05;
  text-shadow: 0 2px 40px rgba(0,0,0,.3);
}
.mmg-tagline-accent {
  color: var(--gold) !important;
  font-style: italic;
  font-weight: 400;
  text-shadow: 0 2px 40px rgba(200,168,75,.25);
}
.mmg-tagline-sub {
  font-size: clamp(.82rem, 1.5vw, 1rem);
  color: rgba(255,255,255,.55);
  margin-top: 1.8rem;
  line-height: 1.7;
  font-style: italic;
  letter-spacing: .03em;
}

/* Layered gradient overlays for depth */
.mmg-tagline-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 100%, rgba(141,201,58,.08) 0%, transparent 50%),
    radial-gradient(circle at 0% 0%, rgba(200,168,75,.04) 0%, transparent 40%);
  pointer-events: none;
}
.mmg-tagline-section::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Floating leaves animation */
.mmg-leaf {
  position: absolute;
  font-size: clamp(1rem, 3vw, 2.2rem);
  opacity: .12;
  animation: leafFloat linear infinite;
  pointer-events: none;
  user-select: none;
  filter: blur(.5px);
}
@keyframes leafFloat {
  0%   { transform: translateY(-10%) rotate(0deg) translateX(0); opacity: 0; }
  8%   { opacity: .12; }
  85%  { opacity: .1; }
  100% { transform: translateY(110vh) rotate(420deg) translateX(100px); opacity: 0; }
}
.mmg-leaf-1  { left: 3%;  animation-duration: 14s; animation-delay: 0s;   font-size: 1.6rem; }
.mmg-leaf-2  { left: 12%; animation-duration: 18s; animation-delay: 2s;   font-size: 2rem; opacity: .08; }
.mmg-leaf-3  { left: 22%; animation-duration: 12s; animation-delay: 4s;   font-size: 1.3rem; }
.mmg-leaf-4  { left: 33%; animation-duration: 16s; animation-delay: 1s;   font-size: 1.8rem; }
.mmg-leaf-5  { left: 42%; animation-duration: 13s; animation-delay: 3s;   font-size: 1.4rem; opacity: .1; }
.mmg-leaf-6  { left: 52%; animation-duration: 19s; animation-delay: 5.5s; font-size: 1.7rem; }
.mmg-leaf-7  { left: 62%; animation-duration: 15s; animation-delay: 0.5s; font-size: 1.9rem; }
.mmg-leaf-8  { left: 72%; animation-duration: 14s; animation-delay: 2.5s; font-size: 1.2rem; opacity: .08; }
.mmg-leaf-9  { left: 82%; animation-duration: 16s; animation-delay: 4.5s; font-size: 1.5rem; }
.mmg-leaf-10 { left: 8%;  animation-duration: 20s; animation-delay: 6.5s; font-size: 1.8rem; opacity: .06; }
.mmg-leaf-11 { left: 48%; animation-duration: 13s; animation-delay: 7.5s; font-size: 1.3rem; }
.mmg-leaf-12 { left: 92%; animation-duration: 15s; animation-delay: 3.5s; font-size: 1.6rem; opacity: .1; }

/* ═══════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════ */
.svc-head { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; margin-bottom: 3rem; }
.svc-head-r { font-size: .88rem; color: var(--t-dm); line-height: 1.8; }
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; }
.svc-card {
  padding: 1.4rem 1.2rem; border: 1px solid var(--bd);
  background: #fff; position: relative; cursor: pointer; transition: background .3s, box-shadow .3s;
}
.svc-card:hover { background: var(--lt); box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.svc-card:hover { background: var(--lt); }
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--sage);
  transition: width .35s var(--ease);
}
.svc-card:hover::after { width: 100%; }
.svc-ico { width: 34px; height: 34px; color: var(--sage); margin-bottom: 1.1rem; stroke-width: 1.5; }

/* Global service icon styling — PNG images with CSS filter for color */
.mmg-icon {
  width: 34px; height: 34px; margin-bottom: .6rem;
  display: flex; align-items: center; justify-content: center;
  transition: filter .3s, transform .3s;
}
.mmg-icon img {
  width: 100%; height: 100%; object-fit: contain;
  /* Lime green */
  filter: brightness(0) saturate(100%) invert(68%) sepia(60%) saturate(500%) hue-rotate(50deg) brightness(105%);
  transition: filter .3s;
}
.svc-card:hover .mmg-icon img {
  /* Forest green on hover */
  filter: brightness(0) saturate(100%) invert(22%) sepia(30%) saturate(1400%) hue-rotate(100deg) brightness(85%);
}
.svc-card:hover .mmg-icon { transform: scale(1.08); }

/* Icons on dark backgrounds — lime green */
.bg-dk .mmg-icon img, .bg-dk3 .mmg-icon img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(40%) saturate(600%) hue-rotate(50deg) brightness(105%);
}
.bg-dk .svc-card:hover .mmg-icon img, .bg-dk3 .svc-card:hover .mmg-icon img {
  /* Gold on hover */
  filter: brightness(0) saturate(100%) invert(68%) sepia(50%) saturate(500%) hue-rotate(10deg) brightness(100%);
}

/* SVG fallback (for unknown slugs) */
.mmg-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* Carousel icons */
.svc-carousel .mmg-icon { width: 32px; height: 32px; margin-bottom: .5rem; }
.svc-ttl { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 600; color: var(--t-dk); margin-bottom: .35rem; }
.svc-txt { font-size: .7rem; color: var(--t-dm); line-height: 1.6; margin-bottom: .6rem; }
.svc-frm { font-size: .6rem; color: var(--t-dm); margin-bottom: .6rem; }
.svc-frm strong { color: var(--t-dk); font-weight: 700; }
.svc-lnk { display: inline-flex; align-items: center; gap: .3rem; font-size: .52rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); transition: gap .15s; }
.svc-card:hover .svc-lnk { gap: .6rem; }
.svc-cta { text-align: center; margin-top: 2.5rem; }
.svc-badge { position: absolute; top: .6rem; right: .6rem; font-size: .44rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; background: var(--lime); color: var(--dk2); padding: .2rem .5rem; }

/* ═══════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════ */
.proc-head { text-align: center; max-width: 680px; margin: 0 auto 2.8rem; }
.proc-head p { font-size: .88rem; color: var(--t-lm); margin-top: .8rem; }
.proc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: rgba(255,255,255,.06); max-width: 1100px; margin: 0 auto; }
.proc-step { background: var(--dk); padding: 2rem 1.8rem; border-top: 2px solid transparent; transition: border-color .3s, background .3s; }
.proc-step:hover { border-color: var(--lime); background: #0d2218; }
.proc-step.approv { background: #0a1e14; border-top-color: var(--gold); }
.proc-num { font-size: .58rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: .9rem; display: block; }
.proc-step.approv .proc-num { color: var(--gold); }
.proc-step h3 { font-size: 1.15rem; color: var(--gold); margin-bottom: .6rem; }
.proc-step.approv h3 { color: var(--gold); }
.proc-step p { font-size: .8rem; color: var(--t-lm); line-height: 1.7; }
.approv-chips { display: flex; flex-wrap: wrap; gap: .32rem; margin-top: .9rem; }
.approv-chips span { font-size: .54rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .22rem .5rem; border: 1px solid rgba(200,168,75,.5); color: var(--gold); }

/* ═══════════════════════════════════════════════
   COVERAGE
═══════════════════════════════════════════════ */
.coverage { padding: clamp(3rem,5vw,4.5rem) var(--sh); }
.cov-head { text-align: center; margin-bottom: 2.2rem; }
.cov-chips { display: grid; grid-template-columns: repeat(4,1fr); gap: .5rem; margin-bottom: .5rem; }
.cov-chip {
  font-size: .68rem; font-weight: 500; padding: .35rem .7rem;
  background: rgba(255,255,255,.05); border: 1px solid var(--bl);
  color: var(--t-lm); transition: all .2s;
  text-align: center; display: inline-flex; align-items: center; justify-content: center;
  white-space: nowrap;
}
.cov-chip:hover { background: rgba(200,168,75,.15); color: var(--gold); border-color: rgba(200,168,75,.4); }
.cov-chips { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; }

/* Coverage toggle tabs */
.cov-tab {
  font-size: .65rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  padding: .65rem 2rem; border: 1.5px solid var(--gold); background: transparent;
  color: var(--gold); cursor: pointer; transition: all .2s;
}
.cov-tab:first-child { border-radius: 4px 0 0 4px; border-right: none; }
.cov-tab:last-child { border-radius: 0 4px 4px 0; }
.cov-tab.active { background: var(--gold); color: var(--dk2); }
.cov-note { text-align: center; font-size: .74rem; color: var(--t-lm); margin-top: .8rem; }
.cov-note a { color: var(--lime); font-weight: 500; }

/* ═══════════════════════════════════════════════
   WHY US
═══════════════════════════════════════════════ */
.why-g { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.why-items { margin-top: 1.5rem; }
.why-item { margin-bottom: 2rem; }
.why-item h3 { font-size: 1.2rem; font-weight: 500; margin-bottom: .45rem; color: var(--t-dk); }
.why-item p { font-size: .84rem; color: var(--t-dm); line-height: 1.8; }
.promise-list { border: 1px solid var(--bd); padding: 1.6rem 2rem; margin: 1.8rem 0 2rem; background: #fff; }
.promise-item { display: flex; align-items: center; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid var(--bd); font-size: .87rem; color: var(--t-dk); }
.promise-item:last-child { border-bottom: none; padding-bottom: 0; }
.promise-dot { color: var(--sage); font-weight: 700; font-size: 1.1rem; }
.why-vis {
  width: 100%; aspect-ratio: 4/5;
  background: center/cover no-repeat;
  position: relative; overflow: hidden;
}
.why-vis-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,13,8,.55) 0%, rgba(4,13,8,.1) 65%); }
.why-badge {
  position: absolute; top: 2rem; right: -1rem; background: var(--lime); color: var(--dk2);
  padding: 1.1rem 1.5rem; box-shadow: 0 8px 32px rgba(0,0,0,.25);
  animation: floatY 4s ease-in-out infinite;
}
.why-badge strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2.1rem; font-weight: 300; line-height: 1; }
.why-badge span { font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

/* ═══════════════════════════════════════════════
   MID-PAGE CTA
═══════════════════════════════════════════════ */
.mid-cta { background: var(--forest); padding: clamp(2.5rem,4vw,4rem) var(--sh); text-align: center; }
.mid-cta h2 { color: #fff; margin-bottom: .7rem; }
.mid-cta p { font-size: .9rem; color: rgba(255,255,255,.78); max-width: 52ch; margin: 0 auto 2rem; line-height: 1.75; }
.mid-cta-btns { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

/* ═══════════════════════════════════════════════
   REVIEWS CAROUSEL
═══════════════════════════════════════════════ */
.rv-head { text-align: center; margin-bottom: 2.5rem; }
.rv-slider-wrap { overflow: hidden; position: relative; }
.rv-slider { display: flex; transition: transform .4s var(--ease); }
.rv-card { flex: 0 0 calc(33.333% - 1rem); margin: 0 .5rem; background: #fff; border: 1px solid var(--bd); padding: 1.6rem; box-sizing: border-box; }
.rv-card p { font-size: .87rem; color: var(--t-dm); line-height: 1.75; font-style: italic; margin-bottom: 1rem; }
.rc-name { font-weight: 700; color: var(--t-dk); font-size: .85rem; }
.rc-role { font-size: .7rem; color: var(--t-dm); margin-top: .2rem; }
.rv-slider-nav { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.5rem; }
.rv-arrow { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--bd); background: #fff; color: var(--t-dk); font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.rv-arrow:hover { border-color: var(--sage); background: var(--sage); color: #fff; }
.rv-dots { display: flex; gap: 6px; }
.rv-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,.15); border: none; cursor: pointer; padding: 0; transition: all .2s; }
.rv-dot.active { background: var(--sage); width: 24px; border-radius: 4px; }

@media (max-width:768px) {
  .rv-card { flex: 0 0 calc(100% - 1rem); }
}

/* ═══════════════════════════════════════════════
   CALCULATOR
═══════════════════════════════════════════════ */
/* Why Us stats (gold cards) */
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.5rem; }
.why-stat { background: rgba(200,168,75,.06); border: 1px solid rgba(200,168,75,.2); padding: 1.4rem; text-align: center; }
.why-stat-n { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300; color: var(--gold); line-height: 1; }
.why-stat-l { font-size: .55rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: .4rem; }

@media (max-width: 1024px) {
  .why-stat-n { font-size: 1.8rem; }
  .why-stat-l { font-size: .5rem; }
}
@media (max-width: 768px) {
  .why-stats { grid-template-columns: repeat(2,1fr) !important; gap: .8rem; }
  .why-stat { padding: 1rem; }
  .why-stat-n { font-size: 1.4rem !important; }
  .why-stat-l { font-size: .45rem !important; letter-spacing: .12em !important; }
}
@media (max-width: 480px) {
  .why-stat-n { font-size: 1.2rem !important; }
  .why-stat-l { font-size: .42rem !important; }
}

/* PAS section mini stats */
.pas-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: .8rem; margin-bottom: 2rem; }
.pas-stat { background: #e8f0df; border: 1px solid var(--bd); padding: 1.2rem .8rem; text-align: center; }
.pas-stat-n { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 300; color: var(--sage); line-height: 1; }
.pas-stat-l { font-size: .57rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--t-dm); margin-top: .3rem; }

@media (max-width: 1024px) {
  .pas-stats { grid-template-columns: repeat(2,1fr); }
  .pas-stat-n { font-size: 1.5rem; }
  .pas-stat-l { font-size: .5rem; }
}
@media (max-width: 768px) {
  .pas-stats { grid-template-columns: repeat(2,1fr) !important; }
  .pas-stat-n { font-size: 1.3rem !important; }
  .pas-stat-l { font-size: .45rem !important; }
}
@media (max-width: 480px) {
  .pas-stat-n { font-size: 1.2rem !important; }
  .pas-stat-l { font-size: .42rem !important; }
}

/* Calculator layout */
.calc-layout {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: center;
}
.calc-info { grid-column: 1; grid-row: 1; }
.calc-box { grid-column: 2; grid-row: 1 / 3; }
.calc-disclaimer { grid-column: 1; grid-row: 2; align-self: start; }

@media (max-width: 768px) {
  .calc-layout {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .calc-info { grid-column: 1; grid-row: 1; }
  .calc-box { grid-column: 1; grid-row: 2; }
  .calc-disclaimer { grid-column: 1; grid-row: 3; }
}

.calc-lbl { font-size: .6rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--t-dm); margin-bottom: .42rem; display: block; }
.calc-sel { width: 100%; padding: .7rem .9rem; background: var(--lt); border: 1px solid #cad8c2; font-family: 'DM Sans', sans-serif; font-size: .85rem; color: var(--t-dk); outline: none; transition: border-color .2s; -webkit-appearance: none; cursor: pointer; }
.calc-sel:focus { border-color: var(--sage); }
.calc-result { background: var(--dk); padding: 1.3rem 1.4rem; display: flex; align-items: center; justify-content: space-between; }
.calc-result-lbl { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--t-lm); font-weight: 600; }
.calc-result-val { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 300; color: var(--lime); }
.calc-note { font-size: .64rem; color: var(--t-dm); margin-bottom: 1rem; line-height: 1.6; }
.btn-calc { width: 100%; display: flex; align-items: center; justify-content: center; gap: .5rem; font-family: 'DM Sans', sans-serif; font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; background: var(--sage); color: #fff; padding: 1rem; border: none; cursor: pointer; transition: background .25s; text-decoration: none; }
.btn-calc:hover { background: var(--forest); }
.gc-style-opt { transition: all .2s; }
.gc-style-opt:has(input:checked) { border-color: var(--sage) !important; background: #e8f0df !important; }
.gc-pool-opt:has(input:checked) { border-color: var(--gold) !important; background: rgba(200,168,75,.08) !important; }

/* ═══════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════ */
.pt-g { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.pt-policy { background: #fff; border-left: 2px solid var(--sage); padding: 1.2rem 1.5rem; margin: 1.5rem 0; font-size: .84rem; color: var(--t-dk); line-height: 1.72; }
.pt-svcs { list-style: none; }
.pt-svc { display: flex; justify-content: space-between; padding: .9rem 1.2rem; border: 1px solid var(--bd); margin-bottom: .5rem; background: #fff; color: var(--t-dk); transition: background .2s; font-size: .87rem; }
.pt-svc:hover { background: var(--lt); }
.pt-svc strong { color: var(--sage); }

/* ═══════════════════════════════════════════════
   BLOG
═══════════════════════════════════════════════ */
.blog-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.2rem; flex-wrap: wrap; gap: 1rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.blog-card { background: #fff; border: 1px solid var(--bd); padding: 2rem; transition: transform .2s, box-shadow .2s; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.blog-cat { font-size: .56rem; font-weight: 600; color: var(--sage); margin-bottom: .75rem; text-transform: uppercase; letter-spacing: .1em; }
.blog-ttl { font-family: 'Cormorant Garamond', serif; font-size: 1.22rem; font-weight: 600; color: var(--t-dk); line-height: 1.28; margin-bottom: .55rem; }
.blog-exc { font-size: .78rem; color: var(--t-dm); margin-bottom: 1rem; line-height: 1.7; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; font-size: .7rem; color: var(--t-dm); margin-top: .8rem; }
.blog-lnk { font-weight: 600; color: var(--sage); text-transform: uppercase; font-size: .6rem; letter-spacing: .1em; }

/* ═══════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════ */
.faq-g { display: grid; grid-template-columns: minmax(0,280px) 1fr; gap: 5rem; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: .45rem; }
.faq-item { border: 1px solid var(--bd); background: #fff; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem 1.4rem; background: none; border: none; cursor: pointer; text-align: left; font-family: 'DM Sans', sans-serif; font-weight: 500; color: var(--t-dk); font-size: .9rem; }
.faq-ico { width: 24px; height: 24px; min-width: 24px; border: 1px solid #bcd0b0; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--t-dm); transition: all .25s; font-size: 1rem; line-height: 1; }
.faq-item.open .faq-ico { background: var(--sage); border-color: var(--sage); color: #fff; transform: rotate(45deg); }
.faq-a { display: none; padding: .9rem 1.4rem 1.1rem; border-top: 1px solid var(--bd); }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: .86rem; color: var(--t-dm); line-height: 1.78; }

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.ct-wrap { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.ct-vis {
  position: relative; min-height: 100%;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(29,74,44,.7) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(78,126,58,.5) 0%, transparent 50%),
    linear-gradient(160deg, #040d08 0%, #0b2016 35%, #1d4a2c 65%, #081a10 100%);
  background-size: cover; background-position: center;
}
.ct-ov { position: absolute; inset: 0; background: linear-gradient(to right, rgba(5,30,18,.92), rgba(5,30,18,.75)); display: flex; flex-direction: column; justify-content: center; padding: 3.5rem; }
.ct-info li svg { flex-shrink: 0; }
.ct-lbl { font-size: .58rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--lime); margin-bottom: .75rem; }
.ct-hdg { font-family: 'Cormorant Garamond', serif; font-size: 2.3rem; font-weight: 300; color: #fff; line-height: 1.18; margin-bottom: 2rem; }
.ct-hdg em { color: var(--lime); }
.ct-info { list-style: none; display: flex; flex-direction: column; gap: .78rem; }
.ct-info li { display: flex; align-items: center; gap: .55rem; font-size: .82rem; color: rgba(255,255,255,.8); }
.ct-info a:hover { color: #fff; }
.ct-form { background: var(--lt); padding: clamp(2.5rem,5vw,4.5rem); display: flex; flex-direction: column; justify-content: center; }
.ct-form .section-label.dk { margin-bottom: .5rem; }
.ct-form h2 { color: var(--t-dk); margin-bottom: .5rem; font-size: clamp(1.5rem,2.5vw,2.2rem); }
.ct-form > p { font-size: .84rem; color: var(--t-dm); margin-bottom: 2rem; line-height: 1.75; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1.1rem; }
.fg label { display: block; font-size: .58rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--t-dm); margin-bottom: .42rem; }
.fg input, .fg select, .fg textarea { width: 100%; padding: .82rem 1rem; background: #fff; border: 1px solid #cbdcc0; font-family: 'DM Sans', sans-serif; font-size: .9rem; color: var(--t-dk); outline: none; transition: border-color .2s; border-radius: 0; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--sage); }
.btn-form { width: 100%; padding: 1.1rem; background: var(--sage); color: #fff; font-family: 'DM Sans', sans-serif; font-size: .68rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; border: none; cursor: pointer; transition: background .25s; margin-top: .35rem; }
.btn-form:hover { background: var(--forest); }
.form-note { font-size: .58rem; color: var(--t-dm); text-align: center; margin-top: .6rem; }

/* WPForms — all overrides injected via wp_footer in functions.php */

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
#site-footer { background: #051e12; }
.ft-top { padding: 4rem var(--sh) 3rem; border-bottom: 1px solid var(--bl); }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3.5rem; }
.ft-logo { display: block; margin-bottom: .25rem; }
.ft-logo img { height: 72px; width: 72px; display: block; object-fit: cover; border-radius: 50%; }
.ft-tag { font-size: .62rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--t-lm); margin: 1rem 0 1.4rem; max-width: 28ch; line-height: 1.6; }
.ft-ci { display: flex; flex-direction: column; gap: .5rem; }
.ft-ci p { font-size: .74rem; color: var(--t-lm); display: flex; align-items: center; gap: .48rem; }
.ft-ci a { color: inherit; transition: color .2s; }
.ft-ci a:hover { color: var(--lime); }
.ft-col h4 { font-size: .58rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--t-lm); margin-bottom: 1.3rem; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.ft-col ul a { font-size: .78rem; color: var(--t-lm); transition: color .2s; }
.ft-col ul a:hover { color: var(--lime); }
.ft-social { display: flex; gap: .75rem; margin-top: 1.2rem; }
.ft-social a { font-size: .64rem; color: var(--t-lm); border: 1px solid var(--bl); padding: .3rem .7rem; transition: all .2s; }
.ft-social a:hover { color: var(--lime); border-color: var(--lime); }
.ft-certs { padding: 1.5rem var(--sh); border-bottom: 1px solid var(--bl); display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.ft-cert-lbl { font-size: .58rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--lime); white-space: nowrap; }
.ft-cert-bs { display: flex; flex-wrap: wrap; gap: .4rem; }
.ft-cert { font-size: .56rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--t-lm); border: 1px solid var(--bl); padding: .2rem .55rem; }
.ft-bot { padding: 1.5rem var(--sh); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.ft-copy { font-size: .64rem; color: var(--t-lm); letter-spacing: .04em; }
.ft-legal { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.ft-legal a { font-size: .62rem; color: var(--t-lm); transition: color .2s; }
.ft-legal a:hover { color: var(--lime); }

/* ═══════════════════════════════════════════════
   WHATSAPP + MOBILE CTA
═══════════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 5.5rem; right: 1.5rem; z-index: 490;
  width: 52px; height: 52px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: transform .25s, box-shadow .25s;
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); animation: none; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.35); }
  50%     { box-shadow: 0 4px 32px rgba(37,211,102,.6); }
}
.wa-float svg { width: 28px; height: 28px; fill: #ffffff; }

.mob-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 400; background: #051e12; border-top: 1px solid var(--bl); padding: .6rem .8rem; gap: .5rem; }
.mob-bar a { flex: 1; display: flex; align-items: center; justify-content: center; font-family: 'DM Sans', sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .85rem; text-decoration: none; border-radius: 4px; }
.mc-call { background: #0a2f1f; color: #fff; border: 1px solid var(--bl); }
.mc-wa   { background: #25D366; color: #fff; }

/* ═══════════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════════ */
.js-anim .reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.js-anim .reveal.visible { opacity: 1; transform: translateY(0); }
.js-anim .d2 { transition-delay: .1s; }
.js-anim .d3 { transition-delay: .2s; }
.js-anim .d4 { transition-delay: .3s; }
.js-anim .d5 { transition-delay: .4s; }
.js-anim .d6 { transition-delay: .5s; }

/* ═══════════════════════════════════════════════
   RESPONSIVE — 1024px | 768px | 480px | 320px
═══════════════════════════════════════════════ */
@media (max-width:1024px) {
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .svc-card:nth-child(4n) { border-right: 1px solid var(--bd); }
  .svc-card:nth-child(2n) { border-right: none; }
  .proc-grid { grid-template-columns: repeat(2,1fr); }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .stat-n { font-size: clamp(1.5rem,3vw,2rem) !important; }
  .stat-l { font-size: .5rem !important; }
  .why-g,.pt-g { grid-template-columns: 1fr; gap: 3rem; }
  .faq-g { grid-template-columns: 1fr; gap: 2.5rem; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .rv-grid,.blog-grid { grid-template-columns: repeat(2,1fr); }
  .ct-wrap { grid-template-columns: 1fr; }
  .ct-vis { min-height: 340px; position: relative; }
  .ct-ov { position: absolute; inset: 0; padding: 2.5rem 1.5rem; background: rgba(5,30,18,.88); }
  .svc-head { grid-template-columns: 1fr; gap: 1rem; }
  .cov-chips { grid-template-columns: repeat(3,1fr); }
}

@media (max-width:768px) {
  :root { --sh: 1rem; --gap: 2.5rem; }
  html, body { overflow-x: hidden !important; max-width: 100vw; }
  .shell, .shell-sm { padding-left: 1rem !important; padding-right: 1rem !important; overflow: hidden; }
  .nav-links { display: none; }
  .nav-icon-btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { font-size: .55rem; padding: .4rem .8rem; }
  .nav-logo img { height: 36px !important; width: auto !important; }
  .hero-badges-col { display: none; }
  .hero-bg { transform: none !important; animation: none !important; }
  .hero-ctas { flex-direction: column; gap: .6rem; }
  .hero-ctas a { width: 100%; text-align: center; justify-content: center; }
  .btn { white-space: normal !important; word-break: break-word; }
  .svc-grid,.proc-grid { grid-template-columns: 1fr; }
  .svc-card { border: 1px solid var(--bd) !important; }
  .rv-grid,.blog-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2,1fr) !important; padding: 1.2rem; }
  .stat { border-right: none; border-bottom: 1px solid var(--bl); }
  .stat-n { font-size: clamp(1.3rem,4vw,1.8rem) !important; }
  .stat-l { font-size: .45rem !important; letter-spacing: .15em !important; }
  .stat:last-child { border-bottom: none; }
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .ft-grid > div:first-child { grid-column: 1 / -1; }
  .ft-bot { flex-direction: column; text-align: center; }
  .mob-bar { display: flex; }
  body { padding-bottom: 60px; }
  .why-vis { aspect-ratio: 16/9; }
  .form-row { grid-template-columns: 1fr; }
  .mid-cta-btns { flex-direction: column; align-items: center; }
  .cov-chips { grid-template-columns: repeat(3,1fr); }
  /* Stack 2-col grids on mobile */
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; gap: 2rem !important; }
  [style*="grid-template-columns:repeat(3,1fr)"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(4,1fr)"] { grid-template-columns: 1fr 1fr !important; }
  /* Comparison table scroll */
  table { font-size: .75rem !important; }
  table th, table td { padding: .6rem .7rem !important; }
  /* Page hero height */
  .page-hero { min-height: 45vh; }
  .page-hero .hero-cnt { padding: 2rem 1rem 3rem; }
  h1 { font-size: clamp(1.6rem, 6vw, 2.8rem) !important; }
  h2 { font-size: clamp(1.3rem, 5vw, 2rem) !important; }
  p, li, td { font-size: clamp(.78rem, 2.8vw, .9rem) !important; }
  .section-label { font-size: clamp(.5rem, 2vw, .62rem) !important; }
  section, main, footer, header, nav { max-width: 100vw !important; overflow-x: hidden !important; }
}

@media (max-width:480px) {
  .stats-bar { grid-template-columns: repeat(2,1fr) !important; }
  .stat-n { font-size: 1.2rem !important; }
  .stat-l { font-size: .42rem !important; }
  .ft-grid { grid-template-columns: 1fr !important; }
  .cov-chips { grid-template-columns: repeat(2,1fr) !important; }
  .btn { width: 100% !important; text-align: center !important; }
  h1 { font-size: clamp(1.3rem, 7vw, 1.8rem) !important; }
}

/* ═══════════════════════════════════════════════
   BEFORE / AFTER PROJECT CARDS
═══════════════════════════════════════════════ */
/* 2-column project grid */
.proj-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.proj-hidden { display: none; }
.proj-card { background: #fff; border: 1px solid var(--bd); overflow: hidden; }

/* Project info under images */
.proj-info { padding: 1rem 1.2rem 1.2rem; }
.proj-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--t-dk); line-height: 1.2; }
.proj-meta { font-size: .68rem; color: var(--t-dm); margin-top: .2rem; }
.proj-scope { font-size: .72rem; color: var(--t-dm); line-height: 1.6; margin-top: .4rem; }
.proj-tags { display: flex; flex-wrap: wrap; gap: .3rem; margin-top: .6rem; }
.proj-tags span { font-size: .5rem; font-weight: 700; padding: .18rem .45rem; background: rgba(141,201,58,.08); border: 1px solid rgba(141,201,58,.2); color: var(--forest); letter-spacing: .06em; text-transform: uppercase; }

/* Toggle — compact, centered under collage */
.ba-toggle-wrap { display: flex; justify-content: center; padding: .6rem 0; background: #fff; border-top: 1px solid var(--bd); }
.ba-toggle { display: inline-flex; border: 1px solid var(--sage); }
.ba-btn {
  font-family: 'DM Sans', sans-serif; font-size: .52rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .35rem 1rem; border: none; cursor: pointer;
  background: transparent; color: var(--sage); transition: all .2s;
}
.ba-btn.active { background: var(--sage); color: #fff; }
.ba-btn:hover:not(.active) { background: rgba(78,126,58,.08); }

/* Legacy class compat */
.ba-project + .ba-project { }

/* ── Project Gallery — main + thumbnails layout ── */
.pg-gallery {
  display: none;
  flex-direction: column;
  gap: 4px;
  height: 420px;
}
.pg-gallery.active { display: flex; }

/* Main image — 70% height */
.pg-main {
  flex: 7; overflow: hidden; background: var(--dk3); cursor: pointer; position: relative; min-height: 0;
}
.pg-main img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.pg-main:hover img { transform: scale(1.02); }

/* Thumbnails row — 30% height */
.pg-thumbs {
  flex: 3; display: flex; gap: 4px; min-height: 0;
}
.pg-thumb {
  flex: 1; overflow: hidden; background: var(--dk3); cursor: pointer; position: relative; min-width: 0;
}
.pg-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s, opacity .3s; }
.pg-thumb:hover img { transform: scale(1.05); }
.pg-thumb.pg-active { outline: 2px solid var(--lime); outline-offset: -2px; }

/* 1 image — no thumbnails row */
.pg-gallery[data-count="1"] { }
.pg-gallery[data-count="1"] .pg-main { flex: 1; }
.pg-gallery[data-count="1"] .pg-thumbs { display: none; }

/* Lightbox */
.mmg-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mmg-lightbox.open { opacity: 1; pointer-events: auto; }
.mmg-lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; box-shadow: 0 8px 60px rgba(0,0,0,.5); }
.mmg-lb-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px; border: none; background: rgba(255,255,255,.1);
  color: #fff; font-size: 1.5rem; cursor: pointer; display: flex;
  align-items: center; justify-content: center; border-radius: 50%;
}
.mmg-lb-close:hover { background: rgba(255,255,255,.25); }
.mmg-lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border: none; background: rgba(255,255,255,.1);
  color: #fff; font-size: 1.2rem; cursor: pointer; display: flex;
  align-items: center; justify-content: center; border-radius: 50%;
}
.mmg-lb-nav:hover { background: rgba(255,255,255,.25); }
.mmg-lb-prev { left: 1.5rem; }
.mmg-lb-next { right: 1.5rem; }
.mmg-lb-caption { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); font-size: .75rem; color: rgba(255,255,255,.6); }

@media (max-width: 768px) {
  .proj-grid { grid-template-columns: 1fr; }
  .pg-gallery { height: 320px; }
}
@media (max-width: 480px) {
  .pg-gallery { height: 260px; }
  .pg-thumbs { flex: 2.5; }
}

/* ═══════════════════════════════════════════════
   PROJECTS REFERENCE CAROUSEL
═══════════════════════════════════════════════ */
@keyframes refScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ref-track a:hover img { transform: scale(1.05); }
.ref-wrap:hover .ref-track { animation-play-state: paused !important; }

/* ═══════════════════════════════════════════════
   IMAGE WATERMARK — applied on download only (via JS)
═══════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════
   IMAGE PLACEHOLDERS
═══════════════════════════════════════════════ */
.mmg-ph {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: var(--dk3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mmg-ph svg { width: 100%; height: 100%; display: block; }
.mmg-ph[data-type="hero"] { border-radius: 0; }
.mmg-ph[data-type="project"] { border-radius: 8px; }
.mmg-ph[data-type="blog"] { border-radius: 0; }
.mmg-ph[data-type="gallery"] { border-radius: 8px; }

/* Subtle shimmer animation for placeholders */
.mmg-ph::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(141,201,58,.03) 40%,
    rgba(141,201,58,.06) 50%,
    rgba(141,201,58,.03) 60%,
    transparent 80%
  );
  animation: phShimmer 4s ease-in-out infinite;
}
@keyframes phShimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ═══════════════════════════════════════════════
   VISUAL POLISH
═══════════════════════════════════════════════ */

/* Section divider — subtle top border on alternating sections */
.shell + .shell { border-top: 1px solid rgba(0,0,0,.04); }
.bg-dk3 + .bg-lt, .bg-lt + .bg-dk3,
.bg-dk3 + .bg-sd, .bg-sd + .bg-dk3,
.bg-lt + .bg-sd, .bg-sd + .bg-lt { border-top: none; }

/* 2-col grid sections — consistent styling */
[style*="grid-template-columns:1fr 1fr"] { max-width: 1200px; margin-left: auto; margin-right: auto; }

/* Highlight card hover */
[style*="rgba(141,201,58,.06)"] { transition: transform .2s, border-color .2s; }
[style*="rgba(141,201,58,.06)"]:hover { transform: translateY(-2px); border-color: rgba(141,201,58,.35) !important; }

/* Gold stat card hover */
[style*="rgba(200,168,75,.06)"] { transition: transform .2s, border-color .2s; }
[style*="rgba(200,168,75,.06)"]:hover { transform: translateY(-2px); border-color: rgba(200,168,75,.45) !important; }

/* Comparison table row hover */
table tr:hover td { background: rgba(141,201,58,.02); }

/* Service page hero breadcrumb */
.page-hero nav a { transition: color .2s; }
.page-hero nav a:hover { color: #fff; }

/* Process step cards — hover lift */
.bg-lt [style*="background:#fff"][style*="border:1px solid var(--bd)"] { transition: transform .2s, box-shadow .2s; }
.bg-lt [style*="background:#fff"][style*="border:1px solid var(--bd)"]:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.bg-sd [style*="background:#fff"][style*="border:1px solid var(--bd)"] { transition: transform .2s, box-shadow .2s; }
.bg-sd [style*="background:#fff"][style*="border:1px solid var(--bd)"]:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.06); }

/* Dark panel cards — hover glow */
.bg-dk3 [style*="rgba(255,255,255,.04)"] { transition: transform .2s, border-color .2s; }
.bg-dk3 [style*="rgba(255,255,255,.04)"]:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.15) !important; }

/* Promise list divider — fade on dark bg */
.bg-dk3 [style*="border-bottom:1px solid rgba(255,255,255,.06)"]:last-child { border-bottom: none; }

/* Gallery placeholder cards — hover zoom */
[style*="aspect-ratio:16/10"] { transition: transform .3s; overflow: hidden; }
[style*="aspect-ratio:16/10"]:hover { transform: scale(1.02); }

/* Smooth heading em transitions */
h2 em, h3 em { transition: color .3s; }

/* Better focus states for accessibility */
.btn:focus-visible, a:focus-visible, button:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

/* Print — hide nav, mobile bar, WA float */
@media print {
  #site-nav, .mob-bar, .wa-float, .mstrip { display: none !important; }
  body { padding: 0 !important; background: #fff !important; color: #000 !important; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 1200px (large tablets / small desktops)
═══════════════════════════════════════════════ */
@media (max-width:1200px) {
  /* 2-col SEO sections stack on smaller screens */
  .shell [style*="grid-template-columns:1fr 1fr"][style*="gap:4rem"] { gap: 2.5rem !important; }
  .shell [style*="grid-template-columns:1fr 1fr"][style*="gap:5rem"] { gap: 3rem !important; }
}

@media (max-width:320px) {
  :root { --sh: .5rem; --gap: 1.5rem; }
  .shell, .shell-sm { padding-left: .5rem !important; padding-right: .5rem !important; }
  .nav-logo img { height: 32px !important; width: auto !important; }
  .cov-chips { grid-template-columns: 1fr !important; }
  h1 { font-size: clamp(.95rem, 8vw, 1.4rem) !important; }
  p, li, td { font-size: clamp(.65rem, 3.5vw, .78rem) !important; }
}
