/* ============================================================
   VAPPY FARMS — Premium Agribusiness Website
   Custom Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600;1,700&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --green-950: #071a0b;
  --green-900: #1a4d2e;
  --green-800: #1B5E20;
  --green-700: #2E7D32;
  --green-600: #388E3C;
  --green-500: #43A047;
  --green-400: #66BB6A;
  --green-100: #C8E6C9;
  --green-50:  #F1F8E9;

  --gold-900: #7c5900;
  --gold-800: #a07228;
  --gold-700: #c48b08;
  --gold-600: #d4a017;
  --gold-500: #F9A825;
  --gold-400: #FFCA28;
  --gold-300: #FFE082;
  --gold-200: #FFF3CD;

  --earth-800: #3e2723;
  --earth-700: #4e342e;
  --earth-600: #6D4C41;
  --earth-500: #795548;
  --earth-300: #bcaaa4;

  --cream-200: #FFF3E0;
  --cream-100: #FFF8F0;
  --cream-50:  #FFFDF9;

  --dark-950:  #050d06;
  --dark-900:  #0d1f0d;
  --dark:      #111b11;
  --text-dark: #1c1c1c;
  --text-mid:  #374151;
  --text-light: #6B7280;
  --text-muted: #9CA3AF;
  --white:     #ffffff;

  --shadow-sm:    0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:    0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg:    0 10px 25px -5px rgba(0,0,0,0.1), 0 4px 10px -5px rgba(0,0,0,0.04);
  --shadow-xl:    0 20px 40px -10px rgba(0,0,0,0.12), 0 8px 16px -8px rgba(0,0,0,0.06);
  --shadow-2xl:   0 35px 70px -15px rgba(0,0,0,0.18);
  --shadow-green: 0 20px 60px rgba(27, 94, 32, 0.35);
  --shadow-gold:  0 20px 60px rgba(249, 168, 37, 0.35);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
}

/* ============================================================
   BASE RESET & GLOBAL
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; transition: color 0.3s var(--ease-smooth); }

::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--cream-100); }
::-webkit-scrollbar-thumb { background: var(--green-700); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-800); }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.font-heading { font-family: 'Playfair Display', Georgia, serif; }
.font-body    { font-family: 'Inter', system-ui, sans-serif; }

.text-gold-gradient {
  background: linear-gradient(135deg, var(--gold-700) 0%, var(--gold-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-green-gradient {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gold-shimmer {
  background: linear-gradient(90deg, var(--gold-700) 0%, var(--gold-300) 40%, var(--gold-700) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container      { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-sm   { max-width: 900px;  margin: 0 auto; padding: 0 24px; }
.container-lg   { max-width: 1440px; margin: 0 auto; padding: 0 40px; }

.section     { padding: 100px 0; }
.section-sm  { padding: 60px 0; }
.section-lg  { padding: 130px 0; }
.section-xl  { padding: 160px 0; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  border-radius: 1px;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-heading.white { color: var(--white); }

.section-lead {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  line-height: 1.75;
}
.section-lead.white { color: rgba(255,255,255,0.72); }

.section-divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all 0.45s var(--ease-smooth);
}
#main-nav.scrolled {
  background: rgba(15, 35, 17, 0.97);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  padding: 12px 0;
  box-shadow: 0 4px 40px rgba(0,0,0,0.35);
}

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(27,94,32,0.4);
}
.nav-logo-text .brand  { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 800; color: var(--white); letter-spacing: 0.06em; line-height: 1.1; }
.nav-logo-text .tagline { font-size: 0.65rem; color: var(--gold-400); letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; }

.nav-link {
  position: relative;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  padding: 4px 0;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gold-500);
  border-radius: 1px;
  transition: width 0.35s var(--ease-smooth);
}
.nav-link:hover, .nav-link.active { color: var(--gold-400); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  color: var(--dark) !important;
  font-weight: 700; font-size: 0.8rem;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.06em; text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(249,168,37,0.35);
  transition: all 0.3s var(--ease-smooth);
  border: none; cursor: pointer;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(249,168,37,0.55);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
}

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 210px;
  background: rgba(12, 30, 14, 0.97);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0; visibility: hidden;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-arrow {
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 6px solid rgba(12, 30, 14, 0.97);
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
}
.dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  color: rgba(255,255,255,0.78);
  font-size: 0.85rem; font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s;
}
.dropdown-item:hover {
  color: var(--gold-400);
  background: rgba(255,255,255,0.06);
  padding-left: 18px;
}
.dropdown-item .icon { font-size: 1rem; opacity: 0.8; }

/* Hamburger / Mobile */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer; z-index: 1001; background: none; border: none;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: white; border-radius: 2px;
  transition: all 0.35s var(--ease-smooth);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: var(--green-950);
  z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  padding: 40px;
}
#mobile-menu.active { display: flex; }

