/* ============================================
   Global Institute of Energy Management Nigeria
   Main Stylesheet
   ============================================ */

/* CSS Variables - Energy Theme */
:root {
  --primary-dark: #0a1628;
  --primary-navy: #1a3a5c;
  --accent-gold: #f39c12;
  --accent-orange: #e67e22;
  --accent-green: #27ae60;
  --accent-blue: #3498db;
  --accent-teal: #1abc9c;
  --accent-red: #e74c3c;
  --accent-purple: #9b59b6;
  --text-light: #ffffff;
  --text-dark: #2c3e50;
  --text-muted: #7f8c8d;
  --bg-light: #f8f9fa;
  --bg-card: #ffffff;
  --border-light: #e0e0e0;
  --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 30px rgba(243, 156, 18, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --radius-sm: 8px;
  --max-width: 1280px;
}

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

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.logo-text {
  color: var(--text-light);
}

.logo-text h1 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.logo-text span {
  font-size: 0.75rem;
  color: var(--accent-gold);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-gold);
  background: rgba(243, 156, 18, 0.1);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.nav-cta {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 50px;
  margin-left: 8px;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(20px);
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-direction: column;
  gap: 4px;
}

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

.nav-mobile a {
  padding: 14px 20px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  border-radius: var(--radius-sm);
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--accent-gold);
  background: rgba(243, 156, 18, 0.1);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--primary-dark);
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(243, 156, 18, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(39, 174, 96, 0.1) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent-gold);
  opacity: 0.3;
  animation: float 15s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-30px) translateX(20px); }
  50% { transform: translateY(-20px) translateX(-20px); }
  75% { transform: translateY(-40px) translateX(10px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(243, 156, 18, 0.15);
  border: 1px solid rgba(243, 156, 18, 0.3);
  border-radius: 50px;
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out;
}

.hero h2 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s 0.1s ease-out both;
}

.hero h2 span {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  max-width: 550px;
  animation: fadeInUp 0.6s 0.2s ease-out both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.3s ease-out both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  color: white;
  box-shadow: 0 4px 20px rgba(243, 156, 18, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(243, 156, 18, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(243, 156, 18, 0.05);
}

.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  height: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.energy-orb {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(243, 156, 18, 0.4), rgba(52, 152, 219, 0.2), transparent 70%);
  box-shadow: 
    0 0 60px rgba(243, 156, 18, 0.2),
    0 0 120px rgba(52, 152, 219, 0.1);
  animation: pulse 4s ease-in-out infinite;
  position: relative;
}

.energy-orb::before {
  content: '⚡';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  opacity: 0.8;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   SECTION STYLES
   ============================================ */

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(243, 156, 18, 0.1);
  color: var(--accent-gold);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-dark {
  background: var(--primary-dark);
}

.section-dark .section-header h2 {
  color: var(--text-light);
}

.section-dark .section-header p {
  color: rgba(255,255,255,0.6);
}

/* ============================================
   ENERGY SECTOR CARDS
   ============================================ */

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.sector-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.sector-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  transition: var(--transition);
}

.sector-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.sector-card:hover::before {
  width: 100%;
  opacity: 0.03;
}

.sector-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.sector-card:hover .sector-icon {
  transform: scale(1.1);
}

.sector-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.sector-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Sector Color Themes */
.sector-electricity .sector-icon { background: rgba(52, 152, 219, 0.1); }
.sector-electricity::before { background: var(--accent-blue); }
.sector-electricity h3 { color: var(--accent-blue); }

.sector-chemical .sector-icon { background: rgba(155, 89, 182, 0.1); }
.sector-chemical::before { background: var(--accent-purple); }
.sector-chemical h3 { color: var(--accent-purple); }

.sector-nuclear .sector-icon { background: rgba(231, 76, 60, 0.1); }
.sector-nuclear::before { background: var(--accent-red); }
.sector-nuclear h3 { color: var(--accent-red); }

.sector-hydropower .sector-icon { background: rgba(26, 188, 156, 0.1); }
.sector-hydropower::before { background: var(--accent-teal); }
.sector-hydropower h3 { color: var(--accent-teal); }

.sector-solar .sector-icon { background: rgba(243, 156, 18, 0.1); }
.sector-solar::before { background: var(--accent-gold); }
.sector-solar h3 { color: var(--accent-gold); }

.sector-biomass .sector-icon { background: rgba(39, 174, 96, 0.1); }
.sector-biomass::before { background: var(--accent-green); }
.sector-biomass h3 { color: var(--accent-green); }

.sector-oilgas .sector-icon { background: rgba(230, 126, 34, 0.1); }
.sector-oilgas::before { background: var(--accent-orange); }
.sector-oilgas h3 { color: var(--accent-orange); }

/* ============================================
   STATS SECTION
   ============================================ */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ============================================
   FEATURES / CONTENT BLOCKS
   ============================================ */

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

.content-visual {
  position: relative;
}

.content-visual .image-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  position: relative;
}

