/* ============================================================
   ZWC SOLUTIONS PVT. LTD. — MASTER STYLESHEET
   File: assets/css/zwc-style.css
   Author: ZWC Web Team
   Description: All custom site-wide styles. Zero inline CSS.
   ============================================================ */

/* ─────────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
───────────────────────────────────────────── */
:root {
  --color-primary:      #2e7d32;   /* Deep forest green */
  --color-primary-dark: #1b5e20;
  --color-primary-light:#4caf50;
  --color-accent:       #66bb6a;
  --color-white:        #ffffff;
  --color-black:        #0d0d0d;
  --color-dark:         #121212;
  --color-gray-100:     #f8faf8;
  --color-gray-200:     #eef2ee;
  --color-gray-300:     #d6ddd6;
  --color-text:         #2c2c2c;
  --color-text-muted:   #606060;
  --color-whatsapp:     #25d366;
  --color-danger:       #c62828;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', 'Segoe UI', sans-serif;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.14);
  --shadow-green: 0 8px 30px rgba(46,125,50,0.25);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-pill:50px;

  --transition: all 0.28s ease;
  --section-pad: 90px 0;
  --section-pad-sm: 60px 0;
}

/* ─────────────────────────────────────────────
   2. RESET & BASE
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--color-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-primary-dark); }

ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-black);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ─────────────────────────────────────────────
   3. TYPOGRAPHY SCALE
───────────────────────────────────────────── */
.text-sm    { font-size: 0.875rem; }
.text-base  { font-size: 1rem; }
.text-lg    { font-size: 1.125rem; }
.text-xl    { font-size: 1.25rem; }
.text-2xl   { font-size: 1.5rem; }
.text-3xl   { font-size: 1.875rem; }
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-white  { color: var(--color-white) !important; }
.text-muted  { color: var(--color-text-muted); }
.text-green  { color: var(--color-primary); }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.lh-loose { line-height: 1.85; }

/* ─────────────────────────────────────────────
   4. LAYOUT UTILITIES
───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-wide {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: var(--section-pad); }
.section-sm { padding: var(--section-pad-sm); }
.section-dark { background: var(--color-dark); }
.section-green { background: var(--color-primary); }
.section-light { background: var(--color-gray-100); }
.section-white { background: var(--color-white); }

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
[class*="col-"] {
  padding: 0 15px;
  width: 100%;
}
.col-12 { width: 100%; }
.col-6  { width: 50%; }
.col-4  { width: 33.333%; }
.col-3  { width: 25%; }
.col-8  { width: 66.666%; }

.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.d-flex { display: flex; }
.flex-col { flex-direction: column; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }

/* ─────────────────────────────────────────────
   5. BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-white {
  background: var(--color-white);
  color: var(--color-primary-dark);
  border-color: var(--color-white);
}
.btn-white:hover {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn-outline-white:hover {
  background: var(--color-white);
  color: var(--color-primary-dark);
}
.btn-whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
  border-color: var(--color-whatsapp);
}
.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  color: var(--color-white);
}
.btn-sm {
  padding: 9px 18px;
  font-size: 0.875rem;
}
.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

/* ─────────────────────────────────────────────
   6. SECTION HEADINGS
───────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}
.section-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--color-black);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.section-heading-light { color: var(--color-white); }
.section-subtext {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 620px;
  line-height: 1.8;
}
.section-subtext-center { margin: 0 auto; }
.section-intro { margin-bottom: 3.5rem; }

/* ─────────────────────────────────────────────
   7. PRELOADER
───────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--color-white);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}
#preloader.hidden { opacity: 0; pointer-events: none; }
.preloader-ring {
  width: 48px;
  height: 48px;
  border: 4px solid var(--color-gray-200);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─────────────────────────────────────────────
   8. HEADER & NAVIGATION
───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.site-header.scrolled {
  background: var(--color-white);
  box-shadow: var(--shadow-md);
}

/* Top bar */
.header-topbar {
  background: var(--color-primary-dark);
  padding: 7px 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.85);
}
.header-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-contacts a {
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
}
.topbar-contacts a:hover { color: var(--color-white); }
.topbar-contacts i { font-size: 0.75rem; }
.topbar-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar-social a {
  color: rgba(255,255,255,0.7);
  font-size: 0.8125rem;
  transition: var(--transition);
}
.topbar-social a:hover { color: var(--color-white); }

/* Main nav */
.header-main {
  padding: 14px 0;
  transition: padding 0.3s ease;
}
.site-header.scrolled .header-main { padding: 10px 0; }
.header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-logo img {
  height: 52px;
  width: auto;
  transition: var(--transition);
}
.site-header.scrolled .site-logo img { height: 44px; }

/* Nav links */
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: block;
  padding: 8px 14px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-white);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.site-header.scrolled .nav-link { color: var(--color-text); }
.nav-link:hover, .nav-link.active {
  color: var(--color-primary-light) !important;
}
.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
  color: var(--color-primary) !important;
}

/* Dropdown */
.nav-item.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  min-width: 220px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border-top: 3px solid var(--color-primary);
  padding: 8px 0;
}
.dropdown-item {
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.dropdown-item:hover {
  background: var(--color-gray-100);
  color: var(--color-primary);
  border-left-color: var(--color-primary);
  padding-left: 24px;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-white);
}
.site-header.scrolled .header-phone { color: var(--color-text); }
.header-phone i { color: var(--color-accent); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}
.site-header.scrolled .hamburger span { background: var(--color-text); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
/* ── Mobile Nav Overlay ── */
.mobile-nav-overlay {
  display: block;
  visibility: hidden;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  z-index: 1999;
  transition: background 0.4s ease, visibility 0.4s ease;
}
.mobile-nav-overlay.open {
  visibility: visible;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

/* ── Drawer ── */
.mobile-nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: -110%;
  width: min(340px, 92vw);
  height: 100vh;
  height: 100dvh;
  background: #ffffff;
  z-index: 2000;
  overflow-y: auto;
  overflow-x: hidden;
  transition: right 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.18);
}
.mobile-nav.open { right: 0; }

/* Green top strip */
.mobile-nav::before {
  content: '';
  display: block;
  height: 5px;
  flex-shrink: 0;
  background: linear-gradient(90deg, var(--color-primary) 0%, #66bb6a 100%);
}

/* ── Header row ── */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 14px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}
.mobile-nav-logo { margin: 0; }
.mobile-nav-logo img { height: 42px; width: auto; }

/* Close button */
.mobile-nav-close {
  position: static;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.25s;
  flex-shrink: 0;
}
.mobile-nav-close:hover {
  background: var(--color-primary);
  color: #fff;
  transform: rotate(90deg);
}

/* ── Quick contact strip ── */
.mobile-nav-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 20px;
  background: #f8fdf8;
  border-bottom: 1px solid #e8f5e9;
  flex-shrink: 0;
}
.mobile-nav-contact a {
  font-size: 0.8125rem;
  color: var(--color-primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.mobile-nav-contact a i { width: 16px; text-align: center; font-size: 0.75rem; }

/* ── Nav links ── */
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 8px 0;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: #f1f8f1;
  color: var(--color-primary);
  border-left-color: var(--color-primary);
}
.mobile-nav-link-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.nav-link-icon {
  width: 32px;
  height: 32px;
  background: #f0faf0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav-link:hover .nav-link-icon,
.mobile-nav-link.active .nav-link-icon {
  background: var(--color-primary);
  color: #fff;
}
.mobile-chevron {
  font-size: 0.7rem;
  color: #999;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
#mobileServicesToggle.open .mobile-chevron,
#mobileSolutionsToggle.open .mobile-chevron,
#mobileMediaToggle.open .mobile-chevron {
  transform: rotate(180deg);
  color: var(--color-primary);
}

/* ── Services subnav ── */
.mobile-subnav {
  display: none;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-subnav.open { display: block; }
.mobile-subnav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px 11px 64px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #444;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.mobile-subnav-link i { width: 16px; text-align: center; color: var(--color-primary); font-size: 0.8rem; }
.mobile-subnav-link:hover {
  background: #f0faf0;
  color: var(--color-primary);
  border-left-color: var(--color-primary);
}

/* Divider */
.mobile-nav-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 4px 20px;
}

/* ── Social row ── */
.mobile-nav-social {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 14px 20px 6px;
}
.mobile-nav-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  color: #555;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav-social a:hover { background: var(--color-primary); color: #fff; }

/* ── CTA buttons ── */
.mobile-nav-cta {
  padding: 14px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid #f0f0f0;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   9. HERO SECTION — Vanilla JS Slider (No Slick dependency)
───────────────────────────────────────────── */

/* ─────────────────────────────────────────────
   9. HERO SECTION — Vanilla JS Slider
   Mobile: image shown at natural size, no zoom
───────────────────────────────────────────── */

/* 1. Outer wrapper — clips overflow so only 1 slide visible */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0d1f0e;
}

/* 2. Sliding track — all slides in a row, JS shifts translateX */
.hero-slides {
  display: flex;
  width: 100%;
  transition: transform 0.85s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
  /* NO height here — let slides dictate height naturally */
}

/* 3. Each slide — DESKTOP: full viewport height */
.hero-slide {
  position: relative;
  flex: 0 0 100%;          /* never shrink, always full width */
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* 4. Background image wrapper — fills slide completely */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0d1f0e;
}

/* 5. DESKTOP: cover entire slide area */
.hero-slide-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* 6. Dark overlay above image */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(13, 54, 20, 0.78) 0%,
    rgba(0, 0, 0, 0.48) 100%
  );
}

/* 7. Text content — sits on top of overlay */
.hero-slide-content {
  position: relative;
  z-index: 3;
  padding: 160px 24px 100px;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  pointer-events: auto; /* ensure clicks always work */
}

/* Eyebrow badge */
.hero-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--color-white);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

/* Main heading */
.hero-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

/* Subtitle */
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.5rem;
  line-height: 1.65;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

/* CTA button row */
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 4; /* always above overlay */
}

/* Scroll indicator arrow */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  animation: bounceArrow 2s infinite;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  pointer-events: none;
}
@keyframes bounceArrow {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Prev / Next Arrow Buttons (JS-generated) ── */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  backdrop-filter: blur(6px);
  color: var(--color-white);
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.hero-arrow:hover  { background: rgba(255, 255, 255, 0.3); }
.hero-arrow--prev  { left: 20px; }
.hero-arrow--next  { right: 20px; }

/* ── Dot Navigation (JS-generated) ── */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.hero-dot.active {
  background: var(--color-white);
  transform: scale(1.4);
}

/* ══════════════════════════════════════════
   MOBILE HERO — fixed via CSS only, no JS height sync
   Goal: show banner at natural proportion, no zoom, no crop
══════════════════════════════════════════ */
@media (max-width: 767px) {

  .hero {
    height: auto;
    min-height: unset;
  }

  /* Slide: tall enough for topbar + header + content */
  .hero-slide {
    min-height: unset;
    height: auto;
    aspect-ratio: 9 / 16;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-slide-bg {
    position: absolute;
    inset: 0;
  }
  .hero-slide-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .hero-slide-overlay {
    position: absolute;
    inset: 0;
  }

  /* Push content below topbar + header — now topbar visible ~34px + header ~60px = ~94px */
  .hero-slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 140px 18px 72px;
    z-index: 3;
    pointer-events: auto;
  }

  .hero-title    { font-size: clamp(1.125rem, 5.5vw, 1.625rem); margin-bottom: 0.5rem; }
  .hero-subtitle { font-size: 0.8125rem; margin-bottom: 1.25rem; line-height: 1.5; }
  .hero-eyebrow  { font-size: 0.625rem; letter-spacing: 1.5px; margin-bottom: 0.75rem; padding: 4px 12px; }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 220px;
    justify-content: center;
    padding: 10px 18px;
    font-size: 0.875rem;
  }

  .hero-arrow { display: none !important; }

  .hero-dots {
    bottom: 10px;
    gap: 6px;
  }

  .hero-scroll-indicator { display: none; }
}

@media (max-width: 480px) {
  .hero-slide         { aspect-ratio: 9 / 16; }
  .hero-slide-content { padding: 130px 16px 68px; }
  .hero-title         { font-size: clamp(1rem, 5vw, 1.375rem); }
  .hero-eyebrow       { font-size: 0.5625rem; }
  .hero-actions .btn  { max-width: 200px; }
}

