/* ==================================================
   ENTERPRISE BRAND DESIGN SYSTEM - FINAL (2026)
   Complete Bootstrap Override + Modern Enterprise UI
================================================== */

/* ROOT DESIGN SYSTEM (COMPLETE) */
:root {
  /* Core Brand Colors */
  --primary: #88B44E;
  --primary-dark: #6FA847;
  --secondary: #FB9F38;
  --brand-gradient: linear-gradient(135deg, var(--primary), var(--primary-dark));
  
  /* Neutrals */
  --dark: #252C30;
  --light: #F5F8F2;
  --white: #ffffff;
  --text-main: #0f172a;
  --text-muted: #64748b;
  
  /* Typography */
  --font-base: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Playfair Display', 'Paytone One', serif;
  
  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  
  /* Shadows */
  --shadow-sm: 0 4px 14px rgba(0,0,0,.06);
  --shadow-md: 0 12px 30px rgba(0,0,0,.10);
  --shadow-lg: 0 30px 80px rgba(0,0,0,.15);
  
  /* Layout */
  --hero-height: clamp(65vh, 85vh, 95vh);
  --min-height: 420px;
  --max-height: 980px;
  
  --navbar-height: 80px;
  --navbar-bg: rgba(255, 255, 255, 0.95);
  --navbar-blur: blur(20px);
 
}


/*  GLOBAL RESET (BOOTSTRAP NEUTRALIZER) */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--text-main);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; height: auto; }

/* =====================================================
   BUTTON RESET (SAFE + ACCESSIBLE)
===================================================== */
.btn,
button {
  box-sizing: border-box;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  line-height: 1;

  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* =====================================================
   ENTERPRISE BUTTON BASE (CRITICAL)
===================================================== */
.btn {
  position: relative;        /* REQUIRED for shimmer */
  overflow: hidden;          /* Prevents white glow */
  isolation: isolate;        /* Stops bleed into cards */

  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-pill);

  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;

  transition:
    transform .4s cubic-bezier(.4,0,.2,1),
    box-shadow .4s cubic-bezier(.4,0,.2,1),
    background .4s cubic-bezier(.4,0,.2,1),
    color .3s ease;
}

/* =====================================================
   PRIMARY BUTTON
===================================================== */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}

.btn-primary::before {
 content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transition: left 0.7s cubic-bezier(.4,0,.2,1);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
}

/* =====================================================
   OUTLINE BUTTON
===================================================== */
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transition: left 0.7s cubic-bezier(.4,0,.2,1);
}

.btn-outline:hover::before {
  left: 100%;
}

.btn-outline:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  transform: translateY(-1px);
}

/* =====================================================
   FOCUS & ACTIVE FIX (NO WHITE GLOW)
===================================================== */
.btn:focus,
.btn:focus-visible,
.btn:active {
  outline: none !important;
  box-shadow: none !important;
}

/* =====================================================
   SQUARE BUTTONS
===================================================== */
.btn-square {
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 8px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}



/*  FORM RESET (BOOTSTRAP FREE) */
input, textarea, select {
  width: 100%;
  padding: .85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid #e5e7eb;
  background: var(--white);
  font-size: .95rem;
  font-family: var(--font-base);
  transition: all .2s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(136,180,78,.15);
}

/* Utility Classes */
.fw-medium { font-weight: 500; }
.fw-bold { font-weight: 700; }
.fw-black { font-weight: 900; }
.text-center { text-align: center; }

/* MODAL OVERRIDE (CLEAN ENTERPRISE) */
.modal-content {
  border: none !important;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.modal-header {
  border-bottom: 1px solid #e5e7eb;
  font-family: var(--font-heading);
}

.modal-footer {
  border-top: 1px solid #e5e7eb;
}

.modal-video .modal-dialog {
  max-width: 800px;
  margin: 60px auto 0;
}

.modal-video .modal-body { padding: 0; }
.modal-video .close {
  position: absolute; right: 0; top: -45px;
  width: 44px; height: 44px; z-index: 999;
  background: rgba(0,0,0,.8); color: white;
  border-radius: 50%; border: none;
}

/* ==================================================
   FINAL CLEAN NAVBAR CSS (RIGHT ALIGN + PREMIUM)
================================================== */

/* Remove Bootstrap dropdown caret */
.dropdown-toggle::after {
  display: none !important;
}

/* ================= NAVBAR ================= */

.modern-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1070 !important; /* Above everything else */
  background: var(--navbar-bg);
  backdrop-filter: var(--navbar-blur) saturate(180%);
  -webkit-backdrop-filter: var(--navbar-blur);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  transition: all .3s cubic-bezier(.4,0,.2,1);
}

.modern-navbar.scrolled {
  background: rgba(255,255,255,.98);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}

body {
  padding-top: var(--navbar-height);
}

/* ================= LAYOUT ================= */

