/*
  Club of Athens - Global Design System
  Ancient Wisdom Meets Future Technology
  Updated: iPad landscape mobile menu 2025-08-28 16:05
  
  ARCHITECTURE PRINCIPLES:
  - Single source of truth CSS
  - Content-based hero sections (no fullscreen forcing)
  - Systematic section color rotation
  - Global template cascade
  - No inline styles or !important overrides
  - Clean, maintainable, scalable
  
  COLOR ROTATION SYSTEM:
  1. Dark blue + gold (authority)
  2. White (clarity) 
  3. Sage mist (wisdom)
  4. Ocean teal (innovation)
*/

/* ===== RESET & FOUNDATION ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { 
  font-size: 16px; 
  line-height: 1.6; 
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  height: 100%;
  overflow-x: hidden;
}
body {
  min-height: 100%;
}

/* Initiatives page anchor positioning */
#biodiversity-arc,
#monorail,
#ecoexchange,
#ethical-consumer,
#harmonic-economy,
#quality-of-life,
#stable-governance,
#swords-ploughshares {
  scroll-margin-top: -48px;
}

@media (max-width: 768px) {
  #biodiversity-arc,
  #monorail,
  #ecoexchange,
  #ethical-consumer,
  #harmonic-economy,
  #quality-of-life,
  #stable-governance,
  #swords-ploughshares {
    scroll-margin-top: -60px; /* Account for just the mobile nav height, square cropping changes container heights */
  }
}

/* ===== DESIGN SYSTEM ===== */
:root {
  /* 5-Color Palette */
  --deep-navy: #0e1e34;
  --ocean-teal: #69a09b;
  --sage-mist: #b9d9db;
  --golden-bronze: #d7a96f;
  --white: #FFFFFF;
  
  /* Metallic Gradients */
  --gradient-navy-metallic: linear-gradient(145deg, #0e1e34 0%, #1a3a52 45%, #0a1420 50%, #1a3a52 55%, #0e1e34 100%);
  --gradient-gold-metallic: linear-gradient(145deg, #d7a96f 0%, #f4e4bc 45%, #c09858 50%, #f4e4bc 55%, #d7a96f 100%);
  
  /* Spacing Scale */
  --space-2: 0.5rem;   --space-4: 1rem;     --space-6: 1.5rem;
  --space-8: 2rem;     --space-10: 2.5rem;  --space-12: 3rem;
  --space-16: 4rem;    --space-20: 5rem;    --space-24: 6rem;
  --space-32: 8rem;    --space-40: 10rem;   --space-48: 12rem;
  --space-56: 14rem;   --space-64: 16rem;
  
  /* Border Radius */
  --radius-sm: 4px;    --radius-md: 8px;    --radius-lg: 12px;
}

/* ===== TYPOGRAPHY SYSTEM ===== */
body {
  font-family: 'Lato', sans-serif;
  color: var(--deep-navy);
  background: var(--white);
  line-height: 1.4;
  font-size: clamp(18px, 2.5vw, 20px);
  font-weight: 500;
  min-height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
}

h1, h2, h3 { 
  font-family: 'Merriweather Sans', sans-serif; 
  font-weight: 700;
  line-height: 1.2;
}

/* Unified section typography */
.section-title {
  font-size: clamp(32px, 4vw, 38px);
  color: inherit;
  text-align: center;
  margin-bottom: var(--space-6);
}

.section-subtitle {
  font-family: 'Merriweather Sans', sans-serif;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 400;
  color: inherit;
  text-align: center;
  margin-bottom: var(--space-6);
  line-height: 1.4;
  opacity: 0.9;
}

.section-text,
.intro-text {
  font-size: clamp(18px, 2.5vw, 20px);
  font-weight: 400;
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto var(--space-4); /* Further reduced to 16px */
  text-align: center;
  color: inherit;
}

.cta-center {
  text-align: center;
  margin-top: var(--space-10); /* Increased spacing between cards and button */
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .section-title { font-size: 2rem; }
  .section-text { font-size: 1.125rem; }
}

/* ===== LAYOUT SYSTEM ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* Content-based sections - removed fullscreen forcing */
}

/* ===== SYSTEMATIC SECTION ROTATION ===== */
/* Premium spacing for content sections - generous breathing room */
section {
  padding: var(--space-24) 0; /* 96px - premium balanced spacing */
}

/* First section spacing handled by nth-child(2) rule below */

/* Compact sections for tightly related content */
.section-compact {
  padding: var(--space-24) 0 !important; /* 96px for grouped content */
}

/* CTA sections maintain their dramatic spacing */
.cta-section {
  padding: var(--space-32) 0; /* 128px for call-to-action impact */
}

/* Component headers - clean spacing without inline styles */
.component-header {
  color: var(--deep-navy);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin: var(--space-8) 0 var(--space-4); /* Reasonable spacing: 32px top, 16px bottom */
}

.component-header-white {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin: var(--space-8) 0 var(--space-4); /* Reasonable spacing: 32px top, 16px bottom */
}

/* Section 1 after hero: Dark blue + gold */
main section:nth-child(2) {
  background: var(--deep-navy);
  color: var(--golden-bronze);
  padding: var(--space-24) 0; /* 96px for hero transition */
}

main section:nth-child(2) .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section 2: White */
main section:nth-child(3) {
  background: var(--white);
  color: var(--deep-navy);
  padding: var(--space-24) 0; /* 96px balanced spacing */
}

/* Partnerships section - standard spacing like other sections */
#partnerships {
  padding: var(--space-20) 0 !important; /* 80px balanced spacing */
}

/* Section 3: Sage mist */
main section:nth-child(4) {
  background: linear-gradient(135deg, var(--sage-mist) 0%, var(--white) 100%);
  color: var(--deep-navy);
  padding: var(--space-24) 0; /* 96px balanced spacing */
}

/* Section 4: Ocean teal */
main section:nth-child(5) {
  background: linear-gradient(135deg, var(--ocean-teal) 0%, var(--sage-mist) 100%);
  color: var(--white);
  padding: var(--space-24) 0; /* 96px balanced spacing */
}

/* Pattern repeats */
main section:nth-child(6) { background: var(--deep-navy); color: var(--golden-bronze); padding: var(--space-24) 0; }
main section:nth-child(7) { background: var(--white); color: var(--deep-navy); padding: var(--space-24) 0; }
main section:nth-child(8) { background: linear-gradient(135deg, var(--sage-mist) 0%, var(--white) 100%); color: var(--deep-navy); padding: var(--space-24) 0; }
main section:nth-child(9) { background: linear-gradient(135deg, var(--ocean-teal) 0%, var(--sage-mist) 100%); color: var(--white); padding: var(--space-24) 0; }
main section:nth-child(10) { background: var(--white); color: var(--deep-navy); padding: var(--space-24) 0; }
main section:nth-child(11) { background: var(--deep-navy); color: var(--golden-bronze); padding: var(--space-24) 0; }

/* Section-specific card styles */
/* Dark blue sections (1, 5) - cards should be lighter with gold accents */
main section:nth-child(2) .value-card,
main section:nth-child(2) .card,
main section:nth-child(6) .value-card,
main section:nth-child(6) .card,
main section:nth-child(11) .value-card,
main section:nth-child(11) .card {
  background: rgba(232, 185, 49, 0.1);
  border-color: rgba(232, 185, 49, 0.3);
  color: var(--golden-bronze);
}

/* White sections (2, 6) - cards should be subtle */
main section:nth-child(3) .value-card,
main section:nth-child(3) .card,
main section:nth-child(7) .value-card,
main section:nth-child(7) .card,
main section:nth-child(10) .value-card,
main section:nth-child(10) .card {
  background: rgba(14, 30, 52, 0.05);
  border-color: rgba(14, 30, 52, 0.15);
  color: var(--deep-navy);
}

/* Sage mist sections (3, 7) - cards should be slightly darker */
main section:nth-child(4) .value-card,
main section:nth-child(4) .card,
main section:nth-child(8) .value-card,
main section:nth-child(8) .card {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(14, 30, 52, 0.2);
  color: var(--deep-navy);
}

/* Ocean teal sections (4, 8) - cards should be lighter */
main section:nth-child(5) .value-card,
main section:nth-child(5) .card,
main section:nth-child(9) .value-card,
main section:nth-child(9) .card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

/* Fix value icons for each section */
main section:nth-child(2) .value-icon,
main section:nth-child(6) .value-icon,
main section:nth-child(11) .value-icon {
  background: var(--gradient-gold-metallic);
  border-color: var(--golden-bronze);
  opacity: 1;
}

main section:nth-child(2) .value-icon i,
main section:nth-child(6) .value-icon i,
main section:nth-child(11) .value-icon i {
  color: var(--deep-navy);
}

main section:nth-child(3) .value-icon,
main section:nth-child(7) .value-icon,
main section:nth-child(4) .value-icon,
main section:nth-child(8) .value-icon,
main section:nth-child(10) .value-icon {
  background: var(--gradient-navy-metallic);
  border-color: var(--deep-navy);
  opacity: 1;
}

main section:nth-child(3) .value-icon i,
main section:nth-child(7) .value-icon i,
main section:nth-child(4) .value-icon i,
main section:nth-child(8) .value-icon i,
main section:nth-child(10) .value-icon i {
  color: var(--white);
}

main section:nth-child(5) .value-icon,
main section:nth-child(9) .value-icon {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

main section:nth-child(5) .value-icon i,
main section:nth-child(9) .value-icon i {
  color: var(--white);
}

/* About section (Global Think Tank) - specific override */
#about {
  background: var(--deep-navy);
  color: var(--white);
}

#about .section-title {
  color: var(--golden-bronze);
}

#about .intro-text {
  color: var(--golden-bronze);
}

/* Fix about page first content section - standard padding, not fullscreen */
.hero-about ~ section:first-of-type {
  padding: var(--space-24) 0 !important; /* 96px standard section padding */
}