/* ─────────────────────────────────────────────
   10. STATS STRIP
───────────────────────────────────────────── */
.stats-strip {
  background: linear-gradient(90deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  padding: 50px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-white);
  font-family: var(--font-heading);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  margin-top: 6px;
  display: block;
}
.stat-icon { font-size: 1.75rem; color: rgba(255,255,255,0.65); margin-bottom: 8px; }

/* ─────────────────────────────────────────────
   11. FEATURES STRIP
───────────────────────────────────────────── */
.features-strip {
  background: var(--color-white);
  padding: 60px 0;
  border-bottom: 1px solid var(--color-gray-200);
}
.features-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.feature-strip-item {
  padding: 30px 30px;
  border-right: 1px solid var(--color-gray-200);
  transition: var(--transition);
}
.feature-strip-item:last-child { border-right: none; }
.feature-strip-item:hover { background: var(--color-gray-100); }
.feature-strip-icon {
  width: 56px;
  height: 56px;
  background: var(--color-gray-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  transition: var(--transition);
}
.feature-strip-item:hover .feature-strip-icon {
  background: var(--color-primary);
  color: var(--color-white);
}
.feature-strip-title { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-strip-desc { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.7; }

/* ─────────────────────────────────────────────
   12. ABOUT SECTION
───────────────────────────────────────────── */
.about-section { padding: var(--section-pad); }
.about-img-wrapper { position: relative; }
.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-green);
  min-width: 140px;
}
.about-badge-num {
  font-size: 2.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
  display: block;
  line-height: 1;
}
.about-badge-text { font-size: 0.875rem; opacity: 0.9; margin-top: 4px; }
.about-checklist { margin: 1.5rem 0 2rem; }
.about-check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9375rem;
}
.about-check-item i {
  color: var(--color-primary);
  margin-top: 2px;
  flex-shrink: 0;
}
.about-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─────────────────────────────────────────────
   13. SERVICES / PRODUCT CARDS
───────────────────────────────────────────── */
.services-section { padding: var(--section-pad); background: var(--color-gray-100); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 3rem;
}
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.service-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card-title { font-size: 1.25rem; margin-bottom: 0.625rem; }
.service-card-desc { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.7; flex: 1; margin-bottom: 1.25rem; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
  transition: var(--transition);
}
.service-card-link:hover { gap: 10px; color: var(--color-primary-dark); }
.service-card-link i { font-size: 0.8rem; }

/* ─────────────────────────────────────────────
   14. WHY ZWC / FEATURE GRID
───────────────────────────────────────────── */
.why-section { padding: var(--section-pad); background: var(--color-white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 1rem;
}
.why-item {
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-gray-200);
  transition: var(--transition);
}
.why-item:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-sm);
  background: var(--color-gray-100);
}
.why-icon {
  width: 52px;
  height: 52px;
  background: var(--color-gray-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.why-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.why-desc { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.7; }

/* ─────────────────────────────────────────────
   15. CTA BANNER
───────────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,54,20,0.88) 0%, rgba(46,125,50,0.80) 100%);
  z-index: 1;
}
.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.cta-banner-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--color-white);
  margin-bottom: 1rem;
}
.cta-banner-text {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.cta-banner-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────
   16. ENQUIRY FORM (INLINE)
───────────────────────────────────────────── */
.enquiry-section { padding: var(--section-pad); background: var(--color-gray-100); }
.enquiry-form-wrapper {
  background: var(--color-white);
  border-radius: 20px;
  padding: 44px 48px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.03), 0 14px 44px rgba(0,0,0,0.10);
  border: 1px solid rgba(46,125,50,0.08);
  position: relative;
  overflow: hidden;
}
.enquiry-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary-dark) 0%, var(--color-primary-light) 100%);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid-full { grid-column: 1 / -1; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #2c4a2e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-control {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid #c6d8c6;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: #f6fbf6;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  outline: none;
}
.form-control:focus {
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 3.5px rgba(46,125,50,0.13);
}
.form-control::placeholder { color: #adb8ad; }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232e7d32' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 42px;
  cursor: pointer;
}
textarea.form-control { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 0.5rem; }
.form-note { font-size: 0.8125rem; color: var(--color-text-muted); margin-top: 8px; display: flex; align-items: center; gap: 5px; }

/* ─────────────────────────────────────────────
   17. TESTIMONIALS
───────────────────────────────────────────── */
.testimonials-section { padding: var(--section-pad); background: var(--color-white); }
.testimonial-card {
  background: var(--color-gray-100);
  border-radius: var(--radius-md);
  padding: 32px;
  border-left: 4px solid var(--color-primary);
  height: 100%;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-stars { color: #f5a623; font-size: 0.875rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.testimonial-author { font-weight: 700; font-size: 0.9375rem; }
.testimonial-role { font-size: 0.8125rem; color: var(--color-text-muted); }

/* ─────────────────────────────────────────────
   18. FAQ ACCORDION
───────────────────────────────────────────── */
.faq-section { padding: var(--section-pad); background: var(--color-gray-100); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--color-white);
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--color-primary); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}
.faq-item.open .faq-question { color: var(--color-primary); }
.faq-question-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--color-gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--color-text-muted);
}
.faq-item.open .faq-question-icon {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}

/* ─────────────────────────────────────────────
   19. CITY / SERVICE AREA BADGES
───────────────────────────────────────────── */
.city-section { padding: 60px 0; background: var(--color-white); }
.city-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 1.5rem;
}
.city-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-gray-300);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: var(--transition);
}
.city-badge i { color: var(--color-primary); font-size: 0.75rem; }
.city-badge:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-gray-100);
}

/* ─────────────────────────────────────────────
   20. PAGE TITLE / BREADCRUMB HERO
───────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,54,20,0.82) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.page-hero-content { position: relative; z-index: 2; color: var(--color-white); }
.page-hero-content p,
.page-hero-content h1,
.page-hero-content h2,
.page-hero-content h3,
.page-hero-content span:not(.section-label):not(.hero-eyebrow) {
  color: var(--color-white);
}
.page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-white);
  margin-bottom: 1rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--color-white); }
.breadcrumb-sep { opacity: 0.5; }
.breadcrumb-current { color: var(--color-accent); font-weight: 600; }

/* ─────────────────────────────────────────────
   21. CONTACT PAGE
───────────────────────────────────────────── */
.contact-section { padding: var(--section-pad); }
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}
.contact-info-card {
  background: var(--color-primary-dark);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: var(--color-white);
  height: 100%;
}
.contact-info-card h3 {
  color: var(--color-white);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail-text { font-size: 0.9rem; opacity: 0.9; line-height: 1.6; }
.contact-detail-text a { color: rgba(255,255,255,0.85); }
.contact-detail-text a:hover { color: var(--color-white); }
.contact-detail-label { font-weight: 700; margin-bottom: 2px; font-size: 0.875rem; color: var(--color-accent); }
.contact-social { display: flex; gap: 10px; margin-top: 2rem; flex-wrap: wrap; }
.contact-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  transition: var(--transition);
}
.contact-social-link:hover { background: rgba(255,255,255,0.15); color: var(--color-white); }
.contact-form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-wrapper h3 { margin-bottom: 0.5rem; }
.contact-form-wrapper p { color: var(--color-text-muted); margin-bottom: 1.75rem; }

/* Map embed */
.map-section { padding: 0 0 80px; }
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-embed iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

/* ─────────────────────────────────────────────
   22. ABOUT PAGE
───────────────────────────────────────────── */
.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 1rem;
}
.vm-card {
  background: var(--color-gray-100);
  border-radius: var(--radius-md);
  padding: 36px;
  border-top: 4px solid var(--color-primary);
}
.vm-icon { font-size: 2.25rem; color: var(--color-primary); margin-bottom: 1rem; }
.vm-title { font-size: 1.375rem; margin-bottom: 0.75rem; }
.vm-text { font-size: 0.95rem; color: var(--color-text-muted); line-height: 1.8; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 1rem;
}
.team-card {
  text-align: center;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--color-gray-200);
}
.team-name { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 0.85rem; color: var(--color-primary); font-weight: 600; }

/* ─────────────────────────────────────────────
   23. SERVICE / PRODUCT PAGES
───────────────────────────────────────────── */
.product-intro { padding: var(--section-pad); }
.product-feature-section { padding: 80px 0; }
.product-feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}
.product-feature-row:last-child { margin-bottom: 0; }
.product-feature-row.reverse { flex-direction: row-reverse; }
.product-feature-img {
  flex: 0 0 48%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.product-feature-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.product-feature-content { flex: 1; }
.product-feature-title { font-size: 1.625rem; margin-bottom: 0.875rem; }
.product-feature-desc { font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.85; margin-bottom: 1.25rem; }
.feature-bullets { display: flex; flex-direction: column; gap: 8px; }
.feature-bullet {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9375rem;
}
.feature-bullet i { color: var(--color-primary); margin-top: 3px; flex-shrink: 0; }

/* Specs table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  margin-top: 1rem;
}
.specs-table th {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
}
.specs-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--color-gray-200);
  color: var(--color-text-muted);
}
.specs-table tr:nth-child(even) td { background: var(--color-gray-100); }
.specs-table tr:last-child td { border-bottom: none; }

/* ─────────────────────────────────────────────
   24. BLOG
───────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 2rem;
}
.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img { overflow: hidden; height: 200px; }
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { font-size: 0.8125rem; color: var(--color-text-muted); margin-bottom: 8px; }
.blog-card-title { font-size: 1.0625rem; margin-bottom: 0.625rem; line-height: 1.4; }
.blog-card-excerpt { font-size: 0.875rem; color: var(--color-text-muted); line-height: 1.7; flex: 1; margin-bottom: 1rem; }
.blog-card-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-card-link:hover { gap: 10px; }

/* ─────────────────────────────────────────────
   25. FOOTER
───────────────────────────────────────────── */
.site-footer { background: #0d1f0e; color: rgba(255,255,255,0.78); padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 0.9rem; line-height: 1.8; margin-top: 1.25rem; margin-bottom: 1.5rem; }
.footer-logo { height: 52px; width: auto; filter: brightness(0) invert(1); }
.footer-heading { font-family: var(--font-body); font-size: 0.8125rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--color-accent); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-link:hover { color: var(--color-white); padding-left: 4px; }
.footer-link i { font-size: 0.6875rem; color: var(--color-accent); }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.footer-contact-item i { color: var(--color-accent); margin-top: 3px; font-size: 0.875rem; }
.footer-contact-item span, .footer-contact-item a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}
.footer-contact-item a:hover { color: var(--color-white); }
.footer-social { display: flex; gap: 8px; margin-top: 0.75rem; flex-wrap: wrap; }
.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-social-link:hover { background: var(--color-primary); border-color: var(--color-primary); color: var(--color-white); }
.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.55); }
.footer-bottom-links a:hover { color: var(--color-white); }

/* ─────────────────────────────────────────────
   26. FLOATING BUTTONS & MOBILE CTA BAR
───────────────────────────────────────────── */
.float-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 100px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: var(--color-white);
  font-size: 1.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37,211,102,0.45);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.float-whatsapp:hover { transform: scale(1.1); color: var(--color-white); }
.float-phone {
  position: fixed;
  right: 22px;
  bottom: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-danger);
  color: var(--color-white);
  font-size: 1.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(198,40,40,0.4);
  z-index: 999;
  text-decoration: none;
  transition: var(--transition);
}
.float-phone:hover { transform: scale(1.1); color: var(--color-white); }

/* Scroll-to-top */
.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 166px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  cursor: pointer;
  border: none;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-green);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--color-primary-dark); }

/* Mobile sticky CTA bar */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--color-primary-dark);
  padding: 10px 12px;
  gap: 8px;
}
.sticky-mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 6px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
}
.sticky-mobile-bar .mbar-call     { background: var(--color-danger); }
.sticky-mobile-bar .mbar-whatsapp { background: var(--color-whatsapp); }
.sticky-mobile-bar .mbar-quote    { background: var(--color-primary-light); }

/* ─────────────────────────────────────────────
   27. THANKS / SUCCESS PAGE
───────────────────────────────────────────── */
.thanks-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}
.thanks-card {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}
.thanks-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  color: var(--color-primary);
  margin: 0 auto 1.5rem;
}
.thanks-title { font-size: 2rem; margin-bottom: 0.75rem; }
.thanks-text { color: var(--color-text-muted); font-size: 1.0625rem; line-height: 1.8; margin-bottom: 2rem; }

