@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');

/* ==========================================
   DESIGN TOKENS & VARIABLES (Dark & Green)
   ========================================== */
:root {
  /* Color Palette */
  --primary-color: #16A34A;
  /* Emerald green primary */
  --secondary-color: #090D16;
  /* Deep charcoal background */
  --accent-color: #22C55E;
  /* Neon/vibrant green accent */
  --text: #F8FAFC;
  /* Light slate for general reading */
  --muted: #94A3B8;
  /* Muted gray-blue for secondary text */
  --bg: #090D16;
  /* Absolute dark body background */
  --section-bg: #111827;
  /* Dark slate section background */
  --border: #1F2937;
  /* Dark grey border */
  --radius: 16px;

  /* Premium Design Presets */
  --primary-gradient: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
  --dark-gradient: linear-gradient(185deg, #111827 0%, #090D16 100%);
  --glass-bg: rgba(17, 24, 39, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-glow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  --white-glass: rgba(17, 24, 39, 0.85);
  /* Scrolled glass background */

  /* Typography Scale */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Shadows & Glows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  --shadow-premium: 0 20px 40px rgba(34, 197, 94, 0.15);
  --glow-green: 0 0 25px rgba(34, 197, 94, 0.35);
  --glow-green-sm: 0 0 15px rgba(34, 197, 94, 0.2);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 5px rgba(34, 197, 94, 0.2);
  }

  50% {
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.5);
  }

  100% {
    box-shadow: 0 0 5px rgba(34, 197, 94, 0.2);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

/* Focus States (Accessibility) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 3px;
}

/* ==========================================
   TYPOGRAPHY & UTILITIES
   ========================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1.2;
}

p {
  color: var(--muted);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Padding offset for first section when there is no hero section */
.header-wrapper+.section {
  padding-top: 180px;
}

.section-bg {
  background-color: var(--section-bg);
}

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

.section-tag {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted);
}

/* ==========================================
   BUTTONS & INTERACTIVE ELEMENTS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  gap: 8px;
  z-index: 1;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #FFFFFF;
  box-shadow: var(--shadow-premium);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-normal);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 35px rgba(34, 197, 94, 0.3), var(--glow-green-sm);
}

.btn-secondary {
  background: transparent;
  border-color: var(--border);
  color: #FFFFFF;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.05);
}

.btn-outline:hover {
  background: rgba(34, 197, 94, 0.08);
  color: #FFFFFF;
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.2), var(--glow-green-sm);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
  border-radius: 10px;
}

.btn:active {
  transform: translateY(1px);
}

.align-self-start {
  align-self: flex-start;
  width: max-content;
}

/* Disabled State */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Ripple effect */
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  background-color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ==========================================
   NAVIGATION HEADER
   ========================================== */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
  border-bottom: 1px solid transparent;
}

.header-wrapper.scrolled {
  background-color: var(--white-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: var(--transition-normal);
}

.header-wrapper.scrolled .nav-container {
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}

.logo-icon {
  background: var(--primary-gradient);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: #FFFFFF;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--accent-color);
  font-weight: 600;
}

/* Header Action Slots */
.header-actions-slot {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hamburger Menu Button */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  transition: var(--transition-normal);
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Styles - Refactored to single nav menu */
@media (max-width: 768px) {

  /* Show hamburger menu */
  .hamburger-btn {
    display: flex;
  }

  /* Hide mobile join button in header */
  .header-cta {
    display: none;
  }

  /* Main navigation as dropdown on mobile */
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--section-bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height var(--transition-normal), opacity var(--transition-normal), padding var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-lg);
  }

  .main-nav.active {
    max-height: 350px;
    opacity: 1;
    pointer-events: auto;
    padding: 24px 40px;
  }

  .main-nav .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .main-nav .nav-link {
    font-size: 1.1rem;
    width: 100%;
    padding: 8px 0;
  }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Overlay & Visual Effects */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 75% 30%, rgba(22, 163, 74, 0.12) 0%, rgba(9, 13, 22, 0.95) 75%);
  z-index: 1;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  mix-blend-mode: overlay;
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
}

.hero-content {
  color: #FFFFFF;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-color);
  border: 1px solid var(--glass-border);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-title span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

/* Stats Counter Sub-Section */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--glass-border);
  padding-top: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-number span {
  color: var(--accent-color);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 500;
}

.hero-showcase {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-card-glow {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 30px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--glass-glow);
  width: 100%;
  max-width: 380px;
  position: relative;
}

.hero-card-glow::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(to bottom right, var(--accent-color), transparent, var(--primary-color));
  border-radius: calc(var(--radius) + 2px);
  z-index: -1;
  opacity: 0.2;
}

.showcase-title {
  color: #FFFFFF;
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.showcase-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.showcase-row:last-child {
  margin-bottom: 0;
}

.showcase-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.15);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.showcase-info h4 {
  color: #FFFFFF;
  font-size: 0.95rem;
}

.showcase-info p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
}

.about-img-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  position: relative;
}