/* Centered section layout for about page */
.section-centered {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Tribute Section Styling */
.tribute-section {
  background: linear-gradient(135deg, 
    var(--white) 0%, 
    rgba(185, 217, 219, 0.2) 100%);
  padding: var(--space-32) 0;
  position: relative;
}

.tribute-content {
  max-width: 1000px;
  margin: 0 auto;
}

.tribute-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.tribute-title {
  font-size: 2.5rem;
  color: var(--deep-navy);
  margin-bottom: var(--space-2);
  font-weight: 700;
}

.tribute-subtitle {
  font-size: 1.25rem;
  color: var(--ocean-teal);
  font-weight: 600;
}

.tribute-quote-wrapper {
  background: var(--white);
  border-left: 5px solid var(--golden-bronze);
  padding: var(--space-8);
  margin: var(--space-10) auto;
  max-width: 800px;
  box-shadow: 0 8px 30px rgba(14, 30, 52, 0.1);
  border-radius: var(--radius-md);
  position: relative;
}

.tribute-quote {
  margin: 0;
  position: relative;
}

.quote-mark {
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 4rem;
  color: var(--golden-bronze);
  opacity: 0.3;
  font-family: serif;
}

.tribute-quote p {
  font-size: 1.375rem;
  line-height: 1.8;
  color: var(--deep-navy);
  font-style: italic;
  margin: 0;
}

.tribute-legacy {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: var(--space-10);
  align-items: start;
  margin-top: var(--space-12);
}

.tribute-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(14, 30, 52, 0.2);
}

.tribute-text h3 {
  font-size: 1.75rem;
  color: var(--deep-navy);
  margin-bottom: var(--space-4);
  font-weight: 700;
}

.tribute-text p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(14, 30, 52, 0.8);
  margin-bottom: var(--space-4);
}

@media (max-width: 768px) {
  .tribute-legacy {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .tribute-image {
    max-width: 300px;
    margin: 0 auto;
  }
}

/* 12 Spheres Grid - 3x4 layout */
.spheres-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.sphere-card {
  background: linear-gradient(135deg, 
    rgba(14, 30, 52, 0.95) 0%, 
    rgba(14, 30, 52, 0.9) 100%);
  border: 2px solid rgba(215, 169, 111, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sphere-number {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 32px;
  height: 32px;
  background: var(--golden-bronze);
  color: var(--deep-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.sphere-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold-metallic);
  opacity: 0.9;
}

.sphere-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--golden-bronze);
}

.sphere-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-gold-metallic);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  font-size: 28px;
  color: var(--deep-navy);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sphere-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--golden-bronze);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .spheres-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .spheres-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 3 P's Framework */
.three-ps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin: var(--space-10) 0;
}

.three-p-card {
  background: linear-gradient(135deg, 
    rgba(14, 30, 52, 0.95) 0%, 
    rgba(14, 30, 52, 0.9) 100%);
  border: 2px solid rgba(215, 169, 111, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.three-p-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(215, 169, 111, 0.1) 0%, 
    rgba(215, 169, 111, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.three-p-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--golden-bronze);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
              0 15px 30px rgba(215, 169, 111, 0.2);
}

.three-p-card:hover::before {
  opacity: 1;
}

.three-p-card:hover .three-p-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(215, 169, 111, 0.3);
}

.three-p-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-6);
  border-radius: 50%;
  background: var(--gradient-gold-metallic);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--deep-navy);
  transition: all 0.3s ease;
}

.three-p-title {
  font-family: 'Cinzel', serif;
  font-size: 1.75rem;
  color: var(--golden-bronze);
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.three-p-subtitle {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  color: var(--white);
  font-style: italic;
  margin-bottom: var(--space-6);
  font-weight: 600;
  opacity: 0.95;
}

.three-p-description {
  color: var(--white);
  line-height: 1.8;
  margin-bottom: var(--space-6);
  text-align: left;
  font-size: 1.125rem;
  opacity: 0.9;
  min-height: 150px; /* Ensures all descriptions end at same height */
}

.three-p-points {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 0; /* Ensure all lists start at same position */
}

/* Template bullet point styling - used across all pages */
.bullet-list-compact li,
.three-p-points li {
  color: var(--white);
  padding: var(--space-1) 0;
  padding-left: var(--space-6);
  position: relative;
  opacity: 0.85;
  font-size: 1.05rem;
  line-height: 1.5;
}

/* Default bullet points for general lists */
.bullet-list-compact {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0;
}

.bullet-list-compact li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--golden-bronze);
}

.three-p-points li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--golden-bronze);
}

.three-ps-integration {
  background: linear-gradient(135deg, 
    rgba(215, 169, 111, 0.3) 0%, 
    rgba(215, 169, 111, 0.2) 100%);
  border: 2px solid var(--golden-bronze);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  margin-top: var(--space-10);
  text-align: center;
  box-shadow: 0 4px 20px rgba(215, 169, 111, 0.2);
}

.three-ps-integration .subsection-title {
  color: var(--deep-navy) !important;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.three-ps-integration .centered-text {
  color: var(--deep-navy) !important;
  line-height: 1.8;
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 900px;
  margin: 0 auto;
}

.subsection-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--golden-bronze);
  margin-bottom: var(--space-6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 1024px) {
  .three-ps-grid {
    grid-template-columns: 1fr;
  }
}

/* Seven Stakeholder Pipeline */
.stakeholder-pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin: var(--space-10) auto;
  max-width: 1200px;
}

.stakeholder-item {
  background: var(--white);
  border: 2px solid rgba(14, 30, 52, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

.stakeholder-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--ocean-teal);
}

.stakeholder-number {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 28px;
  height: 28px;
  background: var(--ocean-teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}

.stakeholder-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-gold-metallic);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--deep-navy);
  margin-bottom: var(--space-4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stakeholder-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: var(--space-2);
}

.stakeholder-desc {
  font-size: 1rem;
  color: rgba(14, 30, 52, 0.7);
  line-height: 1.5;
}

.pipeline-arrow {
  display: none;
}

@media (max-width: 1200px) {
  .stakeholder-pipeline {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .stakeholder-pipeline {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stakeholder-item {
    min-height: 180px;
  }
}

.section-image {
  width: 100%;
  max-width: 600px;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-10);  /* Increased from 32px to 40px */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.section-image.no-shadow {
  box-shadow: none;
  height: auto;
}

.section-centered .section-title {
  margin-bottom: var(--space-6);
}

.section-centered .intro-text {
  margin-bottom: var(--space-10);  /* Increased from 32px to 40px */
}

.btn-group-centered {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-top: var(--space-6);
}

@media (max-width: 768px) {
  .section-image {
    height: 250px;
  }
  
  .btn-group-centered {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-group-centered .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(14, 30, 52, 0.98), rgba(14, 30, 52, 0.95));
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--golden-bronze);
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(14, 30, 52, 0.7);
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-8) 0 var(--space-4);
}

.logo {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
}

.logo:hover {
  opacity: 0.7;
}

.logo-img {
  height: 40px;
  width: 40px;
  object-fit: contain;
}

.logo-text {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, 
    #f0dfc5 0%, 
    #f0dfc5 45%,
    #e5c89f 49%, 
    #e5c89f 51%, 
    #f0dfc5 55%,
    #f0dfc5 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  animation: goldShine 8s linear infinite;
  text-shadow: none;
  filter: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--space-8);
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: rgba(215, 169, 111, 0.9);
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: #c09858; /* Dark gold from gradient */
  opacity: 1;
  border-bottom: 2px solid #c09858;
  padding-bottom: 2px;
}

/* Membership page links styling */
.pricing-features a {
  color: #007bff;
  text-decoration: none;
  display: inline;
  line-height: inherit;
}

.pricing-features a:hover {
  text-decoration: underline;
}


.nav-links a.active {
  color: var(--golden-bronze);
  font-weight: 600;
  border-bottom: 2px solid var(--golden-bronze);
  padding-bottom: 2px;
}

/* Login menu item styling */
.login-menu-item {
  margin-left: auto;
}

.login-menu-item a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.login-menu-item a:hover {
  transform: translateY(-1px);
}

.login-menu-item a i {
  font-size: 0.9rem;
}

/* User Menu Styles */
.user-menu-item > a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  color: rgba(215, 169, 111, 0.9);
}

.user-menu-item > a:hover {
  transform: translateY(-1px);
  color: #c09858;
}

.user-menu-item > a i {
  font-size: 1.2rem;
}

/* Dropdown Menu Styles */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--deep-navy);
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-md);
  border: 1px solid rgba(215, 169, 111, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: var(--space-4) 0;
}

.nav-links li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: var(--space-2) var(--space-4);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(215, 169, 111, 0.8);
  border-bottom: none;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover {
  color: #c09858; /* Dark gold from gradient */
  background: rgba(192, 152, 88, 0.1);
  padding-left: var(--space-6);
}


.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  position: relative;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--golden-bronze);
  transition: all 0.3s ease;
  transform-origin: center;
}

