/* ============================================================
   CHENNAI ORNAMENTAL GARDEN — Main Stylesheet
   Theme: Lush Green, Premium, Modern Garden Tourism
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --green-dark:   #1a3c2a;
  --green-mid:    #2d6a4f;
  --green-light:  #52b788;
  --green-pale:   #d8f3dc;
  --gold:         #c9a84c;
  --gold-light:   #f0d080;
  --cream:        #fefae0;
  --white:        #ffffff;
  --text-dark:    #1a2212;
  --text-mid:     #3b4a3a;
  --text-light:   #6b7f6a;
  --shadow-sm:    0 2px 12px rgba(26,60,42,.08);
  --shadow-md:    0 8px 32px rgba(26,60,42,.14);
  --shadow-lg:    0 20px 60px rgba(26,60,42,.20);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    28px;
  --transition:   0.35s cubic-bezier(.4,0,.2,1);
  --nav-h:        76px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--green-pale); }
::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: 4px; }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 5%;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(26,60,42,.97);
  box-shadow: 0 4px 24px rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--green-light), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-brand-text .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}

.nav-brand-text .brand-sub {
  font-size: 0.66rem;
  color: var(--gold-light);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  letter-spacing: .04em;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold-light);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--green-dark) !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 700 !important;
  letter-spacing: .04em;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-2px); }
.nav-cta::after { display: none !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}

.nav-hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Mobile Nav ── */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--green-dark);
  flex-direction: column;
  padding: 20px 24px 28px;
  gap: 6px;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,.1);
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  color: var(--white);
  font-size: 1rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-weight: 500;
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--gold-light); }

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,30,18,.80) 0%,
    rgba(26,60,42,.65) 50%,
    rgba(10,30,18,.40) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 5%;
  padding-top: var(--nav-h);
  animation: fadeInUp .9s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.18);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title .accent { color: var(--gold-light); }

.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.85);
  max-width: 580px;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.stat-chip {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 9px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  transition: background var(--transition);
}
.stat-chip:hover { background: rgba(255,255,255,.2); }
.stat-chip .icon { font-size: 1.1rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), #e8c060);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  letter-spacing: .04em;
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary:hover { box-shadow: 0 8px 28px rgba(201,168,76,.45); transform: translateY(-3px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 30px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.5);
  letter-spacing: .04em;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); transform: translateY(-3px); }

.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: 0.72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
}

/* ══════════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════════ */
section { padding: 90px 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-mid);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--green-light);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-title .highlight {
  color: var(--green-mid);
  font-style: italic;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.8;
}

/* ══════════════════════════════════════════
   HIGHLIGHTS BAR
══════════════════════════════════════════ */
.highlights-bar {
  background: var(--green-dark);
  padding: 0;
}

.highlights-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.highlight-item {
  flex: 1;
  min-width: 180px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background var(--transition);
}
.highlight-item:last-child { border-right: none; }
.highlight-item:hover { background: rgba(255,255,255,.04); }

.highlight-icon { font-size: 2rem; flex-shrink: 0; }

.highlight-text .h-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.highlight-text .h-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .04em;
  margin-top: 3px;
}

/* ══════════════════════════════════════════
   INTRO / ABOUT SNIPPET
══════════════════════════════════════════ */
.intro-section { background: var(--cream); }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.intro-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.intro-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform .6s ease;
}
.intro-img-wrap:hover img { transform: scale(1.04); }

.intro-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--green-dark);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(6px);
}

.intro-content { }

.intro-content p {
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 20px;
  font-size: 1.02rem;
}

.intro-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin: 28px 0;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

.check-item::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--green-pale);
  color: var(--green-mid);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   ATTRACTIONS CARDS
══════════════════════════════════════════ */
.attractions-section { background: var(--white); }

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 52px;
}

.attraction-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--white);
  border: 1px solid rgba(45,106,79,.1);
}
.attraction-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

.attraction-img {
  height: 220px;
  overflow: hidden;
}
.attraction-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.attraction-card:hover .attraction-img img { transform: scale(1.06); }

.attraction-body {
  padding: 24px;
}

.attraction-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.attraction-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.attraction-body p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

.attraction-tag {
  display: inline-block;
  margin-top: 14px;
  background: var(--green-pale);
  color: var(--green-mid);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}