/* ─────────────────────────────────────────────
   28. MEDIA PAGE
───────────────────────────────────────────── */
.media-filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 2rem; }
.media-filter-btn {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-gray-300);
  background: var(--color-white);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.media-filter-btn.active, .media-filter-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.media-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--color-white);
  transition: var(--transition);
}
.media-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.media-card-img { height: 200px; overflow: hidden; }
.media-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.media-card:hover .media-card-img img { transform: scale(1.05); }
.media-card-body { padding: 18px 20px; }
.media-card-title { font-size: 0.9375rem; font-weight: 700; margin-bottom: 6px; }
.media-card-date { font-size: 0.8rem; color: var(--color-text-muted); }

/* ─────────────────────────────────────────────
   29. RESPONSIVE BREAKPOINTS
───────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.2); }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-grid { grid-template-columns: 1fr; }
  .vision-mission-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .features-strip-grid { grid-template-columns: 1fr; }
  .feature-strip-item { border-right: none; border-bottom: 1px solid var(--color-gray-200); }
  .feature-strip-item:last-child { border-bottom: none; }
}

/* Mobile */
@media (max-width: 767px) {
  :root { --section-pad: 60px 0; }

  /* Header topbar — compact version on mobile */
  .header-topbar { display: block; }
  .topbar-contacts span { display: none; } /* hide timing on mobile */
  .topbar-contacts { gap: 12px; }
  .topbar-contacts a { font-size: 0.72rem; }
  .topbar-social a { font-size: 0.75rem; }
  .header-topbar-inner { gap: 4px; }
  .main-nav { display: none; }
  .header-phone { display: none; }
  .header-cta .btn { display: none; }
  .hamburger { display: flex; }

  /* Hero mobile rules live in §9 hero section above */

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.2); }
  .stat-item:nth-child(4) { border-right: none; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand { order: -1; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .media-filter-bar { justify-content: center; }

  /* Form */
  .form-grid { grid-template-columns: 1fr; }
  .form-grid-full { grid-column: auto; }

  /* Contact */
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 28px 20px; }
  .enquiry-form-wrapper { padding: 28px 20px; }

  /* Product feature rows */
  .product-feature-row { flex-direction: column; gap: 30px; }
  .product-feature-row.reverse { flex-direction: column; }
  .product-feature-img { flex: none; width: 100%; }
  .product-feature-img img { height: 250px; }

  /* Footer */
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  /* About badge */
  .about-badge { display: none; }

  /* Mobile bar */
  .sticky-mobile-bar { display: flex; }
  .float-phone { display: none; }
  .float-whatsapp { bottom: 82px; width: 50px; height: 50px; font-size: 1.375rem; right: 14px; }
  .scroll-top { right: 14px; bottom: 160px; }

  /* Body padding for sticky bar */
  body { padding-bottom: 68px; }

  /* Vision mission grid */
  .vision-mission-grid { grid-template-columns: 1fr; }
  .about-actions { flex-direction: column; }

  /* CTA banner */
  .cta-banner-actions { flex-direction: column; align-items: center; }

  /* Page hero */
  .page-hero { padding: 130px 0 60px; }
}

/* Small mobile */
@media (max-width: 480px) {
  /* hero-eyebrow and hero-title handled in §9 */
  .btn { padding: 11px 22px; font-size: 0.875rem; }
  .section-heading { font-size: 1.5rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

/* ─────────────────────────────────────────────
   30. LAYOUT UTILITY CLASSES (replaces any remaining inline flex)
───────────────────────────────────────────── */

/* Two-column about layout */
.col-about-img   { flex: 0 0 48%; max-width: 48%; }
.col-about-text  { flex: 0 0 52%; max-width: 52%; padding-left: 40px; }
.row-center      { align-items: center; }
.row-gap-lg      { gap: 50px 0; }
.row-gap-md      { gap: 24px 0; }

/* One-third columns for testimonials */
.col-third       { flex: 0 0 33.333%; max-width: 33.333%; }

/* Two-column why section */
.col-40          { flex: 0 0 40%; max-width: 40%; }
.col-60          { flex: 0 0 60%; max-width: 60%; padding-left: 40px; }

/* Utility spacing */
.mt-1rem         { margin-top: 1rem; }
.mt-2rem         { margin-top: 2rem; }
.mt-075rem       { margin-top: 0.75rem; }
.mb-15rem        { margin-bottom: 1.5rem; }
.max-w-780       { max-width: 780px; margin-left: auto; margin-right: auto; }

/* Section label on colored backgrounds */
.section-label-light {
  color: rgba(255,255,255,0.8);
  justify-content: center;
}
.section-label-light::before { background: rgba(255,255,255,0.6); }

/* Footer WhatsApp icon color */
.icon-whatsapp-color { color: var(--color-whatsapp); }

/* Inline icon sizing for nav chevron */
.nav-chevron    { font-size: 0.65rem; margin-left: 3px; }
.mobile-chevron { font-size: 0.7rem; float: right; margin-top: 4px; }

/* Responsive adjustments for two-column layouts */
@media (max-width: 1024px) {
  .col-about-img, .col-about-text,
  .col-40, .col-60 {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
  }
  .col-third { flex: 0 0 50%; max-width: 50%; }
}
@media (max-width: 767px) {
  .col-third { flex: 0 0 100%; max-width: 100%; }
}

/* ─────────────────────────────────────────────
   31. SERVICE DETAIL PAGES
───────────────────────────────────────────── */

/* Page Hero — short variant for blog/media */
.page-hero--short { min-height: 380px; }
.page-hero--short .page-hero-content { padding-bottom: 40px; }

/* Page Hero Actions */
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }

/* Service detail layout */
.service-detail-section { padding: 80px 0; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: start;
}

/* Sidebar */
.service-sidebar { position: sticky; top: 110px; }
.sidebar-widget { background: var(--color-surface); border-radius: var(--radius-md); padding: 28px; margin-bottom: 24px; border: 1px solid #e8e8e8; }
.sidebar-widget-title { font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--color-text-dark); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--color-primary); }
.sidebar-service-links { list-style: none; padding: 0; margin: 0; }
.sidebar-service-links li { margin-bottom: 4px; }
.sidebar-service-links a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: var(--radius-sm); color: var(--color-text); font-weight: 500; transition: all var(--transition-fast); font-size: 0.9375rem; }
.sidebar-service-links a:hover,
.sidebar-service-links a.active { background: var(--color-primary); color: #fff; }
.sidebar-service-links a i { font-size: 0.75rem; transition: transform var(--transition-fast); }
.sidebar-service-links a:hover i { transform: translateX(3px); }

/* Sidebar Help Widget */
.sidebar-help-widget { position: relative; overflow: hidden; background: var(--color-primary-dark); border: none; }
.sidebar-help-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.18; }
.sidebar-help-content { position: relative; z-index: 1; }
.sidebar-help-content h4 { color: #fff; font-family: var(--font-body); font-size: 1.125rem; font-weight: 700; margin-bottom: 10px; }
.sidebar-help-content p { color: rgba(255,255,255,0.82); font-size: 0.875rem; line-height: 1.6; margin-bottom: 18px; }
.sidebar-phone { display: flex; align-items: center; gap: 8px; color: var(--color-primary-light); font-weight: 600; margin-top: 14px; font-size: 0.9rem; }

/* Sidebar Downloads */
.sidebar-download-btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--color-primary); color: #fff;
  padding: 11px 16px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.875rem; margin-bottom: 10px;
  transition: background var(--transition-fast);
}
.sidebar-download-btn:hover { background: var(--color-primary-dark); color: #fff; }
.sidebar-download-btn i { font-size: 1rem; }
.sidebar-download-btn--secondary { background: var(--color-accent); }
.sidebar-download-btn--secondary:hover { background: #c0392b; }

/* Service content */
.service-detail-content {}
.service-content-block { margin-bottom: 40px; }
.service-content-block h2 { font-size: 1.625rem; color: var(--color-primary-dark); margin-bottom: 14px; }
.service-content-block h3 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 700; color: var(--color-text-dark); margin: 18px 0 8px; }
.service-content-block p { color: var(--color-text); line-height: 1.75; margin-bottom: 12px; }
.service-content-list { padding-left: 0; list-style: none; }
.service-content-list li { padding: 10px 0 10px 20px; border-bottom: 1px solid #eee; color: var(--color-text); line-height: 1.65; position: relative; }
.service-content-list li::before { content: '→'; position: absolute; left: 0; color: var(--color-primary); }

/* Project gallery (3-col inline) */
.service-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 30px 0; }
.service-gallery-item img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius-sm); display: block; }

/* Inline features (2-col) */
.service-features-inline { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 30px 0; }
.inline-feature { display: flex; gap: 16px; align-items: flex-start; }
.inline-feature-icon { width: 48px; height: 48px; min-width: 48px; background: var(--color-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.25rem; }
.inline-feature-text h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--color-primary-dark); margin-bottom: 6px; }
.inline-feature-text p { font-size: 0.875rem; color: var(--color-text); line-height: 1.65; margin: 0; }

/* ─────────────────────────────────────────────
   32. SERVICE FEATURES SECTION (grid, dark bg)
───────────────────────────────────────────── */
.service-features-section { padding: 80px 0; background: var(--color-surface); }
.features-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border: 1px solid #eaeaea;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.feature-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
.feature-card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.375rem;
  margin-bottom: 18px;
}
.feature-card h4 { font-family: var(--font-body); font-size: 1.0625rem; font-weight: 700; color: var(--color-text-dark); margin-bottom: 10px; }
.feature-card p { font-size: 0.875rem; color: var(--color-text); line-height: 1.65; margin-bottom: 18px; }

/* ─────────────────────────────────────────────
   33. SERVICE WHY SECTION
───────────────────────────────────────────── */
.service-why-section { padding: 80px 0; }
.service-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.service-why-image img { width: 100%; border-radius: var(--radius-md); object-fit: cover; }
.service-why-content h2 { font-size: 1.75rem; margin-bottom: 20px; }
.service-benefits-list { list-style: none; padding: 0; margin: 0; }
.service-benefits-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid #eee;
  font-size: 0.9375rem; color: var(--color-text); line-height: 1.55;
}
.service-benefits-list li:last-child { border-bottom: none; }
.service-benefits-list li i { color: var(--color-primary); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

/* ─────────────────────────────────────────────
   34. GALLERY STRIP SECTION
───────────────────────────────────────────── */
.gallery-strip-section { padding: 0; }
.gallery-strip-grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.gallery-strip-item img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-strip-item:hover img { transform: scale(1.04); }
.gallery-strip-item { overflow: hidden; }

/* ─────────────────────────────────────────────
   35. SERVICE CTA SECTION
───────────────────────────────────────────── */
.service-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
}
.service-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.service-cta-text h2 { color: #fff; font-size: 1.875rem; margin-bottom: 16px; }
.service-cta-text p { color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 24px; }
.service-cta-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  color: #fff; border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 16px; border-radius: 999px;
  font-size: 0.875rem; font-weight: 600;
}
.cta-badge i { font-size: 0.875rem; }