@media (max-width: 1024px) {
  .nav-links { 
    display: none;
    position: fixed;
    top: 60px; /* Below nav bar */
    left: 0;
    width: 100%;
    height: calc(100vh - 60px); /* Fullscreen minus nav height */
    background: rgba(14, 30, 52, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--space-4) 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1002;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links li {
    width: 100%;
    text-align: center;
    padding: var(--space-3) 0;
  }
  
  .nav-links a {
    display: block;
    padding: var(--space-3) var(--space-4);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 500;
  }
  
  /* Hide dropdown menus completely on mobile/tablet */
  .dropdown-menu {
    display: none !important;
  }
  
  .has-dropdown:hover .dropdown-menu,
  .has-dropdown.active .dropdown-menu {
    display: none !important;
  }
  
  /* Hide dropdown arrows on mobile/tablet */
  .has-dropdown > a::after {
    display: none;
  }
  
  .mobile-menu-toggle { 
    display: flex; 
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  /* Logo text size on mobile */
  .logo-text {
    font-size: 1.3rem;
  }
  
  .logo-img {
    height: 35px;
    width: 35px;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: 
    linear-gradient(180deg, 
      rgba(14, 30, 52, 0.85) 0%, 
      rgba(14, 30, 52, 0.65) 50%, 
      rgba(14, 30, 52, 0.30) 100%),
    url('../images/background/home.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: var(--space-16) 0;
}

.hero-vision {
  background-image: 
    linear-gradient(180deg, 
      rgba(14, 30, 52, 0.85) 0%, 
      rgba(14, 30, 52, 0.65) 50%, 
      rgba(14, 30, 52, 0.30) 100%),
    url('../images/background/columns.jpg');
}

.hero-mission {
  background-image: 
    linear-gradient(180deg, 
      rgba(14, 30, 52, 0.85) 0%, 
      rgba(14, 30, 52, 0.65) 50%, 
      rgba(14, 30, 52, 0.30) 100%),
    url('../images/background/nature.jpg');
}

.hero-about {
  background-image: 
    linear-gradient(180deg, 
      rgba(14, 30, 52, 0.85) 0%, 
      rgba(14, 30, 52, 0.65) 50%, 
      rgba(14, 30, 52, 0.30) 100%),
    url('../images/background/trust.jpg');
}

.hero-partnerships {
  background-image: 
    linear-gradient(180deg, 
      rgba(14, 30, 52, 0.85) 0%, 
      rgba(14, 30, 52, 0.65) 50%, 
      rgba(14, 30, 52, 0.30) 100%),
    url('../images/background/global-framework.jpg');
}

.hero-solutions {
  background-image: 
    linear-gradient(180deg, 
      rgba(14, 30, 52, 0.85) 0%, 
      rgba(14, 30, 52, 0.65) 50%, 
      rgba(14, 30, 52, 0.30) 100%),
    url('../images/background/global.jpg');
}

/* Solutions page section backgrounds */
.section-intro {
  background: linear-gradient(135deg, var(--sage-mist) 0%, var(--white) 100%);
  padding: var(--space-12) 0;
}

/* Solutions page specific - Barbara quote in sage-mist background */
.section-intro .testimonial-quote {
  background: transparent;
  border: none;
  box-shadow: none;
}

.section-intro .testimonial-name {
  color: var(--golden-bronze);
}

.section-intro .quote-text {
  color: var(--golden-bronze);
  opacity: 0.95;
}

.section-intro .testimonial-bio {
  color: var(--deep-navy) !important;
  opacity: 0.9;
}

.section-intro .testimonial-subtitle {
  color: var(--golden-bronze);
  opacity: 0.85;
}

.section-intro .testimonial-image {
  border-color: var(--golden-bronze) !important;
}

.section-barbara {
  background: var(--white);
  padding: var(--space-12) 0;
}

.section-spheres {
  background: linear-gradient(135deg, var(--ocean-teal) 0%, var(--sage-mist) 100%);
  padding: var(--space-12) 0;
  color: var(--white);
}

.section-3ps {
  background: var(--deep-navy);
  padding: var(--space-12) 0;
  color: var(--white);
}

.section-stakeholders {
  background: var(--deep-navy);
  padding: var(--space-12) 0;
  color: var(--white);
}

.section-outcomes {
  background: linear-gradient(135deg, var(--ocean-teal) 0%, var(--sage-mist) 100%);
  padding: var(--space-12) 0;
  color: var(--white);
}

.section-timeline {
  background: var(--white);
  padding: var(--space-12) 0;
}

.section-global-outcomes {
  background: var(--deep-navy);
  padding: var(--space-12) 0;
  color: var(--white);
}

/* Adjust text colors for dark sections */
.section-outcomes .section-title {
  color: var(--white);
}

.section-outcomes .intro-text {
  color: var(--white);
  opacity: 0.9;
}

/* Eight Stage Timeline - text colors for ocean-teal background */
.section-outcomes .section-title {
  color: var(--deep-navy);
}

.section-outcomes .intro-text {
  color: var(--deep-navy);
  opacity: 0.9;
}

.section-outcomes .timeline-year {
  color: var(--deep-navy);
  font-weight: 700;
}

.section-outcomes .timeline-content h4 {
  color: var(--deep-navy);
  font-weight: 700;
}

.section-outcomes .timeline-content p {
  color: var(--deep-navy);
  opacity: 0.85;
}

/* Add light transparent colored backgrounds to timeline items */
.section-outcomes .timeline-item:nth-child(1) .timeline-content {
  background: rgba(255, 200, 200, 0.3); /* Light red */
}

.section-outcomes .timeline-item:nth-child(2) .timeline-content {
  background: rgba(255, 230, 200, 0.3); /* Light orange */
}

.section-outcomes .timeline-item:nth-child(3) .timeline-content {
  background: rgba(255, 255, 200, 0.3); /* Light yellow */
}

.section-outcomes .timeline-item:nth-child(4) .timeline-content {
  background: rgba(200, 255, 200, 0.3); /* Light green */
}

.section-outcomes .timeline-item:nth-child(5) .timeline-content {
  background: rgba(200, 230, 255, 0.3); /* Light blue */
}

.section-outcomes .timeline-item:nth-child(6) .timeline-content {
  background: rgba(220, 200, 255, 0.3); /* Light purple */
}

.section-outcomes .timeline-item:nth-child(7) .timeline-content {
  background: rgba(255, 200, 230, 0.3); /* Light pink */
}

.section-outcomes .timeline-item:nth-child(8) .timeline-content {
  background: rgba(215, 255, 230, 0.3); /* Light mint */
}

.section-global-outcomes .section-title,
.section-global-outcomes .intro-text {
  color: var(--white);
}

.section-outcomes .subsection-title,
.section-global-outcomes .outcome-item h3 {
  color: var(--golden-bronze);
}

/* Framework Concepts - now in deep-navy background */
.section-stakeholders .section-title {
  color: var(--white);
}

.section-stakeholders .intro-text {
  color: var(--white);
  opacity: 0.9;
}

.section-stakeholders .text-container h4 {
  color: var(--sage-green);
  font-weight: 700;
}

.section-stakeholders .text-container h3 {
  color: var(--golden-bronze);
  font-weight: 700;
}

.section-stakeholders .text-container p {
  color: var(--white);
  opacity: 0.85;
}

/* Seven Stakeholders section - now in deep-navy background */
.section-3ps .section-title,
.section-3ps .intro-text {
  color: var(--white);
}

.section-3ps .stakeholder-item {
  background: var(--sage-mist);
  border: 2px solid var(--golden-bronze);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  position: relative;
}

.section-3ps .stakeholder-title,
.section-3ps .stakeholder-desc {
  color: var(--deep-navy);
}

.section-3ps .stakeholder-number {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  background: var(--golden-bronze);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1rem;
}

.section-3ps .stakeholder-icon {
  color: var(--golden-bronze);
}

.section-3ps .pipeline-arrow {
  color: var(--golden-bronze);
}

/* 3 P's Framework - now in ocean-teal background */
.section-spheres .section-title,
.section-spheres .intro-text {
  color: var(--deep-navy);
}

.section-spheres .subsection-title,
.section-spheres .centered-text {
  color: var(--deep-navy);
  opacity: 0.9;
}

.section-spheres .three-p-card {
  background: linear-gradient(135deg, 
    rgba(14, 30, 52, 0.95) 0%, 
    rgba(14, 30, 52, 0.9) 100%);
  border-color: rgba(215, 169, 111, 0.3);
}

.section-spheres .three-ps-integration {
  background: linear-gradient(135deg, 
    rgba(215, 169, 111, 0.35) 0%, 
    rgba(215, 169, 111, 0.25) 100%);
  border-color: var(--golden-bronze);
  box-shadow: 0 6px 25px rgba(215, 169, 111, 0.25),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-initiatives {
  background-image: 
    linear-gradient(180deg, 
      rgba(14, 30, 52, 0.85) 0%, 
      rgba(14, 30, 52, 0.65) 50%, 
      rgba(14, 30, 52, 0.30) 100%),
    url('../images/background/solution.jpg');
}

/* Initiatives page section styles */
.section-white {
  background: var(--white);
  padding: var(--space-12) 0;
}

.section-mint {
  background: linear-gradient(135deg, var(--sage-mist) 0%, var(--white) 100%);
  padding: var(--space-12) 0;
}

.section-blue {
  background: linear-gradient(135deg, var(--ocean-teal) 0%, var(--sage-mist) 100%);
  padding: var(--space-12) 0;
  color: var(--deep-navy);
}

/* Fix text colors for sage-mist sections */
.section-intro .section-title,
.section-intro .intro-text,
.section-intro .section-description,
.section-intro .section-subtitle {
  color: var(--deep-navy);
}

.section-mint .section-title,
.section-mint .intro-text,
.section-mint .section-subtitle {
  color: var(--deep-navy);
}

.section-mint .section-description {
  color: var(--deep-navy);
  opacity: 0.9;
}

.section-blue .section-title,
.section-blue .intro-text,
.section-blue .section-description {
  color: var(--deep-navy);
}

/* Features section styling */
.features-section {
  margin-top: var(--space-10);
  margin-bottom: var(--space-10);
}

/* Card Images */
.card-image {
  width: calc(100% + 80px);
  height: 150px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin: -40px -40px 20px -40px;
  display: block;
}

/* Content Blocks */
.content-block {
  margin-bottom: var(--space-10);
  display: flex;
  align-items: flex-start;
  gap: var(--space-8);
}

.content-block:nth-child(even) {
  flex-direction: row-reverse;
}

.content-image {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.content-title {
  font-size: 1.5rem;
  color: var(--deep-navy);
  margin-bottom: var(--space-4);
  font-weight: 600;
}

.section-mint .content-title {
  color: var(--deep-navy);
}

/* Stats Grid 2x3 */
.stats-grid.stats-2x3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin: var(--space-8) 0 0 0;
}

.stats-grid.stats-2x3 .stat-item {
  padding: var(--space-6);
  text-align: center;
}

.stats-grid.stats-2x3 .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.stats-grid.stats-2x3 .stat-label {
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0.9;
}

/* Result Box Special */
.impact-box.result-box {
  background: linear-gradient(135deg,
    rgba(105, 160, 155, 0.15) 0%,
    rgba(105, 160, 155, 0.1) 100%);
  border-color: var(--ocean-teal);
}

.impact-box.result-box h3 {
  color: var(--ocean-teal);
}

.section-blue .impact-box.result-box p {
  color: var(--white);
}

/* Compact Section */
.section-compact {
  padding: var(--space-12) 0 var(--space-8) 0 !important;
}

/* Section with Background Image */
.section-bg-future {
  background-image: 
    linear-gradient(rgba(185, 217, 219, 0.9), rgba(185, 217, 219, 0.95)),
    url('../images/background/future.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.section-bg-biodiversity {
  background-image: 
    linear-gradient(rgba(185, 217, 219, 0.9), rgba(185, 217, 219, 0.95)),
    url('../images/background/biodiversity-arc.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Partner Logos */
.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
  margin-top: var(--space-10);
  padding: var(--space-8);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
}

.partner-logos img {
  height: 60px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.partner-logos img:hover {
  opacity: 1;
}

/* Clean Partner Logos (no background) */
.partner-logos-clean {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-10);
  flex-wrap: wrap;
  margin-top: var(--space-10);
}

.partner-logos-clean img {
  height: 80px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.partner-logos-clean img:hover {
  opacity: 1;
  transform: scale(1.05);
}


/* Horizontal Team Card */
.team-card-horizontal {
  display: flex;
  align-items: flex-start;
  gap: var(--space-8);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  margin: var(--space-10) 0;
}

.team-image-horizontal {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.team-content-horizontal h3 {
  color: var(--golden-bronze);
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
}

.team-content-horizontal h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: var(--space-4);
  opacity: 0.9;
}

.team-content-horizontal p {
  color: var(--white);
  line-height: 1.6;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .content-block,
  .content-block:nth-child(even) {
    flex-direction: column;
  }
  
  .content-image {
    width: 100%;
  }
  
  .stats-grid.stats-2x3 {
    grid-template-columns: 1fr;
  }
  
  .team-card-horizontal {
    flex-direction: column;
    text-align: center;
  }
  
  .team-image-horizontal {
    width: 150px;
    height: 150px;
    margin: 0 auto;
  }
}

/* Card Background Images for Biodiversity Arc */
.card-bg-community {
  background-image: linear-gradient(rgba(14, 30, 52, 0.85), rgba(14, 30, 52, 0.85)), url('../images/background/community.jpg');
  background-size: cover;
  background-position: center;
}
.card-bg-ecosystem {
  background-image: linear-gradient(rgba(14, 30, 52, 0.85), rgba(14, 30, 52, 0.85)), url('../images/background/ecosystem.jpg');
  background-size: cover;
  background-position: center;
}
.card-bg-farming {
  background-image: linear-gradient(rgba(14, 30, 52, 0.85), rgba(14, 30, 52, 0.85)), url('../images/background/farming.jpg');
  background-size: cover;
  background-position: center;
}
.card-bg-biodiversity {
  background-image: linear-gradient(rgba(14, 30, 52, 0.85), rgba(14, 30, 52, 0.85)), url('../images/background/biodiversity.jpg');
  background-size: cover;
  background-position: center;
}

/* Value card styling for different sections */
.section-intro .value-card {
  background: rgba(14, 30, 52, 0.3);
  border-color: rgba(215, 169, 111, 0.3);
}

.section-white .value-card {
  background: linear-gradient(135deg,
    rgba(215, 169, 111, 0.12) 0%,
    rgba(215, 169, 111, 0.08) 100%);
  border-color: rgba(215, 169, 111, 0.3);
}

.section-mint .value-card {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(14, 30, 52, 0.2);
}

.section-intro .value-card .value-title,
.section-intro .value-card .value-description {
  color: var(--deep-navy);
}

.section-white .value-card .value-title,
.section-white .value-card .value-description,
.section-mint .value-card .value-title,
.section-mint .value-card .value-description {
  color: var(--deep-navy);
}

.features-section .subsection-title {
  color: var(--golden-bronze);
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  margin-bottom: var(--space-6);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.section-mint .features-section .subsection-title {
  color: var(--deep-navy);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

/* Feature boxes for white sections - golden tint */
.section-white .feature-item {
  background: linear-gradient(135deg,
    rgba(215, 169, 111, 0.15) 0%,
    rgba(215, 169, 111, 0.08) 100%);
  border: 1px solid rgba(215, 169, 111, 0.4);
}

/* Feature boxes for mint sections - darker background */
.section-mint .feature-item {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(14, 30, 52, 0.2);
}

.section-intro .feature-item {
  background: rgba(14, 30, 52, 0.3);
  border: 1px solid rgba(215, 169, 111, 0.3);
}

/* Feature boxes for blue sections */
.section-blue .feature-item {
  background: rgba(14, 30, 52, 0.3);
  border: 1px solid rgba(215, 169, 111, 0.3);
}

.feature-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  background: var(--gradient-gold-metallic);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--deep-navy);
}

.feature-content h4 {
  color: var(--deep-navy);
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 1.25rem;
  margin-bottom: var(--space-2);
  font-weight: 700;
}

.section-intro .feature-content h4 {
  color: var(--deep-navy);
}

.section-mint .feature-content h4 {
  color: var(--deep-navy);
}

.section-blue .feature-content h4 {
  color: var(--golden-bronze);
}

.feature-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: clamp(16px, 2vw, 18px);
}

.section-intro .feature-content p {
  color: var(--deep-navy);
  opacity: 0.9;
}

.section-blue .feature-content p {
  color: var(--white);
  opacity: 0.9;
}

.section-mint .feature-content p {
  color: var(--deep-navy);
  opacity: 0.9;
}

/* Impact box styling */
.impact-box {
  background: linear-gradient(135deg,
    rgba(215, 169, 111, 0.15) 0%,
    rgba(215, 169, 111, 0.1) 100%);
  border: 2px solid var(--golden-bronze);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  margin: var(--space-10) 0;
  text-align: center;
}

.impact-box h3 {
  color: var(--golden-bronze);
  font-family: 'Cinzel', serif;
  font-size: 1.625rem;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-mint .impact-box h3 {
  color: var(--deep-navy);
}

.impact-box p {
  color: var(--deep-navy);
  font-size: clamp(18px, 2.2vw, 20px);
  line-height: 1.5;
  max-width: 900px;
  margin: 0 auto;
  opacity: 0.9;
}

.section-blue .impact-box p {
  color: var(--deep-navy);
}

.section-intro .impact-box p {
  color: var(--deep-navy);
}

.section-description {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 1000px;
  margin: var(--space-6) auto;
  text-align: center;
  font-weight: 400;
}

.section-intro .section-description {
  color: var(--deep-navy);
  opacity: 0.9;
}
.section-blue .section-description {
  color: var(--white);
  opacity: 0.9;
}

.section-blue .section-subtitle {
  color: var(--deep-navy);
}

.section-blue .btn-primary {
  background: var(--deep-navy);
  color: var(--white);
  border: 2px solid var(--deep-navy);
}

.section-blue .btn-primary:hover {
  background: transparent;
  color: var(--deep-navy);
  border-color: var(--deep-navy);
}

.section-white .section-subtitle {
  color: var(--deep-navy);
}

.section-white .section-title,
.section-white .intro-text {
  color: var(--deep-navy);
}

.section-white .subsection-title {
  color: var(--deep-navy);
}

.section-white .feature-content h4 {
  color: var(--deep-navy);
}

.section-white .feature-content p {
  color: var(--deep-navy);
  opacity: 0.9;
}

.section-white .impact-box h3,
.section-white .impact-box p {
  color: var(--deep-navy);
}

.section-mint .section-description {
  color: var(--deep-navy);
  opacity: 0.9;
}

/* Section centered image styling */
.section-centered {
  text-align: center;
  margin-bottom: var(--space-10);
}

.section-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}

.section-image:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.section-image.no-shadow {
  box-shadow: none;
}

.section-image.no-shadow:hover {
  box-shadow: none;
  transform: scale(1.05);
}

.hero-membership {
  background-image: 
    linear-gradient(180deg, 
      rgba(14, 30, 52, 0.85) 0%, 
      rgba(14, 30, 52, 0.65) 50%, 
      rgba(14, 30, 52, 0.30) 100%),
    url('../images/background/members.jpg');
}

.hero-team {
  background-image: 
    linear-gradient(180deg, 
      rgba(14, 30, 52, 0.85) 0%, 
      rgba(14, 30, 52, 0.65) 50%, 
      rgba(14, 30, 52, 0.30) 100%),
    url('../images/background/team.jpg');
}

.hero-contact {
  background-image: 
    linear-gradient(180deg, 
      rgba(14, 30, 52, 0.85) 0%, 
      rgba(14, 30, 52, 0.65) 50%, 
      rgba(14, 30, 52, 0.30) 100%),
    url('../images/background/network.jpg');
}

.hero-biofactory {
  background-image: 
    linear-gradient(180deg, 
      rgba(14, 30, 52, 0.85) 0%, 
      rgba(14, 30, 52, 0.65) 50%, 
      rgba(14, 30, 52, 0.30) 100%),
    url('../images/background/biofactory.jpg');
}

.hero-vision {
  background-image: 
    linear-gradient(180deg, 
      rgba(14, 30, 52, 0.85) 0%, 
      rgba(14, 30, 52, 0.65) 50%, 
      rgba(14, 30, 52, 0.30) 100%),
    url('../images/background/vision.jpg');
}

.hero-mission {
  background-image: 
    linear-gradient(180deg, 
      rgba(14, 30, 52, 0.85) 0%, 
      rgba(14, 30, 52, 0.65) 50%, 
      rgba(14, 30, 52, 0.30) 100%),
    url('../images/background/mission.jpg');
}

.hero-content {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-8);
}

.hero-logo {
  width: clamp(100px, 12vw, 150px);
  height: auto;
  margin-bottom: var(--space-6);
  position: relative;
}

/* Base hero title - Cinzel font */
.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-8);
  color: #FFFFFF;
  text-shadow: 
    4px 4px 8px rgba(0, 0, 0, 0.8),
    2px 2px 4px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(0, 0, 0, 0.4);
}

/* Animated golden gradient title - preserved from original */
.hero-title-gradient {
  background: linear-gradient(90deg, 
    #f0dfc5 0%, 
    #f0dfc5 45%,
    #e5c89f 49%, 
    #e5c89f 51%, 
    #f0dfc5 55%,
    #f0dfc5 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  animation: goldShine 8s linear infinite;
  text-shadow: none;
  filter: none;
}

@keyframes goldShine {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-subtitle {
  text-align: center;
  margin: 0 auto;
}

.subtitle-line {
  font-family: 'Cinzel', serif;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.4;
  margin-bottom: 0.2rem;
  background: linear-gradient(90deg, 
    #f0dfc5 0%, 
    #f0dfc5 45%,
    #e5c89f 49%, 
    #e5c89f 51%, 
    #f0dfc5 55%,
    #f0dfc5 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  animation: goldShine 8s linear infinite;
  text-shadow: none;
  filter: none;
}

/* ===== BUTTON SYSTEM ===== */
.btn {
  font-family: 'Merriweather Sans', sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75em 1.5em;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  color: white;
}

.btn-primary {
  background: var(--gradient-gold-metallic);
  background-size: 200% auto;
  color: var(--deep-navy);
  font-weight: 800;
  border: 1px solid rgba(215, 169, 111, 0.4);
  box-shadow: 0 4px 15px rgba(215, 169, 111, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--gradient-navy-metallic);
  background-size: 200% auto;
  color: var(--golden-bronze);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 30, 52, 0.4);
  border-color: rgba(14, 30, 52, 0.6);
}

.btn-secondary {
  background: var(--gradient-gold-metallic);
  background-size: 200% auto;
  color: var(--deep-navy);
  font-weight: 800;
  border: 1px solid rgba(215, 169, 111, 0.4);
  box-shadow: 0 4px 15px rgba(215, 169, 111, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--gradient-navy-metallic);
  background-size: 200% auto;
  color: var(--golden-bronze);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 30, 52, 0.4);
  border-color: rgba(14, 30, 52, 0.6);
}

.btn-accent {
  background: var(--gradient-gold-metallic);
  background-size: 200% auto;
  color: var(--deep-navy);
  font-weight: 800;
  border: 1px solid rgba(215, 169, 111, 0.4);
  box-shadow: 0 4px 15px rgba(215, 169, 111, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-accent:hover {
  background: var(--gradient-navy-metallic);
  background-size: 200% auto;
  color: var(--golden-bronze);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 30, 52, 0.4);
  border-color: rgba(14, 30, 52, 0.6);
}


.btn-lg {
  padding: 1em 2em;
  font-size: 1.125rem;
}

/* ===== GRID SYSTEM ===== */
.grid {
  display: grid;
  gap: var(--space-8);
  margin-top: var(--space-16);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-4 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

/* ===== CARD SYSTEM ===== */
.value-card, 
.card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Golden accent line on top */
.value-card::before,
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold-metallic);
  opacity: 0.9;
}

/* Hover state */
.value-card:hover,
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(14, 30, 52, 0.4), 0 0 40px rgba(215, 169, 111, 0.2);
  background: linear-gradient(135deg, 
    rgba(14, 30, 52, 0.9) 0%, 
    rgba(14, 30, 52, 0.8) 100%);
  border-color: rgba(215, 169, 111, 0.6);
}

.value-icon {
  width: 90px;
  height: 90px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  color: inherit;
  font-size: 40px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid currentColor;
  opacity: 0.3;
}

.value-card:hover .value-icon {
  background: var(--gradient-gold-metallic);
  transform: scale(1.1) rotate(5deg);
  color: var(--deep-navy);
  box-shadow: 0 0 30px rgba(215, 169, 111, 0.8);
  border-color: var(--golden-bronze);
}

.value-title {
  font-family: 'Merriweather Sans', sans-serif;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  color: inherit;
  line-height: 1.3;
  margin-bottom: var(--space-3);
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  min-height: 2.6em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 400;
  line-height: 1.4;
  color: inherit;
  opacity: 0.8;
  text-align: center;
  margin-bottom: var(--space-3);
}

.value-description {
  font-family: 'Lato', sans-serif;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 400;
  line-height: 1.4;
  color: inherit;
  opacity: 0.9;
  text-align: center;
  margin-bottom: 0;
  flex-grow: 1;
}

.card h3,
.value-card h3 {
  color: inherit;
  margin-bottom: var(--space-4);
  font-size: 1.375rem;
}

.card h4,
.value-card h4 {
  color: inherit;
  opacity: 0.8;
  margin-bottom: var(--space-3);
  font-size: 1rem;
  font-weight: 500;
}

.card p,
.value-card p {
  color: inherit;
  opacity: 0.9;
  line-height: 1.4;
  flex-grow: 1;
}

.value-card .btn {
  margin-top: var(--space-6);
}

/* ===== PARTNERSHIPS SECTION ===== */
#partnerships {
  background: white !important;
  color: var(--text-primary) !important;
}

#partnerships .section-title {
  color: var(--deep-navy) !important;
}

#partnerships .intro-text {
  color: var(--text-secondary) !important;
}

/* ===== INITIATIVE CARDS ===== */
.initiative-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(14, 30, 52, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.initiative-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(14, 30, 52, 0.2);
}

.initiative-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.initiative-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.initiative-card:hover .initiative-image img {
  transform: scale(1.05);
}

.initiative-content {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.initiative-content h3 {
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 1.5rem;
  color: var(--deep-navy);
  margin-bottom: var(--space-4);
  min-height: 3em;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.initiative-content p {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
  flex-grow: 1;
}

.initiative-content .btn {
  align-self: center;
  margin-top: auto;
}

/* Card Icons */
.card-icon {
  font-size: 3rem;
  color: var(--golden-bronze);
  margin-bottom: 1.25rem;
  text-align: center;
}

.card-icon i {
  display: inline-block;
}

/* Implementation Framework Items */
.implementation-item {
  margin-bottom: 1.25rem;
}

.implementation-item:last-child {
  margin-bottom: 0;
}

.implementation-item h4 {
  color: var(--ocean-teal);
  margin-bottom: 0.625rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.implementation-item p {
  color: inherit;
  opacity: 0.9;
  line-height: 1.4;
}

/* ===== PRICING COMPONENTS ===== */
.pricing-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--golden-bronze);
  margin: 1rem 0;
}

.pricing-period {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.8;
}

.pricing-description {
  font-style: italic;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.feature-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li i {
  position: absolute;
  left: 0;
  color: var(--golden-bronze);
}

.feature-list-header {
  font-weight: 600;
  margin-bottom: 1rem;
}

.card-popular {
  border: 2px solid var(--golden-bronze) !important;
  position: relative;
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--golden-bronze);
  color: var(--deep-navy);
  padding: 0.25rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
}

.btn-full-width {
  width: 100%;
  text-align: center;
}

/* ===== TEAM PAGE STYLES ===== */
.hero-buttons {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.section-sage-mist {
  background: linear-gradient(135deg, var(--sage-mist) 0%, var(--white) 100%);
  color: var(--deep-navy);
}

.section-text-centered {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.timeline-title {
  margin-top: 60px;
  margin-bottom: 40px;
  text-align: center;
}

/* ===== PARTNER LOGOS ===== */
.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-6); /* Slightly reduced gap for better fit */
  flex-wrap: nowrap; /* Force single row */
  margin: var(--space-4) 0; /* Reduced spacing around logos */
}

.partner-cta {
  text-align: center;
  margin-top: 1.25rem; /* 20px spacing from logos */
  display: flex;
  justify-content: center;
}

.partner-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 180px;
  margin-bottom: var(--space-4);
  padding: var(--space-3);
  background: var(--white);
  border-radius: var(--radius-md);
}

.partner-logo {
  max-height: 320px;
  max-width: 640px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-logo:hover {
  transform: scale(1.05);
}

/* Grid-6 for partnerships page */
.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-6);
  margin: var(--space-8) 0;
}