.navbar-container {
  max-width: 1400px;
  height: var(--navbar-height);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

/* ================= LOGO ================= */

.navbar-logo img.main-logo {
  height: 48px;
  transition: transform .3s ease;
}

.modern-navbar:hover .main-logo {
  transform: scale(1.02);
}

/* ================= MENU ================= */

.navbar-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.8rem;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  position: relative;
  padding: .6rem 0 .8rem;
  font-weight: 600;
  font-size: .95rem;
   text-transform: uppercase;
  color: var(--dark) !important;
  white-space: nowrap;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
  transform: translateY(-1px);
}


/* ================= DROPDOWN SYSTEM (PERFECT POSITIONING) ================= */

/* 1. ONLY overflow !important */
.modern-navbar,
.navbar-container,
.navbar-right,
.navbar-menu,
ul.navbar-menu,
.navbar-menu li {
  overflow: visible !important;
}

/* 2. Position relative */
li.nav-item,
.nav-item.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute !important;
  top: 100% !important;              /* CHANGED: Directly below */
  left: 0 !important;
  right: auto !important;
  z-index: 999999 !important;
  display: block !important;

  min-width: 260px !important;
  width: auto !important;
  padding: 10px 0 !important;
  margin: 8px 0 0 0 !important;      /* CHANGED: Perfect 8px gap */

  background: #fff !important;
  border-radius: 14px !important;
  border: 1px solid rgba(0,0,0,.06) !important;
  box-shadow: 0 15px 40px rgba(0,0,0,.12) !important;

  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(8px) scale(.98) !important;  /* Reduced animation */
  pointer-events: none !important;

  transition: all .2s ease !important;
}

/* 5. JS show */
.nav-item.dropdown.show > .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
  pointer-events: auto !important;
}


/* Dropdown items */
.dropdown-item {
  display: block;
  padding: 11px 22px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark);
  transition: all .25s ease;
  white-space: nowrap;
}

.dropdown-item:hover {
  background: rgba(0,0,0,.04);
  color: var(--primary);
  padding-left: 26px;
}

/* Chevron */
.dropdown-toggle i {
  font-size: .7rem;
  margin-left: 6px;
  transition: transform .3s ease;
}

.nav-item.dropdown:hover .dropdown-toggle i,
.nav-item.dropdown.show .dropdown-toggle i {
  transform: rotate(180deg);
}


/* SHIMMER CTA BUTTON */
.navbar-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.475rem 1.2rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
}

.navbar-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transition: left 0.7s cubic-bezier(.4,0,.2,1);
}

.navbar-cta:hover::before {
  left: 100%;
}

.navbar-cta:hover {
  transform: translateY(-3px) scale(1.02);
}

/* ================= MOBILE TOGGLE ================= */

.navbar-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(136,180,78,.15);
  transition: .3s cubic-bezier(.4,0,.2,1);
}

.navbar-toggle:hover {
  background: rgba(136,180,78,.3);
  transform: scale(1.08);
}

/* ==================================================
   OFFCANVAS (TRUE HIDDEN STATE FIXED)
================================================== */

.offcanvas {
  position: fixed !important;
  inset: 0 0 0 auto;
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg,rgba(255,255,255,.98),#f8f9fa);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(136,180,78,.15);
  box-shadow: -10px 0 40px rgba(0,0,0,.15);
  transform: translateX(100%);
  visibility: hidden;
  opacity: 0;
  transition: transform .35s cubic-bezier(.4,0,.2,1),
              opacity .2s ease;
  z-index: 1080 !important; /* Above everything else */
}

/* open */
.offcanvas.show {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}

/* no shadow when closed */
.offcanvas:not(.show) {
  box-shadow: none !important;
  backdrop-filter: none !important;
}

/* ================= BACKDROP ================= */

.offcanvas-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1040;
}

body.offcanvas-open { overflow:hidden; }

/* ==================================================
   OFFCANVAS CONTENT STYLING (MATCHES FINAL HTML)
================================================== */

.offcanvas-header {
  padding: 2.2rem 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(136,180,78,.2);
  background: rgba(255,255,255,.95);
}

.offcanvas-logo img {
  height: 46px;
}

.offcanvas-close {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(136,180,78,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .3s cubic-bezier(.4,0,.2,1);
}

.offcanvas-close:hover {
  background: rgba(136,180,78,.3);
  transform: scale(1.1);
}

.offcanvas-body {
  padding: 0;
  overflow-y: auto;
}

.offcanvas-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.offcanvas-link {
  display: flex;
  align-items: center;
  padding: 1.35rem 2.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: all .3s cubic-bezier(.4,0,.2,1);
}

.offcanvas-link:hover,
.offcanvas-link.active {
  background: rgba(136,180,78,.08);
  color: var(--primary);
  padding-left: 3.2rem;
}

.offcanvas-link i {
  margin-left: auto;
  transition: transform .3s ease;
}

.offcanvas-dropdown.show .offcanvas-link i {
  transform: rotate(180deg);
}

/* CTA */
.offcanvas-cta-wrapper {
  padding: 2rem;
  border-top: 1px solid rgba(136,180,78,.2);
}

.offcanvas-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg,var(--primary),var(--primary-dark));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 35px rgba(136,180,78,.5);
  transition: .4s cubic-bezier(.4,0,.2,1);
}