/* Quote form on CTA */
.service-cta-form-wrap {}
.service-quote-form {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px 32px;
  box-shadow: 0 24px 72px rgba(0,0,0,0.28), 0 2px 8px rgba(0,0,0,0.10);
  position: relative;
  overflow: hidden;
}
.service-quote-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary-dark) 0%, var(--color-accent) 100%);
}
.service-quote-form h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a2e1b;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e4ede4;
  display: flex;
  align-items: center;
  gap: 9px;
}
.service-quote-form h3::before {
  content: '';
  width: 10px; height: 10px;
  background: linear-gradient(135deg, #2e7d32, #66bb6a);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-quote-form input,
.service-quote-form select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #c6d8c6;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text);
  margin-bottom: 14px;
  background: #f6fbf6;
  transition: border-color 0.22s, box-shadow 0.22s, background 0.22s;
  outline: none;
}
.service-quote-form input:focus,
.service-quote-form select:focus {
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 3.5px rgba(46,125,50,0.14);
}
.service-quote-form input::placeholder { color: #adb8ad; }
.service-quote-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232e7d32' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 40px;
  cursor: pointer;
}
.service-quote-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.service-quote-form .form-row input { margin-bottom: 0; }
.service-quote-form .btn,
.service-quote-form button[type="submit"] {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 24px;
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(46,125,50,0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.service-quote-form .btn:hover,
.service-quote-form button[type="submit"]:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(46,125,50,0.42);
  color: #fff;
}
.service-quote-form .btn:active,
.service-quote-form button[type="submit"]:active { transform: scale(0.99); }

/* ─────────────────────────────────────────────
   36. BLOG LISTING PAGE
───────────────────────────────────────────── */
.blog-listing-section { padding: 70px 0 90px; }
.blog-controls { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }
.blog-filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.blog-filter-tab {
  padding: 9px 20px; border-radius: 999px;
  border: 2px solid #ddd; background: transparent;
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 600;
  color: var(--color-text); cursor: pointer;
  transition: all var(--transition-fast);
}
.blog-filter-tab:hover { border-color: var(--color-primary); color: var(--color-primary); }
.blog-filter-tab.active { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.blog-search-wrap { position: relative; }
.blog-search {
  padding: 10px 42px 10px 18px; border: 2px solid #ddd; border-radius: 999px;
  font-family: var(--font-body); font-size: 0.875rem; color: var(--color-text);
  width: 260px; transition: border-color var(--transition-fast);
}
.blog-search:focus { outline: none; border-color: var(--color-primary); }
.blog-search-icon { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: #999; pointer-events: none; }

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card { background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); border: 1px solid #eee; transition: box-shadow var(--transition-base), transform var(--transition-base); }
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.12); transform: translateY(-4px); }
.blog-card-img { position: relative; overflow: hidden; }
.blog-card-img img { width: 100%; height: 210px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-date {
  position: absolute; top: 14px; left: 14px;
  background: var(--color-primary); color: #fff;
  padding: 4px 12px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 700; font-family: var(--font-body);
}
.blog-card-tag {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(0,0,0,0.5); color: #fff;
  padding: 3px 10px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 600; font-family: var(--font-body);
}
.blog-card-body { padding: 22px 22px 26px; }
.blog-card-title { font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--color-text-dark); line-height: 1.5; margin-bottom: 14px; }
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--color-primary); }
.blog-card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--color-primary); font-size: 0.875rem; font-weight: 700; }
.blog-card-link i { font-size: 0.75rem; transition: transform var(--transition-fast); }
.blog-card-link:hover i { transform: translateX(4px); }

/* No results */
.blog-no-results { display: none; text-align: center; padding: 60px 0; color: var(--color-text-light); }
.blog-no-results i { font-size: 2.5rem; margin-bottom: 12px; display: block; }

/* ─────────────────────────────────────────────
   37. MEDIA PAGE
───────────────────────────────────────────── */
.media-section { padding: 80px 0; }
.media-section--alt { background: var(--color-surface); }

/* News cards */
.media-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.media-news-card { background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); border: 1px solid #eee; transition: box-shadow var(--transition-base), transform var(--transition-base); }
.media-news-card:hover { box-shadow: 0 10px 36px rgba(0,0,0,0.12); transform: translateY(-4px); }
.media-news-img img { width: 100%; height: 200px; object-fit: cover; display: block; }
.media-news-body { padding: 22px; }
.media-news-source { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 700; color: var(--color-primary); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; }
.media-news-title { font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--color-text-dark); line-height: 1.5; margin-bottom: 10px; }
.media-news-title a { color: inherit; }
.media-news-title a:hover { color: var(--color-primary); }
.media-news-body p { font-size: 0.875rem; color: var(--color-text); line-height: 1.65; margin-bottom: 14px; }
.media-news-link { display: inline-flex; align-items: center; gap: 6px; color: var(--color-primary); font-size: 0.875rem; font-weight: 700; }
.media-news-link:hover { color: var(--color-primary-dark); }

/* Article clippings */
.media-clippings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.media-clippings-grid--two { grid-template-columns: repeat(2, 1fr); max-width: 700px; margin-top: 20px; }
.media-clipping { border-radius: var(--radius-sm); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.media-clipping img { width: 100%; display: block; object-fit: cover; }
.media-clipping-caption { padding: 12px 16px; background: var(--color-primary-dark); color: #fff; font-size: 0.8125rem; font-weight: 600; text-align: center; }

/* Photo grid */
.media-photo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.media-photo { overflow: hidden; border-radius: var(--radius-sm); }
.media-photo img { width: 100%; height: 170px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.media-photo:hover img { transform: scale(1.05); }

/* ─────────────────────────────────────────────
   38. RESPONSIVE — SERVICE / BLOG / MEDIA PAGES
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .features-card-grid { grid-template-columns: repeat(2, 1fr); }
  .service-why-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-cta-grid { grid-template-columns: 1fr; gap: 36px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .media-news-grid { grid-template-columns: repeat(2, 1fr); }
  .media-photo-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-strip-grid { grid-template-columns: repeat(3, 1fr); }
  .service-features-inline { grid-template-columns: 1fr; }
  .service-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .service-detail-section { padding: 50px 0; }
  .service-features-section,
  .service-why-section,
  .media-section { padding: 50px 0; }
  .features-card-grid { grid-template-columns: 1fr; }
  .service-quote-form .form-row { grid-template-columns: 1fr; }
  .service-quote-form .form-row input { margin-bottom: 14px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-controls { flex-direction: column; align-items: flex-start; }
  .blog-search { width: 100%; }
  .media-news-grid { grid-template-columns: 1fr; }
  .media-clippings-grid { grid-template-columns: repeat(2, 1fr); }
  .media-photo-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-strip-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-strip-item img { height: 160px; }
  .service-gallery { grid-template-columns: 1fr; }
  .page-hero-actions { flex-direction: column; }
  .page-hero-actions .btn { text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .media-clippings-grid { grid-template-columns: 1fr; }
  .media-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .media-clippings-grid--two { grid-template-columns: 1fr; }
  .blog-filter-tabs { gap: 6px; }
  .blog-filter-tab { padding: 7px 14px; font-size: 0.8125rem; }
}

/* ═══════════════════════════════════════════════════════════════
   § 39 — BLOG SINGLE POST
   ═══════════════════════════════════════════════════════════════ */

/* Layout */
.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
  padding: 60px 0 80px;
}

/* Article */
.blog-article {
  min-width: 0;
}

.blog-feature-img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 28px;
  display: block;
}

.blog-meta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 2px solid #f0f0f0;
}

.meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8f7e6;
  color: var(--color-green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.meta-date,
.meta-author {
  font-size: 0.8125rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Typography inside article */
.blog-article h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.3;
  margin-bottom: 22px;
}

.blog-article h2 {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 700;
  color: var(--color-green-dark);
  margin: 36px 0 14px;
  padding-left: 14px;
  border-left: 4px solid var(--color-green);
  line-height: 1.35;
}

.blog-article h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #222;
  margin: 28px 0 10px;
}

.blog-article p {
  font-size: 1rem;
  color: #444;
  line-height: 1.9;
  margin-bottom: 18px;
}

.blog-article ul,
.blog-article ol {
  padding-left: 22px;
  margin-bottom: 18px;
}

.blog-article ul li,
.blog-article ol li {
  font-size: 1rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 8px;
}

.blog-article ul li::marker { color: var(--color-green); }

/* Callout box */
.blog-highlight {
  background: #f0faf0;
  border-left: 5px solid var(--color-green);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin: 28px 0;
}

.blog-highlight p {
  margin: 0;
  font-size: 1rem;
  color: #2a5a2a;
  font-style: italic;
  font-weight: 500;
  line-height: 1.75;
}

/* Key points */
.blog-keypoints {
  background: #fff;
  border: 2px solid #e8f7e6;
  border-radius: 10px;
  padding: 24px 28px;
  margin: 28px 0;
}

.blog-keypoints h4 {
  color: var(--color-green);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.blog-keypoints ul {
  margin: 0;
  padding-left: 18px;
}

.blog-keypoints ul li {
  font-size: 0.9375rem;
  color: #333;
  margin-bottom: 8px;
  font-weight: 500;
}

/* Tags */
.blog-tags {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.blog-tags-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-tag-pill {
  display: inline-block;
  background: #f5f5f5;
  color: #555;
  font-size: 0.8125rem;
  padding: 4px 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.blog-tag-pill:hover {
  background: var(--color-green);
  color: #fff;
}

/* Share */
.blog-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 2px solid #f0f0f0;
}

.blog-share-label {
  font-weight: 700;
  font-size: 0.875rem;
  color: #333;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.2s;
}

.share-btn:hover { opacity: 0.85; color: #fff; }
.share-whatsapp { background: #25d366; }
.share-linkedin { background: #0077b5; }
.share-twitter  { background: #1da1f2; }

/* Author box */
.author-box {
  background: #f8fdf8;
  border-radius: 10px;
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-top: 40px;
  border: 1px solid #e8f7e6;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.author-box h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #1a1a1a;
}

.author-box p {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
  line-height: 1.65;
}

/* ── Blog Sidebar ── */
.blog-sidebar-col {
  position: sticky;
  top: 90px;
}

.bs-widget {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  padding: 24px;
  margin-bottom: 24px;
}

.bs-widget-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-green-dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-green);
}

/* Sidebar CTA */
.bs-cta {
  background: linear-gradient(135deg, var(--color-green-dark), var(--color-green));
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  margin-bottom: 24px;
}

.bs-cta h5 {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.bs-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.bs-cta .btn {
  display: block;
  width: 100%;
  padding: 11px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  margin-bottom: 8px;
  text-align: center;
}

.bs-cta .btn-cta-main {
  background: #fff;
  color: var(--color-green-dark);
}

.bs-cta .btn-cta-wa {
  background: #25d366;
  color: #fff;
}

/* Sidebar recent posts */
.bs-recent-post {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f5f5f5;
}

.bs-recent-post:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.bs-recent-post img {
  width: 76px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.bs-recent-post h6 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #222;
  margin: 0 0 4px;
  line-height: 1.4;
}

.bs-recent-post h6 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.bs-recent-post h6 a:hover { color: var(--color-green); }

.bs-recent-post span {
  font-size: 0.6875rem;
  color: #999;
}

/* Sidebar service links */
.bs-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bs-links li {
  border-bottom: 1px solid #f5f5f5;
}

.bs-links li:last-child { border-bottom: none; }

.bs-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  font-size: 0.875rem;
  color: #444;
  text-decoration: none;
  transition: color 0.2s;
}

.bs-links a i {
  color: var(--color-green);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.bs-links a:hover { color: var(--color-green); }

/* Sidebar view-all link */
.bs-view-all {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-green);
  text-decoration: none;
}

.bs-view-all:hover { text-decoration: underline; }

/* ── Blog post responsive ── */
@media (max-width: 1024px) {
  .blog-post-layout {
    grid-template-columns: 1fr;
  }
  .blog-sidebar-col {
    position: static;
  }
}

@media (max-width: 767px) {
  .blog-post-layout { padding: 40px 0 60px; gap: 32px; }
  .blog-article h1 { font-size: 1.375rem; }
  .blog-article h2 { font-size: 1.0625rem; }
  .blog-feature-img { max-height: 240px; }
  .bs-widget, .bs-cta { padding: 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   § 40 — HOME PAGE LAYOUT GRID CLASSES (no inline styles)
   ═══════════════════════════════════════════════════════════════ */

/* ── Home About Two-Column ── */
.home-about-section { padding: var(--section-pad); }

.home-about-grid {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 50px;
  align-items: center;
}

.home-about-text-col { padding-left: 30px; }

.home-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2rem;
}

/* ── Why Section Two-Column ── */
.why-layout {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 50px;
  align-items: start;
}

.why-intro-col { padding-right: 20px; }
.why-intro-col .btn { margin-top: 1.5rem; }

/* ── Testimonials Carousel ── */
.testimonials-grid { display: none !important; }
.testi-carousel-wrap {
  position: relative;
  margin-top: 2.5rem;
  padding: 0 56px;
}
.testi-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  background: var(--color-white);
  border: 1.5px solid var(--color-gray-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-primary);
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  outline: none;
}
.testi-nav:hover { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.testi-nav--prev { left: 0; }
.testi-nav--next { right: 0; }
.testi-viewport {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.testi-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.testi-track .testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  width: calc(33.333% - 16px);
  min-width: 0;
  box-sizing: border-box;
}
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-gray-300);
  border: none; cursor: pointer;
  transition: var(--transition); padding: 0; outline: none;
}
.testi-dot.active { background: var(--color-primary); transform: scale(1.35); }
@media (max-width: 1024px) {
  .testi-track .testimonial-card { flex: 0 0 calc(50% - 12px); width: calc(50% - 12px); }
  .testi-carousel-wrap { padding: 0 46px; }
}
@media (max-width: 640px) {
  .testi-track .testimonial-card { flex: 0 0 100%; width: 100%; }
  .testi-carousel-wrap { padding: 0 36px; }
  .testi-nav { width: 36px; height: 36px; font-size: 0.875rem; }
}

/* ── Clients Section ── */
.clients-section { padding: var(--section-pad); background: var(--color-gray-100); }

/* Carousel wrapper: hides overflow, sits between nav buttons */
.clients-carousel-wrap {
  position: relative;
  margin-top: 2rem;
}

/* Prev / Next buttons */
.clients-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  background: var(--color-white);
  border: 1.5px solid var(--color-gray-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-primary);
  font-size: 0.9375rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.clients-nav:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-green);
}
.clients-nav--prev { left: -20px; }
.clients-nav--next { right: -20px; }
.clients-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* Viewport: clips the sliding track */
.clients-viewport {
  overflow: hidden;
  width: 100%;
  /* fade edges so it looks like infinite scroll */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

/* Sliding track */
.clients-grid {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  /* Remove old grid rules */
  grid-template-columns: unset;
  align-items: center;
  margin-top: 0;
}

/* Each logo card — fixed width so JS can calculate steps */
.client-logo {
  flex: 0 0 180px;
  width: 180px;
  height: 100px;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}
.client-logo:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.client-logo img {
  max-height: 58px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(40%);
  transition: filter 0.28s ease;
  display: block;
}
.client-logo:hover img { filter: grayscale(0%); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .client-logo { flex: 0 0 160px; width: 160px; }
  .clients-nav--prev { left: -16px; }
  .clients-nav--next { right: -16px; }
}
@media (max-width: 767px) {
  .client-logo { flex: 0 0 140px; width: 140px; height: 88px; }
  .clients-nav { width: 34px; height: 34px; font-size: 0.8125rem; }
  .clients-nav--prev { left: -14px; }
  .clients-nav--next { right: -14px; }
}
@media (max-width: 480px) {
  .client-logo { flex: 0 0 120px; width: 120px; height: 80px; padding: 12px; }
}

/* ── Footer directions btn ── */
.footer-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  padding: 9px 16px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}
.footer-directions-btn:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

/* ── Enquiry form max-width ── */
.enquiry-form-wrapper { max-width: 780px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════════
   § 41 — COMPREHENSIVE RESPONSIVE (replaces scattered @media)
   ═══════════════════════════════════════════════════════════════ */

/* Tablet 1024px */
@media (max-width: 1024px) {
  .home-about-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .home-about-text-col { padding-left: 0; }
  .why-layout { grid-template-columns: 1fr 1fr; gap: 30px; }
  .why-intro-col { padding-right: 0; }
  /* testimonials carousel handles responsive */
  /* clients-grid responsive handled in §clients carousel block above */
}

/* Mobile 767px */
@media (max-width: 767px) {
  /* About grid → single column */
  .home-about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .home-about-img-col { order: -1; }
  .home-about-text-col { padding-left: 0; }
  .home-about-actions { flex-direction: column; }
  .home-about-actions .btn { text-align: center; justify-content: center; }

  /* Why → single column */
  .why-layout { grid-template-columns: 1fr; gap: 30px; }
  .why-intro-col { padding-right: 0; }
  .why-intro-col .btn { margin-top: 1rem; }
  .why-grid { grid-template-columns: 1fr; }

  /* testimonials carousel handles mobile */

  /* About image badge hidden */
  .about-badge { display: none; }
}

/* Small mobile 480px */
@media (max-width: 480px) {
  .home-about-actions .btn { width: 100%; }
}

/* ══════════════════════════════════════════════════════
   ABOUT PAGE — WHY CHOOSE ZWC (unique prefix: about-why-)
   ══════════════════════════════════════════════════════ */
.about-why-section {
  padding: var(--section-pad);
  background: #f0faf0;
}
.about-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2.5rem;
}
.about-why-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--color-primary);
  transition: var(--transition);
}
.about-why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.about-why-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.4rem;
  color: var(--color-primary);
}
.about-why-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}
.about-why-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════════════════════════════════════
   ABOUT PAGE — GALLERY (unique prefix: about-gal- / about-gallery-)
   ══════════════════════════════════════════════════════ */