.mobile-nav-link {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  transition: color 0.3s;
}
.mobile-nav-link:hover { color: var(--gold-400); }
.mobile-menu-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none;
  color: white; font-size: 2rem; cursor: pointer; padding: 8px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--dark-900);
  padding-top: 88px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    150deg,
    rgba(7, 26, 11, 0.93) 0%,
    rgba(27, 94, 32, 0.80) 40%,
    rgba(7, 26, 11, 0.75) 100%
  );
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.15;
}
.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1.5px 1.5px, rgba(255,255,255,0.04) 1.5px, transparent 0);
  background-size: 36px 36px;
}
.hero-content { position: relative; z-index: 10; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,168,37,0.12);
  border: 1px solid rgba(249,168,37,0.35);
  color: var(--gold-400);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge .pulse {
  width: 7px; height: 7px;
  background: var(--gold-400); border-radius: 50%;
  animation: pulseAnim 2s ease-in-out infinite;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero-title .accent { color: var(--gold-400); font-style: italic; }
.hero-title .line2 { display: block; }

.hero-description {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  line-height: 1.78;
  margin-bottom: 36px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-bottom: 52px; }

.hero-stats-bar {
  display: flex; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 36px;
  flex-wrap: wrap;
}
.hero-stat {
  flex: 1; min-width: 120px;
  padding: 0 28px 0 0;
  border-right: 1px solid rgba(255,255,255,0.1);
  margin-right: 28px;
}
.hero-stat:last-child { border-right: none; margin-right: 0; }
.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--gold-400);
  line-height: 1;
  display: block;
}
.hero-stat-label {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); font-weight: 600; margin-top: 5px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; cursor: pointer;
  animation: float 2.5s ease-in-out infinite;
  z-index: 10;
}
.scroll-mouse {
  width: 24px; height: 36px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-mouse::after {
  content: '';
  width: 3px; height: 6px;
  background: var(--gold-400);
  border-radius: 2px;
  animation: scrollAnim 1.8s ease-in-out infinite;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 0.875rem; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 14px 30px; border-radius: var(--radius-sm);
  border: none; cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  text-decoration: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  color: var(--dark);
  box-shadow: 0 6px 24px rgba(249,168,37,0.38);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(249,168,37,0.55);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
}
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-3px);
}
.btn-green {
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(27,94,32,0.35);
}
.btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(27,94,32,0.55);
}
.btn-outline-green {
  background: transparent; color: var(--green-700);
  border: 2px solid var(--green-700);
}
.btn-outline-green:hover {
  background: var(--green-50);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 0.9rem; }
.btn-sm { padding: 9px 20px; font-size: 0.78rem; }

/* ============================================================
   CARDS
   ============================================================ */
/* Service Card */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.055);
  transition: all 0.4s var(--ease-smooth);
}
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-700), var(--green-500));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease-smooth);
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); }
.service-card:hover::after { transform: scaleX(1); }

.service-card-icon {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, rgba(27,94,32,0.1), rgba(56,142,60,0.14));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
  margin-bottom: 24px;
  transition: all 0.4s var(--ease-smooth);
}
.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  transform: scale(1.08) rotate(-4deg);
}
.service-card-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.service-card-text  { font-size: 0.92rem; color: var(--text-light); line-height: 1.72; }
.service-card-link  { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 700; color: var(--green-700); margin-top: 20px; letter-spacing: 0.04em; text-transform: uppercase; transition: gap 0.3s; }
.service-card:hover .service-card-link { gap: 10px; }

/* Product Card */
.product-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
  transition: all 0.4s var(--ease-smooth);
  position: relative;
}
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-2xl); }
.product-card-img-wrap { overflow: hidden; height: 240px; }
.product-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.65s var(--ease-smooth); }
.product-card:hover img { transform: scale(1.09); }
.product-card-body { padding: 24px; }
.product-card-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--green-50); color: var(--green-700);
  padding: 4px 10px; border-radius: 4px; margin-bottom: 10px;
}
.product-card-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.product-card-text  { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }
.product-card-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--gold-500); color: var(--dark);
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
}

