/* ==========================================================================
   Power Fins Swimming Academy - Master Design System & Stylesheet
   ========================================================================== */

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

:root {
  --bg-dark: #050b14;
  --bg-section-alt: rgba(10, 25, 47, 0.5);
  --bg-card: rgba(11, 23, 42, 0.75);
  --bg-card-hover: rgba(18, 38, 68, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-footer: #03070f;
  --bg-modal: rgba(4, 8, 16, 0.88);
  --bg-input: rgba(255, 255, 255, 0.05);

  --primary-blue: #0066ff;
  --primary-cyan: #00d2ff;
  --aqua-glow: #00f2fe;
  --deep-ocean: #0a192f;

  --gradient-aqua: linear-gradient(135deg, #00d2ff 0%, #0066ff 100%);
  --gradient-water: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  --gradient-gold: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 100%);

  --text-heading: #ffffff;
  --text-main: #f1f5f9;
  --text-sub: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --border-light: rgba(255, 255, 255, 0.1);
  --border-glow: rgba(0, 210, 255, 0.35);

  --shadow-glow: 0 12px 35px -10px rgba(0, 210, 255, 0.4);
  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.5);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --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-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-theme="light"] {
  --bg-dark: #f4f8fd;
  --bg-section-alt: #e8f1fd;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-glass: rgba(0, 102, 255, 0.05);
  --bg-footer: #e1ebf8;
  --bg-modal: rgba(244, 248, 253, 0.96);
  --bg-input: #ffffff;

  --primary-blue: #0052cc;
  --primary-cyan: #0077cc;
  --aqua-glow: #0055ff;
  --deep-ocean: #dbeafe;

  --gradient-aqua: linear-gradient(135deg, #0052cc 0%, #0099ff 100%);
  --gradient-water: linear-gradient(135deg, #0077ff 0%, #0044cc 100%);

  --text-heading: #0f172a;
  --text-main: #1e293b;
  --text-sub: #334155;
  --text-muted: #475569;
  --text-dim: #64748b;

  --border-light: rgba(0, 102, 255, 0.15);
  --border-glow: rgba(0, 119, 204, 0.4);

  --shadow-glow: 0 10px 30px -8px rgba(0, 102, 255, 0.25);
  --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .hero-overlay {
  background: linear-gradient(180deg, rgba(244, 248, 253, 0.75) 0%, rgba(244, 248, 253, 0.96) 100%);
}

[data-theme="light"] .glass-card {
  background: #ffffff;
  border: 1px solid rgba(0, 102, 255, 0.14);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

[data-theme="light"] .navbar.scrolled {
  background: rgba(244, 248, 253, 0.96);
  border-bottom: 1px solid rgba(0, 102, 255, 0.15);
}

[data-theme="light"] .mobile-drawer {
  background: #f4f8fd;
  border-bottom: 1px solid rgba(0, 102, 255, 0.15);
}

[data-theme="light"] select.form-control option {
  background-color: #ffffff;
  color: #0f172a;
}

[data-theme="light"] .modal-card,
[data-theme="light"] .lightbox-content {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid rgba(0, 102, 255, 0.2);
}

[data-theme="light"] .gallery-modal-body,
[data-theme="light"] .gallery-modal-header {
  background: #ffffff;
  color: #0f172a;
}

[data-theme="light"] .form-control {
  background: #ffffff;
  border-color: rgba(0, 102, 255, 0.25);
  color: #0f172a;
}

[data-theme="light"] .form-control::placeholder {
  color: #94a3b8;
}

[data-theme="light"] .faq-item {
  background: #ffffff;
  border: 1px solid rgba(0, 102, 255, 0.16);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

[data-theme="light"] .faq-question {
  color: #0f172a;
}

[data-theme="light"] .faq-question:hover,
[data-theme="light"] .faq-item.active .faq-question {
  color: #0077cc;
}

[data-theme="light"] .faq-answer {
  color: #334155;
}

[data-theme="light"] .coach-overlay {
  background: linear-gradient(180deg, transparent 40%, rgba(244, 248, 253, 0.96) 100%);
}

[data-theme="light"] .section-tag {
  background: rgba(0, 102, 255, 0.08);
  border-color: rgba(0, 102, 255, 0.2);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Ambient Canvas Particle Background */
#water-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-heading);
}

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

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Section Layouts */
.section {
  padding: 110px 24px;
  position: relative;
  z-index: 1;
}

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

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

.text-center {
  text-align: center;
}

/* Theme Toggle Button */
.theme-toggle-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glow);
  color: var(--primary-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all var(--transition-fast);
  cursor: pointer;
}

[data-theme="light"] .theme-toggle-btn {
  background: rgba(0, 119, 204, 0.1);
}

.theme-toggle-btn:hover {
  background: var(--gradient-aqua);
  color: #ffffff;
  transform: rotate(15deg) scale(1.08);
  box-shadow: var(--shadow-glow);
}

.mobile-theme-btn {
  width: auto;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Typography & Badges */
.gradient-text {
  background: var(--gradient-water);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: rgba(0, 210, 255, 0.12);
  border: 1px solid var(--border-glow);
  color: var(--primary-cyan);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.15);
}

.section-title {
  font-size: 2.85rem;
  margin-bottom: 20px;
  color: var(--text-heading);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 55px auto;
}

/* Glassmorphism Card Utility */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-aqua);
  color: #ffffff;
  box-shadow: 0 4px 25px rgba(0, 102, 255, 0.45);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 35px rgba(0, 210, 255, 0.65);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-cyan);
  color: var(--primary-cyan);
}

/* Header & Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 10px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-logo img {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  border: 1px solid var(--border-glow);
  background: rgba(255, 255, 255, 0.05);
  padding: 2px;
}

.brand-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.brand-text span {
  color: var(--primary-cyan);
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-cyan);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gradient-water);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

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

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

.mobile-toggle {
  display: none;
  font-size: 1.6rem;
  color: var(--text-heading);
}

/* Mobile Drawer - Hidden by default everywhere */
.mobile-drawer {
  display: none !important;
}

/* Hero Section & Slider */
.hero {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 120px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-slider-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #091424 url('Media_Web/beginer/IMG_20251012_103056.webp') no-repeat center center / cover;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease, transform 6s ease;
  transform: scale(1.05);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(10, 25, 47, 0.78) 50%, var(--bg-dark) 100%);
  z-index: 1;
}