/* ══════════════════════════════════════════
   LOCATION BANNER
══════════════════════════════════════════ */
.location-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  position: relative;
  overflow: hidden;
}

.location-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,.03);
  border-radius: 50%;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.location-content .section-title { color: var(--white); }
.location-content .section-tag { color: var(--gold-light); }
.location-content .section-tag::before { background: var(--gold); }

.location-content p {
  color: rgba(255,255,255,.78);
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 28px;
}

.location-hubs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hub-chip {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.location-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 360px;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.12);
}

.map-placeholder {
  text-align: center;
  color: rgba(255,255,255,.6);
}
.map-placeholder .map-icon { font-size: 3rem; margin-bottom: 12px; }
.map-placeholder p { font-size: 0.9rem; }

/* ══════════════════════════════════════════
   SUSTAINABILITY
══════════════════════════════════════════ */
.sustainability-section { background: var(--green-pale); }

.sust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.sust-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.sust-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.sust-card .sust-icon { font-size: 2.4rem; margin-bottom: 14px; }

.sust-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.sust-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   INVESTMENT SECTION
══════════════════════════════════════════ */
.investment-section {
  background: var(--white);
}

.invest-wrapper {
  background: linear-gradient(135deg, var(--green-dark), #0f2518);
  border-radius: var(--radius-lg);
  padding: 64px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.invest-wrapper::after {
  content: '🌿';
  position: absolute;
  font-size: 14rem;
  opacity: .04;
  right: -30px;
  bottom: -30px;
  line-height: 1;
}

.invest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.invest-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.invest-stat {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 22px;
}

.invest-stat .i-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.invest-stat .i-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,.6);
  margin-top: 6px;
  letter-spacing: .04em;
}

.invest-content .section-title { color: var(--white); }
.invest-content .section-tag { color: var(--gold-light); }
.invest-content .section-tag::before { background: var(--gold); }

.invest-content p {
  color: rgba(255,255,255,.75);
  margin: 16px 0 24px;
  line-height: 1.85;
}

.revenue-streams {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.stream-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,.82);
}

.stream-item .stream-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   GALLERY / PHASES
══════════════════════════════════════════ */
.phases-section { background: var(--cream); }

.phases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.phase-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  border-left: 4px solid var(--green-light);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.phase-card:hover { box-shadow: var(--shadow-md); }
.phase-card.phase-2 { border-left-color: var(--gold); }

.phase-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--green-pale);
  line-height: 1;
  margin-bottom: -8px;
}
.phase-card.phase-2 .phase-num { color: #f8efd4; }

.phase-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.phase-card ul { display: flex; flex-direction: column; gap: 10px; }
.phase-card ul li {
  font-size: 0.92rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 10px;
}
.phase-card ul li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green-light);
  border-radius: 50%;
  flex-shrink: 0;
}
.phase-card.phase-2 ul li::before { background: var(--gold); }

.phase-timeline {
  margin-top: 20px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--green-mid);
  background: var(--green-pale);
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
}

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  text-align: center;
  padding: 90px 20px;
}

.cta-section .section-title { color: var(--white); }
.cta-section p { color: rgba(255,255,255,.78); max-width: 560px; margin: 16px auto 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--green-dark);
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,30,18,.65), rgba(10,30,18,.85));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  padding-top: var(--nav-h);
}

.page-hero-content .breadcrumb {
  font-size: 0.78rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}

.page-hero-content p {
  color: rgba(255,255,255,.78);
  margin-top: 14px;
  font-size: 1.05rem;
  max-width: 580px;
}

/* ══════════════════════════════════════════
   ABOUT PAGE SPECIFIC
══════════════════════════════════════════ */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.mv-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--green-light);
  transition: transform var(--transition), box-shadow var(--transition);
}
.mv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.mv-card.mission { border-top-color: var(--gold); }
.mv-card.values { border-top-color: var(--green-mid); }

.mv-icon { font-size: 2.2rem; margin-bottom: 14px; }

.mv-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.mv-card p, .mv-card ul { color: var(--text-mid); font-size: 0.95rem; line-height: 1.8; }
.mv-card ul li { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 6px; }
.mv-card ul li::before { content: '●'; color: var(--green-light); font-size: .5rem; margin-top: .5em; flex-shrink: 0; }