.offcanvas-cta:hover {
  transform: translateY(-3px) scale(1.02);
}


/* ================= MOBILE ACCORDION ================= */

.offcanvas-submenu {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all .35s cubic-bezier(.4,0,.2,1);
}

.offcanvas-dropdown.show .offcanvas-submenu {
  max-height: 500px;
  opacity: 1;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991.98px) {
  .navbar-right,
  .navbar-menu,
  .navbar-cta { display:none !important; }
  .navbar-toggle { display:flex !important; }
}

@media (max-width: 576px) {
  .navbar-container {
    padding: 0 1.25rem;
    height: 70px;
  }
}
/* ================= PREMIUM CINEMATIC HERO CAROUSEL ================= */
.cinematic-hero {
  position: relative;
  width: 100%;
  height: var(--hero-height, clamp(65vh, 80vw, 85vh));
  min-height: var(--min-height, 400px);
  max-height: var(--max-height, 90vh);
  overflow: hidden;
  background: transparent;
  z-index: 1;
}

.slides-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ================= NAV ARROWS ================= */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: clamp(48px, 6vw, 56px);
  height: clamp(48px, 6vw, 56px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(25px);
  color: rgba(255,255,255,.85);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}

.nav-arrow:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.25);
  color: #fff;
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
}

.prev { left: clamp(20px, 4vw, 32px); }
.next { right: clamp(20px, 4vw, 32px); }

/* ================= INDICATORS ================= */
.slide-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: clamp(8px, 1.5vw, 12px);
  padding: 10px 20px;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  border: 1px solid rgba(255,255,255,.2);
}

.indicator {
  width: clamp(10px, 1.8vw, 12px);
  height: clamp(10px, 1.8vw, 12px);
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: all .4s cubic-bezier(.4,0,.2,1);
  flex-shrink: 0;
}

.indicator:hover {
  background: rgba(255,255,255,.75);
  transform: scale(1.2);
}

.indicator.active {
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,.3);
  transform: scale(1.1);
}

/* ================= SLIDES ================= */
.slides {
  position: absolute;
  inset: 0;
}

/* IMG-BASED SLIDE (LCP SAFE) */
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 1s cubic-bezier(.25,.46,.45,.94),
    transform 1s cubic-bezier(.25,.46,.45,.94);
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* HERO IMAGE */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* desktop */
  display: block;
}

/* ================= PROGRESS BAR ================= */
.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(20px);
  z-index: 15;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(255,255,255,.9), var(--primary, #88B44E));
  transition: width linear;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .cinematic-hero {
    height: clamp(55vh, 70vw, 70vh);
  }
}

@media (max-width: 768px) {
  .cinematic-hero {
    height: 35vh;
    min-height: 220px;
  }

  .slide img {
    object-fit: contain; /* replaces old bg logic */
  }

  .slide-indicators {
    bottom: 45px;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .cinematic-hero {
    height: 32vh;
    min-height: 200px;
  }

  .slide-indicators {
    bottom: 40px;
    gap: 6px;
  }

  .progress-bar {
    height: 2px;
  }
}


/* ================= UNIFIED SECTION TITLES ================= */

/* SINGLE CLEAN SECTION TITLE SYSTEM */
.section-title {
  position: relative;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
}

.section-title::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 3px;
  bottom: 0;
  left: 0;
  background: var(--brand-gradient);
  border-radius: 2px;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  bottom: -16px;
  left: calc(30% - 18px);
  background: var(--white);
  border: 12px solid var(--primary);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(136,180,78,.3);
  animation: brandPulse 2s ease-in-out infinite;
}

@keyframes brandPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(136,180,78,.3); }
  50% { transform: scale(1.1); box-shadow: 0 8px 30px rgba(136,180,78,.5); }
}

/* Center alignment */
.section-title.text-center::before { left: 20%; width: 60%; }
.section-title.text-center::after { left: calc(50% - 18px); }