.about-gallery-section {
  padding: var(--section-pad) 0;
  background: #1a1a1a;
}
.about-gallery-section .section-label { color: #a8e063; }
.about-gallery-section .section-heading { color: #ffffff; }
.about-gallery-section .container { margin-bottom: 2rem; }

.about-gallery-wrap {
  position: relative;
  width: 100%;
}
.about-gal-viewport {
  overflow: hidden;
  width: 100%;
}
.about-gal-track {
  display: flex;
  gap: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.about-gal-item {
  flex: 0 0 25%;
  width: 25%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.about-gal-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.about-gal-item:hover img {
  transform: scale(1.07);
}
.about-gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46, 125, 50, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 1.6rem;
  color: #fff;
}
.about-gal-item:hover .about-gal-overlay { opacity: 1; }

/* Gallery nav buttons */
.about-gal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.92);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: background 0.2s, color 0.2s;
  outline: none;
}
.about-gal-nav:hover { background: var(--color-primary); color: #fff; }
.about-gal-nav--prev { left: 16px; }
.about-gal-nav--next { right: 16px; }

/* ── Lightbox (unique prefix: about-lb-) ── */
.about-lb-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9000;
  cursor: pointer;
}
.about-lb-backdrop.open { display: block; }
.about-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9001;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.about-lightbox.open {
  display: flex;
  pointer-events: auto;
}
.about-lb-img-wrap {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-lb-img-wrap img {
  max-width: 88vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
  display: block;
}
.about-lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  outline: none;
  z-index: 9002;
}
.about-lb-close:hover { background: rgba(255,255,255,0.25); }
.about-lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  outline: none;
  z-index: 9002;
}
.about-lb-nav:hover { background: rgba(255,255,255,0.28); }
.about-lb-nav--prev { left: 16px; }
.about-lb-nav--next { right: 16px; }
.about-lb-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-family: var(--font-body);
  letter-spacing: 1px;
  z-index: 9002;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-gal-item { flex: 0 0 33.333%; width: 33.333%; }
}
@media (max-width: 640px) {
  .about-why-grid { grid-template-columns: 1fr; }
  .about-gal-item { flex: 0 0 80%; width: 80%; }
  .about-gal-item img { height: 220px; }
  .about-lb-nav--prev { left: 6px; }
  .about-lb-nav--next { right: 6px; }
}

/* ══════════════════════════════════════════════════════
   ABOUT PAGE — WHO WE ARE layout (prefix: about-main-)
   ══════════════════════════════════════════════════════ */
.about-main-row {
  display: flex;
  align-items: center;
  gap: 50px;
}
.about-main-img-col {
  flex: 0 0 46%;
  max-width: 46%;
}
.about-main-text-col {
  flex: 1;
  min-width: 0;
}
/* Tablet */
@media (max-width: 900px) {
  .about-main-row { gap: 30px; }
  .about-main-img-col { flex: 0 0 42%; max-width: 42%; }
}
/* Mobile */
@media (max-width: 640px) {
  .about-main-row { flex-direction: column; gap: 24px; }
  .about-main-img-col { flex: 0 0 100%; max-width: 100%; width: 100%; }
  .about-main-text-col { width: 100%; }
}

/* ══════════════════════════════════════════════════════
   SERVICE PAGE — WHY ZWC (prefix: why-zwc-)
   ══════════════════════════════════════════════════════ */
.why-zwc-section { padding: var(--section-pad); }
.why-zwc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 2.5rem;
}
.why-zwc-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--color-primary);
  transition: var(--transition);
}
.why-zwc-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.why-zwc-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.35rem;
  color: var(--color-primary);
}
.why-zwc-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}
.why-zwc-item p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 1024px) { .why-zwc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .why-zwc-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════
   SERVICE PAGE — GALLERY CAROUSEL (prefix: svc-gal- / svc-gallery-)
   ══════════════════════════════════════════════════════ */
.svc-gallery-section {
  padding: var(--section-pad) 0;
  background: #1a1a1a;
}
.svc-gallery-section .section-label { color: #a8e063; }
.svc-gallery-section .section-heading { color: #ffffff; }
.svc-gallery-section .container { margin-bottom: 2rem; }

.svc-gal-wrap { position: relative; width: 100%; }
.svc-gal-viewport { overflow: hidden; width: 100%; }
.svc-gal-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.svc-gal-item {
  flex: 0 0 25%;
  width: 25%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.svc-gal-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.svc-gal-item:hover img { transform: scale(1.07); }
.svc-gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46,125,50,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 1.6rem;
  color: #fff;
}
.svc-gal-item:hover .svc-gal-overlay { opacity: 1; }
.svc-gal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.92);
  border: none; border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: background 0.2s, color 0.2s;
  outline: none;
}
.svc-gal-nav:hover { background: var(--color-primary); color: #fff; }
.svc-gal-nav--prev { left: 16px; }
.svc-gal-nav--next { right: 16px; }

/* Lightbox (prefix: svc-lb-) */
.svc-lb-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.92); z-index: 9000; cursor: pointer;
}
.svc-lb-backdrop.open { display: block; }
.svc-lightbox {
  display: none; position: fixed; inset: 0; z-index: 9001;
  align-items: center; justify-content: center; pointer-events: none;
}
.svc-lightbox.open { display: flex; pointer-events: auto; }
.svc-lb-img-wrap {
  max-width: 90vw; max-height: 88vh;
  display: flex; align-items: center; justify-content: center;
}
.svc-lb-img-wrap img {
  max-width: 88vw; max-height: 82vh;
  object-fit: contain; border-radius: 6px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6); display: block;
}
.svc-lb-close {
  position: fixed; top: 20px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%; color: #fff; font-size: 1.1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; outline: none; z-index: 9002;
}
.svc-lb-close:hover { background: rgba(255,255,255,0.25); }
.svc-lb-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%; color: #fff; font-size: 1.1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; outline: none; z-index: 9002;
}
.svc-lb-nav:hover { background: rgba(255,255,255,0.28); }
.svc-lb-nav--prev { left: 16px; }
.svc-lb-nav--next { right: 16px; }
.svc-lb-counter {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.75); font-size: 0.875rem;
  font-family: var(--font-body); letter-spacing: 1px; z-index: 9002;
}
@media (max-width: 1024px) { .svc-gal-item { flex: 0 0 33.333%; width: 33.333%; } }
@media (max-width: 640px)  {
  .svc-gal-item { flex: 0 0 80%; width: 80%; }
  .svc-gal-item img { height: 220px; }
  .svc-lb-nav--prev { left: 6px; }
  .svc-lb-nav--next { right: 6px; }
}

/* ══════════════════════════════════════════════════════
   URINAL PAGE — WHY ECOFLUSH alternating rows (prefix: eco-why-)
   ══════════════════════════════════════════════════════ */