[data-theme="light"] .hero-overlay {
  background: linear-gradient(135deg, rgba(240, 245, 252, 0.92) 0%, rgba(227, 238, 255, 0.82) 50%, rgba(240, 245, 252, 0.95) 100%);
}

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

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 5;
}

.hero-title {
  font-size: 3.85rem;
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.1;
  color: var(--text-heading);
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-sub);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-stats-bar {
  display: flex;
  gap: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}

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

.hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-cyan);
}

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

/* Hero Visual Showcase Card & Slideshow */
.hero-visual-card {
  position: relative;
  z-index: 5;
}

.hero-card-slider {
  position: relative;
  width: 100%;
  height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glow);
  box-shadow: 0 0 40px rgba(0, 210, 255, 0.35);
  background: var(--bg-card);
  cursor: pointer;
}

.hero-card-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.04);
  pointer-events: none;
}

.hero-card-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-card-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero-card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 16px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 11, 20, 0.88) 100%);
  color: var(--text-heading);
  font-size: 0.925rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(4px);
  z-index: 8;
}

.hero-card-caption::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-cyan);
  box-shadow: 0 0 10px var(--primary-cyan);
}

.hero-card-dots {
  position: absolute;
  bottom: 16px;
  right: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-card-dot.active {
  width: 22px;
  border-radius: 10px;
  background: var(--primary-cyan);
  box-shadow: 0 0 10px var(--primary-cyan);
}

.hero-floating-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glow);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-glow);
}