/* ================= ABOUT SECTION BACKGROUND ================= */
.about-section {
  position: relative;
  background-image: url('../img/about-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}


/* ================= FAB ICON ================= */
.about-premium-fab {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  z-index: 3;
}

.fab-icon { z-index: 5; }

.premium-fab {
  width: 160px;
  height: 160px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fab-circle {
  position: absolute;
  inset: 0;
  background: var(--brand-gradient);
  border-radius: 50%;
  box-shadow: 0 30px 80px rgba(136,180,78,.6);
  animation: pulse-ring 2s infinite;
}

.fab-plus {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plus-horizontal,
.plus-vertical {
  position: absolute;
  background: rgba(255,255,255,.98);
  border-radius: 2px;
  animation: plusExpand 2s ease-in-out infinite;
}

.plus-horizontal { width: 28px; height: 4px; }
.plus-vertical { width: 4px; height: 28px; animation-delay: 1s; }

/* ================= FEATURES GRID ================= */
.brand-features-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
  z-index: 3;
}

.brand-feature.side-by-side {
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(136,180,78,.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all .3s ease;
}

.brand-feature.side-by-side:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.brand-feature.side-by-side .brand-icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto;
}

.brand-feature.side-by-side .brand-icon {
  width: 50px;
  height: 50px;
}

.brand-feature.side-by-side .brand-feature-content {
  text-align: center;
}

.brand-feature.side-by-side h5 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

/* Vertical Divider */
.vertical-divider {
  width: 2px;
  height: 200px;
  background: linear-gradient(to bottom, var(--primary), rgba(136,180,78,.3));
  border-radius: 2px;
  animation: dividerGlow 3s ease-in-out infinite alternate;
  position: relative;
}

.vertical-divider::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(136,180,78,.6);
}

/* ================= ANIMATIONS ================= */
@keyframes fabPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

@keyframes plusExpand {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: .9; }
}

@keyframes dividerGlow {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* ================= MOBILE ================= */
@media (max-width: 992px) {
  .brand-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .vertical-divider { display: none; }
}

@media (max-width: 768px) {
  .about-section {
    background-attachment: scroll;
  }
  .about-premium-fab { min-height: 350px; margin-top: -80px;
        margin-bottom: -80PX;}
  .premium-fab { width: 130px; height: 130px; }
}

/* ================= TITLE STYLES ================= */
.section-title .brand-subtitle {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: var(--brand-gradient);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(136,180,78,.3);
  margin-bottom: 1rem;
}


/* ================= PRODUCTS SECTION ================= */
.products-section {
  background: linear-gradient(135deg, #F8FAFC 0%, #E8F5E8 100%);
}

.brand-products-title .brand-subtitle {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: var(--brand-gradient);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(136,180,78,.3);
  margin-bottom: 1rem;
}

.brand-products-title .brand-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
  -webkit-background-clip: gradient;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Premium Product Cards */
.premium-product-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all .4s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0,0,0,.15);
}

.product-image {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 1.8rem;
  text-align: center;
}

.product-title {
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 0.8rem 0;
  line-height: 1.3;
}

.product-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .premium-product-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .product-image {
    height: 250px;
  }
}



/* ==========================================================================
   CTA + STATS – PROFESSIONAL / PREMIUM
   ========================================================================== */

/* ================= CTA BANNER ================= */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--brand-gradient);
}

/* Subtle premium glow overlay */
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 70%,
    rgba(255, 255, 255, 0.12) 0%,
    transparent 55%
  );
  z-index: 1;
}

/* Keep content above overlay */
.cta-banner .container {
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   CTA BUTTONS – PROFESSIONAL DUAL STYLE
   ========================================================================== */

/* Base button */
.cta-banner .btn {
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  transition: 
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.4s ease;
  border: 2px solid transparent !important;
  text-decoration: none !important;
}

/* Shine animation */
.cta-banner .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 1;
}

.cta-banner .btn:hover::before {
  left: 100%;
}

