/* ═══════════════════════════════════════════════════════════
   GreenScrap — style.css
   Single stylesheet combining all page styles.
   Replaces common.css + all <style> blocks from every page.

   TABLE OF CONTENTS
   ─────────────────
   1.  Design Tokens (CSS Variables)
   2.  Reset & Base
   3.  Typography
   4.  Topbar
   5.  Navbar (Desktop)
   6.  Mobile Drawer
   7.  Page Hero (shared)
   8.  Trust Strip
   9.  Stats Row
   10. Section Utilities
   11. CTA Box
   12. Testimonial Cards
   13. Footer
   14. WhatsApp Float
   15. Reveal Animation

   PAGE-SPECIFIC
   ─────────────
   16. Home — Hero Slider & Ticker
   17. Home — Buy Cards
   18. Home — Why Us Block
   19. Home — Process Steps
   20. Home — Brand Logos
   21. About — Story Section
   22. About — Value Cards
   23. About — Timeline
   24. About — Why Items
   25. About — Team Cards
   26. About — Cert Chips
   27. Contact — Quick Contact Chips
   28. Contact — Contact Info Cards
   29. Contact — Form
   30. Contact — Map
   31. Contact — Hours Table
   32. Contact — Service Areas
   33. Contact — FAQ
   34. Gallery — Filter Bar
   35. Gallery — Masonry Grid
   36. Gallery — Lightbox Modal

   RESPONSIVE
   ──────────
   37. Media Queries
═══════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────
   1. DESIGN TOKENS
───────────────────────────────────────── */
:root {
  --white:       #ffffff;
  --cream:       #faf9f7;
  --bg2:         #f3f1ee;
  --dark:        #1a1a1a;
  --mid:         #555555;
  --light:       #999999;
  --green:       #2d6a4f;
  --green-light: #40916c;
  --green-pale:  #d8f3dc;
  --accent:      #e76f51;
  --border:      #e8e4df;
  --shadow:      0 2px 20px rgba(0, 0, 0, 0.07);
  --shadow-md:   0 8px 40px rgba(0, 0, 0, 0.10);
  --nav-h:       68px;
}


/* ─────────────────────────────────────────
   2. RESET & BASE
───────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; }
a   { text-decoration: none; }


/* ─────────────────────────────────────────
   3. TYPOGRAPHY
───────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
}


/* ─────────────────────────────────────────
   4. TOPBAR
───────────────────────────────────────── */
.topbar {
  background:#001c45;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.79rem;
  padding: 8px 0;
  text-align: center;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1001;
}
.topbar a      { color: #fff; }
.topbar strong { color: #ffffff; }


/* ─────────────────────────────────────────
   5. NAVBAR (DESKTOP)
───────────────────────────────────────── */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  padding: 0 16px;
}

/* Brand logo */
.brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.55rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-icon {
  width: 34px;
  height: 34px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
}
.brand span { color: var(--green); }

/* Desktop links */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-desktop a {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--mid);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.18s;
  white-space: nowrap;
}
.nav-desktop a:hover,
.nav-desktop a.active {
  background: var(--bg2);
  color: var(--dark);
}
.nav-desktop .dropdown-menu {
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 8px;
  min-width: 210px;
}
.nav-desktop .dropdown-item {
  font-size: 0.83rem;
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--mid);
}
.nav-desktop .dropdown-item:hover {
  background: var(--bg2);
  color: var(--dark);
}