/* Team / Partner Card */
.team-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.4s var(--ease-smooth);
}
.team-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-green); }
.team-card-img  { width: 100%; height: 300px; object-fit: cover; object-position: top center; transition: transform 0.5s; }
.team-card:hover .team-card-img { transform: scale(1.05); }
.team-card-body { padding: 24px; }
.team-card-name   { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.team-card-role   { font-size: 0.82rem; font-weight: 600; color: var(--green-700); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.team-card-text   { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }

/* Overlay Image Card */
.overlay-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  display: block;
}
.overlay-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-smooth); }
.overlay-card:hover img { transform: scale(1.07); }
.overlay-card-body {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,26,11,0.92) 0%, rgba(7,26,11,0.2) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
}
.overlay-card-tag  { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 8px; }
.overlay-card-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--white); }

/* Feature Item */
.feature-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px; border-radius: var(--radius-md);
  transition: background 0.3s;
}
.feature-item:hover { background: rgba(27,94,32,0.04); }
.feature-icon {
  width: 50px; height: 50px; min-width: 50px;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--white);
  box-shadow: 0 4px 16px rgba(27,94,32,0.3);
  transition: transform 0.3s;
}
.feature-item:hover .feature-icon { transform: scale(1.1) rotate(-3deg); }
.feature-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.feature-text  { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }

/* Process Step Card */
.process-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.4s var(--ease-smooth);
  position: relative; overflow: hidden;
}
.process-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-6px); }
.step-number {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 900; color: var(--gold-400);
  margin-bottom: 20px;
  flex-shrink: 0;
}

/* Testimonial Card */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: all 0.4s var(--ease-smooth);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2xl); }
.testimonial-quote-icon {
  font-family: 'Playfair Display', serif;
  font-size: 5rem; color: var(--green-700); opacity: 0.12;
  line-height: 1; position: absolute; top: 12px; left: 20px;
}
.testimonial-stars { color: var(--gold-500); font-size: 0.9rem; margin-bottom: 16px; }
.testimonial-text  { font-size: 0.95rem; color: var(--text-mid); line-height: 1.78; font-style: italic; margin-bottom: 22px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: var(--white);
  flex-shrink: 0;
}
.testimonial-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; color: var(--text-dark); }
.testimonial-info { font-size: 0.8rem; color: var(--text-light); }

/* ============================================================
   STATS / NUMBERS
   ============================================================ */
.stats-dark-section {
  background: linear-gradient(135deg, var(--green-950) 0%, var(--green-900) 60%, var(--earth-800) 100%);
  position: relative; overflow: hidden;
}
.stats-dark-section::before {
  content: '';
  position: absolute; top: -40%; right: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249,168,37,0.08) 0%, transparent 65%);
  border-radius: 50%;
}
.stat-counter { text-align: center; padding: 12px 32px; }
.stat-counter-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900; color: var(--gold-400);
  line-height: 1; display: block;
}
.stat-counter-suffix { color: var(--gold-400); }
.stat-counter-label {
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-top: 8px;
}

/* ============================================================
   CTA SECTIONS
   ============================================================ */
.cta-dark {
  background: linear-gradient(135deg, var(--green-950) 0%, var(--green-900) 50%, var(--earth-800) 100%);
  position: relative; overflow: hidden;
}
.cta-dark::before {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249,168,37,0.09) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-dark::after {
  content: '';
  position: absolute; bottom: -40%; left: -15%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(27,94,32,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-gold { background: linear-gradient(135deg, var(--gold-700), var(--gold-500)); }
.cta-green { background: linear-gradient(135deg, var(--green-800), var(--green-600)); }

/* ============================================================
   QUALITY / BADGES
   ============================================================ */
.quality-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(27,94,32,0.07);
  border: 1px solid rgba(27,94,32,0.18);
  color: var(--green-700);
  padding: 8px 16px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.quality-badge .dot { width: 6px; height: 6px; background: var(--green-600); border-radius: 50%; }
.gold-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,168,37,0.1);
  border: 1px solid rgba(249,168,37,0.3);
  color: var(--gold-700);
  padding: 6px 14px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}