/* ================= SHOP NOW (PRIMARY) ================= */
.cta-banner .btn-light {
  background: var(--primary-dark, #6FA847) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 30px rgba(111, 168, 71, 0.45);
}

.cta-banner .btn-light:hover {
  background: var(--primary, #88B44E) !important;
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 22px 55px rgba(136, 180, 78, 0.55);
}

/* ================= BECOME PARTNER (OUTLINE) ================= */
.cta-banner .btn-outline-light {
  background: rgba(255, 255, 255, 0.95) !important;
  color: var(--primary-dark, #6FA847) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-banner .btn-outline-light:hover {
  background: #ffffff !important;
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 1) !important;
}

/* Universal lift polish */
.cta-banner .btn:hover {
  will-change: transform, box-shadow;
}

/* ==========================================================================
   MOBILE OPTIMIZATION
   ========================================================================== */
@media (max-width: 575px) {
  .cta-banner .d-flex {
    flex-direction: column !important;
    align-items: center !important;
  }

  .cta-banner .btn {
    width: 100%;
    max-width: 300px;
    margin-bottom: 1rem;
  }
}



/* ================= PREMIUM STATS SECTION ================= */
.stats-section {
  background-color: #ffffff;
}

.stat-item {
  padding: 1.75rem;
  border-radius: 1.25rem;
  background: linear-gradient(145deg, #f8fafc, #ffffff);
  border: 1px solid rgba(136, 180, 78, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.stat-icon {
  margin-bottom: 1rem;
}

.stat-icon i {
  font-size: 2.5rem;
  color: var(--primary, #88B44E);
}

.stat-item .count {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary, #88B44E);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #6c757d;
  margin-bottom: 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .stats-section {
    padding: 3rem 0;
  }

  .stat-item {
    padding: 1.5rem;
  }
}


/* ================= business enquiry SECTION BACKGROUND ================= */
.business-enquiry-section {
  position: relative;
  background-image: url('../img/about-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
}


/* Image stays crystal clear - no overlay */
.enquiry-image-wrapper {
  position: relative;
  z-index: 2;
}

.enquiry-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating Card Wrapper */
.floating-card-wrapper {
  position: relative;
  height: 520px; /* Fixed height for perfect floating effect */
}

.floating-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transform: translateY(20px) rotateX(5deg);
  transition: all .6s cubic-bezier(0.23, 1, 0.32, 1);
  animation: floatCard 6s ease-in-out infinite;
}

.floating-card:hover {
  transform: translateY(0) rotateX(0deg) scale(1.02);
  box-shadow: 0 40px 100px rgba(136, 180, 78, 0.3);
}

/* Floating Animation */
@keyframes floatCard {
  0%, 100% { transform: translateY(20px) rotateX(5deg); }
  50% { transform: translateY(0) rotateX(0deg); }
}

/* Enhanced Form Fields for Floating Card */
.floating-card input,
.floating-card select,
.floating-card textarea {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(136, 180, 78, 0.1);
  backdrop-filter: blur(10px);
  transition: all .3s ease;
}

.floating-card input:focus,
.floating-card textarea:focus,
.floating-card select:focus {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(136, 180, 78, 0.2);
  transform: translateY(-2px);
}

/* FAB Submit Button */
.fab-submit-btn {
  position: absolute;
  bottom: 25px;
  right: 25px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand-gradient);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
  z-index: 20;
  color: var(--white) !important;
  font-size: 18px;
}

.fab-submit-btn:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 25px 50px rgba(136, 180, 78, 0.4);
}

.fab-submit-btn:active {
  transform: scale(0.95);
}

.fab-submit-btn i {
  transition: all .3s ease;
}

.fab-submit-btn:hover i {
  transform: rotate(45deg) scale(1.1);
}

/* Responsive */
@media (max-width: 991px) {
  .fab-submit-btn {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }
  
  .fab-submit-btn i {
    font-size: 16px;
  }
}


/* Responsive */
@media (max-width: 991px) {
  .floating-card-wrapper {
    height: 580px;
  }
  
  .floating-card {
    transform: translateY(10px);
  }
  

}
/* ================= FLOATING VIDEO SECTION ================= */
/* ================= FLOATING VIDEO SECTION ================= */
.floating-video-section {
  position: relative;
  background-image: url('../img/video-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 80vh;
  overflow: hidden;
}

/* RIGHT SIDE BRAND OVERLAY ONLY */
.floating-video-section::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 50%; /* ONLY right half */
  background: linear-gradient(
    180deg,
    rgba(136, 180, 78, 0.75),  /* #88B44E */
    rgba(86, 130, 46, 0.88)    /* deeper green */
  );
  z-index: 1;
}

/* CONTENT ABOVE OVERLAY */
.floating-video-section > * {
  position: relative;
  z-index: 2;
}


/* ================= LEFT CONTENT (VERTICAL CENTER) ================= */
.floating-content-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;      /* vertical center */
  z-index: 5;
}

/* ================= FLOATING CARD (PREMIUM OVERLAP) ================= */
.floating-content-card {
  position: relative;
  max-width: 540px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 42px 36px;
  display: flex;
  flex-direction: column;

  /* PREMIUM OVERLAP INTO VIDEO */
  margin-right: -90px;

  /* CLEAN DIRECTIONAL SHADOW (NO WHITE GLOW) */
  box-shadow: 14px 0 40px rgba(0, 0, 0, 0.14);

  animation: floatContent 5s ease-in-out infinite;
}

@keyframes floatContent {
  0%, 100% { transform: translateY(6px); }
  50% { transform: translateY(0); }
}

/* ================= CONTENT TYPOGRAPHY ================= */
.floating-content-card h1,
.floating-content-card h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
}

.floating-content-card h5,
.floating-content-card p {
  margin-bottom: 32px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #64748b;
}

/* ================= FEATURES LIST ================= */
.floating-content-card .row.g-3 {
  margin-bottom: 32px;
}

.floating-content-card .col-sm-6 {
  margin-bottom: 12px;
}

.fab-check {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(136, 180, 78, 0.25);
}

.fab-check i {
  font-weight: 900;
}

/* ================= BUTTON (NO WHITE FLARE) ================= */
.floating-content-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.brand-explore-btn {
  position: relative;
  overflow: hidden;
  padding: 14px 28px;
  font-size: 0.95rem;
  box-shadow: none;
}

.brand-explore-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );
  transform: translateX(-100%);
  transition: transform .6s ease;
}

.brand-explore-btn:hover::before {
  transform: translateX(100%);
}

.brand-explore-btn:hover {
  transform: translateX(6px);
}

/* ================= VIDEO SIDE ================= */
.video-bg-wrapper {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* ================= PLAY BUTTON ================= */
.fab-play-btn {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  color: var(--primary);
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  animation: pulse-ring 2s infinite;
}

.fab-play-btn:hover {
  transform: scale(1.05);
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(136,180,78,0.6); }
  70% { box-shadow: 0 0 0 20px rgba(136,180,78,0); }
  100% { box-shadow: 0 0 0 0 rgba(136,180,78,0); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .floating-video-section {
    min-height: auto;
  }

  .floating-content-wrapper {
    justify-content: center;
  }

  .floating-content-card {
    margin-right: 0;
    max-width: 100%;
    box-shadow: 0 16px 36px rgba(0,0,0,0.16);
  }

  .video-bg-wrapper {
    height: 60vh;
  }

  .video-bg-wrapper::before {
    background: rgba(0,0,0,0.55);
  }
}

/* ==========================================================================
   PREMIUM TESTIMONIAL SECTION
   ========================================================================== */

.premium-testimonial-section {
  position: relative;
  background-image: url('../img/about-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

}

/* Subtle background texture */
.premium-testimonial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(136,180,78,0.06), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(136,180,78,0.05), transparent 55%);
  z-index: 0;
}