@media (max-width: 1200px) {
  .grid-6 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Strategic Clubs Grid - Only 3 clubs */
.strategic-clubs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  margin: var(--space-8) 0; /* Reduced from 64px to 32px */
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.strategic-club-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: center;
  gap: var(--space-10);
  padding: var(--space-10);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  color: inherit;
  border: 2px solid rgba(14, 30, 52, 0.1);
}

.strategic-club-content {
  text-align: left;
  padding-right: var(--space-8);
}

.strategic-club-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--ocean-teal);
}

.strategic-club-logo {
  width: 240px;
  height: 240px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.strategic-club-name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: var(--space-4);
}

.strategic-club-tagline {
  font-size: 1.125rem;
  color: var(--royal-blue);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: var(--space-4);
}

.strategic-club-description {
  font-size: 1.25rem;
  color: rgba(14, 30, 52, 0.8);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

@media (max-width: 768px) {
  .strategic-clubs-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .strategic-club-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .strategic-club-content {
    text-align: center;
    padding-right: 0;
  }
  .strategic-club-logo {
    width: 180px;
    height: 180px;
    margin-bottom: var(--space-4);
  }
}

/* Implementation Partner Sections */
.partner-section {
  margin: var(--space-16) 0 var(--space-10) 0; /* More space above titles */
  text-align: center; /* Center the section */
}

/* Wider container for implementation network */
#implementation-network .container {
  max-width: 1400px;
}