/* ============================================================
   PAGE HERO (INNER PAGES)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-950) 0%, var(--green-900) 100%);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.18;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(7,26,11,0.85), rgba(27,94,32,0.7));
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb-sep { color: rgba(255,255,255,0.28); }
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900; color: var(--white);
  line-height: 1.1; margin-bottom: 18px;
}
.page-hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.72);
  max-width: 600px; line-height: 1.78;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md); overflow: hidden;
  cursor: pointer; position: relative;
  background: var(--green-900);
}
.gallery-item img {
  width: 100%; height: 260px; object-fit: cover;
  transition: transform 0.65s var(--ease-smooth);
  display: block;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-tall img { height: 360px; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(7,26,11,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.4s;
}
.gallery-item:hover .gallery-overlay { background: rgba(7,26,11,0.55); }
.gallery-zoom-icon {
  width: 52px; height: 52px;
  background: var(--gold-500); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  opacity: 0; transform: scale(0.5);
  transition: all 0.4s var(--ease-bounce);
}
.gallery-item:hover .gallery-zoom-icon { opacity: 1; transform: scale(1); }

/* Lightbox */
#lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.95); z-index: 99999;
  align-items: center; justify-content: center;
}
#lightbox.active { display: flex; }
#lightbox-img { max-width: 88vw; max-height: 84vh; object-fit: contain; border-radius: var(--radius-md); }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: rgba(255,255,255,0.1); border: none; border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: white; cursor: pointer;
  transition: background 0.3s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 22px; }
.form-label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--text-mid); margin-bottom: 7px; letter-spacing: 0.02em;
}
.form-control {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid #E5E7EB; border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: 0.95rem;
  color: var(--text-dark); background: var(--white);
  outline: none; transition: border-color 0.3s, box-shadow 0.3s;
}
.form-control:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(27,94,32,0.1);
}
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 130px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); padding: 90px 0 0; }
.footer-logo-text .brand  { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 800; color: var(--white); letter-spacing: 0.05em; }
.footer-logo-text .tagline { font-size: 0.65rem; color: var(--gold-400); letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.75; margin-top: 14px; }
.footer-heading { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; color: var(--white); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; }
.footer-link { display: block; font-size: 0.875rem; color: rgba(255,255,255,0.5); padding: 5px 0; transition: color 0.3s, padding-left 0.3s; }
.footer-link:hover { color: var(--gold-400); padding-left: 6px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-contact-icon { width: 20px; min-width: 20px; color: var(--gold-500); font-size: 0.95rem; margin-top: 2px; }
.footer-contact-text { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-hr { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin-top: 60px; }
.footer-bottom { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.38); }
.footer-copy a { color: var(--gold-500); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-link { font-size: 0.82rem; color: rgba(255,255,255,0.38); transition: color 0.3s; }
.footer-bottom-link:hover { color: var(--gold-400); }
.social-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06); border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem; color: rgba(255,255,255,0.55);
  transition: all 0.3s;
}
.social-icon:hover { background: var(--gold-600); color: var(--dark); transform: translateY(-3px); }