.hero-floating-badge i {
  font-size: 1.6rem;
  color: var(--primary-cyan);
}

/* Wave Separator */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  transition: height var(--transition-normal);
}

/* About Us Section Collage */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}

.about-collage-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: transform var(--transition-normal);
}

.about-collage-img:hover {
  transform: scale(1.04);
  border-color: var(--primary-cyan);
}

.focus-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
  list-style: none;
}

.focus-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  font-weight: 500;
}

.focus-item i {
  color: var(--primary-cyan);
  font-size: 1.1rem;
}

/* Why Choose Us Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.why-card {
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--primary-cyan);
  margin-bottom: 20px;
  transition: all var(--transition-normal);
}

.why-card:hover .why-icon {
  background: var(--gradient-aqua);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

.why-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

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

/* Coaches Profile Section */
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: stretch;
}

.coach-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.coach-img-wrapper {
  position: relative;
  height: 380px;
  overflow: hidden;
  background: #091424;
  flex-shrink: 0;
}

.coach-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-normal);
}

.coach-card:hover .coach-img {
  transform: scale(1.06);
}

.coach-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 11, 20, 0.96) 100%);
}

.coach-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.coach-body .open-coach-modal {
  margin-top: auto;
}

.coach-role {
  color: var(--primary-cyan);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.coach-name {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.coach-bio {
  font-size: 0.925rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Programs Section */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.program-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.program-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(0, 210, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-cyan);
  margin-bottom: 18px;
}

.program-icon svg,
.why-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--primary-cyan);
  display: block;
}

.program-title {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.program-desc {
  color: var(--text-muted);
  font-size: 0.925rem;
  margin-bottom: 24px;
}

/* Training Levels Stepper */
.levels-stepper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.level-card {
  padding: 24px 20px;
  text-align: center;
  position: relative;
}

.level-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-aqua);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0, 210, 255, 0.4);
}

.level-name {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.level-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Schedule & Locations */
.schedule-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 28px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--gradient-aqua);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

.schedule-card {
  padding: 36px;
  margin-bottom: 40px;
}

.table-responsive {
  overflow-x: auto;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.schedule-table th {
  padding: 16px 24px;
  background: rgba(0, 210, 255, 0.12);
  color: var(--primary-cyan);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  border-bottom: 2px solid var(--border-glow);
}

.schedule-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
  color: var(--text-main);
}

.schedule-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.location-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.map-container {
  height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 20px;
  border: 1px solid var(--border-light);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Counter / Achievements Section */
.counter-section {
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.95) 0%, rgba(5, 11, 20, 0.98) 100%);
  border-top: 1px solid var(--border-glow);
  border-bottom: 1px solid var(--border-glow);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}

.counter-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3.6rem;
  font-weight: 900;
  background: var(--gradient-water);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.counter-label {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Gallery Section */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-cyan);
  color: #050b14;
  font-weight: 700;
  border-color: var(--primary-cyan);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 250px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-normal);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5, 11, 20, 0.92) 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.gallery-item-cat {
  color: var(--primary-cyan);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.load-more-wrapper {
  margin-top: 40px;
  text-align: center;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(4, 8, 16, 0.95);
  backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 1000px;
  max-height: 80vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img,
.lightbox-content video {
  max-width: 100%;
  max-height: 72vh;
  border-radius: var(--radius-md);
  box-shadow: 0 0 50px rgba(0, 210, 255, 0.35);
  border: 1px solid var(--border-glow);
}

.lightbox-caption {
  margin-top: 16px;
  color: #ffffff;
  font-size: 1.1rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2.5rem;
  color: #fff;
  z-index: 2010;
  transition: color var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--primary-cyan);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 2010;
}

.lightbox-nav:hover {
  background: var(--gradient-aqua);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

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

.testimonial-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--primary-cyan);
  opacity: 0.5;
  margin-bottom: 12px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-sub);
  margin-bottom: 24px;
  line-height: 1.7;
}