.partner-section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--deep-navy);
  margin-bottom: var(--space-10); /* Increased from 32px to 40px */
  padding-bottom: var(--space-4);
  border-bottom: 3px solid var(--ocean-teal);
  display: inline-block;
}

/* Partner Grid - Max 4 columns, larger cards */
.partner-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin: var(--space-8) auto; /* Center the grid */
  max-width: 1400px; /* Increased width for better centering */
}

/* When grid has only 2 items, center them */
.partner-grid-4:has(:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 300px));
  justify-content: center;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-6);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  border: 2px solid rgba(14, 30, 52, 0.1);
  width: 100%;
  aspect-ratio: 1;
  justify-content: center;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-color: var(--ocean-teal);
}

.partner-logo {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin-bottom: var(--space-3);
}

.partner-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--deep-navy);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.partner-tagline {
  font-size: 1rem;
  color: rgba(14, 30, 52, 0.8);
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .partner-grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .partner-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .partner-grid-4 {
    grid-template-columns: 1fr;
  }
  .partner-logo {
    width: 140px;
    height: 140px;
  }
}

/* Remove old media queries - they're now integrated above */

.partner-img {
  height: 120px; /* Reduced for better fit in single row */
  width: auto;
  max-width: 200px; /* Reduced max-width */
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-img:hover {
  transform: scale(1.05);
}

.partner-img-xl {
  height: 140px; /* Reduced for single row */
  max-width: 240px; /* Reduced max-width */
}

@media (max-width: 768px) {
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: var(--space-8);
    justify-items: center;
    align-items: center;
    max-width: 100%;
    margin: var(--space-8) 0;
  }
  
  /* Center the last logo across both columns */
  .partners-grid .partner-logo:last-child {
    grid-column: 1 / -1;
    justify-self: center;
  }
  
  .partner-img {
    height: 110px;
    max-width: 160px;
    width: auto;
  }
  
  .partner-img-xl {
    height: 130px;
    max-width: 190px;
    width: auto;
  }
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(180deg, 
              rgba(14, 30, 52, 0.92) 0%, 
              rgba(14, 30, 52, 0.85) 50%, 
              rgba(105, 160, 155, 0.5) 100%), 
              url('../images/background/ecosystem.jpg') center/cover;
  background-attachment: scroll;
  color: var(--white);
  text-align: center;
  padding: var(--space-32) 0;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold-metallic);
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: var(--space-6);
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section p {
  font-size: 1.375rem;
  margin-bottom: var(--space-12);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
}