/* Newsletter */
.newsletter-wrap { display: flex; gap: 0; }
.newsletter-input {
  flex: 1; padding: 13px 16px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: 0.88rem;
  color: var(--white); outline: none;
  transition: border-color 0.3s;
}
.newsletter-input:focus { border-color: var(--gold-500); }
.newsletter-input::placeholder { color: rgba(255,255,255,0.38); }
.newsletter-btn {
  padding: 13px 20px;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  border: none; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: 'Inter', sans-serif; font-size: 0.78rem;
  font-weight: 700; color: var(--dark);
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: background 0.3s;
}
.newsletter-btn:hover { background: linear-gradient(135deg, var(--gold-500), var(--gold-300)); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9998;
  width: 58px; height: 58px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  cursor: pointer; animation: floatBob 3.5s ease-in-out infinite;
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-float:hover { animation: none; transform: scale(1.15); box-shadow: 0 12px 44px rgba(37,211,102,0.7); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0; transform: translateX(-36px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(36px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0; transform: scale(0.88);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.d-100 { transition-delay: 0.1s; }
.d-200 { transition-delay: 0.2s; }
.d-300 { transition-delay: 0.3s; }
.d-400 { transition-delay: 0.4s; }
.d-500 { transition-delay: 0.5s; }
.d-600 { transition-delay: 0.6s; }
.d-700 { transition-delay: 0.7s; }
.d-800 { transition-delay: 0.8s; }

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.bg-cream    { background: var(--cream-100); }
.bg-offwhite { background: var(--cream-50); }
.bg-dark-green { background: linear-gradient(135deg, var(--green-950), var(--green-900)); }
.bg-light-green { background: linear-gradient(135deg, #f0f9f0, #e8f5e9); }

.divider-fancy {
  border: none; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.08) 30%, rgba(0,0,0,0.08) 70%, transparent 100%);
}

.badge-live {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.3);
  color: #16a34a; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
}
.badge-live .dot { width: 6px; height: 6px; background: #16a34a; border-radius: 50%; animation: pulseAnim 1.5s infinite; }

.icon-wrap-gold {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(212,160,23,0.15), rgba(249,168,37,0.12));
  border: 1px solid rgba(249,168,37,0.25);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}

.sticky-col { position: sticky; top: 100px; }

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes pulseAnim {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.6); }
}
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}
@keyframes scrollAnim {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 80px 0; }
  .section-lg { padding: 100px 0; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  #main-nav .desktop-nav { display: none !important; }
  .hero-bg { background-attachment: scroll; }
  .section { padding: 70px 0; }
  .section-sm { padding: 50px 0; }
  .hero-stats-bar { flex-direction: row; flex-wrap: wrap; gap: 20px; }
  .hero-stat { min-width: 45%; border-right: none; padding: 0; }
  .stats-dark-section .grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.1rem; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .gallery-item img, .gallery-item-tall img { height: 220px; }
  .stat-counter-number { font-size: 2.5rem; }
  .section-heading { font-size: 1.65rem; }
  .newsletter-wrap { flex-direction: column; }
  .newsletter-input { border-right: 1.5px solid rgba(255,255,255,0.12); border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
  .newsletter-btn { border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
}

/* ============================================================
   HERO ENTRY ANIMATIONS
   ============================================================ */
.hero-anim-1 { animation: fadeUp 0.9s var(--ease-out) 0.2s both; }
.hero-anim-2 { animation: fadeUp 0.9s var(--ease-out) 0.4s both; }
.hero-anim-3 { animation: fadeUp 0.9s var(--ease-out) 0.6s both; }
.hero-anim-4 { animation: fadeUp 0.9s var(--ease-out) 0.8s both; }
.hero-anim-5 { animation: fadeUp 0.9s var(--ease-out) 1.0s both; }

/* ============================================================
   SELECTION HIGHLIGHT
   ============================================================ */
::selection { background: rgba(27, 94, 32, 0.2); color: var(--text-dark); }

/* ============================================================
   TEAM CARD — FULL PROFILE (partners.html)
   ============================================================ */
.team-card-full {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.team-card-avatar-wrap {
  width: 100%; height: 360px; overflow: hidden;
}
.team-card-avatar-wrap.team-placeholder {
  height: 360px;
}
.team-card-avatar-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  transition: transform 0.5s;
}
.team-card-full:hover .team-card-avatar-wrap img { transform: scale(1.04); }
.team-card-body-full {
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--green-950), var(--green-900));
}
.team-card-body-full .team-card-role {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-400); margin-bottom: 6px;
}
.team-card-body-full .team-card-name {
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--white);
}

/* ============================================================
   EXPERTISE TAGS (partners.html)
   ============================================================ */
.expertise-tag {
  display: inline-block;
  background: rgba(27,94,32,0.08);
  border: 1px solid rgba(27,94,32,0.18);
  color: var(--green-800);
  font-size: 0.75rem; font-weight: 600;
  padding: 5px 14px; border-radius: 50px;
  letter-spacing: 0.03em;
}

/* ============================================================
   CONTACT INFO CARDS (contact.html)
   ============================================================ */
.contact-info-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-green);
  border-color: var(--green-600);
}
.contact-card-icon {
  font-size: 2.2rem; margin-bottom: 14px;
}
.contact-card-title {
  font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700;
  color: var(--green-900); margin-bottom: 8px;
}
.contact-card-text {
  font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin-bottom: 12px;
}
.contact-card-link {
  font-size: 0.8rem; font-weight: 700; color: var(--green-700);
  text-decoration: none; letter-spacing: 0.03em;
  transition: color 0.2s;
}
.contact-card-link:hover { color: var(--gold-500); }
.contact-card-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  background: rgba(249,168,37,0.12); border: 1px solid rgba(249,168,37,0.3);
  color: var(--gold-700); padding: 3px 12px; border-radius: 50px;
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* ============================================================
   FAQ ITEMS (contact.html)
   ============================================================ */
.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: background 0.3s, border-color 0.3s;
}
.faq-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(249,168,37,0.3);
}
.faq-q {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700; color: var(--white);
  margin-bottom: 10px;
}
.faq-a {
  font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.75;
}