.content-visual .image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(243, 156, 18, 0.1), rgba(52, 152, 219, 0.1));
}

.content-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.content-text h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.content-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.feature-list li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: rgba(39, 174, 96, 0.1);
  color: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ============================================
   PROGRAM CARDS
   ============================================ */

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.program-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.program-header {
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--primary-navy), var(--primary-dark));
  color: white;
}

.program-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.program-header span {
  font-size: 0.8rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.program-body {
  padding: 28px;
}

.program-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.program-body li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.program-body li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.program-footer {
  padding: 0 28px 28px;
}

/* ============================================
   PROGRAMS (Horizontal Card Layout)
   ============================================ */

.programs-grid-horizontal {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.program-card-horizontal {
  display: flex;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  background: var(--bg-card);
}

.program-card-horizontal:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.program-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 20px;
  flex-shrink: 0;
}

.program-thumb h3 {
  color: white;
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
}

/* ============================================
   MEMBERSHIP TIERS
   ============================================ */

/* ============================================
   MEMBERSHIP TIERS (Horizontal Layout)
   ============================================ */

.membership-tiers-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.membership-tier-horizontal {
  display: flex;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  border-left: 4px solid var(--accent-gold);
}

.membership-tier-horizontal:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-left-width: 6px;
}

.membership-tier-horizontal.featured-border {
  border-left-color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(243, 156, 18, 0.15);
}

.tier-rank {
  width: 60px;
  height: 60px;
  background: var(--accent-gold);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  border-radius: 12px;
  margin: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

.tier-image {
  width: 160px;
  height: 160px;
  min-width: 160px;
  background: linear-gradient(135deg, var(--accent-gold), #0a1628);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: white;
  border-radius: 12px;
  margin: 20px 20px 20px 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.tier-content {
  flex: 1;
  padding: 24px 24px 24px 0;
  display: flex;
  flex-direction: column;
}

.tier-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.tier-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
}

.price-main {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.tier-description {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.tier-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px dashed var(--border-light);
}

.tier-features li:last-child {
  border-bottom: none;
}

.tier-features li.included {
  color: var(--text-dark);
}

.tier-features li.included span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(39, 174, 96, 0.1);
  color: var(--accent-green);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.75rem;
}

.tier-features li.not-included {
  opacity: 0.6;
}

.tier-features li.not-included span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(127, 140, 141, 0.1);
  color: var(--text-muted);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.75rem;
}

.tier-apply-btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.tier-apply-btn.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  color: var(--text-dark);
  border: 2px solid var(--accent-gold);
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.tier-apply-btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
}

.tier-apply-btn.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-dark);
  border: 2px solid var(--border-light);
  backdrop-filter: blur(4px);
}

.tier-apply-btn.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

/* Keep old membership-grid for backward compatibility */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.membership-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  text-align: center;
}

.membership-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.membership-card.featured {
  border: 2px solid var(--accent-gold);
  transform: scale(1.03);
}

.membership-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
}

.membership-tier {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.membership-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 24px;
}

.membership-price span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

.membership-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  text-align: left;
}

