/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --green: #1B7A2B;
  --green-dark: #145E21;
  --green-light: #2DA842;
  --yellow: #F5C518;
  --yellow-light: #FFD94A;
  --dark: #0D1117;
  --dark-soft: #161B22;
  --gray-900: #1A1D23;
  --gray-800: #21252B;
  --gray-700: #2C3038;
  --gray-400: #8B949E;
  --gray-300: #B1BAC4;
  --white: #FFFFFF;
  --glass: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--gray-300);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--white); line-height: 1.2; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 3px;
  color: var(--yellow); margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 32px; height: 2px; background: var(--yellow); border-radius: 999px;
}
.section-title { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 20px; }
.section-subtitle { font-size: 1.1rem; color: var(--gray-400); max-width: 640px; margin-bottom: 48px; }
.highlight { color: var(--yellow); }
.highlight-green { color: var(--green-light); }
.centered { text-align: center; }
.centered .section-label { justify-content: center; }
.centered .section-subtitle { margin-left: auto; margin-right: auto; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  transition: var(--transition); cursor: pointer; border: none; font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white); box-shadow: 0 4px 24px rgba(27,122,43,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(27,122,43,0.5); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid var(--glass-border);
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-white {
  background: var(--white); color: var(--green-dark); font-weight: 700;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { border-color: var(--white); }
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 0; transform: scale(0.9); transition: opacity 0.6s ease, transform 0.6s ease; }
.scale-in.visible { opacity: 1; transform: scale(1); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(27,122,43,0.3); }
  50% { box-shadow: 0 0 40px rgba(27,122,43,0.6); }
}
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ===== PAGE HEADER (for inner pages) ===== */
.page-header {
  padding: 160px 0 80px; position: relative; overflow: hidden;
  background: var(--dark-soft);
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(27,122,43,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(245,197,24,0.08) 0%, transparent 50%);
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem); margin-bottom: 16px;
}
.page-header p { font-size: 1.15rem; color: var(--gray-400); max-width: 600px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px; margin-bottom: 20px;
  font-size: 0.85rem; color: var(--gray-400);
}
.breadcrumb a { color: var(--yellow); transition: var(--transition); }
.breadcrumb a:hover { color: var(--yellow-light); }
.breadcrumb .sep { color: var(--gray-700); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(13,17,23,0.92); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border); padding: 10px 0;
}
.navbar.nav-open {
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { width: 44px; height: 44px; border-radius: 12px; object-fit: cover; }
.nav-logo span { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.15rem; color: var(--white); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--gray-400);
  transition: var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--yellow); border-radius: 999px; transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--yellow); }
.nav-links a.active::after { width: 100%; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 999px; transition: var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center; position: relative;
  overflow: hidden; padding-top: 80px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.15; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,17,23,0.95) 0%, rgba(27,122,43,0.15) 50%, rgba(13,17,23,0.9) 100%);
}
.hero-orb {
  position: absolute; top: 15%; right: 5%; width: 450px; height: 450px;
  border-radius: 50%; z-index: 1; pointer-events: none;
  background: radial-gradient(circle, rgba(27,122,43,0.12) 0%, transparent 70%);
  filter: blur(60px); animation: float 8s ease-in-out infinite;
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content { max-width: 600px; }
.hero-badge, .hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(27,122,43,0.15); border: 1px solid rgba(27,122,43,0.3);
  border-radius: 50px; padding: 8px 20px; font-size: 0.82rem; font-weight: 500;
  color: var(--green-light); margin-bottom: 24px;
}
.hero-badge .dot, .hero-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-light); animation: pulse-glow 2s infinite; display: inline-block; }
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 8px;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-signature {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600;
  color: var(--yellow); margin-bottom: 24px; font-style: italic;
}
.hero p { font-size: 1.1rem; margin-bottom: 36px; color: var(--gray-400); max-width: 520px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--glass-border);
}
.hero-stat-value {
  font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 800;
  color: var(--white); line-height: 1;
}
.hero-stat-label { font-size: 0.8rem; color: var(--gray-400); margin-top: 4px; }
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.hero-logo-wrapper {
  position: relative; width: 380px; height: 380px;
  display: flex; align-items: center; justify-content: center;
  animation: float 6s ease-in-out infinite;
}
.hero-logo-wrapper::before {
  content: ''; position: absolute; inset: -20px; border-radius: 50%;
  background: radial-gradient(circle, rgba(27,122,43,0.2) 0%, transparent 70%);
}
.hero-logo-wrapper img {
  width: 300px; height: 300px; object-fit: contain; border-radius: 50%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.hero-orbit {
  position: absolute; width: 100%; height: 100%;
  border: 1px dashed rgba(245,197,24,0.15); border-radius: 50%;
  animation: spin 30s linear infinite;
}
.hero-orbit-dot {
  position: absolute; top: 0; left: 50%; width: 10px; height: 10px;
  background: var(--yellow); border-radius: 50%; transform: translate(-50%, -50%);
  box-shadow: 0 0 16px rgba(245,197,24,0.5);
}
.hero h1 .highlight {
  -webkit-text-fill-color: var(--yellow); background: none;
  -webkit-background-clip: unset; background-clip: unset;
}
.hero-text { max-width: 600px; }
.hero-subtitle { font-size: 1.1rem; margin-bottom: 36px; color: var(--gray-400); max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-card {
  padding: 32px; text-align: center; animation: float 6s ease-in-out infinite;
}
.hero-card img {
  width: 200px; height: 200px; border-radius: 50%; object-fit: contain;
  margin: 0 auto 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  animation: pulse-glow 4s ease-in-out infinite;
}
.hero-card-text h4 { font-size: 1.3rem; margin-bottom: 6px; }
.hero-card-text p { font-size: 0.95rem; color: var(--gray-400); }
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--white); opacity: 0.5;
  animation: float 2.5s ease-in-out infinite; transition: var(--transition);
}
.scroll-indicator:hover { opacity: 1; }