.premium-testimonial-section .container {
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   SLIDER CONTAINER
   ========================================================================== */

.testimonial-slider-container {
  position: relative;
  margin-top: 60px;
}

.testimonial-slider {
  position: relative;
  min-height: 420px;
}

/* ==========================================================================
   SLIDES
   ========================================================================== */

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  transition: opacity 0.6s ease, transform 0.6s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* ==========================================================================
   TESTIMONIAL CARD
   ========================================================================== */

.testimonial-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 38px;
  max-width: 640px;
  width: 100%;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(136,180,78,0.08);
  position: relative;
  transition: transform 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

/* Quote icon */
.quote-icon {
  font-size: 42px;
  color: var(--primary, #88B44E);
  opacity: 0.15;
  position: absolute;
  top: 24px;
  right: 30px;
}

/* ==========================================================================
   RATING
   ========================================================================== */

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  color: #fbbf24;
  font-size: 16px;
}

.testimonial-rating .rating-text {
  margin-left: 8px;
  font-weight: 600;
  color: #64748b;
  font-size: 14px;
}

/* ==========================================================================
   TEXT
   ========================================================================== */

.testimonial-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 32px;
  font-style: italic;
}

/* ==========================================================================
   AUTHOR
   ========================================================================== */

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(136,180,78,0.25);
}