/* ===== MONORAIL PAGE STYLES ===== */

/* Data Table Styles */
.data-table-container {
  margin: 3rem 0;
  overflow-x: auto;
}

.data-table-container h3 {
  color: var(--deep-navy);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
}

.data-table thead {
  background: linear-gradient(135deg, #d7a96f 0%, #c89958 100%);
}

.data-table th {
  padding: 1rem;
  text-align: left;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
}

.data-table td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  color: var(--deep-navy);
}

.data-table tbody tr:hover {
  background: #f8f9fa;
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

/* Objectives Grid */
.objectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.objective-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.objective-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.objective-card i {
  font-size: 2.5rem;
  color: #d7a96f;
  margin-bottom: 1rem;
}

.objective-card p {
  color: var(--deep-navy);
  font-size: 1rem;
  line-height: 1.5;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #d7a96f 0%, #c89958 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--deep-navy);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Partnership Grid */
.partnership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.partnership-card {
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.partnership-card h3 {
  color: var(--deep-navy);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.partnership-card ul {
  list-style: none;
  padding: 0;
}

.partnership-card li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--deep-navy);
  line-height: 1.6;
}

.partnership-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d7a96f;
  font-weight: bold;
}

/* Benefits Grid */
.benefits-grid {
  margin: 2rem 0;
}

.benefit-card {
  padding: 2rem;
  background: rgba(215, 169, 111, 0.05);
  border-left: 4px solid #d7a96f;
  border-radius: 8px;
}

.benefit-card h4 {
  color: var(--deep-navy);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.benefit-card ul {
  list-style: none;
  padding: 0;
}

.benefit-card li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--deep-navy);
}

.benefit-card li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d7a96f;
  font-weight: bold;
}

/* Timeline Updates for Monorail */
.timeline-marker {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d7a96f 0%, #c89958 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.timeline-content h3 {
  color: var(--deep-navy);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

/* Subsection Styles */
.subsection {
  margin: 3rem 0;
}

.subsection h3 {
  color: var(--deep-navy);
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  font-weight: 700;
}

.subsection p {
  color: var(--deep-navy);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ===== FOOTER ===== */
footer {
  background-image: 
    linear-gradient(180deg, 
      rgba(14, 30, 52, 0.95) 0%, 
      rgba(14, 30, 52, 0.9) 100%),
    url('../images/background/ocean.jpg');
  background-size: cover;
  background-position: center bottom;
  background-attachment: scroll;
  color: var(--white);
  padding: var(--space-16) 0 var(--space-8);
  border-top: 1px solid var(--golden-bronze);
}

.footer-content {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
  justify-content: space-between;
}

.footer-section {
  flex: 1;
  min-width: 180px;
}

.footer-section h3 {
  color: var(--golden-bronze);
  margin-bottom: var(--space-4);
  font-size: 1.125rem;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: var(--space-1);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.footer-section a:hover {
  color: var(--golden-bronze);
}

.footer-bottom {
  padding-top: var(--space-6);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.footer-tagline {
  color: var(--golden-bronze);
  font-weight: 600;
  letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
  .footer-content {
    flex-wrap: wrap;
    gap: var(--space-6);
  }
  
  .footer-section {
    min-width: 150px;
  }
}

/* ===== TIMELINE COMPONENT ===== */
.timeline {
  position: relative;
  padding: var(--space-8) 0;
  margin: var(--space-6) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-gold-metallic);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  padding: var(--space-8) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: calc(50% + var(--space-8));
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: calc(50% + var(--space-8));
}

.timeline-year {
  position: absolute;
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--deep-navy);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.timeline-item:nth-child(odd) .timeline-year {
  left: calc(50% + 30px);
}

.timeline-item:nth-child(even) .timeline-year {
  right: calc(50% + 30px);
}

.timeline-content {
  width: calc(50% - var(--space-10));
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(14, 30, 52, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}

/* Rainbow Timeline Stages */
.timeline-item:nth-child(1) .timeline-content {
  background: white;
  border-left: 4px solid #ff6b6b;
}
.timeline-item:nth-child(1) .timeline-year {
  color: #ff6b6b !important;
}

.timeline-item:nth-child(2) .timeline-content {
  background: white;
  border-left: 4px solid #ffa500;
}
.timeline-item:nth-child(2) .timeline-year {
  color: #ffa500 !important;
}

.timeline-item:nth-child(3) .timeline-content {
  background: white;
  border-left: 4px solid #ffd700;
}
.timeline-item:nth-child(3) .timeline-year {
  color: #ffd700 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

.timeline-item:nth-child(4) .timeline-content {
  background: white;
  border-left: 4px solid #4caf50;
}
.timeline-item:nth-child(4) .timeline-year {
  color: #4caf50 !important;
}

.timeline-item:nth-child(5) .timeline-content {
  background: white;
  border-left: 4px solid #00bcd4;
}
.timeline-item:nth-child(5) .timeline-year {
  color: #00bcd4 !important;
}

.timeline-item:nth-child(6) .timeline-content {
  background: white;
  border-left: 4px solid #3f51b5;
}
.timeline-item:nth-child(6) .timeline-year {
  color: #3f51b5 !important;
}

.timeline-item:nth-child(7) .timeline-content {
  background: white;
  border-left: 4px solid #673ab7;
}
.timeline-item:nth-child(7) .timeline-year {
  color: #673ab7 !important;
}

.timeline-item:nth-child(8) .timeline-content {
  background: white;
  border-left: 4px solid #9c27b0;
}
.timeline-item:nth-child(8) .timeline-year {
  color: #9c27b0 !important;
}

.timeline-content h4 {
  color: var(--deep-navy);
  margin-bottom: var(--space-2);
  text-align: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.timeline-content p {
  color: var(--deep-navy);
  opacity: 0.9;
  text-align: center;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  background: var(--gradient-gold-metallic);
  border: 3px solid var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(215, 169, 111, 0.6);
  z-index: 1;
}

@media (max-width: 768px) {
  .timeline::before { left: 20px; }
  .timeline-item { 
    padding-left: 60px;
    justify-content: flex-start;
  }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin: 0;
    width: 100%;
  }
  .timeline-item:nth-child(odd) .timeline-year,
  .timeline-item:nth-child(even) .timeline-year {
    left: 60px;
    right: auto;
    top: 0;
    font-size: 1.25rem;
  }
  .timeline-dot { 
    left: 20px;
    transform: translate(0, -50%);
  }
}

/* ===== TEAM CARDS COMPONENT ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-8);
  margin: var(--space-6) 0;
}

.team-card {
  background: linear-gradient(135deg, 
    rgba(14, 30, 52, 0.95) 0%, 
    rgba(14, 30, 52, 0.90) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(215, 169, 111, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold-metallic);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(14, 30, 52, 0.4);
  border-color: rgba(215, 169, 111, 0.6);
}

.team-member-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--golden-bronze);
  margin: 0 auto var(--space-6);
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.team-member-header {
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(215, 169, 111, 0.2);
  text-align: center;
}

.team-member-name {
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--golden-bronze);
  margin-bottom: var(--space-2);
}

.team-member-role {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

.team-member-bio {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.team-member-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.specialty-tag {
  padding: var(--space-2) var(--space-4);
  background: rgba(192, 152, 88, 0.15);
  border: 1px solid rgba(192, 152, 88, 0.4);
  border-radius: 20px;
  font-size: 1rem;
  color: #c09858;
  transition: all 0.2s ease;
  display: inline-block;
}

.specialty-tag:hover {
  background: rgba(215, 169, 111, 0.25);
  transform: translateY(-1px);
}

/* Associate cards - simpler version */
.team-card-associate {
  background: linear-gradient(135deg, 
    rgba(14, 30, 52, 0.6) 0%, 
    rgba(14, 30, 52, 0.5) 100%);
  padding: var(--space-6);
}

.team-card-associate .team-member-name {
  font-size: 1.25rem;
}

/* ===== PRICING TABLES COMPONENT ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin: var(--space-6) 0;
  align-items: stretch;
}

.pricing-card {
  background: linear-gradient(135deg, 
    rgba(14, 30, 52, 0.85) 0%, 
    rgba(14, 30, 52, 0.75) 100%);
  border: 2px solid rgba(215, 169, 111, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(14, 30, 52, 0.5);
  border-color: var(--golden-bronze);
}

.pricing-card.featured {
  border-color: var(--golden-bronze);
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(215, 169, 111, 0.3);
}

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold-metallic);
  color: var(--deep-navy);
  padding: var(--space-2) var(--space-6);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 2px 10px rgba(215, 169, 111, 0.3);
}

.pricing-tier {
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--golden-bronze);
  margin-bottom: var(--space-2);
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-2);
}

.pricing-amount .currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.pricing-period {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-6);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-8);
  flex-grow: 1;
}

.pricing-features li {
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(215, 169, 111, 0.1);
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  line-height: 1.4;
}

.pricing-features li::before {
  content: '✓';
  color: var(--golden-bronze);
  font-weight: 700;
  font-size: 1.25rem;
}

.pricing-cta {
  margin-top: auto;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .pricing-card.featured {
    transform: scale(1);
  }
}

/* ===== STATISTICS DISPLAY COMPONENT ===== */
.stats-container {
  margin: var(--space-6) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
}

.stat-item {
  background: linear-gradient(135deg, 
    rgba(14, 30, 52, 0.95) 0%, 
    rgba(14, 30, 52, 0.9) 100%);
  border: 2px solid rgba(215, 169, 111, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: var(--golden-bronze);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold-metallic);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.stat-item > i {
  font-size: 2.5rem;
  color: var(--golden-bronze);
  margin-bottom: 1rem;
  display: block;
}

.stat-number {
  font-family: 'Cinzel', serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--golden-bronze);
  line-height: 1;
  margin-bottom: var(--space-2);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: var(--space-2);
}

/* ===== PROCESS STEPS COMPONENT ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin: var(--space-6) 0;
}

.step-card {
  text-align: center;
  position: relative;
  padding: var(--space-8);
  background: linear-gradient(135deg, 
    rgba(14, 30, 52, 0.95) 0%, 
    rgba(14, 30, 52, 0.90) 100%);
  border: 2px solid rgba(215, 169, 111, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: var(--golden-bronze);
  background: linear-gradient(135deg, 
    rgba(14, 30, 52, 0.98) 0%, 
    rgba(14, 30, 52, 0.95) 100%);
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-gold-metallic);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--deep-navy);
  box-shadow: 0 4px 20px rgba(215, 169, 111, 0.3);
  transition: all 0.3s ease;
}

.step-card:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 30px rgba(215, 169, 111, 0.5);
}

.step-title {
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--golden-bronze);
  margin-bottom: var(--space-4);
}

.step-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* ===== TEAM MEMBER SPOTLIGHT COMPONENT ===== */
.team-spotlight {
  background: linear-gradient(135deg, 
    rgba(14, 30, 52, 0.98) 0%, 
    rgba(14, 30, 52, 0.95) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-20);
  margin: var(--space-12) calc(-1 * var(--space-12));
  width: calc(100% + var(--space-24));
  border: 2px solid rgba(215, 169, 111, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.team-spotlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold-metallic);
}

.team-spotlight-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.team-spotlight-image {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--golden-bronze);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: var(--space-8);
}

.team-spotlight-info {
  color: var(--white);
  text-align: center;
  width: 100%;
}

.team-spotlight-header {
  border-bottom: 2px solid rgba(215, 169, 111, 0.3);
  padding-bottom: var(--space-6);
  margin-bottom: var(--space-8);
  text-align: center;
}

.team-spotlight-name {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--golden-bronze);
  margin-bottom: var(--space-2);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.team-spotlight-role {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-bottom: var(--space-4);
}

.team-spotlight-bio {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-8);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.team-spotlight-bio p {
  margin-bottom: var(--space-4);
}

.team-spotlight-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-10);
  width: 100%;
}

.team-spotlight-section {
  text-align: left;
}

.team-spotlight-section h4 {
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 1.375rem;
  color: var(--golden-bronze);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.team-spotlight-section h4 i {
  font-size: 1.125rem;
  opacity: 0.8;
}

.team-spotlight-list {
  list-style: none;
  padding: 0;
}

.team-spotlight-list li {
  padding: var(--space-2) 0;
  padding-left: var(--space-6);
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: clamp(16px, 2vw, 18px);
}

.team-spotlight-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--golden-bronze);
  font-weight: 700;
}

.team-spotlight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin: var(--space-8) 0;
  row-gap: var(--space-4);
  justify-content: center;
}