/* ===== STATS ===== */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center;
}
.stat { padding: 24px; }
.stat-number {
  font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800; color: var(--yellow); line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 0.9rem; color: var(--gray-400); font-weight: 500; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image-stack { position: relative; height: 500px; }
.about-img-main {
  width: 70%; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.3); position: relative; z-index: 2;
}
.about-img-main img { width: 100%; height: 400px; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: 0; right: 0; width: 55%;
  border-radius: var(--radius); overflow: hidden; z-index: 3;
  border: 4px solid var(--dark); box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.about-img-secondary img { width: 100%; height: 250px; object-fit: cover; }
.about-tag {
  position: absolute; top: 30px; right: 20px; z-index: 4;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white); padding: 16px 24px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 1.6rem; text-align: center;
  box-shadow: 0 8px 24px rgba(27,122,43,0.4);
}
.about-tag small { display: block; font-size: 0.7rem; font-weight: 500; opacity: 0.85; letter-spacing: 1px; }
.about-text p { margin-bottom: 20px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.about-feature {
  display: flex; align-items: center; gap: 12px; padding: 14px;
  border-radius: var(--radius-sm); background: var(--glass);
  border: 1px solid var(--glass-border);
}
.about-feature-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(27,122,43,0.15); border-radius: 10px;
  color: var(--green-light); font-size: 1.1rem;
}
.about-feature span { font-size: 0.88rem; font-weight: 500; color: var(--gray-300); }

/* ===== VISION / MISSION ===== */
.bg-dark-soft { background: var(--dark-soft); }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.vm-card {
  padding: 48px; border-radius: var(--radius); position: relative; overflow: hidden;
}
.vm-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
}
.vm-card.vision { background: rgba(27,122,43,0.06); border: 1px solid rgba(27,122,43,0.15); }
.vm-card.vision::before { background: linear-gradient(to bottom, var(--green), var(--green-light)); }
.vm-card.mission { background: rgba(245,197,24,0.04); border: 1px solid rgba(245,197,24,0.12); }
.vm-card.mission::before { background: linear-gradient(to bottom, var(--yellow), var(--yellow-light)); }
.vm-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 24px;
}
.vision .vm-icon { background: rgba(27,122,43,0.15); color: var(--green-light); }
.mission .vm-icon { background: rgba(245,197,24,0.12); color: var(--yellow); }
.vm-card h3 { font-size: 1.6rem; margin-bottom: 16px; }
.vm-card p { font-size: 1rem; line-height: 1.8; }

/* ===== SPECIFIC MISSIONS ===== */
.missions-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.mission-item {
  padding: 28px; border-radius: var(--radius-sm);
  background: var(--glass); border: 1px solid var(--glass-border);
  transition: var(--transition); position: relative; overflow: hidden;
}
.mission-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.mission-item:hover::before { transform: scaleX(1); }
.mission-item:hover { border-color: rgba(27,122,43,0.3); transform: translateY(-4px); }
.mission-num {
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800;
  color: rgba(245,197,24,0.15); margin-bottom: 12px; line-height: 1;
}
.mission-item p { font-size: 0.92rem; color: var(--gray-400); }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  padding: 36px 28px; border-radius: var(--radius);
  background: var(--glass); border: 1px solid var(--glass-border);
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(27,122,43,0.3); }
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(27,122,43,0.15), rgba(27,122,43,0.05));
  color: var(--green-light);
}
.service-card h4 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--gray-400); line-height: 1.7; }