.about-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-img-wrapper:hover img {
  transform: scale(1.08);
}

.about-img-wrapper.offset-y {
  transform: translateY(30px);
}

.about-badge-card {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--primary-gradient);
  color: #FFFFFF;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  max-width: 200px;
  z-index: 10;
  transform: translate(-10px, 10px);
}

.about-badge-card h4 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.about-badge-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 600;
}

.about-details {
  display: flex;
  flex-direction: column;
}

.about-desc {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.about-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform var(--transition-fast);
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.about-feature-item:hover {
  transform: translateX(4px);
  background: rgba(22, 163, 74, 0.03);
  border-color: rgba(34, 197, 94, 0.1);
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(22, 163, 74, 0.1);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  border: 1px solid rgba(34, 197, 94, 0.15);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.05);
}

.about-feature-item:hover .about-feature-icon {
  background: var(--primary-gradient);
  color: #FFFFFF;
  box-shadow: var(--glow-green-sm);
}

.about-feature-text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: #FFFFFF;
}

.about-feature-text p {
  font-size: 0.875rem;
  line-height: 1.4;
}

/* ==========================================
   SERVICES / PREMIUM CARDS
   ========================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background-color: var(--section-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--primary-gradient);
  transition: var(--transition-normal);
}

.feature-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: var(--transition-normal);
  border: 1px solid var(--border);
}

.feature-card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.feature-card-desc {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--muted);
}

/* Card Hover States */
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(22, 163, 74, 0.2);
}

.feature-card:hover::before {
  height: 100%;
}

.feature-card:hover .feature-card-icon {
  background: var(--primary-gradient);
  color: #FFFFFF;
  border-color: transparent;
}

/* ==========================================
   ACTIVITIES SECTION
   ========================================== */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.activity-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border: 1px solid var(--border);
}

.activity-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.activity-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(9, 13, 22, 0.95) 0%, rgba(9, 13, 22, 0.3) 50%, transparent 100%);
  transition: var(--transition-normal);
}

.activity-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  z-index: 2;
  transition: var(--transition-normal);
}

.activity-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 8px;
  display: inline-block;
}

.activity-name {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.activity-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
  max-height: 0;
  opacity: 0;
  transition: max-height var(--transition-normal), opacity var(--transition-normal);
}

/* Hover States */
.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(22, 163, 74, 0.2);
}

.activity-card:hover .activity-img {
  transform: scale(1.08);
}

.activity-card:hover .activity-desc {
  max-height: 100px;
  opacity: 1;
  margin-top: 8px;
}

/* ==========================================
   TESTIMONIAL SLIDER
   ========================================== */
.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.slider-container {
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial-slide {
  flex-shrink: 0;
  width: 100%;
  padding: 10px;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 60px 45px 50px;
  box-shadow: var(--shadow-lg), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  text-align: center;
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.testimonial-card:hover {
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: var(--shadow-xl), 0 10px 30px rgba(34, 197, 94, 0.05);
}

.testimonial-quote-icon {
  font-size: 4.5rem;
  color: var(--accent-color);
  opacity: 0.08;
  position: absolute;
  top: 20px;
  left: 35px;
  line-height: 1;
  font-family: serif;
  pointer-events: none;
}

.testimonial-rating {
  color: #FBBF24;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  gap: 6px;
  font-size: 1rem;
  filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.2));
}

.testimonial-text {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: #E2E8F0;
  margin-bottom: 35px;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.testimonial-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
  border: 3px solid var(--accent-color);
  box-shadow: var(--glow-green-sm);
  transition: transform var(--transition-fast);
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.05);
}

.testimonial-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--section-bg);
  border: 1px solid var(--border);
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
  z-index: 10;
}

.slider-btn:hover {
  background-color: var(--primary-color);
  color: #FFFFFF;
  border-color: transparent;
}

.slider-btn-prev {
  left: -70px;
}

.slider-btn-next {
  right: -70px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
}

.slider-dot.active {
  background-color: var(--primary-color);
  width: 24px;
  border-radius: 10px;
}

/* ==========================================
   CALL TO ACTION
   ========================================== */
.cta-section {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(34, 197, 94, 0.18) 0%, rgba(9, 13, 22, 0.98) 75%);
  z-index: 1;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: var(--primary-gradient);
  filter: blur(150px);
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}

.cta-container {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-transform: uppercase;
}

.cta-title span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-desc {
  font-size: 1.2rem;
  color: #CBD5E1;
  margin-bottom: 44px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ==========================================
   JOIN NOW MODAL POPUP
   ========================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 6, 10, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background-color: var(--section-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  width: 100%;
  max-width: 480px;
  position: relative;
  transform: scale(0.9);
  transition: transform var(--transition-normal);
  box-shadow: var(--shadow-xl);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  color: #FFFFFF;
}

.modal-header {
  margin-bottom: 24px;
}

.modal-title {
  font-size: 1.75rem;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.modal-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--bg);
  border: 2px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #FFFFFF;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: none;
  background-color: #0b111e;
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394A3B8' class='bi bi-chevron-down' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* Loading & Form Feedback States */
.form-feedback {
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}

.form-feedback.success {
  display: block;
  color: #22C55E;
}

.form-feedback.error {
  display: block;
  color: #EF4444;
}

/* Spinner for loading state */
.btn-loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #FFFFFF;
  animation: spin 0.8s linear infinite;
}