.author-name {
  font-weight: 700;
  color: var(--text-heading);
  font-size: 1.05rem;
}

.author-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
}

.faq-question {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-heading);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--primary-cyan);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 28px 24px 28px;
}

.faq-icon {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
  color: var(--primary-cyan);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Contact Section & Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.info-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--primary-cyan);
  flex-shrink: 0;
}

.info-title {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.info-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-form-card {
  padding: 40px;
}

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

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

.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-cyan);
  box-shadow: 0 0 12px rgba(0, 210, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-bounce);
}

.float-whatsapp {
  background: #25d366;
}

.float-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 0 22px rgba(37, 211, 102, 0.65);
}

.float-call {
  background: var(--gradient-aqua);
}

.float-call:hover {
  transform: scale(1.12);
  box-shadow: 0 0 22px rgba(0, 210, 255, 0.65);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 3000;
}

.toast {
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  background: #0c2038;
  border: 1px solid var(--primary-cyan);
  color: #fff;
  box-shadow: var(--shadow-glow);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Footer */
.footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border-light);
  padding: 80px 24px 30px 24px;
  color: var(--text-muted);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--gradient-aqua);
  color: #fff;
}

.footer-title {
  color: var(--text-heading);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

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

.footer-links a:hover {
  color: var(--primary-cyan);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 30px;
  text-align: center;
  font-size: 0.875rem;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2500;
  background: var(--bg-modal);
  backdrop-filter: blur(16px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  width: 100%;
  max-width: 540px;
  padding: 36px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.75rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--text-heading);
}

/* WhatsApp Confirmation View */
.wa-confirm-box {
  text-align: center;
  padding: 10px 0;
}

.wa-confirm-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  border: 2px solid #25d366;
  color: #25d366;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.3);
  animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
  }

  50% {
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
  }

  100% {
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
  }
}

.wa-instruction-card {
  background: rgba(37, 211, 102, 0.08);
  border: 1px dashed rgba(37, 211, 102, 0.4);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin: 20px 0 26px 0;
  text-align: left;
}

.wa-instruction-card p {
  color: var(--text-sub);
  font-size: 0.925rem;
  line-height: 1.6;
}

.wa-instruction-card strong {
  color: #25d366;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  border-radius: var(--radius-full);
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-bounce);
  width: 100%;
  cursor: pointer;
  border: none;
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}


/* News Showcase Card */
.news-showcase-card {
  padding: 36px;
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
  border: 1px solid var(--border-glow);
}

.news-showcase-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
}

.news-showcase-img-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  height: 260px;
  position: relative;
  width: 100%;
}