.eco-why-section {
  padding: var(--section-pad);
  background: #ffffff;
}
.eco-why-row {
  display: flex;
  align-items: center;
  gap: 56px;
  margin-bottom: 72px;
}
.eco-why-row:last-child { margin-bottom: 0; }
.eco-why-row--reverse { flex-direction: row-reverse; }
.eco-why-img {
  flex: 0 0 48%;
  max-width: 48%;
}
.eco-why-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  max-height: 360px;
}
.eco-why-text { flex: 1; min-width: 0; }
.eco-why-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}
.eco-why-desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.eco-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.eco-why-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
}
.eco-why-list li i {
  color: var(--color-primary);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── Technology Highlights — Dark theme override ── */
.urinal-features-dark {
  background: #1b2e1b !important;
}
.urinal-features-dark .section-label span { color: #a8e063; }
.urinal-features-dark .feature-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}
.urinal-features-dark .feature-card:hover {
  background: rgba(255,255,255,0.1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.urinal-features-dark .feature-card h4 { color: #ffffff; }
.urinal-features-dark .feature-card p  { color: rgba(255,255,255,0.75); }
.urinal-features-dark .btn-outline-primary {
  border-color: rgba(255,255,255,0.35);
  color: #a8e063;
}
.urinal-features-dark .btn-outline-primary:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

/* ── Responsive eco-why ── */
@media (max-width: 900px) {
  .eco-why-row { gap: 32px; }
  .eco-why-img { flex: 0 0 44%; max-width: 44%; }
}
@media (max-width: 640px) {
  .eco-why-row,
  .eco-why-row--reverse { flex-direction: column; gap: 20px; }
  .eco-why-img { flex: 0 0 100%; max-width: 100%; }
}

/* ══════════════════════════════════════════════════════
   STP PAGE — Tri-Fusion dark theme (prefix: stp-features-dark)
   ══════════════════════════════════════════════════════ */
.stp-features-dark {
  background: #1b2e1b !important;
}
.stp-features-dark .section-label span { color: #a8e063; }
.stp-features-dark .feature-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.stp-features-dark .feature-card:hover {
  background: rgba(255,255,255,0.1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.stp-features-dark .feature-card h4 { color: #ffffff; }
.stp-features-dark .feature-card p  { color: rgba(255,255,255,0.75); }
.stp-features-dark .btn-outline-primary {
  border-color: rgba(255,255,255,0.35);
  color: #a8e063;
}
.stp-features-dark .btn-outline-primary:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

/* ══════════════════════════════════════════════════════
   STP PAGE — How Hydrovia Works (prefix: stp-how-)
   ══════════════════════════════════════════════════════ */
.stp-how-section {
  padding: var(--section-pad);
  background: #ffffff;
}
.stp-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 2.5rem;
}
.stp-how-item {
  background: #f8fdf8;
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  border-top: 4px solid var(--color-primary);
  position: relative;
  transition: var(--transition);
}
.stp-how-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.stp-how-num {
  font-size: 3rem;
  font-weight: 800;
  color: #e8f5e9;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}
.stp-how-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.3rem;
  color: var(--color-primary);
}
.stp-how-item h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.875rem;
  font-family: var(--font-body);
}
.stp-how-item p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin: 0;
}
.stp-how-formula {
  margin-top: 2.5rem;
  text-align: center;
  padding: 20px 32px;
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f1 100%);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--color-text);
  border-left: 4px solid var(--color-primary);
}

/* ══════════════════════════════════════════════════════
   STP PAGE — Benefits (prefix: stp-benefits-)
   ══════════════════════════════════════════════════════ */
.stp-benefits-section { padding: var(--section-pad); }
.stp-benefits-grid {
  display: flex;
  align-items: center;
  gap: 56px;
}
.stp-benefits-img {
  flex: 0 0 45%;
  max-width: 45%;
}
.stp-benefits-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}
.stp-benefits-content { flex: 1; min-width: 0; }

/* ══════════════════════════════════════════════════════
   STP PAGE — Benefits V2 Upgraded Cards
   ══════════════════════════════════════════════════════ */
.stp-benefits-v2 {
  background: #fff;
  padding: var(--section-pad);
}
.stp-benefits-v2-header {
  background: var(--color-primary, #2e7d32);
  border-radius: 14px;
  padding: 28px 40px;
  margin-bottom: 48px;
  text-align: center;
}
.stp-benefits-v2-header h2 {
  color: #fff;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 800;
  margin: 0;
  line-height: 1.25;
}
.stp-benefits-v2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.stp-benefit-card {
  background: #fff;
  border: 1px solid #e8f0e9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(46,125,50,0.06);
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.stp-benefit-card:hover {
  box-shadow: 0 8px 32px rgba(46,125,50,0.14);
  transform: translateY(-3px);
}
.stp-benefit-card-top {
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary, #2e7d32), #a8e063);
}
.stp-benefit-card-body {
  padding: 28px 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.stp-benefit-icon-wrap {
  width: 64px;
  height: 64px;
  background: #f0faf0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.stp-benefit-icon-wrap img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.stp-benefit-icon-fallback {
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: var(--color-primary, #2e7d32);
  font-size: 1.4rem;
}
.stp-benefit-card-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a2e1b;
  margin: 0 0 10px;
}
.stp-benefit-card-body p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.65;
  margin: 0 0 20px;
  flex: 1;
}
.stp-benefit-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary, #2e7d32);
  text-decoration: none;
  transition: gap 0.2s;
}
.stp-benefit-link:hover { gap: 12px; }
.stp-benefit-link-icon {
  width: 28px;
  height: 28px;
  background: var(--color-primary, #2e7d32);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.7rem;
  flex-shrink: 0;
  transition: background 0.2s;
}
.stp-benefit-link:hover .stp-benefit-link-icon {
  background: #1b5e20;
}
.stp-benefits-v2-footer {
  margin-top: 40px;
  text-align: center;
  padding: 20px 0 0;
  border-top: 1px solid #e8f0e9;
}
.stp-benefits-v2-footer p {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}
.stp-benefits-v2-footer a {
  color: var(--color-primary, #2e7d32);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
  transition: color 0.2s;
}
.stp-benefits-v2-footer a:hover { color: #1b5e20; }
@media (max-width: 768px) {
  .stp-benefits-v2-grid { grid-template-columns: 1fr; }
  .stp-benefits-v2-header { padding: 20px 20px; }
}

/* ══════════════════════════════════════════════════════
   WHY HYDROVIA — Image Slider
   ══════════════════════════════════════════════════════ */
.why-img-slider-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.why-img-slider {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.why-img-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.why-img-slide {
  flex: 0 0 100%;
  min-width: 100%;
}
.why-img-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
}
.why-img-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.92);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  color: var(--color-primary, #2e7d32);
  font-size: 0.9rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  transition: background 0.2s, transform 0.2s;
}
.why-img-nav:hover {
  background: var(--color-primary, #2e7d32);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}
.why-img-nav--prev { left: 12px; }
.why-img-nav--next { right: 12px; }
.why-img-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}
.why-img-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, width 0.25s;
}
.why-img-dot.active {
  background: #fff;
  width: 22px;
  border-radius: 4px;
}
@media (max-width: 900px) {
  .why-img-slide img { height: 260px; }
}

/* ══════════════════════════════════════════════════════
   STP PAGE — Sectors grid (prefix: stp-sectors-)
   ══════════════════════════════════════════════════════ */
.stp-sectors-section {
  padding: var(--section-pad);
  background: #1a1a1a;
}
.stp-sectors-section .section-label { color: #a8e063; }
.stp-sectors-section .section-heading,
.stp-sectors-section .section-subtext { color: rgba(255,255,255,0.85); }
.stp-sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2.5rem;
}
.stp-sector-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.stp-sector-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.stp-sector-card:hover .stp-sector-img img { transform: scale(1.06); }
.stp-sector-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 100%);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 28px 16px 16px;
  text-align: center;
}

/* ── FAQ fix: image & accordion side by side ── */
.faq-section { padding: var(--section-pad); background: #f8fdf8; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.faq-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
}
@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .faq-image { display: none; }
}

/* ── Responsive: stp-how, stp-benefits, stp-sectors ── */
@media (max-width: 900px) {
  .stp-how-grid { grid-template-columns: 1fr; }
  .stp-benefits-grid { flex-direction: column; gap: 28px; }
  .stp-benefits-img { flex: 0 0 100%; max-width: 100%; }
  .stp-sectors-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .stp-sectors-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════
   STP PAGE — Dark Feature Cards (prefix: stp-dark-card-)
   ══════════════════════════════════════════════════════ */
.stp-dark-cards-section {
  padding: var(--section-pad);
  background: #111111;
}
.stp-dark-cards-intro {
  margin-bottom: 2.5rem;
}
.stp-dark-cards-intro h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--font-heading);
  margin-top: 0.5rem;
  max-width: 700px;
}
.stp-dark-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stp-dark-card {
  background: #1e1e1e;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stp-dark-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.stp-dark-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.stp-dark-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.stp-dark-card:hover .stp-dark-card-img img {
  transform: scale(1.06);
}
.stp-dark-card-body {
  padding: 24px 22px 28px;
}
.stp-dark-card-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}
.stp-dark-card-body p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.stp-dark-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.stp-dark-card-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
@media (max-width: 1024px) {
  .stp-dark-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .stp-dark-cards-grid { grid-template-columns: 1fr; }
  .stp-dark-cards-intro h2 { font-size: 1.5rem; }
}

/* ══════════════════════════════════════════════════════
   STP PAGE — White Cards Carousel (prefix: stp-white-card, stp-cards-)
   ══════════════════════════════════════════════════════ */
.stp-dark-cards-section {
  padding: var(--section-pad) 0;
  background: #111111;
}
.stp-dark-cards-intro {
  padding: 0 0 2rem;
  margin: 0 auto;
  max-width: 1280px;
  padding-left: max(24px, calc((100vw - 1280px) / 2));
  padding-right: max(24px, calc((100vw - 1280px) / 2));
}
.stp-dark-cards-intro h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--font-heading);
  margin-top: 0.5rem;
  max-width: 700px;
}

/* Carousel wrap */
.stp-cards-carousel-wrap {
  position: relative;
  width: 100%;
}
.stp-cards-viewport {
  overflow: hidden;
  width: 100%;
  padding: 12px 0 20px;
}
.stp-cards-track {
  display: flex;
  gap: 20px;
  padding: 0 max(24px, calc((100vw - 1280px) / 2));
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* White card */
.stp-white-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 0;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stp-white-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.stp-white-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.stp-white-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.45s ease;
}
.stp-white-card:hover .stp-white-card-img img { transform: scale(1.06); }
.stp-white-card-body {
  padding: 22px 20px 26px;
}
.stp-white-card-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}
.stp-white-card-body p {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.stp-white-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1.5px solid #ddd;
  border-radius: 50px;
  color: #111;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  border-bottom: 2px solid var(--color-primary);
}
.stp-white-card-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

/* Nav buttons */
.stp-cards-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  outline: none;
}
.stp-cards-nav:hover { background: var(--color-primary); border-color: var(--color-primary); }
.stp-cards-nav--prev { left: 16px; }
.stp-cards-nav--next { right: 16px; }

/* Dots */
.stp-cards-dots {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: 0 max(24px, calc((100vw - 1280px) / 2));
  margin-top: 4px;
}
.stp-cards-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0; outline: none;
}
.stp-cards-dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* Bottom strip */
.stp-cards-bottom-strip {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0 0;
}
.stp-cards-bottom-strip p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
  margin: 0;
}
.stp-cards-bottom-strip a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}
.stp-cards-bottom-strip a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 1024px) {
  .stp-white-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 600px) {
  .stp-white-card { flex: 0 0 calc(85vw); }
  .stp-dark-cards-intro h2 { font-size: 1.5rem; }
}

/* ══════════════════════════════════════════════════════
   TEAM PAGE (prefix: zwc-team- to avoid conflicts)
   ══════════════════════════════════════════════════════ */

/* ── Hero ── */
.zwc-team-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.zwc-team-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.zwc-team-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.zwc-team-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,30,10,0.82) 0%, rgba(46,125,50,0.55) 100%);
  z-index: 1;
}
.zwc-team-hero .container { position: relative; z-index: 2; padding-bottom: 64px; padding-top: 120px; }
.zwc-team-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  margin: 0.5rem 0 1rem;
  line-height: 1.1;
}
.zwc-team-hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.82);
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* ── Intro strip ── */
.zwc-team-intro {
  background: #fff;
  padding: 56px 0;
  border-bottom: 1px solid #f0f0f0;
}
.zwc-team-intro-inner {
  display: flex;
  align-items: center;
  gap: 64px;
}
.zwc-team-intro-text { flex: 1; }
.zwc-team-intro-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}
.zwc-team-intro-text p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin: 0;
}
.zwc-team-stats {
  display: flex;
  gap: 40px;
  flex-shrink: 0;
}
.zwc-team-stat {
  text-align: center;
  padding: 20px 28px;
  background: #f0faf0;
  border-radius: var(--radius-md);
  border-bottom: 3px solid var(--color-primary);
  min-width: 110px;
}
.zwc-team-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 6px;
}
.zwc-team-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Founder spotlight ── */
.zwc-team-founder {
  padding: var(--section-pad);
  background: #f8fdf8;
}
.zwc-team-founder-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 64px;
  align-items: center;
}
.zwc-team-founder-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.zwc-team-founder-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
  display: block;
}
.zwc-team-founder-badge {
  position: absolute;
  bottom: -18px;
  left: 24px;
  background: var(--color-primary);
  color: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(46,125,50,0.4);
}
.zwc-team-founder-content { padding-top: 8px; }
.zwc-team-founder-content h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin: 0.5rem 0 0.25rem;
}
.zwc-team-founder-role {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
  display: block;
}
.zwc-team-founder-bio {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.zwc-team-founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.75rem;
}
.zwc-team-founder-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #e8f5e9;
  color: var(--color-primary-dark);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
}
.zwc-team-founder-tags span i { font-size: 0.75rem; }
.zwc-team-linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #0077b5;
  color: #fff;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.zwc-team-linkedin-btn:hover {
  background: #005e8e;
  color: #fff;
  transform: translateY(-2px);
}