.membership-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.membership-features li.included::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: rgba(39, 174, 96, 0.1);
  color: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.membership-features li.not-included::before {
  content: '✕';
  width: 20px;
  height: 20px;
  background: rgba(127, 140, 141, 0.1);
  color: var(--text-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ============================================
   NEWS / EVENT CARDS
   ============================================ */

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.news-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.news-image {
  height: 200px;
  background: linear-gradient(135deg, var(--primary-navy), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}

.news-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.3));
}

/* ---------- Horizontal Event Cards ---------- */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.event-card-horizontal {
  display: flex;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.event-card-horizontal:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.event-card-image {
  width: 200px;
  height: 200px;
  min-width: 200px;
  background-image: linear-gradient(135deg, var(--primary-navy), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: white;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.event-card-content {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.event-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.event-fee {
  background: rgba(243,156,18,0.12);
  color: var(--accent-orange);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.event-card-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.event-card-content h3 {
  margin: 0 0 12px 0;
  font-size: 1.2rem;
}

.event-summary {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.event-card-actions {
  display: flex;
  gap: 12px;
}

.event-card-actions .btn-secondary {
  background: rgba(255,255,255,0.08);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
}

.event-card-actions .btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

@media (max-width: 768px) {
  .event-card-horizontal {
    flex-direction: column;
  }
  .event-card-image {
    width: 100%;
    height: 160px;
    min-width: 100%;
  }
  .event-card-meta {
    flex-direction: column;
    gap: 8px;
  }
}

.news-content {
  padding: 24px;
}

.news-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.news-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
  color: var(--text-dark);
}

.news-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.news-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(243, 156, 18, 0.1);
  color: var(--accent-gold);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

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

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(243, 156, 18, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-form {
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
}

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

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

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

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 1rem;
  margin-bottom: 16px;
}

.testimonial-text {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-author h4 {
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
}

.testimonial-author p {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

/* ============================================
   PARTNERS LOGO STRIP
   ============================================ */

.partners-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 40px 0;
}

.partner-logo {
  width: 120px;
  height: 50px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

.partner-logo:hover {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: linear-gradient(135deg, var(--primary-navy), var(--primary-dark));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(243, 156, 18, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(52, 152, 219, 0.1) 0%, transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 32px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--primary-dark);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.7;
}

.footer-brand .logo {
  margin-bottom: 8px;
}

.footer-col h4 {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent-gold);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

/* ============================================
   PAGE HEADER (Inner Pages)
   ============================================ */

.page-header {
  background: var(--primary-dark);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 50% 0%, rgba(243, 156, 18, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 100%, rgba(52, 152, 219, 0.08) 0%, transparent 50%);
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.page-header p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
}

.breadcrumb a:hover {
  color: var(--accent-gold);
}

.breadcrumb span {
  color: rgba(255,255,255,0.3);
}

.breadcrumb .current {
  color: var(--accent-gold);
}

/* ============================================
   ABOUT PAGE SPECIFIC
   ============================================ */

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 32px;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.value-card .value-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(243, 156, 18, 0.1), rgba(52, 152, 219, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.team-card {
  text-align: center;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-navy), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 2.5rem;
  color: white;
}

.team-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card .role {
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 500;
}

.team-card .bio {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 10px;
  line-height: 1.6;
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for children */
.fade-in:nth-child(1) { transition-delay: 0.1s; }
.fade-in:nth-child(2) { transition-delay: 0.2s; }
.fade-in:nth-child(3) { transition-delay: 0.3s; }
.fade-in:nth-child(4) { transition-delay: 0.4s; }
.fade-in:nth-child(5) { transition-delay: 0.5s; }
.fade-in:nth-child(6) { transition-delay: 0.6s; }
.fade-in:nth-child(7) { transition-delay: 0.7s; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .hero h2 {
    font-size: 2.8rem;
  }
  
  .hero-visual {
    display: none;
  }
  
  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .hero {
    padding-top: 80px;
    text-align: center;
  }
  
  .hero h2 {
    font-size: 2.2rem;
  }
  
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .page-header h1 {
    font-size: 2.2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .membership-card.featured {
    transform: none;
  }
  
  .membership-card.featured:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .section-header h2 {
    font-size: 1.6rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-navy);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Selection */
::selection {
  background: rgba(243, 156, 18, 0.3);
  color: white;
}