/* Nav CTA buttons */
.btn-nav {
  background: var(--green);
  color: #fff !important;
  border-radius: 50px;
  padding: 9px 20px;
  font-weight: 600;
  font-size: 0.83rem;
  margin-left: 10px;
  transition: background 0.2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.btn-nav:hover { background: var(--green-light) !important; color: #fff !important; }

.btn-nav.outline {
  background: transparent;
  border: 1.5px solid var(--green);
  color: var(--green) !important;
  margin-left: 6px;
}
.btn-nav.outline:hover { background: var(--green); color: #fff !important; }

/* Hamburger button (mobile only) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1200;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}


/* ─────────────────────────────────────────
   6. MOBILE DRAWER (right-slide)
───────────────────────────────────────── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1098;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(3px);
}
.drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 290px;
  background: var(--white);
  z-index: 1099;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
}
.mobile-drawer.open { transform: translateX(0); }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.drawer-head .brand { font-size: 1.3rem; }

.drawer-close {
  width: 36px; height: 36px;
  background: var(--bg2);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--dark);
  transition: background 0.2s;
  flex-shrink: 0;
}
.drawer-close:hover { background: var(--border); }

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 10px;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--dark);
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.18s;
  margin-bottom: 2px;
}
.drawer-link i {
  width: 32px; height: 32px;
  background: var(--green-pale);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: all 0.2s;
}
.drawer-link:hover              { background: var(--bg2); }
.drawer-link:hover i            { background: var(--green); color: #fff; }
.drawer-link.active             { background: var(--green-pale); color: var(--green); }
.drawer-link.active i           { background: var(--green); color: #fff; }

.drawer-divider {
  height: 1px;
  background: var(--border);
  margin: 10px 14px;
}

.drawer-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light);
  padding: 8px 14px 4px;
}

.drawer-foot {
  padding: 16px 14px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.drawer-foot a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.2s;
}
.drawer-foot .dcall                    { background: var(--green); color: #fff; }
.drawer-foot .dcall:hover              { background: var(--green-light); }
.drawer-foot .dwa                      { background: #f0fff4; color: #2e7d32; border: 1.5px solid #a5d6a7; }
.drawer-foot .dwa:hover                { background: #25d366; color: #fff; border-color: #25d366; }


/* ─────────────────────────────────────────
   7. PAGE HERO (shared inner pages)
───────────────────────────────────────── */
.page-hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 92px 0 76px;
}
.page-hero img.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.28) saturate(0.55);
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }

.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}
.breadcrumb-nav a       { color: rgba(255, 255, 255, 0.45); transition: color 0.2s; }
.breadcrumb-nav a:hover { color: #fff; }
.breadcrumb-nav .sep    { opacity: 0.35; font-size: 0.65rem; }
.breadcrumb-nav .cur    { color: #b7e4c7; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.page-hero h1             { font-size: clamp(2.5rem, 5vw, 4rem); color: #fff; line-height: 1.1; margin-bottom: 16px; }
.page-hero h1 em          { font-style: italic; color: #b7e4c7; }
.page-hero p              { font-size: 1rem; color: rgba(255, 255, 255, 0.62); max-width: 520px; line-height: 1.8; font-weight: 300; }


/* ─────────────────────────────────────────
   8. TRUST STRIP
───────────────────────────────────────── */
.trust-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--mid);
  font-weight: 500;
}
.trust-item i { color: var(--green); font-size: 1.1rem; }


/* ─────────────────────────────────────────
   9. STATS ROW
───────────────────────────────────────── */
.stats-row  { background: var(--green); padding: 52px 0; }
.stat-box   { text-align: center; color: #fff; padding: 8px 16px; }
.stat-num   { font-family: 'DM Serif Display', serif; font-size: 3.2rem; line-height: 1; display: block; margin-bottom: 5px; }
.stat-lbl   { font-size: 0.8rem; color: rgba(255, 255, 255, 0.65); font-weight: 400; letter-spacing: 0.3px; }
.stat-divider { border-right: 1px solid rgba(255, 255, 255, 0.15); }


/* ─────────────────────────────────────────
   10. SECTION UTILITIES
───────────────────────────────────────── */
section    { padding: 82px 0; }
.bg-cream  { background: var(--cream); }
.bg-dark-green { background: #1b4332; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 14px;
  font-weight: 400;
}
.section-title em { font-style: italic; }
.section-sub  { font-size: 0.97rem; color: var(--mid); line-height: 1.8; max-width: 560px; }
.divider      { width: 40px; height: 2px; background: var(--green); border-radius: 2px; margin: 16px 0 28px; }


/* ─────────────────────────────────────────
   11. CTA BOX
───────────────────────────────────────── */
.cta-box {
  background: var(--green);
  border-radius: 22px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.cta-box::after {
  content: '♻';
  position: absolute;
  right: -10px; bottom: -30px;
  font-size: 14rem;
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
}
.cta-box h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); color: #fff; margin-bottom: 12px; }
.cta-box p  { color: rgba(255, 255, 255, 0.72); font-size: 0.97rem; margin-bottom: 28px; max-width: 480px; }

.btn-cta-w {
  background: #fff;
  color: var(--green);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.22s;
  margin-right: 12px;
  margin-bottom: 10px;
}
.btn-cta-w:hover { background: var(--green-pale); color: var(--green); transform: translateY(-2px); }

.btn-cta-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.22s;
  margin-bottom: 10px;
}
.btn-cta-ghost:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }


/* ─────────────────────────────────────────
   12. TESTIMONIAL CARDS
───────────────────────────────────────── */
.tcard {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  padding: 28px 26px;
  height: 100%;
  transition: all 0.3s;
}
.tcard:hover        { background: rgba(255, 255, 255, 0.10); border-color: rgba(255, 255, 255, 0.20); }
.tcard-stars        { color: #ffd166; font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.tcard p            { font-size: 0.9rem; color: rgba(255, 255, 255, 0.68); line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.tcard h6           { color: #fff; font-size: 0.92rem; font-weight: 600; margin-bottom: 2px; }
.tcard span         { font-size: 0.77rem; color: rgba(255, 255, 255, 0.42); }


/* ─────────────────────────────────────────
   13. FOOTER
───────────────────────────────────────── */
.site-footer {
  background:#012c38;
  color: rgba(255, 255, 255, 0.5);
  padding: 64px 0 0;
}

.footer-brand-name       { font-family: 'DM Serif Display', serif; font-size: 1.7rem; color: #fff; margin-bottom: 6px; }
.footer-brand-name span  { color: #74c69d; }

.footer-tagline {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: block;
  text-transform: uppercase;
}
.footer-desc { font-size: 0.85rem; line-height: 1.8; color: rgba(255, 255, 255, 0.38); max-width: 290px; }

.footer-soc   { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.footer-soc a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.45);
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
  transition: all 0.2s;
}
.footer-soc a:hover { background: var(--green); color: #fff; border-color: var(--green); }

.footer-h {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-h::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--green);
}

.footer-ul     { list-style: none; padding: 0; }
.footer-ul li  { margin-bottom: 9px; }
.footer-ul a   { color: rgba(255, 255, 255, 0.4); font-size: 0.84rem; transition: all 0.2s; display: flex; align-items: center; gap: 7px; }
.footer-ul a:hover { color: #74c69d; padding-left: 3px; }

.fci   { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 14px; }
.fci i { color: #74c69d; font-size: 0.95rem; margin-top: 3px; flex-shrink: 0; }
.fci p { font-size: 0.84rem; color: rgba(255, 255, 255, 0.4); margin: 0; line-height: 1.65; }
.fci a { color: #74c69d; }
.fci a:hover { color: #b7e4c7; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 48px;
  padding: 18px 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.22);
}
.footer-bottom a { color: #74c69d; }


/* ─────────────────────────────────────────
   14. WHATSAPP FLOAT BUTTON
───────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  z-index: 1090;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  animation: waBounce 2.5s infinite;
}
@keyframes waBounce {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45); }
  50%       { box-shadow: 0 6px 36px rgba(37, 211, 102, 0.70); transform: scale(1.07); }
}


/* ─────────────────────────────────────────
   15. REVEAL ANIMATION
───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in { opacity: 1; transform: none; }


/* ═══════════════════════════════════════════════════════════
   PAGE-SPECIFIC STYLES
═══════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────
   16. HOME — Hero Slider & Ticker
───────────────────────────────────────── */
.hero-wrap { position: relative; background: var(--dark); overflow: hidden; }

.carousel-item              { height: 580px; position: relative; overflow: hidden; }
.carousel-item img          { width: 100%; height: 100%;  transform: scale(1.05); transition: transform 7s ease; }
.carousel-item.active img   { transform: scale(1.0); }
.hero-overlay               { position: absolute; inset: 0; display: flex; align-items: center; }
.hero-text                  { color: #fff; }
.hero-text h1               { font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1.1; margin-bottom: 18px; font-weight: 400; }
.hero-text h1 em            { font-style: italic; color: #b7e4c7; }
.hero-text p                { font-size: 1rem; color: rgba(255, 255, 255, 0.75); max-width: 480px; line-height: 1.75; margin-bottom: 30px; font-weight: 300; }

.btn-hero {
  background: #fff;
  color: var(--green);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.22s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.btn-hero:hover { background: var(--green-pale); color: var(--green); transform: translateY(-2px); }

.btn-hero-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.22s;
  margin-left: 12px;
}
.btn-hero-ghost:hover { background: rgba(255, 255, 255, 0.10); color: #fff; }

.slide-label {
  position: absolute;
  bottom: 32px; right: 32px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 50px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 44px; height: 44px;
  bottom: 28px; top: auto;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.carousel-control-prev             { left: auto; right: 100px; }
.carousel-control-next             { right: 44px; }
.carousel-indicators               { bottom: 42px; justify-content: flex-start; margin-left: 24px; }
.carousel-indicators [data-bs-target] { width: 22px; height: 3px; border-radius: 2px; background: rgba(255, 255, 255, 0.4); }
.carousel-indicators .active       { background: #fff; width: 36px; }

/* Ticker strip */
.ticker-strip  { background: var(--green); padding: 11px 0; overflow: hidden; font-size: 0.88rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255, 255, 255, 0.9); }
.ticker-inner  { display: flex; gap: 48px; animation: tickRun 32s linear infinite; white-space: nowrap; }
.t-dot         { width: 5px; height: 5px; background: rgba(255, 255, 255, 0.45); border-radius: 50%; flex-shrink: 0; display: inline-block; vertical-align: middle; margin-right: 6px; }
@keyframes tickRun { from { transform: translateX(0); } to { transform: translateX(-50%); } }


/* ─────────────────────────────────────────
   17. HOME — Buy Cards
───────────────────────────────────────── */
.buy-card                    { background: #fff; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; transition: all 0.3s; height: 100%; }
.buy-card:hover              { box-shadow: var(--shadow-md); transform: translateY(-6px); border-color: transparent; }
.buy-card-img                { height: 210px; overflow: hidden; position: relative; }
.buy-card-img img            { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.buy-card:hover .buy-card-img img { transform: scale(1.07); }
.buy-card-tag                { position: absolute; top: 14px; left: 14px; background: var(--green); color: #fff; font-size: 0.7rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 5px 12px; border-radius: 50px; }
.buy-card-body               { padding: 20px 22px 24px; }
.buy-card-body h5            { font-size: 1.05rem; font-weight: 600; color: var(--dark); margin-bottom: 7px; }
.buy-card-body p             { font-size: 0.85rem; color: var(--mid); line-height: 1.7; margin-bottom: 14px; }
.card-link                   { font-size: 0.83rem; font-weight: 600; color: var(--green); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.card-link:hover             { gap: 10px; }


/* ─────────────────────────────────────────
   18. HOME — Why Us Block
───────────────────────────────────────── */
.why-img                     { border-radius: 20px; overflow: hidden; position: relative; }
.why-img img                 { width: 100%; object-fit: cover; }
.why-badge                   { position: absolute; bottom: 24px; left: 24px; right: 24px; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px); border-radius: 14px; padding: 18px 22px; display: flex; align-items: center; gap: 16px; box-shadow: var(--shadow); }
.badge-num                   { font-family: 'DM Serif Display', serif; font-size: 2.6rem; color: var(--green); line-height: 1; }
.badge-txt p                 { font-size: 0.83rem; color: var(--mid); margin: 0; line-height: 1.5; }
.badge-txt strong            { color: var(--dark); }

.why-item                    { display: flex; align-items: flex-start; gap: 16px; padding: 17px 0; border-bottom: 1px solid var(--border); }
.why-item:last-child         { border-bottom: none; }
.why-icon                    { width: 44px; height: 44px; background: var(--green-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 1.1rem; flex-shrink: 0; transition: all 0.25s; }
.why-item:hover .why-icon    { background: var(--green); color: #fff; }
.why-item h6                 { font-size: 0.97rem; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.why-item p                  { font-size: 0.84rem; color: var(--mid); margin: 0; line-height: 1.65; }


/* ─────────────────────────────────────────
   19. HOME — Process Steps
───────────────────────────────────────── */
.step-card   { text-align: center; padding: 10px; }
.step-num    { width: 52px; height: 52px; border-radius: 50%; background: var(--green-pale); color: var(--green); font-family: 'DM Serif Display', serif; font-size: 1.4rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; border: 2px solid rgba(45, 106, 79, 0.15); }
.step-card h6 { font-size: 0.97rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.step-card p  { font-size: 0.83rem; color: var(--mid); }


/* ─────────────────────────────────────────
   20. HOME — Brand Logo Boxes
───────────────────────────────────────── */
.brand-logo-box             { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 18px 16px; display: flex; align-items: center; justify-content: center; height: 78px; transition: all 0.25s; overflow: hidden; }
.brand-logo-box:hover       { box-shadow: var(--shadow); border-color: var(--green-pale); transform: translateY(-3px); }
.brand-logo-box img         { max-width: 100%; max-height: 44px; object-fit: contain; filter: grayscale(100%); opacity: 0.65; transition: all 0.25s; }
.brand-logo-box:hover img   { filter: grayscale(0%); opacity: 1; }
.brand-logo-box .brand-text { font-weight: 700; font-size: 1rem; color: #444; letter-spacing: 1px; }


/* ─────────────────────────────────────────
   21. ABOUT — Story Section
───────────────────────────────────────── */
.story-img                  { border-radius: 20px; overflow: hidden; position: relative; }
.story-img img              { width: 100%; height: 480px; object-fit: cover; }
.story-img-badge            { position: absolute; bottom: 24px; left: 24px; right: 24px; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px); border-radius: 14px; padding: 18px 22px; display: flex; align-items: center; gap: 16px; box-shadow: var(--shadow); }
.story-para                 { font-size: 0.97rem; color: var(--mid); line-height: 1.9; margin-bottom: 18px; }
.story-highlight            { background: var(--green-pale); border-left: 3px solid var(--green); border-radius: 0 10px 10px 0; padding: 16px 20px; font-size: 0.93rem; color: var(--dark); line-height: 1.75; font-style: italic; margin: 24px 0; }


/* ─────────────────────────────────────────
   22. ABOUT — Value Cards
───────────────────────────────────────── */
.value-card                   { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 28px 24px; height: 100%; transition: all 0.3s; position: relative; overflow: hidden; }
.value-card::after            { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green), var(--green-pale)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.value-card:hover::after      { transform: scaleX(1); }
.value-card:hover             { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: transparent; }
.value-icon                   { width: 52px; height: 52px; background: var(--green-pale); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; color: var(--green); margin-bottom: 18px; transition: all 0.3s; }
.value-card:hover .value-icon { background: var(--green); color: #fff; }
.value-card h5                { font-size: 1.05rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.value-card p                 { font-size: 0.85rem; color: var(--mid); line-height: 1.75; }


/* ─────────────────────────────────────────
   23. ABOUT — Timeline
───────────────────────────────────────── */
.timeline           { position: relative; padding-left: 32px; }
.timeline::before   { content: ''; position: absolute; left: 10px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(to bottom, var(--green), var(--green-pale)); }
.tl-item            { position: relative; margin-bottom: 34px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot             { position: absolute; left: -32px; top: 4px; width: 20px; height: 20px; background: #fff; border: 3px solid var(--green); border-radius: 50%; z-index: 1; transition: all 0.25s; }
.tl-item:hover .tl-dot { background: var(--green); transform: scale(1.2); }
.tl-year            { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 4px; }
.tl-item h6         { font-size: 0.97rem; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.tl-item p          { font-size: 0.85rem; color: var(--mid); line-height: 1.7; }


/* ─────────────────────────────────────────
   24. ABOUT — Why Items (also used in Home)
───────────────────────────────────────── */
/* Already defined in Section 18 — shared between Home & About */


/* ─────────────────────────────────────────
   25. ABOUT — Team Cards
───────────────────────────────────────── */
.team-card                       { background: #fff; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; transition: all 0.3s; text-align: center; }
.team-card:hover                 { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: transparent; }
.team-img                        { height: 230px; overflow: hidden; }
.team-img img                    { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s; }
.team-card:hover .team-img img   { transform: scale(1.05); }
.team-body                       { padding: 18px 16px 22px; }
.team-body h5                    { font-size: 1rem; font-weight: 600; color: var(--dark); margin-bottom: 3px; }
.team-body .role                 { font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--green); margin-bottom: 7px; display: block; }
.team-body p                     { font-size: 0.82rem; color: var(--mid); line-height: 1.65; }


/* ─────────────────────────────────────────
   26. ABOUT — Certification Chips
───────────────────────────────────────── */
.cert-chip        { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 16px 18px; display: flex; align-items: center; gap: 14px; transition: all 0.25s; }
.cert-chip:hover  { box-shadow: var(--shadow); border-color: var(--green-pale); transform: translateY(-3px); }
.cert-icon        { width: 42px; height: 42px; background: var(--green-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--green); flex-shrink: 0; }
.cert-chip h6     { font-size: 0.88rem; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.cert-chip p      { font-size: 0.78rem; color: var(--mid); margin: 0; }


/* ─────────────────────────────────────────
   27. CONTACT — Quick Contact Chips
───────────────────────────────────────── */
.qc-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  transition: all 0.25s;
  color: var(--dark);
}
.qc-chip:hover           { background: var(--green); border-color: var(--green); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.qc-chip:hover .qc-icon  { background: rgba(255, 255, 255, 0.2); color: #fff; }
.qc-chip:hover h6,
.qc-chip:hover span      { color: #fff; }
.qc-icon                 { width: 44px; height: 44px; background: var(--green-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--green); flex-shrink: 0; transition: all 0.25s; }
.qc-chip h6              { font-size: 0.9rem; font-weight: 600; color: var(--dark); margin: 0 0 2px; transition: color 0.25s; }
.qc-chip span            { font-size: 0.8rem; color: var(--mid); transition: color 0.25s; }


/* ─────────────────────────────────────────
   28. CONTACT — Contact Info Cards
───────────────────────────────────────── */
.cinfo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 26px;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.cinfo-card::after            { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green), var(--green-pale)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.cinfo-card:hover::after      { transform: scaleX(1); }
.cinfo-card:hover             { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: transparent; }
.cinfo-icon                   { width: 52px; height: 52px; background: var(--green-pale); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--green); margin-bottom: 18px; transition: all 0.3s; }
.cinfo-card:hover .cinfo-icon { background: var(--green); color: #fff; }
.cinfo-card h5                { font-size: 1rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.cinfo-card p,
.cinfo-card a                 { font-size: 0.9rem; color: var(--mid); line-height: 1.8; }
.cinfo-card a:hover           { color: var(--green); }
.cinfo-card .badge-tag        { display: inline-block; background: var(--green-pale); color: var(--green); font-size: 0.7rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 50px; margin-bottom: 14px; }


/* ─────────────────────────────────────────
   29. CONTACT — Form
───────────────────────────────────────── */
.form-wrap   { background: var(--white); border: 1px solid var(--border); border-radius: 22px; padding: 44px 40px; box-shadow: var(--shadow); }
.form-label  { font-size: 0.83rem; font-weight: 600; color: var(--dark); margin-bottom: 7px; display: block; }

.form-control,
.form-select {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 11px 16px;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  background: var(--cream);
  transition: all 0.2s;
  width: 100%;
}
.form-control:focus,
.form-select:focus  { border-color: var(--green); background: var(--white); box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.12); outline: none; }
.form-control::placeholder { color: var(--light); }
textarea.form-control      { resize: vertical; min-height: 130px; }

.btn-submit {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 13px 34px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.22s;
}
.btn-submit:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(45, 106, 79, 0.3); }
.form-note        { font-size: 0.78rem; color: var(--light); text-align: center; margin-top: 14px; }

.form-success         { display: none; background: var(--green-pale); border: 1px solid var(--green); border-radius: 14px; padding: 24px; text-align: center; }
.form-success i       { font-size: 2.5rem; color: var(--green); margin-bottom: 12px; display: block; }
.form-success h5      { font-size: 1.1rem; color: var(--green); margin-bottom: 6px; }
.form-success p       { font-size: 0.88rem; color: var(--green-light); }


/* ─────────────────────────────────────────
   30. CONTACT — Map
───────────────────────────────────────── */
.map-wrap        { border-radius: 20px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 420px; border: none; display: block; }


/* ─────────────────────────────────────────
   31. CONTACT — Hours Table
───────────────────────────────────────── */
.hours-row             { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.hours-row:last-child  { border-bottom: none; }
.hours-row .day        { font-weight: 600; color: var(--dark); }
.hours-row .time       { color: var(--mid); }
.hours-row .open-badge { background: var(--green-pale); color: var(--green); font-size: 0.7rem; font-weight: 600; padding: 3px 10px; border-radius: 50px; letter-spacing: 0.5px; }
.hours-row .closed-badge { background: #fee2e2; color: #dc2626; font-size: 0.7rem; font-weight: 600; padding: 3px 10px; border-radius: 50px; }


/* ─────────────────────────────────────────
   32. CONTACT — Service Area Chips
───────────────────────────────────────── */
.area-chip        { display: inline-flex; align-items: center; gap: 6px; background: var(--white); border: 1px solid var(--border); border-radius: 50px; padding: 7px 16px; font-size: 0.82rem; font-weight: 500; color: var(--mid); transition: all 0.2s; }
.area-chip i      { color: var(--green); font-size: 0.75rem; }
.area-chip:hover  { background: var(--green-pale); border-color: var(--green-pale); color: var(--green); }


/* ─────────────────────────────────────────
   33. CONTACT — FAQ Accordion
───────────────────────────────────────── */
.faq-item          { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; margin-bottom: 10px; transition: border-color 0.2s; }
.faq-item.open     { border-color: var(--green); }
.faq-q             { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; cursor: pointer; font-size: 0.93rem; font-weight: 600; color: var(--dark); background: var(--white); transition: background 0.2s; gap: 12px; user-select: none; }
.faq-q:hover       { background: var(--cream); }
.faq-item.open .faq-q  { background: var(--green-pale); color: var(--green); }
.faq-icon          { width: 28px; height: 28px; border-radius: 50%; background: var(--bg2); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: var(--mid); flex-shrink: 0; transition: all 0.25s; }
.faq-item.open .faq-icon { background: var(--green); color: #fff; transform: rotate(45deg); }
.faq-a             { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; font-size: 0.88rem; color: var(--mid); line-height: 1.8; background: var(--white); padding: 0 22px; }
.faq-item.open .faq-a  { max-height: 200px; padding: 0 22px 18px; }


/* ─────────────────────────────────────────
   34. GALLERY — Filter Bar
───────────────────────────────────────── */
.filter-bar        { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn        { background: var(--white); border: 1.5px solid var(--border); color: var(--mid); font-size: 0.82rem; font-weight: 600; padding: 8px 18px; border-radius: 50px; cursor: pointer; transition: all 0.2s; letter-spacing: 0.3px; }
.filter-btn:hover  { border-color: var(--green); color: var(--green); }
.filter-btn.active { background: var(--green); border-color: var(--green); color: #fff; }


/* ─────────────────────────────────────────
   35. GALLERY — Masonry Grid
───────────────────────────────────────── */
.gallery-grid          { columns: 3 280px; column-gap: 14px; }
.g-item                { break-inside: avoid; margin-bottom: 14px; border-radius: 14px; overflow: hidden; position: relative; cursor: pointer; display: block; }
.g-item img            { width: 100%; display: block; transition: transform 0.45s ease; }
.g-item:hover img      { transform: scale(1.06); }
.g-overlay             { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20, 60, 35, 0.85) 0%, transparent 55%); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 18px; }
.g-item:hover .g-overlay { opacity: 1; }
.g-label               { color: #fff; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.5px; }
.g-label i             { margin-right: 6px; font-size: 1rem; }


/* ─────────────────────────────────────────
   36. GALLERY — Lightbox Modal
───────────────────────────────────────── */
.lb-modal          { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.92); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; padding: 20px; }
.lb-modal.open     { opacity: 1; pointer-events: all; }
.lb-inner          { position: relative; max-width: 860px; width: 100%; animation: lbIn 0.3s ease both; }
@keyframes lbIn    { from { transform: scale(0.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lb-img            { width: 100%; max-height: 80vh; object-fit: contain; border-radius: 12px; display: block; }
.lb-close          { position: absolute; top: -16px; right: -16px; width: 40px; height: 40px; background: #fff; border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; cursor: pointer; color: var(--dark); box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3); transition: background 0.2s; z-index: 10; }
.lb-close:hover    { background: var(--green); color: #fff; }
.lb-caption        { text-align: center; color: rgba(255, 255, 255, 0.7); font-size: 0.85rem; margin-top: 14px; letter-spacing: 0.3px; }
.lb-nav            { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255, 255, 255, 0.12); border: none; backdrop-filter: blur(6px); color: #fff; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.1rem; transition: background 0.2s; }
.lb-nav:hover      { background: rgba(255, 255, 255, 0.25); }
.lb-prev           { left: -56px; }
.lb-next           { right: -56px; }


/* ═══════════════════════════════════════════════════════════
   37. MEDIA QUERIES
═══════════════════════════════════════════════════════════ */

/* Tablet / small desktop */
@media (max-width: 991px) {
  .nav-desktop  { display: none !important; }
  .hamburger    { display: flex; }
  .page-hero    { padding: 64px 0 52px; }
  .cta-box      { padding: 36px 28px; }
  .form-wrap    { padding: 30px 24px; }
  .lb-prev      { left: 4px; }
  .lb-next      { right: 4px; }
  .lb-inner     { padding: 0 44px; }
}

/* Mobile */
@media (max-width: 767px) {
  section                   { padding: 56px 0; }
  .page-hero                { padding: 52px 0 44px; }
  .stat-divider             { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.15); padding-bottom: 20px; }
  .carousel-item            { height: 420px; }
  .hero-text h1             { font-size: 2rem; }
  .why-img img              { height: 280px; }
  .story-img img            { height: 300px; }
  .map-wrap iframe          { height: 300px; }
  .gallery-grid             { columns: 2 150px; }
  .lb-close                 { top: -12px; right: -4px; }
}

/* Very small mobile */
@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
  .btn-hero-ghost { margin-left: 0; margin-top: 10px; }
}