/* ===== TARGET AUDIENCE ===== */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.audience-card {
  padding: 32px; text-align: center; border-radius: var(--radius);
  background: var(--glass); border: 1px solid var(--glass-border);
  transition: var(--transition);
}
.audience-card:hover { transform: translateY(-4px); border-color: rgba(245,197,24,0.2); }
.audience-icon {
  width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
  background: linear-gradient(135deg, rgba(245,197,24,0.12), rgba(245,197,24,0.04));
  color: var(--yellow);
}
.audience-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.audience-card p { font-size: 0.85rem; color: var(--gray-400); }

/* ===== VALUE PROPOSITION ===== */
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.value-list { display: flex; flex-direction: column; gap: 20px; }
.value-item {
  display: flex; gap: 20px; padding: 24px;
  border-radius: var(--radius-sm); background: var(--glass);
  border: 1px solid var(--glass-border); transition: var(--transition);
}
.value-item:hover { border-color: rgba(27,122,43,0.3); }
.value-num {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px; font-weight: 800; font-size: 1rem;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
}
.value-item p { font-size: 0.95rem; color: var(--gray-300); }
.value-image { border-radius: var(--radius); overflow: hidden; box-shadow: 0 24px 48px rgba(0,0,0,0.3); }
.value-image img { width: 100%; height: 480px; object-fit: cover; object-position: top; }

/* ===== MEMBERSHIP ===== */
.membership-container { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.membership-types { display: flex; flex-direction: column; gap: 20px; }
.membership-type {
  display: flex; align-items: center; gap: 20px; padding: 24px;
  border-radius: var(--radius-sm); background: var(--glass);
  border: 1px solid var(--glass-border); transition: var(--transition);
}
.membership-type:hover { border-color: rgba(245,197,24,0.2); transform: translateX(8px); }
.membership-type-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px; font-size: 1.3rem;
  background: rgba(245,197,24,0.1); color: var(--yellow);
}
.membership-type h4 { font-size: 1.05rem; margin-bottom: 4px; }
.membership-type p { font-size: 0.85rem; color: var(--gray-400); }
.membership-details {
  padding: 40px; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(27,122,43,0.08), rgba(245,197,24,0.04));
  border: 1px solid rgba(27,122,43,0.15);
}
.membership-details h3 { font-size: 1.4rem; margin-bottom: 24px; }
.detail-item { display: flex; gap: 12px; margin-bottom: 16px; }
.detail-check {
  width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%;
  background: rgba(27,122,43,0.2); color: var(--green-light);
  display: flex; align-items: center; justify-content: center; font-size: 0.8rem; margin-top: 2px;
}
.detail-item p { font-size: 0.92rem; color: var(--gray-300); }

/* ===== FEES ===== */
.fees-card {
  max-width: 800px; margin: 0 auto; padding: 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(27,122,43,0.08), rgba(245,197,24,0.05));
  border: 1px solid rgba(27,122,43,0.15);
}
.fees-card h3 { font-size: 1.5rem; margin-bottom: 24px; text-align: center; }
.fees-highlights {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px;
}
.fee-highlight {
  text-align: center; padding: 28px 20px; border-radius: var(--radius-sm);
  background: var(--glass); border: 1px solid var(--glass-border);
}
.fee-highlight .number {
  font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 800;
  color: var(--yellow); line-height: 1;
}
.fee-highlight .unit { font-size: 1rem; color: var(--yellow); }
.fee-highlight .desc { font-size: 0.85rem; color: var(--gray-400); margin-top: 8px; }
.fees-note { font-size: 0.95rem; text-align: center; color: var(--gray-400); line-height: 1.8; }