.author-info h6 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.author-info span {
  display: block;
  font-size: 0.85rem;
  color: var(--primary, #88B44E);
  font-weight: 600;
}

.author-info small {
  font-size: 0.8rem;
  color: #64748b;
}

/* ==========================================================================
   NAVIGATION ARROWS
   ========================================================================== */

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  color: var(--primary, #88B44E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 5;
}

.slider-nav:hover {
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.prev-slide { left: -20px; }
.next-slide { right: -20px; }

/* ==========================================================================
   INDICATORS
   ========================================================================== */

.slider-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.slider-indicators .indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.slider-indicators .indicator.active {
  background: var(--primary, #88B44E);
  transform: scale(1.4);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
  .testimonial-card {
    padding: 32px 26px;
  }

  .prev-slide,
  .next-slide {
    display: none;
  }

  .testimonial-slider {
    min-height: 460px;
  }
}

/* ==========================================================================
   FAQ SECTION - FINAL PRODUCTION (Somasundara Tea)
   ========================================================================== */
/* NO HORIZONTAL SCROLL - BULLETPROOF */
.faq-grid-section,
.faq-card,
.faq-header,
.faq-content {
  max-width: 100% !important;
  overflow-x: hidden !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

/* FAQ GRID CONTAINERS */
.faq-grid-section {
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* GRID CONTAINERS */
.faq-grid-left, .faq-grid-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: fit-content;
}

/* BRANDED FAQ CARDS - NEW GRID STYLE */
.faq-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(136,180,78,0.15);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
  max-width: 100%;
}

.faq-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  z-index: 2;
}

.faq-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary, #88B44E);
}

.faq-card.active {
  border-color: var(--primary, #88B44E) !important;
}

/* FAQ HEADER (Click to expand) */
.faq-header {
  padding: 1.75rem 2rem !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(136,180,78,0.05);
  position: relative;
  min-height: 75px;
  font-weight: 700;
  color: #1e293b !important;
  transition: all 0.3s ease;
}

.faq-header h5 {
  margin: 0 !important;
  font-size: 1.12rem !important;
  letter-spacing: -0.015em;
  font-weight: 700 !important;
  line-height: 1.4;
  flex: 1;
}

.faq-header i {
  color: var(--primary, #88B44E);
  font-size: 1.25rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary, #88B44E);
  color: white !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900 !important;
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  line-height: 1;
}

.faq-card.active .faq-toggle {
  background: var(--primary-dark, #6FA847);
  transform: rotate(45deg);
}

/* FAQ CONTENT (Hidden → Slide Down) */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(248,250,252,0.6) !important;
  border-top: 1px solid rgba(136,180,78,0.2) !important;
  padding: 0 2rem 0 !important;
}

.faq-card.active .faq-content {
  max-height: 250px;
  padding: 0 2rem 2rem 2rem !important;
}

.faq-content .fs-6 {
  color: #4b5563 !important;
  line-height: 1.75 !important;
  font-size: 1.05rem !important;
}

/* FEATURED CTA CARD */
.featured-cta {
  background: var(--brand-gradient, linear-gradient(135deg, #88B44E, #6FA847)) !important;
  border-color: var(--primary, #88B44E) !important;
}

.featured-cta .faq-header,
.featured-cta .faq-header h5,
.featured-cta .faq-toggle,
.featured-cta .faq-content {
  color: white !important;
}

.featured-cta .faq-content {
  background: rgba(255,255,255,0.1) !important;
  border-top-color: rgba(255,255,255,0.2) !important;
}

.featured-cta:hover {
  transform: translateY(-6px) scale(1.02);
}

/* RESPONSIVE PERFECTION */
@media (max-width: 991px) {
  .faq-grid-section { padding: 3rem 0; }
  
  .faq-grid-left, .faq-grid-right {
    gap: 1rem;
  }
  
  .faq-header {
    padding: 1.5rem 1.5rem !important;
  }
  
  .faq-card.active .faq-content {
    padding: 0 1.5rem 1.75rem 1.5rem !important;
  }
  
  .faq-content .fs-6 {
    font-size: 1rem !important;
  }
}

@media (max-width: 575px) {
  .faq-grid-section { padding: 2.5rem 0; }
  
  .faq-header {
    padding: 1.25rem 1.25rem !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.75rem;
  }
  
  .faq-header h5 {
    font-size: 1rem !important;
  }
  
  .faq-card.active .faq-content {
    padding: 0 1.25rem 1.5rem 1.25rem !important;
  }
  
  .faq-content .fs-6 {
    font-size: 0.98rem !important;
  }
  
  .faq-toggle {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media (max-width: 400px) {
  .faq-header {
    padding: 1.125rem 1rem !important;
  }
  
  .faq-card.active .faq-content {
    padding: 0 1rem 1.25rem 1rem !important;
  }
}


.enterprise-footer {
  background: linear-gradient(180deg,#0f172a,#020617);
  color: #cbd5f5;
  font-size: 14px;
}

.footer-logo {
  max-width: 190px;
}

.footer-desc {
  line-height: 1.7;
  color: #94a3b8;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 15px;
  color: #e5e7eb;
}

.footer-links li,
.footer-info li {
  margin-bottom: 10px;
  list-style: none;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-links a:hover {
  color: #22c55e;
}

.footer-info i {
  margin-right: 8px;
  color: #22c55e;
}

.footer-social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  margin-right: 8px;
  color: #e5e7eb;
}

.footer-social a:hover {
  background: #22c55e;
  color: #fff;
}

.footer-bottom {
  background: #020617;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 15px 0;
  font-size: 13px;
}

.footer-payments {
  margin-top: 12px;
}

.footer-payments p {
  margin: 0 0 8px 0;
  font-size: 13px;
  font-weight: 600;
  color: #cbd5f5;
}

.payment-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap; /* mobile safe */
}

.payment-icons img {
  height: 30px;
  width: auto;
  object-fit: contain;
  border-radius: 5px;
}


.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 999;
}

/* ==================================================
   PAGE HEADER – PREMIUM VERSION
================================================== */

.page-header {
  position: relative;
  background-image: url('../img/video-bg.jpg'); /* ← change image if needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  min-height: 320px;
  display: flex;
  align-items: center;

  overflow: hidden;
}

/* BRAND GREEN OVERLAY */
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(136, 180, 78, 0.75) 0%,   /* #88B44E */
    rgba(86, 130, 46, 0.85) 100%   /* darker green for depth */
  );
  z-index: 1;
}


/* CONTENT ABOVE OVERLAY */
.page-header .container {
  position: relative;
  z-index: 2;
}

/* HEADING */
.page-header h1 {
  color: #ffffff !important;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

/* BREADCRUMB */
.page-header .breadcrumb {
  background: transparent;
  margin-top: 10px;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.page-header .breadcrumb-item a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ACTIVE BREADCRUMB */
.page-header .breadcrumb-item.active {
  color: #ffffff;
  font-weight: 600;
}

/* SEPARATOR */
.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.6);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .page-header {
    min-height: 260px;
  }

  .page-header h1 {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }
}

/* ==================================================
   BOARD OF DIRECTORS – MODERN (2 DIRECTORS OPTIMIZED)
================================================== */

.board-section {
  background: #ffffff;
}

/* Card layout */
.board-card {
  display: flex;
  align-items: center;
  gap: 24px;

  background: #ffffff;
  border-radius: 20px;
  padding: 22px 26px;

  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transition: all 0.35s ease;

  height: auto;
}

.board-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 65px rgba(0,0,0,0.12);
}

/* Director image (NO CROP) */
.board-image {
  width: 180px;
  height: 220px;
  object-fit: contain;
  border-radius: 16px;
  background: #f8fafc;
  flex-shrink: 0;
}

/* Content */
.board-info {
  text-align: left;
  padding: 0;
}

.board-info h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #0f172a;
}

.board-info span {
  display: block;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2px;
}

.board-info small {
  display: block;
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 10px;
}

.board-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #334155;
  max-width: 420px;
}

/* Center two cards nicely */
.board-section .row {
  justify-content: center;
}

/* ================== MOBILE ================== */
@media (max-width: 767px) {
  .board-card {
    flex-direction: column;
    text-align: center;
  }

  .board-image {
    width: 160px;
    height: 200px;
  }

  .board-info {
    text-align: center;
  }
}

/* ===============================
   TEA VARIETIES – FINAL FIXED CARDS
================================ */

/* Card container */
.tea-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 26px;
  text-align: center;
  height: 100%;

  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
  transition: transform .35s ease, box-shadow .35s ease;

  /* IMPORTANT FIXES */
  overflow: hidden;              /* removes glow bleed */
  isolation: isolate;            /* prevents shadow stacking */
}

/* Hover */
.tea-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(0,0,0,0.12);
}

/* ===============================
   IMAGE – PERFECT CENTERING
================================ */
.tea-card img {
  display: block;                /* FIX */
  margin: 0 auto 18px auto;       /* FIX */
  width: 88px;
  height: auto;
  object-fit: contain;
}

/* ===============================
   TEXT
================================ */
.tea-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.tea-card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ===============================
   BUTTON – NO GLOW, NO BLEED
================================ */
.tea-card .btn {
  border-radius: 50px;
  padding: 8px 22px;

  box-shadow: none !important;        /* FIX */
  outline: none !important;           /* FIX */
}

.tea-card .btn:focus,
.tea-card .btn:active {
  box-shadow: none !important;        /* FIX */
  outline: none !important;
}

/* ===============================
   RETAIL EXPERIENCE – PREMIUM
================================ */
.retail-experience-section {
  padding: 60px 0;
  background: #fff;
}

.retail-experience-card {
  position: relative;
  height: 100%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 48px 34px 40px;
  box-shadow: var(--shadow-sm);
  transition: all .45s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}

.retail-experience-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(136,180,78,0.08),
    transparent 40%
  );
  opacity: 0;
  transition: opacity .4s ease;
}