.btn.loading .btn-loader {
  display: block;
}

.btn.loading span {
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ==========================================
   FOOTER
   ========================================== */
.footer-top {
  padding: 90px 0 50px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.footer-dark {
  background-color: #05070c;
  color: var(--muted);
  border-bottom-color: var(--border);
}

.footer-dark h4 {
  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr 1fr;
  gap: 40px;
}

.footer-brand-desc {
  margin-top: 18px;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
  color: #94A3B8;
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 28px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-gradient);
}

.footer-links {
  list-style: none;
}

.footer-link-item {
  margin-bottom: 12px;
}

.footer-link {
  text-decoration: none;
  color: #94A3B8;
  font-size: 0.9rem;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
}

.footer-link:hover {
  color: var(--accent-color);
  transform: translateX(4px);
}

/* Hours & Contact styles */
.footer-hours-list {
  list-style: none;
}

.footer-hour-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.9rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
  padding-bottom: 6px;
}

.footer-hour-item span:first-child {
  color: #94A3B8;
}

.footer-hour-item span:last-child {
  color: #FFFFFF;
  font-weight: 600;
}

.footer-contact-list {
  list-style: none;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--accent-color);
  font-size: 1rem;
  margin-top: 3px;
  width: 16px;
  text-align: center;
}

.footer-contact-item span,
.footer-contact-item a {
  color: #94A3B8;
  line-height: 1.5;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-contact-item a:hover {
  color: var(--accent-color);
}

.trainer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.03);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition-fast);
  text-decoration: none;
  border: 1px solid var(--border);
}

.trainer-social-icon:hover {
  background: var(--primary-gradient);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--glow-green-sm);
}

/* Footer Bottom */
.footer-bottom {
  padding: 35px 0 0;
  font-size: 0.85rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 40px;
}

.footer-credit-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: opacity .3s ease;
}

.footer-credit-link:hover {
  opacity: .8;
}

/* ==========================================
   ANIMATIONS & TRANSITIONS
   ========================================== */
.fade-up-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-left-reveal {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-right-reveal {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.zoom-reveal {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.revealed {
  opacity: 1;
  transform: none;
}

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

/* Laptop (1280px) */
@media (max-width: 1280px) {
  .container {
    max-width: 100%;
    padding: 0 40px;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .about-grid {
    gap: 40px;
  }
}

/* Tablet (1024px) */
@media (max-width: 1024px) {

  .features-grid,
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .hero-section {
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 80px;
  }

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

/* Mobile landscape / small tablets (768px) */
@media (max-width: 768px) {

  .section,
  .cta-section {
    padding: 70px 0;
  }

  .header-wrapper+.section {
    padding-top: 150px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-showcase {
    display: none;
    /* Hide interactive panel on smaller screens for cleaner fit */
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    order: 2;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-details {
    order: 1;
  }

  .slider-btn-prev {
    left: -20px;
  }

  .slider-btn-next {
    right: -20px;
  }

  /* Services Carousel on Mobile */
  .features-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    gap: 16px !important;
    padding: 10px 4px !important;
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
  }

  .features-grid::-webkit-scrollbar {
    display: none !important;
  }

  .features-grid .feature-card {
    flex: 0 0 83% !important;
    scroll-snap-align: center !important;
  }
}

/* Mobile Portrait (480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .features-grid,
  .activities-grid {
    grid-template-columns: 1fr;
  }

  .about-features-list {
    grid-template-columns: 1fr;
  }

  .about-visual {
    grid-template-columns: 1fr;
  }

  .about-img-wrapper.offset-y {
    transform: none;
  }

  .about-badge-card {
    position: relative;
    transform: none;
    max-width: 100%;
    margin-top: 20px;
  }

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

  .modal-card {
    padding: 24px;
  }

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

  .footer-bottom-flex {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-meta-links {
    justify-content: center;
  }
}

/* ==========================================
   SUB-PAGE HERO & CONTACT LAYOUTS
   ========================================== */
.sub-hero {
  min-height: 45vh;
  padding-top: 140px;
  padding-bottom: 60px;
  text-align: center;
}

.sub-hero .hero-container {
  grid-template-columns: 1fr;
  text-align: center;
  justify-content: center;
}

.sub-hero .hero-content {
  margin: 0 auto;
  max-width: 800px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-info-card {
  background-color: var(--section-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.contact-info-title {
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: 24px;
}

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

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

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(22, 163, 74, 0.1);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 1.05rem;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.contact-info-text p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.contact-form-card {
  background-color: var(--section-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.contact-map-wrapper {
  margin-top: 80px;
}

@media (max-width: 768px) {
  .contact-map-wrapper {
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .sub-hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 50px;
  }

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