/* ── Team grid section ── */
.zwc-team-grid-section {
  padding: var(--section-pad);
  background: #fff;
}
.zwc-team-members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 3rem;
}
.zwc-team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.zwc-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.14);
}

/* Image — rectangular, no circle, no overlay issues */
.zwc-team-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
  background: #f0faf0;
}
.zwc-team-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.45s ease;
}
.zwc-team-card:hover .zwc-team-card-img-wrap img {
  transform: scale(1.05);
}

/* Green top accent bar on hover */
.zwc-team-card-img-wrap::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), #66bb6a);
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}
.zwc-team-card:hover .zwc-team-card-img-wrap::after {
  transform: scaleX(1);
}

/* Card body — name, role, bio, tags all visible always */
.zwc-team-card-body {
  padding: 22px 22px 26px;
  border-top: 3px solid var(--color-primary);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.zwc-team-card-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
  font-family: var(--font-body);
}
.zwc-team-card-role {
  font-size: 0.875rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}

/* Bio text — always visible */
.zwc-team-card-bio {
  font-size: 0.8375rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
  flex: 1;
}

/* Highlight key phrase in bio */
.zwc-team-card-bio strong {
  color: var(--color-text);
  font-weight: 600;
}

.zwc-team-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.zwc-team-card-tags span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  background: #e8f5e9;
  color: var(--color-primary-dark);
  border-radius: 50px;
  border: 1px solid #c8e6c9;
}

/* Remove old overlay (no longer needed) */
.zwc-team-card-overlay { display: none; }

/* ── Values section ── */
.zwc-team-values {
  padding: var(--section-pad);
  background: #1b2e1b;
}
.zwc-team-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 2.5rem;
}
.zwc-team-value-item {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s;
}
.zwc-team-value-item:hover { background: rgba(255,255,255,0.09); }
.zwc-team-value-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #2e7d32, #66bb6a);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 6px 20px rgba(46,125,50,0.4);
}
.zwc-team-value-item h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}
.zwc-team-value-item p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin: 0;
}