.team-spotlight-tag {
  padding: 5px 12px;
  background: rgba(215, 169, 111, 0.15);
  border: 1px solid rgba(215, 169, 111, 0.4);
  border-radius: 25px;
  color: var(--golden-bronze);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.team-spotlight-tag:hover {
  background: rgba(215, 169, 111, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 2px 10px rgba(215, 169, 111, 0.3);
}

.team-spotlight-quote {
  background: linear-gradient(135deg, 
    rgba(215, 169, 111, 0.12) 0%, 
    rgba(215, 169, 111, 0.06) 100%);
  border-left: 4px solid var(--golden-bronze);
  padding: var(--space-8);
  margin: var(--space-10) 0;
  border-radius: var(--radius-md);
  position: relative;
}

.team-spotlight-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--golden-bronze);
  opacity: 0.3;
  font-family: 'Cinzel', serif;
}

.team-spotlight-quote p {
  font-size: clamp(18px, 2.2vw, 22px);
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin: 0;
  position: relative;
  z-index: 1;
}

.team-spotlight-full-quote {
  background: linear-gradient(135deg, 
    rgba(215, 169, 111, 0.06) 0%, 
    rgba(215, 169, 111, 0.03) 100%);
  border: 1px solid rgba(215, 169, 111, 0.2);
  padding: var(--space-12);
  margin: var(--space-6) 0;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
}

.team-spotlight-full-quote .quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-style: italic;
  color: var(--golden-bronze);
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto var(--space-6);
}

.team-spotlight-full-quote .quote-author {
  font-family: 'Cinzel', serif;
  font-size: 1.125rem;
  color: var(--golden-bronze);
  font-weight: 600;
}

/* ===== TESTIMONIALS COMPONENT ===== */
.testimonial-quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: var(--space-12) auto;
  max-width: 900px;
}

.testimonial-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 4px solid var(--golden-bronze);
  box-shadow: 0 0 30px rgba(215, 169, 111, 0.3);
  object-fit: cover;
  margin-bottom: var(--space-6);
}

.testimonial-name {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: var(--golden-bronze);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.testimonial-quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--deep-navy);
  line-height: 1.8;
  margin-bottom: var(--space-6);
  padding: 0 var(--space-8);
}

.testimonial-subtitle {
  font-family: 'Cinzel', serif;
  font-size: 1.375rem;
  color: var(--deep-navy);
  font-weight: 600;
  margin: var(--space-8) 0 var(--space-6);
}

.testimonial-bio {
  font-size: 1.125rem;
  color: rgba(14, 30, 52, 0.8);
  line-height: 1.7;
  max-width: 900px;
  margin-top: 0;
}

/* Circular Sphere Cards */
.spheres-grid-circular {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin: var(--space-12) 0;
}

@media (max-width: 1024px) {
  .spheres-grid-circular {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .spheres-grid-circular {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .spheres-grid-circular {
    grid-template-columns: 1fr;
  }
}

.sphere-card-circular {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.sphere-card-circular:hover {
  transform: scale(1.05);
}

.sphere-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border: 3px solid rgba(215, 169, 111, 0.5);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.sphere-circle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(14, 30, 52, 0.7) 0%, 
    rgba(14, 30, 52, 0.5) 100%);
  transition: opacity 0.3s ease;
}

.sphere-card-circular:hover .sphere-circle::before {
  opacity: 0.4;
}

.sphere-circle-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.sphere-circle-number {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 35px;
  height: 35px;
  background: var(--gradient-gold-metallic);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--deep-navy);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 3;
}

.sphere-circle-icon {
  font-size: 2.5rem;
  color: var(--golden-bronze);
  margin-bottom: var(--space-2);
}