.news-showcase-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.news-showcase-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-blue);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.news-showcase-date {
  color: var(--primary-cyan);
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.news-showcase-title {
  font-size: 1.6rem;
  color: var(--text-heading);
  margin: 8px 0 14px 0;
  line-height: 1.3;
}

.news-showcase-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.news-showcase-btn {
  font-size: 0.9rem;
}

/* Responsive Breakpoints */
@media (max-width: 1100px) {
  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 0.85rem;
  }

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

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

  .hero-visual-card {
    display: none;
  }

  .about-grid,
  .contact-grid,
  .locations-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 880px) {

  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .mobile-drawer {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
  }

  .mobile-drawer.active {
    display: flex !important;
  }

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

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

  .section {
    padding: 65px 16px;
  }

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

  .wave-divider svg {
    height: 38px;
  }

  .news-showcase-card {
    padding: 20px 16px;
  }

  .news-showcase-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-showcase-img-box {
    height: 240px;
  }

  .news-showcase-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .news-showcase-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 135px 16px 50px 16px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .section-tag {
    margin: 0 auto 16px auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-title {
    font-size: 2.15rem;
    line-height: 1.18;
    margin: 0 auto 18px auto;
    text-align: center;
  }

  .hero-sub {
    font-size: 1.02rem;
    line-height: 1.65;
    margin: 0 auto 26px auto;
    text-align: center;
    max-width: 520px;
    padding: 0 4px;
  }

  .hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 380px;
    margin: 0 auto 32px auto;
  }

  .hero-buttons .btn {
    flex: 1;
    justify-content: center;
    text-align: center;
    padding: 12px 14px;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .hero-stats-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
  }

  .hero-stat-item {
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 14px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-stat-num {
    font-size: 1.8rem;
    line-height: 1.15;
  }

  .hero-stat-label {
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .floating-actions {
    bottom: 16px;
    right: 14px;
    gap: 10px;
    z-index: 1200;
  }

  .float-btn {
    width: 46px;
    height: 46px;
    font-size: 1.3rem;
  }
}

@media (max-width: 420px) {
  .brand-text {
    font-size: 0.95rem;
  }

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

  .hero-sub {
    font-size: 0.95rem;
  }

  .hero-buttons {
    flex-direction: column;
    max-width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }
}



/* ==========================================================================
   Interactive WhatsApp Quick-Reply Chat Widget
   ========================================================================== */
.wa-chat-popover {
  position: fixed;
  bottom: 85px;
  right: 20px;
  width: 350px;
  max-width: calc(100vw - 32px);
  background: var(--bg-card);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  z-index: 1300;
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: popUp 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  backdrop-filter: blur(16px);
}

.wa-chat-popover.active {
  display: flex;
}

@keyframes popUp {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.wa-chat-header {
  background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
  color: #ffffff;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-chat-avatar-wrapper {
  position: relative;
}

.wa-chat-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
}

.wa-status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 11px;
  height: 11px;
  background: #25d366;
  border: 2px solid #075e54;
  border-radius: 50%;
}

.wa-chat-title-group h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.wa-chat-subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 4px;
}

.wa-chat-close-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 1.1rem;
}

.wa-chat-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.wa-chat-body {
  padding: 18px;
  background: var(--bg-surface);
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 420px;
  overflow-y: auto;
}

.wa-greeting-bubble {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 14px 14px 14px 2px;
  padding: 12px 14px;
  color: var(--text-sub);
  font-size: 0.875rem;
  line-height: 1.5;
}

.wa-quick-options-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-top: 4px;
}

.wa-quick-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wa-option-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  color: var(--text-heading);
}

.wa-option-card:hover {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.08);
  transform: translateX(3px);
}

.wa-option-content {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
}

.wa-option-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.wa-option-card i.ri-arrow-right-s-line {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.wa-badge-pulse {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  background: #ff4d4f;
  border: 2px solid var(--bg-dark);
  border-radius: 50%;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(255, 77, 79, 0.7);
  }

  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(255, 77, 79, 0);
  }

  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(255, 77, 79, 0);
  }
}

/* ==========================================================================
   Dedicated Coach Consultation & Bio Modal
   ========================================================================== */
.coach-modal-card {
  max-width: 580px;
  padding: 32px;
}

.coach-profile-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.coach-modal-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-cyan);
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.3);
  flex-shrink: 0;
}

.coach-profile-info h3 {
  font-size: 1.4rem;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.coach-profile-info .coach-role-badge {
  display: inline-block;
  background: rgba(0, 210, 255, 0.12);
  color: var(--primary-cyan);
  border: 1px solid rgba(0, 210, 255, 0.3);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.coach-specs-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.coach-spec-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: var(--text-sub);
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 4px;
}

.coach-modal-bio {
  color: var(--text-sub);
  font-size: 0.925rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.coach-action-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 576px) {
  .coach-profile-header {
    flex-direction: column;
    text-align: center;
  }

  .coach-action-buttons {
    grid-template-columns: 1fr;
  }
}