/* ── CTA ── */
.zwc-team-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
}
.zwc-team-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.zwc-team-cta-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}
.zwc-team-cta-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  margin: 0;
  max-width: 500px;
}
.zwc-team-cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .zwc-team-founder-grid { grid-template-columns: 340px 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .zwc-team-intro-inner { flex-direction: column; gap: 32px; }
  .zwc-team-stats { gap: 16px; }
  .zwc-team-founder-grid { grid-template-columns: 1fr; }
  .zwc-team-founder-img-wrap img { aspect-ratio: 4/3; max-height: 360px; object-position: top; }
  .zwc-team-members-grid { grid-template-columns: repeat(2, 1fr); }
  .zwc-team-values-grid { grid-template-columns: repeat(2, 1fr); }
  .zwc-team-cta-inner { flex-direction: column; text-align: center; }
  .zwc-team-cta-actions { justify-content: center; flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .zwc-team-members-grid { grid-template-columns: 1fr; }
  .zwc-team-values-grid { grid-template-columns: 1fr; }
  .zwc-team-stats { flex-wrap: wrap; justify-content: center; }
  .zwc-team-hero { min-height: 380px; }
}

/* ══════════════════════════════════════════════════════
   LEGAL PAGES — Privacy Policy & Terms & Conditions
   (prefix: legal-)  — Added for zwc.co.in legal pages
   ══════════════════════════════════════════════════════ */

/* ── Hero short variant ── */
.page-hero--short {
  min-height: 320px;
  background: linear-gradient(135deg, #1b4332 0%, #2e7d32 60%, #388e3c 100%);
}
.page-hero--short .page-hero-bg { display: none; }

/* ── Page Section wrapper ── */
.legal-page-section {
  padding: 72px 0 80px;
  background: #f8fdf8;
}

/* ── Two-column layout: TOC sidebar + content ── */
.legal-page-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}

/* ── Sticky TOC sidebar ── */
.legal-toc {
  position: sticky;
  top: 100px;
}
.legal-toc-inner {
  background: #fff;
  border: 1px solid #d8edd8;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 2px 12px rgba(46,125,50,0.07);
}
.legal-toc-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary, #2e7d32);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.legal-toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.legal-toc ul li a {
  display: block;
  font-size: 0.855rem;
  color: #444;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  line-height: 1.4;
}
.legal-toc ul li a:hover {
  background: #edf7ed;
  color: var(--color-primary, #2e7d32);
}

/* ── Content article ── */
.legal-content {
  background: #fff;
  border-radius: 14px;
  padding: 48px 52px;
  box-shadow: 0 2px 20px rgba(46,125,50,0.07);
  border: 1px solid #e6f0e6;
}
.legal-last-updated {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: #777;
  background: #f5f5f5;
  border-radius: 20px;
  padding: 6px 14px;
  margin-bottom: 36px;
}

/* ── Individual blocks ── */
.legal-block {
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid #eef4ee;
}
.legal-block:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.legal-block p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.78;
  margin: 0 0 14px;
}
.legal-block p:last-child { margin-bottom: 0; }
.legal-block h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a2e1b;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.legal-block-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 28px;
  background: var(--color-primary, #2e7d32);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: 6px;
  letter-spacing: 0.04em;
  padding: 0 8px;
  flex-shrink: 0;
}
.legal-block a {
  color: var(--color-primary, #2e7d32);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-block a:hover { color: #1b5e20; }

/* ── Bullet list ── */
.legal-list {
  list-style: none;
  margin: 12px 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: #444;
  line-height: 1.65;
}
.legal-list li i {
  color: var(--color-primary, #2e7d32);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ── Contact card inside content ── */
.legal-contact-card {
  background: #f5fbf5;
  border: 1px solid #d0e8d0;
  border-radius: 10px;
  padding: 20px 24px;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.legal-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #444;
}
.legal-contact-item i {
  color: var(--color-primary, #2e7d32);
  width: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
.legal-contact-item a {
  color: var(--color-primary, #2e7d32);
  text-decoration: none;
  font-weight: 600;
}
.legal-contact-item a:hover { text-decoration: underline; }

/* ── Also read link ── */
.legal-also-read {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #eef4ee;
  flex-wrap: wrap;
}
.legal-also-read p {
  font-size: 0.88rem;
  color: #888;
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.legal-also-read a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary, #2e7d32);
  text-decoration: none;
  background: #edf7ed;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid #c8e6c9;
  transition: background 0.2s, transform 0.2s;
}
.legal-also-read a:hover {
  background: var(--color-primary, #2e7d32);
  color: #fff;
  transform: translateY(-1px);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .legal-page-wrap { grid-template-columns: 200px 1fr; gap: 32px; }
  .legal-content { padding: 36px 32px; }
}
@media (max-width: 768px) {
  .legal-page-wrap { grid-template-columns: 1fr; gap: 24px; }
  .legal-toc { position: static; }
  .legal-content { padding: 28px 20px; }
  .page-hero--short { min-height: 260px; }
}

/* ══════════════════════════════════════════════════════
   NEWSLETTER PAGE  (prefix: nl-)
   ══════════════════════════════════════════════════════ */

/* ── Editions section ── */
.nl-editions-section {
  padding: 72px 0 64px;
  background: #fff;
}
.nl-editions-header {
  text-align: center;
  margin-bottom: 48px;
}
.nl-editions-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #1a2e1b;
  margin: 8px 0 12px;
}
.nl-editions-header p {
  font-size: 1rem;
  color: #666;
  max-width: 520px;
  margin: 0 auto;
}
.nl-editions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* ── Newsletter Card ── */
.nl-card {
  background: #fff;
  border: 1px solid #e0ede0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(46,125,50,0.07);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}
.nl-card:hover {
  box-shadow: 0 8px 36px rgba(46,125,50,0.14);
  transform: translateY(-4px);
}
.nl-card-badge {
  background: var(--color-primary, #2e7d32);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 20px;
}
.nl-card-body {
  padding: 28px 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.nl-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-primary, #2e7d32);
  background: #edf7ed;
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 14px;
  width: fit-content;
}
.nl-card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a2e1b;
  margin: 0 0 12px;
  line-height: 1.35;
}
.nl-card-body p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.72;
  margin: 0 0 24px;
  flex: 1;
}
.nl-card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
}

/* ── Subscribe section ── */
.nl-subscribe-section {
  padding: 80px 0;
  background: #f5fbf5;
  border-top: 1px solid #dcedc8;
  border-bottom: 1px solid #dcedc8;
}
.nl-subscribe-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.nl-subscribe-left h2 {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 800;
  color: #1a2e1b;
  margin: 8px 0 14px;
}
.nl-subscribe-left > p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
}
.nl-subscribe-perks {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nl-subscribe-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: #444;
}
.nl-subscribe-perks li i {
  color: var(--color-primary, #2e7d32);
  flex-shrink: 0;
}
.nl-subscribe-note {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.65;
  margin: 0;
}

/* ── Subscribe form ── */
.nl-subscribe-form-wrap {
  background: #fff;
  border: 1px solid #d8edd8;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(46,125,50,0.09);
}
.nl-subscribe-form-wrap h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a2e1b;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nl-subscribe-form-wrap h3 i {
  color: var(--color-primary, #2e7d32);
}
.nl-subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nl-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nl-form-group label {
  font-size: 0.83rem;
  font-weight: 600;
  color: #444;
}
.nl-form-group label span {
  color: #e53935;
}
.nl-form-group input {
  border: 1.5px solid #c6d8c6;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 0.92rem;
  color: #333;
  font-family: inherit;
  outline: none;
  transition: border-color 0.22s, box-shadow 0.22s, background 0.22s;
  background: #f6fbf6;
}
.nl-form-group input:focus {
  border-color: var(--color-primary, #2e7d32);
  background: #fff;
  box-shadow: 0 0 0 3.5px rgba(46,125,50,0.13);
}
.nl-submit-btn {
  width: 100%;
  padding: 14px;
  font-size: 0.97rem;
  justify-content: center;
  margin-top: 4px;
}

/* ── FAQ section ── */
.nl-faq-section {
  padding: 72px 0 80px;
}
.nl-faq-header {
  text-align: center;
  margin-bottom: 40px;
}
.nl-faq-header h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 800;
  color: #1a2e1b;
  margin: 8px 0 0;
}
.nl-faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nl-faq-item {
  background: #fff;
  border: 1px solid #e0ede0;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.nl-faq-item.open {
  box-shadow: 0 4px 20px rgba(46,125,50,0.1);
}
.nl-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-size: 0.97rem;
  font-weight: 600;
  color: #1a2e1b;
  font-family: inherit;
  transition: background 0.2s;
}
.nl-faq-q:hover { background: #f5fbf5; }
.nl-faq-item.open .nl-faq-q { background: #f5fbf5; color: var(--color-primary, #2e7d32); }
.nl-faq-q i {
  font-size: 0.82rem;
  color: var(--color-primary, #2e7d32);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.nl-faq-item.open .nl-faq-q i { transform: rotate(180deg); }
.nl-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  padding: 0 22px;
}
.nl-faq-item.open .nl-faq-a {
  max-height: 300px;
  padding: 0 22px 18px;
}
.nl-faq-a p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.72;
  margin: 0;
}
.nl-faq-a a {
  color: var(--color-primary, #2e7d32);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .nl-editions-grid { grid-template-columns: 1fr; }
  .nl-subscribe-wrap { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .nl-subscribe-form-wrap { padding: 24px 18px; }
  .nl-card-body { padding: 20px 18px 18px; }
}

/* ══════════════════════════════════════════════════════
   ENQUIRY POPUP MODAL  (prefix: zwc-popup-)
   ══════════════════════════════════════════════════════ */
.zwc-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.zwc-popup-overlay.open {
  opacity: 1;
  visibility: visible;
}
.zwc-popup {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 42% 58%;
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.zwc-popup-overlay.open .zwc-popup {
  transform: translateY(0) scale(1);
}
.zwc-popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  color: #333;
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.2s, color 0.2s;
}
.zwc-popup-close:hover {
  background: #2e7d32;
  color: #fff;
}

/* Image side */
.zwc-popup-img {
  position: relative;
  min-height: 460px;
}
.zwc-popup-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.zwc-popup-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,50,20,0.92) 0%, rgba(27,67,50,0.6) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
}
.zwc-popup-img-content {
  padding: 28px 24px;
  color: #fff;
}
.zwc-popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  backdrop-filter: blur(4px);
}
.zwc-popup-img-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 14px;
  color: #fff;
}
.zwc-popup-img-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.zwc-popup-img-content ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.9);
}
.zwc-popup-img-content ul li i {
  color: #69f0ae;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Form side */
.zwc-popup-form-side {
  padding: 32px 28px 24px;
  overflow-y: auto;
  max-height: 90vh;
}
.zwc-popup-label {
  display: inline-block;
  background: #fff3e0;
  color: #e65100;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.zwc-popup-form-header h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #1a2e1b;
  margin: 0 0 6px;
  line-height: 1.25;
}
.zwc-popup-form-header h2 span {
  color: #2e7d32;
}
.zwc-popup-subtext {
  font-size: 0.85rem;
  color: #666;
  margin: 0 0 20px;
  line-height: 1.55;
}
.zwc-popup-fields {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.zwc-popup-field input,
.zwc-popup-field select,
.zwc-popup-field textarea {
  width: 100%;
  border: 1.5px solid #c6d8c6;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 0.88rem;
  font-family: inherit;
  color: #333;
  background: #f6fbf6;
  outline: none;
  background: #fafff a;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.zwc-popup-field input:focus,
.zwc-popup-field select:focus,
.zwc-popup-field textarea:focus {
  border-color: #2e7d32;
  background: #fff;
  box-shadow: 0 0 0 3.5px rgba(46,125,50,0.13);
  outline: none;
}
.zwc-popup-field textarea { resize: vertical; min-height: 72px; }
.zwc-popup-submit {
  width: 100%;
  background: linear-gradient(135deg, #2e7d32, #1b5e20);
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 13px;
  font-size: 0.97rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 4px;
}
.zwc-popup-submit:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}
.zwc-popup-privacy {
  text-align: center;
  font-size: 0.76rem;
  color: #999;
  margin: 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.zwc-popup-privacy i { color: #2e7d32; }

/* Responsive */
@media (max-width: 700px) {
  .zwc-popup {
    grid-template-columns: 1fr;
    max-height: 92vh;
  }
  .zwc-popup-img { min-height: 180px; max-height: 200px; }
  .zwc-popup-form-side { padding: 20px 18px; }
  .zwc-popup-form-header h2 { font-size: 1.2rem; }
}

/* Popup checkbox */
.zwc-popup-checkbox-wrap { margin-top: 2px; }
.zwc-popup-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.82rem;
  color: #555;
  line-height: 1.5;
}
.zwc-popup-checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 2px;
  accent-color: #2e7d32;
  cursor: pointer;
  border: none;
  padding: 0;
  box-shadow: none;
}
/* ══════════════════════════════════════════════════════
   HOME PAGE UI/UX UPGRADES  (--upgraded modifier classes)
   Only affects index.html sections — nothing else touched
   ══════════════════════════════════════════════════════ */

/* ── Features Strip ── */
.features-strip--upgraded {
  background: #f5fbf5;
  border-top: 1px solid #e0ede0;
  border-bottom: 1px solid #e0ede0;
  position: relative;
}
.features-strip--upgraded::before {
  display: none;
}
.features-strip--upgraded .feature-strip-item {
  background: #fff;
  border: 1px solid #e0ede0;
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(46,125,50,0.07);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.features-strip--upgraded .feature-strip-item:hover {
  background: #fff;
  box-shadow: 0 8px 32px rgba(46,125,50,0.13);
  transform: translateY(-4px);
}
.features-strip--upgraded .feature-strip-icon {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #2e7d32;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.features-strip--upgraded .feature-strip-title {
  color: #1a2e1b;
}
.features-strip--upgraded .feature-strip-desc {
  color: #555;
}

/* ── About Section ── */
.home-about--upgraded {
  background: #f5fbf5;
  position: relative;
}
.home-about--upgraded::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2e7d32, #69f0ae, #2e7d32);
}
.home-about--upgraded .about-img-wrapper {
  position: relative;
}
.home-about--upgraded .about-img-main {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(46,125,50,0.18);
}
.home-about--upgraded .section-heading {
  color: #1a2e1b;
}

/* ── Services Section ── */
.services-section--upgraded {
  background: #fff;
  position: relative;
}
.services-section--upgraded .service-card {
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(46,125,50,0.08);
  border: 1px solid #e8f0e8;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.services-section--upgraded .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(46,125,50,0.16);
}
.services-section--upgraded .section-subtext {
  color: #555;
}

/* ── Why ZWC Section ── */
.why-section--upgraded {
  background: linear-gradient(180deg, #f0faf2 0%, #ffffff 100%);
  position: relative;
}
.why-section--upgraded .why-item {
  background: #fff;
  border: 1px solid #e0ede0;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 2px 12px rgba(46,125,50,0.06);
  transition: box-shadow 0.3s, transform 0.3s;
}
.why-section--upgraded .why-item:hover {
  box-shadow: 0 8px 32px rgba(46,125,50,0.13);
  transform: translateY(-3px);
}
.why-section--upgraded .why-icon {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #2e7d32;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 14px;
}

/* ── Enquiry Section ── */
.enquiry-section--upgraded {
  background: linear-gradient(135deg, #1b4332 0%, #2e7d32 100%);
  position: relative;
  overflow: hidden;
}
.enquiry-section--upgraded::before {
  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.03'%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;
}
.enquiry-section--upgraded .section-label {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.3);
}
.enquiry-section--upgraded .section-label::before {
  background: rgba(255,255,255,0.5);
}
.enquiry-section--upgraded .section-heading {
  color: #fff;
}
.enquiry-section--upgraded .section-subtext {
  color: rgba(255,255,255,0.78);
}
.enquiry-section--upgraded .enquiry-form-wrapper {
  background: rgba(255,255,255,0.97);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.enquiry-section--upgraded .form-label {
  color: #333;
}
.enquiry-section--upgraded .form-note {
  color: #888;
}
@media (max-width: 600px) {
  .enquiry-section--upgraded .enquiry-form-wrapper { padding: 24px 16px; }
}

/* ── Clients Section ── */
.clients-section--upgraded {
  background: #f8fdf8;
  border-top: 1px solid #e0ede0;
  border-bottom: 1px solid #e0ede0;
}
.clients-section--upgraded .client-logo {
  background: #fff;
  border: 1px solid #e8f0e8;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(46,125,50,0.05);
  transition: box-shadow 0.3s, transform 0.3s;
}
.clients-section--upgraded .client-logo:hover {
  box-shadow: 0 6px 24px rgba(46,125,50,0.12);
  transform: translateY(-2px);
}

/* ── Testimonials Section ── */
.testimonials-section--upgraded {
  background: linear-gradient(180deg, #ffffff 0%, #f0faf2 100%);
}
.testimonials-section--upgraded .testimonial-card {
  background: #fff;
  border: 1px solid #e0ede0;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(46,125,50,0.07);
  position: relative;
  overflow: hidden;
}
.testimonials-section--upgraded .testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2e7d32, #69f0ae);
}

/* ── FAQ Section ── */
.faq-section--upgraded {
  background: #f5fbf5;
}
.faq-section--upgraded .faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(46,125,50,0.06);
  margin-bottom: 2px;
  border: 1px solid #e8f0e8;
  overflow: hidden;
}
.faq-section--upgraded .faq-item.active {
  box-shadow: 0 6px 24px rgba(46,125,50,0.11);
}

/* ── City Section ── */
.city-section--upgraded {
  background: linear-gradient(135deg, #1b4332 0%, #2e7d32 100%);
}
.city-section--upgraded .section-label {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.3);
}
.city-section--upgraded .section-label::before {
  background: rgba(255,255,255,0.5);
}
.city-section--upgraded .section-heading {
  color: #fff;
}
.city-section--upgraded .section-subtext {
  color: rgba(255,255,255,0.75);
}
.city-section--upgraded .city-badge {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.city-section--upgraded .city-badge:hover {
  background: rgba(255,255,255,0.22);
}

/* ══════════════════════════════════════════════════════
   ABOUT PAGE — Our Purpose Upgraded (prefix: vm-upgraded-)
   ══════════════════════════════════════════════════════ */
.vm-section-upgraded {
  padding: var(--section-pad);
  background: linear-gradient(160deg, #f0faf2 0%, #fff 50%, #f5fbf5 100%);
  position: relative;
  overflow: hidden;
}
.vm-section-upgraded::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(46,125,50,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.vm-upgraded-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 12px;
}
.vm-upgraded-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(46,125,50,0.09);
  border: 1px solid #e0ede0;
  display: flex;
  gap: 0;
  transition: transform 0.3s, box-shadow 0.3s;
}
.vm-upgraded-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(46,125,50,0.16);
}
.vm-upgraded-icon-wrap {
  width: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 28px;
}
.vm-upgraded-card--mission .vm-upgraded-icon-wrap { background: linear-gradient(160deg, #1b4332, #2e7d32); }
.vm-upgraded-card--vision  .vm-upgraded-icon-wrap { background: linear-gradient(160deg, #1565c0, #1976d2); }
.vm-upgraded-card--sustain .vm-upgraded-icon-wrap { background: linear-gradient(160deg, #2e7d32, #43a047); }
.vm-upgraded-card--partner .vm-upgraded-icon-wrap { background: linear-gradient(160deg, #6a1b9a, #8e24aa); }
.vm-upgraded-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}
.vm-upgraded-body {
  padding: 24px 24px 24px 20px;
  flex: 1;
}
.vm-upgraded-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.vm-upgraded-card--mission .vm-upgraded-tag { background: #e8f5e9; color: #2e7d32; }
.vm-upgraded-card--vision  .vm-upgraded-tag { background: #e3f2fd; color: #1565c0; }
.vm-upgraded-card--sustain .vm-upgraded-tag { background: #e8f5e9; color: #2e7d32; }
.vm-upgraded-card--partner .vm-upgraded-tag { background: #f3e5f5; color: #6a1b9a; }
.vm-upgraded-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a2e1b;
  margin: 0 0 10px;
}
.vm-upgraded-body p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 767px) {
  .vm-upgraded-grid { grid-template-columns: 1fr; gap: 18px; }
  .vm-upgraded-icon-wrap { width: 64px; }
  .vm-upgraded-body { padding: 18px 18px 18px 14px; }
}

/* ══════════════════════════════════════════════════════
   ABOUT PAGE — Banner Slider (prefix: abt-slider-)
   1600x800 = 2:1 aspect ratio — no crop, no text, full image
   ══════════════════════════════════════════════════════ */
.abt-slider-section {
  padding: 0;
  background: #000;
  line-height: 0;
}
.abt-slider-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.abt-slider-track {
  display: flex;
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
  line-height: 0;
}
.abt-slider-slide {
  flex: 0 0 100%;
  min-width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
}
.abt-slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}
/* Nav buttons */
.abt-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e7d32;
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  transition: background 0.2s, transform 0.2s;
  line-height: 1;
}
.abt-slider-nav:hover {
  background: #2e7d32;
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}
.abt-slider-nav--prev { left: 16px; }
.abt-slider-nav--next { right: 16px; }
/* Dots */
.abt-slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 5;
  line-height: 1;
}
.abt-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, width 0.25s;
}
.abt-slider-dot.active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}
/* Mobile — aspect-ratio 2:1 handles everything automatically */
@media (max-width: 767px) {
  .abt-slider-nav { width: 34px; height: 34px; font-size: 0.75rem; }
  .abt-slider-dots { bottom: 8px; }
}