/* ===== BENEFITS ===== */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card {
  padding: 36px 28px; border-radius: var(--radius);
  background: var(--glass); border: 1px solid var(--glass-border);
  transition: var(--transition); text-align: center;
}
.benefit-card:hover { transform: translateY(-6px); border-color: rgba(245,197,24,0.2); }
.benefit-icon {
  width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(245,197,24,0.12), rgba(27,122,43,0.08));
  color: var(--yellow);
}
.benefit-card h4 { font-size: 1.05rem; margin-bottom: 10px; }
.benefit-card p { font-size: 0.88rem; color: var(--gray-400); line-height: 1.7; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-sm); overflow: hidden; position: relative; cursor: pointer;
  aspect-ratio: 1; transition: var(--transition);
}
.gallery-item.featured { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,17,23,0.7) 0%, transparent 50%);
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-close {
  position: absolute; top: 24px; right: 24px; width: 48px; height: 48px;
  border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); font-size: 1.4rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative; padding: 100px 0; overflow: hidden;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--green-dark) 100%);
  background-size: 200% 200%; animation: gradient-shift 8s ease infinite;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url('images/equipe-football-photo-de-groupe.jpeg') center/cover no-repeat;
  opacity: 0.1;
}
.cta-content {
  text-align: center; position: relative; z-index: 2; max-width: 700px; margin: 0 auto;
}
.cta-content h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-content p { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  display: flex; gap: 20px; padding: 24px;
  border-radius: var(--radius-sm); background: var(--glass);
  border: 1px solid var(--glass-border); transition: var(--transition);
}
.contact-card:hover { border-color: rgba(27,122,43,0.3); transform: translateX(8px); }
.contact-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px; font-size: 1.3rem;
  background: linear-gradient(135deg, rgba(27,122,43,0.15), rgba(27,122,43,0.05));
  color: var(--green-light);
}
.contact-card h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-card p { font-size: 0.9rem; color: var(--gray-400); }
.contact-card a { color: var(--yellow); transition: var(--transition); }
.contact-card a:hover { color: var(--yellow-light); }
.contact-map {
  border-radius: var(--radius); overflow: hidden; height: 100%; min-height: 300px;
  border: 1px solid var(--glass-border); position: relative;
}
.contact-map img { width: 100%; height: 100%; object-fit: cover; }
.contact-map-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: rgba(13,17,23,0.6); backdrop-filter: blur(4px);
}
.contact-map-overlay .pin { font-size: 3rem; margin-bottom: 12px; }
.contact-map-overlay p { font-size: 1.1rem; font-weight: 600; color: var(--white); }
.contact-map-overlay small { font-size: 0.85rem; color: var(--gray-400); }

/* ===== CONTACT FORM ===== */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.85rem; font-weight: 500; color: var(--gray-300); }
.form-group input, .form-group textarea, .form-group select {
  padding: 14px 18px; border-radius: var(--radius-sm);
  background: var(--glass); border: 1px solid var(--glass-border);
  color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.95rem;
  transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--green-light);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select option { background: var(--dark-soft); color: var(--white); }

/* ===== FOOTER ===== */
.footer {
  padding: 48px 0 24px; border-top: 1px solid var(--glass-border);
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand p { font-size: 0.88rem; color: var(--gray-400); margin-top: 16px; max-width: 320px; line-height: 1.7; }
.footer h5 { font-size: 0.85rem; font-weight: 600; color: var(--white); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; font-family: 'Inter', sans-serif; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.88rem; color: var(--gray-400); transition: var(--transition); }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--glass-border);
  font-size: 0.82rem; color: var(--gray-400);
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--glass); border: 1px solid var(--glass-border);
  color: var(--gray-400); font-size: 1rem; transition: var(--transition);
}
.footer-social a:hover { color: var(--white); border-color: var(--green-light); background: rgba(27,122,43,0.15); }

/* ===== PREVIEW CARDS (homepage) ===== */
.preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.preview-card {
  padding: 36px 28px; border-radius: var(--radius);
  background: var(--glass); border: 1px solid var(--glass-border);
  transition: var(--transition); position: relative; overflow: hidden;
}
.preview-card:hover { transform: translateY(-6px); border-color: rgba(27,122,43,0.3); }
.preview-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(27,122,43,0.15), rgba(27,122,43,0.05));
  color: var(--green-light);
}
.preview-card h4 { font-size: 1.1rem; margin-bottom: 10px; }
.preview-card p { font-size: 0.88rem; color: var(--gray-400); line-height: 1.7; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 40px; }
  .hero-logo-wrapper { width: 280px; height: 280px; }
  .hero-logo-wrapper img { width: 220px; height: 220px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .value-grid, .contact-grid, .membership-container { grid-template-columns: 1fr; }
  .about-image-stack { height: 400px; margin-bottom: 20px; }
  .vm-grid { grid-template-columns: 1fr; }
  .missions-list, .services-grid, .audience-grid, .benefits-grid, .preview-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .fees-highlights { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links {
    display: flex; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1000;
    background: rgba(13,17,23,0.75); backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column; align-items: center; justify-content: center; gap: 28px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }
  .nav-links.active { opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-links a { font-size: 1.2rem; }
  .nav-toggle { display: flex; z-index: 1001; }
  .missions-list, .services-grid, .audience-grid, .benefits-grid, .preview-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.featured { grid-column: span 2; }
  .hero-stats { flex-direction: column; gap: 20px; align-items: center; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-number { font-size: 2.2rem; }
  .about-image-stack { height: 350px; }
  .about-features { grid-template-columns: 1fr; }
  .fees-card { padding: 32px 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .page-header { padding: 130px 0 60px; }
}
@media (max-width: 480px) {
  .hero-logo-wrapper { width: 220px; height: 220px; }
  .hero-logo-wrapper img { width: 180px; height: 180px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .stats-row { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
}