.retail-experience-card:hover::before {
  opacity: 1;
}

.retail-experience-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

/* FEATURED CARD */
.retail-experience-card.featured {
  background: linear-gradient(
    180deg,
    rgba(136,180,78,0.12),
    rgba(255,255,255,0.96)
  );
  transform: translateY(-12px);
}

.featured-tag {
  position: absolute;
  top: 18px;
  right: -42px;
  background: var(--primary);
  color: white;
  padding: 6px 40px;
  font-size: .75rem;
  transform: rotate(45deg);
  font-weight: 600;
}

/* ICON BADGE */
.retail-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 22px;
  box-shadow: 0 12px 30px rgba(136,180,78,.35);
}

/* TEXT */
.retail-experience-card h4 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.retail-lead {
  color: var(--text-muted);
  font-size: .95rem;
  margin-bottom: 22px;
}

/* LIST */
.retail-experience-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.retail-experience-card ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: .92rem;
}

.retail-experience-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* CONTACT INFO CARDS */
.contact-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 26px;
}

.contact-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-card hr {
  width: 60px;
  margin: 14px auto;
  opacity: .15;
}


/* FORM */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 14px;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  font-family: inherit;
}

/* MAP */
.map-wrapper {
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


/* ================= SERVICES ================= */

.service-list {
  display: grid;
  gap: 1.25rem;
}

.service-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.service-item i {
  font-size: 1.4rem;
  color: var(--primary);
  margin-top: 3px;
}

.service-item h6 {
  margin-bottom: .25rem;
  font-weight: 600;
}

.service-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: .95rem;
}

.service-image-wrapper {
  position: relative;
}

.service-quote {
  background: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: -40px;
  margin-inline: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* E-COMMERCE CARDS */
.ecom-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow-md);
  transition: all .4s ease;
}

.ecom-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.ecom-card.featured {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, #ffffff, #f9fcf5);
}

.ecom-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.ecom-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.ecom-list li {
  margin-bottom: 8px;
  color: var(--text-muted);
}

/* CAREERS */
.career-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all .4s ease;
}

.career-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.career-card.featured {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, #ffffff, #f6fbef);
}

.career-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

/* JOB CARDS */
.job-card {
  background: #fff;
  border-left: 4px solid var(--primary);
  padding: 22px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.job-meta {
  font-size: .875rem;
  color: var(--text-muted);
}

/* DOWNLOADS – EMPTY STATE */
.download-empty {
  background: #fff;
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.download-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(136,180,78,.15), rgba(136,180,78,.3));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
}

/* POLICY PAGE */
.policy-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 45px 50px;
  box-shadow: var(--shadow-md);
}

.policy-card h4 {
  margin-top: 30px;
  margin-bottom: 12px;
  font-weight: 700;
}

.policy-card ul {
  padding-left: 18px;
}

.policy-card ul li {
  margin-bottom: 8px;
  color: var(--text-muted);
}

/* ==================================
   ACCESSIBILITY & PERFORMANCE
================================== */

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Smooth scrolling (only when allowed) */
html {
  scroll-behavior: smooth;
}

/* Text selection */
::selection {
  background-color: var(--primary);
  color: var(--white);
}

::-moz-selection {
  background-color: var(--primary);
  color: var(--white);
}