.opportunity-section { background: var(--green-pale); }

.opp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.opp-stat-col { display: flex; flex-direction: column; gap: 16px; }

.opp-stat-box {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-sm);
}

.opp-stat-box .obox-icon { font-size: 2.2rem; }
.opp-stat-box .obox-num { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: var(--green-dark); font-weight: 700; }
.opp-stat-box .obox-label { font-size: 0.82rem; color: var(--text-light); }

.why-section { background: var(--white); }

.why-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-item:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }

.why-check {
  width: 36px; height: 36px;
  background: var(--green-mid);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-item h4 { font-weight: 600; font-size: 0.98rem; color: var(--green-dark); margin-bottom: 4px; }
.why-item p { font-size: 0.87rem; color: var(--text-light); line-height: 1.6; }

/* ══════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 52px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(45,106,79,.08);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.service-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-img-wrap img { transform: scale(1.07); }

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,30,18,.7) 0%, transparent 60%);
}

.service-number {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 50px;
}

.service-body { padding: 28px; }

.service-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-body p { font-size: 0.93rem; color: var(--text-light); line-height: 1.75; }

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.feat-tag {
  background: var(--green-pale);
  color: var(--green-mid);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: .04em;
}

/* ══════════════════════════════════════════
   PRODUCTS (INVESTMENT) PAGE
══════════════════════════════════════════ */
.invest-hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.ihs-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--green-light);
  transition: transform var(--transition), box-shadow var(--transition);
}
.ihs-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.ihs-card.gold { border-bottom-color: var(--gold); }

.ihs-card .ihs-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green-dark);
}

.ihs-card .ihs-label { font-size: 0.82rem; color: var(--text-light); margin-top: 6px; }

.revenue-section { background: var(--cream); }

.revenue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 52px;
  align-items: start;
}

.revenue-list { display: flex; flex-direction: column; gap: 14px; }

.revenue-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.revenue-item:hover { transform: translateX(5px); }

.revenue-item .r-icon { font-size: 1.6rem; flex-shrink: 0; }

.revenue-item h4 { font-size: 0.98rem; font-weight: 600; color: var(--green-dark); }
.revenue-item p { font-size: 0.83rem; color: var(--text-light); margin-top: 2px; }

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 52px;
  margin-top: 52px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-card .c-icon {
  width: 48px; height: 48px;
  background: var(--green-mid);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--white);
}

.contact-card h4 { font-size: 0.82rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.contact-card p { font-size: 0.97rem; color: var(--text-dark); font-weight: 500; line-height: 1.55; }
.contact-card a { color: var(--green-mid); font-weight: 600; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.contact-form-wrap p { color: var(--text-light); font-size: 0.92rem; margin-bottom: 28px; }

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 7px;
  letter-spacing: .02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(45,106,79,.18);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45,106,79,.12);
  background: var(--white);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group textarea { height: 120px; }

.form-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover { box-shadow: 0 8px 28px rgba(45,106,79,.4); transform: translateY(-3px); }

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success .s-icon { font-size: 3rem; }
.form-success h4 { font-size: 1.3rem; font-weight: 700; color: var(--green-dark); margin: 12px 0 6px; }
.form-success p { color: var(--text-light); font-size: 0.93rem; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding: 0 5%;
}

.footer-brand .nav-brand { margin-bottom: 18px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,.6); line-height: 1.8; max-width: 280px; }

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 16px;
  letter-spacing: .04em;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,.58);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: rgba(255,255,255,.6);
}
.footer-contact-item .fc-icon { font-size: 1rem; margin-top: 2px; flex-shrink: 0; color: var(--gold-light); }

.footer-bottom {
  margin-top: 52px;
  padding: 22px 5%;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,.45); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,.45); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 992px) {
  .intro-grid,
  .location-grid,
  .invest-grid,
  .opp-grid,
  .revenue-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .invest-wrapper { padding: 40px 28px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .phases-grid { grid-template-columns: 1fr; }

  .intro-checks { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 10px; }
  .stat-chip { font-size: 0.8rem; padding: 7px 14px; }
  .invest-stats { grid-template-columns: 1fr; }
}