.sphere-circle-title {
  font-family: 'Cinzel', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Sphere Categories Explanation */
.sphere-categories {
  background: linear-gradient(135deg, 
    rgba(14, 30, 52, 0.95) 0%, 
    rgba(14, 30, 52, 0.9) 100%);
  border: 2px solid rgba(215, 169, 111, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  margin: var(--space-12) 0;
  text-align: center;
  width: 100%;
  max-width: none;
}

.sphere-category {
  margin-bottom: var(--space-6);
}

.sphere-category:last-child {
  margin-bottom: 0;
}

.sphere-category h4 {
  font-family: 'Cinzel', serif;
  font-size: 1.625rem;
  color: var(--golden-bronze);
  margin-bottom: var(--space-6);
  text-align: center;
  font-weight: 600;
}

/* Flow Arrow between sections */
.flow-arrow {
  text-align: center;
  padding: var(--space-8) 0;
  position: relative;
}

.flow-arrow i {
  font-size: 2.5rem;
  color: var(--golden-bronze);
  animation: bounce 2s infinite;
  display: block;
  margin-bottom: var(--space-2);
}

.flow-arrow .arrow-text {
  display: block;
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 1.125rem;
  color: var(--deep-navy);
  font-weight: 500;
  opacity: 0.8;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Needs Boxes - New three-column design */
.needs-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-4);
}

.needs-box {
  padding: var(--space-10);
  border-radius: var(--radius-lg);
  border: 2px solid;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.needs-box:hover {
  transform: translateY(-5px);
}

/* Primary Needs Box - Golden background */
.needs-box.primary-needs {
  background: linear-gradient(135deg, 
    var(--golden-bronze) 0%, 
    rgba(215, 169, 111, 0.95) 100%);
  border-color: rgba(215, 169, 111, 0.5);
  color: var(--deep-navy);
}

.needs-box.primary-needs .needs-spheres {
  border-bottom-color: rgba(14, 30, 52, 0.3);
}

.needs-box.primary-needs:hover {
  box-shadow: 0 10px 30px rgba(215, 169, 111, 0.4);
}

/* Civilized Needs Box - Using template ocean teal */
.needs-box.civilized-needs {
  background: linear-gradient(135deg, 
    var(--ocean-teal) 0%, 
    rgba(96, 141, 159, 0.95) 100%);
  border-color: rgba(96, 141, 159, 0.5);
  color: var(--white);
}

.needs-box.civilized-needs:hover {
  box-shadow: 0 10px 30px rgba(96, 141, 159, 0.4);
}

/* Transcendental Needs Box - Using template deep navy */
.needs-box.evolution-needs {
  background: linear-gradient(135deg, 
    var(--deep-navy) 0%, 
    rgba(14, 30, 52, 0.95) 100%);
  border-color: var(--golden-bronze);
  color: var(--white);
}

.needs-box.evolution-needs:hover {
  box-shadow: 0 10px 30px rgba(215, 169, 111, 0.3);
}

.needs-numbers {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 700;
  opacity: 0.5;
  color: inherit;
}

.needs-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-6);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: inherit;
}

.needs-title {
  color: inherit;
  font-size: 1.75rem;
  font-family: 'Cinzel', serif;
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.needs-subtitle {
  color: inherit;
  font-size: 1.25rem;
  font-family: var(--font-accent);
  margin-bottom: var(--space-4);
  font-weight: 600;
  font-style: italic;
  opacity: 0.95;
}

.needs-spheres {
  color: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  opacity: 0.85;
}

.needs-description {
  color: inherit;
  line-height: 1.8;
  font-size: 1.125rem;
  opacity: 0.9;
  text-align: left;
}

@media (max-width: 1024px) {
  .needs-boxes {
    grid-template-columns: 1fr;
  }
}

.sphere-category p {
  color: var(--white);
  line-height: 1.6;
  font-size: 1.125rem;
  opacity: 0.95;
}

.testimonials-section {
  padding: var(--space-12) 0;
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin: var(--space-6) 0;
}

.testimonial-card {
  width: 100%;
}

.testimonial-content {
  background: linear-gradient(135deg, 
    rgba(14, 30, 52, 0.95) 0%, 
    rgba(14, 30, 52, 0.9) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  text-align: center;
  border: 2px solid rgba(215, 169, 111, 0.2);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  position: relative;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 40px;
  font-size: 5rem;
  color: var(--golden-bronze);
  opacity: 0.2;
  font-family: 'Cinzel', serif;
  line-height: 1;
}

.testimonial-text {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-8);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}

.testimonial-author img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--golden-bronze);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-author-info {
  text-align: left;
}

.testimonial-author-name {
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 1.125rem;
  color: var(--golden-bronze);
  font-weight: 700;
}

.testimonial-author-role {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

.team-spotlight-social {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  margin-top: var(--space-8);
}

.team-social-link {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, 
    rgba(215, 169, 111, 0.15) 0%, 
    rgba(215, 169, 111, 0.1) 100%);
  border: 2px solid rgba(215, 169, 111, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--golden-bronze);
  text-decoration: none;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.team-social-link:hover {
  background: var(--gradient-gold-metallic);
  color: var(--deep-navy);
  transform: translateY(-4px) rotate(5deg);
  box-shadow: 0 6px 20px rgba(215, 169, 111, 0.4);
}

.team-social-link.website {
  width: auto;
  min-width: auto;
  padding: 0 var(--space-6);
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  gap: var(--space-2);
}

@media (max-width: 768px) {
  .team-spotlight {
    padding: var(--space-8);
    margin: var(--space-8) 0;
    width: 100%;
  }
  
  .team-spotlight-image {
    width: 250px;
    height: 250px;
  }
  
  .team-spotlight-name {
    font-size: 2rem;
  }
  
  .team-spotlight-sections {
    grid-template-columns: 1fr;
  }
}

/* ===== IMAGE + TEXT COMPONENT ===== */
.image-text-section {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  margin: var(--space-6) 0;
}

.image-text-section.reverse {
  flex-direction: row-reverse;
}

.image-container {
  flex: 0 0 40%;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(215, 169, 111, 0.2);
}

.text-container {
  flex: 1;
  padding: var(--space-8);
}

.text-container h3 {
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: inherit;
  margin-bottom: var(--space-4);
}

.text-container h4 {
  font-size: 1.5rem;
  color: inherit;
  margin-bottom: var(--space-4);
  font-weight: 700;
  opacity: 0.95;
}

/* Specific color overrides for different backgrounds */
/* Sage mist background - needs dark text */
main section:nth-child(4) .text-container h4 {
  color: var(--deep-navy);
}

/* Ocean teal background - needs dark text for contrast */
main section:nth-child(5) .text-container h4 {
  color: var(--deep-navy);
}

.text-container p {
  font-size: clamp(18px, 2.5vw, 20px);
  font-weight: 400;
  line-height: 1.4;
  color: inherit;
  opacity: 0.9;
  margin-bottom: var(--space-6);
}

.text-container .btn {
  margin-top: var(--space-4);
}

@media (max-width: 768px) {
  .image-text-section,
  .image-text-section.reverse {
    flex-direction: column;
  }
  
  .image-container {
    flex: 1;
    width: 100%;
  }
  
  .text-container {
    padding: var(--space-6) 0;
  }
}

/* ===== GEOMETRY IMAGE COMPONENT ===== */
.geometry-image {
  text-align: center;
  margin: var(--space-8) 0 var(--space-12);
}

.geometry-image img {
  max-width: 300px;
  height: auto;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.geometry-image img:hover {
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .geometry-image img {
    max-width: 200px;
  }
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d7a96f 0%, #e5c89f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(215, 169, 111, 0.3);
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(215, 169, 111, 0.4);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top i {
  color: var(--deep-navy);
  font-size: 1.25rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  /* Mobile section spacing - scaled down but still generous - CACHE CLEAR 21:00 */
  section { 
    padding: var(--space-12) 0; /* 48px on mobile - efficient spacing */
    overflow-x: hidden !important;
  }
  main section:nth-child(2) { padding: var(--space-16) 0; } /* 64px for first section on mobile */
  .container { 
    padding: 0 var(--space-4); 
    max-width: 100%;
    overflow-x: hidden;
  }
  
  /* Mobile hero - fullscreen */
  .hero {
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
  }
  
  /* Hide membership page hero on mobile only - show on iPad */
  @media (max-width: 768px) {
    .hero-membership {
      display: none !important;
    }
  }
  
  /* Remove parallax effect on mobile/tablet for smooth performance */
  .hero,
  .hero-membership,
  .hero-vision,
  .hero-mission,
  .hero-about,
  .hero-partnerships,
  .hero-solutions,
  .hero-initiatives,
  .hero-team,
  .hero-contact,
  .hero-biofactory {
    background-attachment: scroll !important;
  }
  
  /* Add top padding to first section on membership page when hero is hidden */
  #membership {
    padding-top: calc(80px + var(--space-16)) !important; /* nav height + spacing */
  }
  
  /* Ensure content is centered and readable */
  .hero-content {
    padding: var(--space-8) var(--space-4);
    text-align: center;
  }
  
  /* Hero title already lighter globally, no need for brightness filter */
  
  /* Remove the section background square cropping - it's causing issues
     Only apply square cropping to actual img elements, not background sections */
  
  /* For image containers within sections */
  .image-container {
    aspect-ratio: 1 / 1 !important;
    overflow: hidden;
  }
  
  .image-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
  
  /* For standalone section images above titles - only if from background folder */
  .section-image[src*="/background/"] {
    width: 100% !important;
    max-width: 100% !important;
    height: 80vw !important;
    max-height: 80vw !important;
    object-fit: cover !important;
    object-position: center center !important;
    aspect-ratio: 1 / 1 !important;
  }
  
  /* Centered section images container */
  .section-centered {
    max-width: 100% !important;
    margin: 0 auto var(--space-8) auto;
  }
  
  /* Only crop landscape images in centered sections */
  .section-centered img[src*="/background/"] {
    width: 100% !important;
    height: 80vw !important;
    object-fit: cover !important;
    aspect-ratio: 1 / 1 !important;
  }
  
  /* Exclude geometry folder images from square cropping */
  .section-image[src*="/geometry/"],
  .section-centered img[src*="/geometry/"] {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    aspect-ratio: unset !important;
  }
  
  /* Fix biodiversity arc logo on mobile */
  .section-centered img[src*="biodiversity-arc.png"] {
    max-width: 100% !important;
    height: auto !important;
    max-height: 120px !important;
    width: auto !important;
  }
  
  .grid { gap: var(--space-6); margin: var(--space-4) 0; }
}

/* Footer bottom link hover styles */
.footer-bottom a:hover {
  color: var(--golden-bronze) !important;
}
