/**
 * COACH MINA — NATATION 2026 / 2027
 * Premium Landing Page Styles
 * ========================================================
 */

:root {
  --primary-deep: #061a29;
  --primary-navy: #0b253a;
  --ocean-blue: #0284c7;
  --aqua-cyan: #38bdf8;
  --aqua-glow: #e0f2fe;
  --turquoise: #0d9488;
  --accent-gold: #f59e0b;
  --accent-gold-hover: #d97706;
  --accent-sand: #fef3c7;
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.94);
  --border-light: #e2e8f0;
  --border-focus: #0284c7;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 20px -2px rgba(11, 37, 58, 0.08);
  --shadow-lg: 0 12px 32px -4px rgba(11, 37, 58, 0.12);
  --shadow-glow: 0 0 25px rgba(56, 189, 248, 0.25);
  --font-arabic: 'Cairo', system-ui, -apple-system, sans-serif;
  --font-latin: 'Outfit', system-ui, -apple-system, sans-serif;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --bg-why: url('https://zetypfciqumyggbltorh.supabase.co/storage/v1/object/public/coach-mina-media/mina-dz/1788772174198_why_coach_mina.webp');
  --bg-groups: url('https://zetypfciqumyggbltorh.supabase.co/storage/v1/object/public/coach-mina-media/mina-dz/1788772186497_groups_section.webp');
  --bg-pricing: url('https://zetypfciqumyggbltorh.supabase.co/storage/v1/object/public/coach-mina-media/mina-dz/1788772198428_pricing_section.webp');
  --bg-registration: url('https://zetypfciqumyggbltorh.supabase.co/storage/v1/object/public/coach-mina-media/mina-dz/1788772241023_registration_form_section.webp');
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

body.rtl-layout { font-family: var(--font-arabic); direction: rtl; text-align: right; }
body.ltr-layout { font-family: var(--font-latin); direction: ltr; text-align: left; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ============================ HEADER ============================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6, 26, 41, 0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand-wrapper { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--aqua-cyan), var(--ocean-blue));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.35rem; box-shadow: 0 4px 12px rgba(2, 132, 199, 0.4);
}
.brand-meta { display: flex; flex-direction: column; }
.brand-title { color: #fff; font-size: 1.25rem; font-weight: 800; letter-spacing: 0.5px; line-height: 1.1; }
.brand-subtitle { color: var(--aqua-cyan); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.5px; }
.nav-links { display: flex; align-items: center; list-style: none; gap: 1.75rem; }
.nav-links a {
  color: #cbd5e1; text-decoration: none; font-weight: 500; font-size: 0.95rem;
  transition: var(--transition); position: relative; padding: 6px 0;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0%; height: 2px;
  background: var(--aqua-cyan); transition: var(--transition);
}
body.rtl-layout .nav-links a::after { left: auto; right: 0; }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.lang-switcher {
  display: flex; align-items: center; background: rgba(255, 255, 255, 0.08);
  padding: 3px; border-radius: var(--radius-full); border: 1px solid rgba(255, 255, 255, 0.12);
}
.lang-btn {
  background: transparent; border: none; color: #94a3b8; padding: 4px 10px;
  font-size: 0.8rem; font-weight: 700; border-radius: var(--radius-full); cursor: pointer; transition: var(--transition);
}
.lang-btn:hover { color: #fff; }
.lang-btn.active { background: var(--aqua-cyan); color: var(--primary-deep); box-shadow: 0 2px 8px rgba(56, 189, 248, 0.4); }
.btn-header-cta {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-hover));
  color: #fff; text-decoration: none; font-weight: 700; font-size: 0.875rem;
  padding: 0.6rem 1.25rem; border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35); transition: var(--transition);
}
.btn-header-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(245, 158, 11, 0.5); }
.mobile-menu-btn { display: none; background: transparent; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; padding: 6px; }

/* ============================ HERO ============================ */
.hero-section {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background-color: var(--primary-deep);
  background-image:
    linear-gradient(90deg, rgba(2, 24, 42, 0.94) 0%, rgba(2, 35, 55, 0.78) 46%, rgba(2, 35, 55, 0.30) 100%),
    url('https://zetypfciqumyggbltorh.supabase.co/storage/v1/object/public/coach-mina-media/mina-dz/1788768536130_coach-mina-piscine-hero.webp.webp');
  background-size: cover;
  background-position: 70% center;
  color: #fff;
  padding: 5rem 0 5.5rem;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 26, 41, 0.18) 0%, rgba(6, 26, 41, 0.12) 55%, rgba(6, 26, 41, 0.72) 100%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-text-content { max-width: 680px; }
.hero-badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  max-width: 100%;
  background: rgba(56, 189, 248, 0.16); border: 1px solid rgba(125, 211, 252, 0.42);
  color: #bae6fd; padding: 6px 16px; border-radius: var(--radius-full);
  font-size: 0.85rem; font-weight: 700; margin-bottom: 1.5rem;
}
.hero-headline {
  max-width: 680px;
  font-size: clamp(2.35rem, 4vw, 3.55rem); font-weight: 900; line-height: 1.16; margin-bottom: 1rem;
  letter-spacing: -0.3px; color: #fff; text-wrap: balance;
}
.hero-subheadline {
  max-width: 590px;
  font-size: 1.1rem; color: #e2e8f0; font-weight: 500; margin-bottom: 1.75rem; line-height: 1.65;
}
.hero-quick-info {
  display: grid; grid-template-columns: 1fr 1fr; max-width: 560px;
  gap: 0.75rem 1.5rem; margin-bottom: 2rem;
}
.quick-info-item {
  display: flex; align-items: center; gap: 8px; min-width: 0;
  font-size: 0.92rem; color: #f1f5f9; font-weight: 500;
}
.quick-info-item > span:last-child { min-width: 0; }
.qi-icon { font-size: 1.1rem; flex-shrink: 0; }
.hero-cta-group { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 0.75rem; }
.btn-primary-hero {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, #fbbf24, var(--accent-gold-hover));
  color: #172033; font-weight: 800; font-size: 1.05rem; padding: 0.9rem 2rem;
  border-radius: var(--radius-full); text-decoration: none;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35); transition: var(--transition);
}
.btn-primary-hero:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(245, 158, 11, 0.5); }
.btn-secondary-hero {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff; font-weight: 700; font-size: 1rem; padding: 0.9rem 1.75rem;
  border-radius: var(--radius-full); text-decoration: none; transition: var(--transition);
}
.btn-secondary-hero:hover { background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.7); transform: translateY(-2px); }
.hero-microcopy { font-size: 0.85rem; color: #cbd5e1; }
.hero-visual-card { display: none; }
body.rtl-layout .hero-section {
  background-image:
    linear-gradient(270deg, rgba(2, 24, 42, 0.94) 0%, rgba(2, 35, 55, 0.78) 46%, rgba(2, 35, 55, 0.30) 100%),
    url('https://zetypfciqumyggbltorh.supabase.co/storage/v1/object/public/coach-mina-media/mina-dz/1788769693054_coach-mina-piscine-ar-hero.webp.webp');
  background-position: 30% center;
}

/* ============================ SECTION HEADER ============================ */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-tag {
  display: inline-block; color: var(--ocean-blue); font-size: 0.82rem; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.5rem;
  background: var(--aqua-glow); padding: 4px 14px; border-radius: var(--radius-full);
}
.section-title { font-size: 2.25rem; font-weight: 800; color: var(--primary-deep); margin-bottom: 0.75rem; line-height: 1.2; }
.section-subtitle { color: var(--text-muted); font-size: 1rem; }

/* ============================ WHY SECTION ============================ */
.why-section {
  padding: 5rem 0;
  background-color: #ffffff;
  background-image: linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.88)), var(--bg-why);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.why-card {
  background: var(--bg-main); border-radius: var(--radius-lg); padding: 2rem 1.75rem;
  border: 1px solid var(--border-light); transition: var(--transition);
}
.why-card:hover { background: #fff; box-shadow: var(--shadow-md); border-color: var(--aqua-cyan); transform: translateY(-4px); }
.why-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: var(--aqua-glow); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
}
.why-title { font-size: 1.15rem; font-weight: 800; color: var(--primary-deep); margin-bottom: 0.5rem; }
.why-desc { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }
.why-cta-row { text-align: center; }

/* ============================ GROUPS ============================ */
.groups-section {
  padding: 5rem 0;
  background-color: #f1f5f9;
  background-image: linear-gradient(rgba(241,245,249,0.86), rgba(241,245,249,0.86)), var(--bg-groups);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.groups-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-bottom: 2.5rem; }
.group-card {
  background: var(--bg-card); border-radius: var(--radius-lg); padding: 2.5rem;
  border: 1px solid var(--border-light); box-shadow: var(--shadow-md);
  position: relative; display: flex; flex-direction: column; transition: var(--transition);
}
.group-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--aqua-cyan); }
.group-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; }
.group-badge-code { background: var(--primary-deep); color: #fff; font-weight: 800; font-size: 0.85rem; padding: 6px 14px; border-radius: var(--radius-full); }
.group-age-pill { background: var(--aqua-glow); color: var(--ocean-blue); font-weight: 700; font-size: 0.8rem; padding: 4px 12px; border-radius: var(--radius-full); }
.group-card-title { font-size: 1.5rem; font-weight: 800; color: var(--primary-deep); margin-bottom: 0.5rem; }
.group-card-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.75rem; line-height: 1.6; }
.group-schedule-box { background: var(--bg-main); border-radius: var(--radius-md); padding: 1.25rem; margin-bottom: 1.5rem; }
.schedule-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--border-light); font-size: 0.9rem; }
.schedule-row:last-child { border-bottom: none; }
.schedule-day { font-weight: 700; color: var(--primary-deep); }
.schedule-time { color: var(--ocean-blue); font-weight: 600; unicode-bidi: isolate; }
.group-price-box { display: flex; align-items: baseline; justify-content: space-between; margin-top: auto; padding-top: 1.5rem; border-top: 1px solid var(--border-light); }
.group-price-lbl { font-size: 0.85rem; color: var(--text-muted); }
.group-price-val { font-size: 1.5rem; font-weight: 900; color: var(--ocean-blue); unicode-bidi: isolate; }
.btn-group-cta {
  display: block; text-align: center; margin-top: 1.25rem;
  background: linear-gradient(135deg, var(--ocean-blue), #0284c7);
  color: #fff; font-weight: 700; font-size: 0.95rem; padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full); text-decoration: none; transition: var(--transition);
}
.btn-group-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(2, 132, 199, 0.4); }

/* Info Cards */
.info-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.info-feature-card { background: #fff; border-radius: var(--radius-md); padding: 1.75rem; border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); }
.info-feature-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--aqua-glow); color: var(--ocean-blue); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 1rem; }
.info-feature-title { font-size: 1.05rem; font-weight: 800; color: var(--primary-deep); margin-bottom: 0.5rem; }
.info-feature-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; }

/* ============================ PRICING ============================ */
.pricing-section {
  padding: 5rem 0;
  background-color: #fff;
  background-image: linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)), var(--bg-pricing);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.pricing-card {
  max-width: 520px; margin: 0 auto; background: var(--bg-card);
  border-radius: var(--radius-lg); border: 2px solid var(--aqua-cyan);
  box-shadow: var(--shadow-lg); padding: 3rem 2.5rem; text-align: center;
}
.pricing-tag {
  display: inline-block; background: var(--aqua-glow); color: var(--ocean-blue);
  font-weight: 800; font-size: 0.85rem; padding: 6px 18px; border-radius: var(--radius-full); margin-bottom: 1.5rem;
}
.pricing-amount { display: flex; align-items: baseline; justify-content: center; gap: 8px; margin-bottom: 0.5rem; }
.pricing-currency { font-size: 3.5rem; font-weight: 900; color: var(--primary-deep); unicode-bidi: isolate; }
.pricing-unit { font-size: 1.5rem; font-weight: 700; color: var(--text-muted); }
.pricing-note { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 2rem; }
.pricing-features { list-style: none; text-align: right; margin-bottom: 2rem; }
body.ltr-layout .pricing-features { text-align: left; }
.pricing-features li { display: flex; align-items: center; gap: 10px; padding: 0.6rem 0; font-size: 0.95rem; color: var(--text-dark); border-bottom: 1px dashed var(--border-light); }
.pricing-features li:last-child { border-bottom: none; }
.pf-check { color: var(--turquoise); font-weight: 800; font-size: 1.1rem; flex-shrink: 0; }
.btn-pricing-cta {
  display: inline-block; background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-hover));
  color: #fff; font-weight: 700; font-size: 1.1rem; padding: 0.9rem 2.5rem;
  border-radius: var(--radius-full); text-decoration: none;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4); transition: var(--transition);
}
.btn-pricing-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(245, 158, 11, 0.55); }

/* ============================ STEPS ============================ */
.steps-section { padding: 5rem 0; background: #f1f5f9; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.step-card {
  background: #fff; border-radius: var(--radius-lg); padding: 2rem 1.5rem;
  text-align: center; border: 1px solid var(--border-light); transition: var(--transition);
}
.step-card:hover { box-shadow: var(--shadow-md); border-color: var(--aqua-cyan); transform: translateY(-4px); }
.step-number {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--ocean-blue), var(--aqua-cyan));
  color: #fff; font-size: 1.3rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.step-title { font-size: 1.05rem; font-weight: 800; color: var(--primary-deep); margin-bottom: 0.5rem; }
.step-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; }
.steps-helper-text { text-align: center; font-size: 1rem; color: var(--text-dark); margin-bottom: 1.5rem; font-weight: 600; }
.steps-cta-row { text-align: center; }

/* ============================ TRUST ============================ */
.trust-section { padding: 3rem 0; background: var(--primary-deep); }
.trust-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.trust-item { display: flex; align-items: center; gap: 8px; color: #e2e8f0; font-size: 0.95rem; font-weight: 600; }
.trust-check { color: var(--aqua-cyan); font-weight: 800; font-size: 1.1rem; }

/* ============================ RULES ============================ */
.rules-section { padding: 5rem 0; background: #fff; }
.rules-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.rule-card {
  background: var(--bg-main); border-radius: var(--radius-md); padding: 2rem 1.5rem;
  text-align: center; border: 1px solid var(--border-light); transition: var(--transition);
}
.rule-card:hover { background: #fff; box-shadow: var(--shadow-md); border-color: var(--aqua-cyan); transform: translateY(-4px); }
.rule-icon { font-size: 2.25rem; margin-bottom: 1rem; display: inline-block; }
.rule-title { font-size: 1rem; font-weight: 700; color: var(--primary-deep); margin-bottom: 0.5rem; }
.rule-text { font-size: 0.88rem; color: var(--text-muted); }

/* ============================ GALLERY ============================ */
.gallery-section { padding: 5rem 0; background: #061a29; color: #fff; }
.gallery-section .section-title { color: #fff; }
.gallery-section .section-subtitle { color: #94a3b8; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.gallery-card {
  border-radius: var(--radius-md); overflow: hidden;
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md); cursor: pointer; transition: var(--transition); position: relative;
}
.gallery-card:hover { transform: translateY(-6px) scale(1.02); border-color: var(--aqua-cyan); box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3); }
.gallery-card-img-wrapper { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.gallery-card-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-card:hover .gallery-card-img-wrapper img { transform: scale(1.08); }
.gallery-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(6, 26, 41, 0.85) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 1rem;
}
.gallery-card-title { font-size: 0.85rem; font-weight: 700; color: #fff; }

/* ============================ FAQ ============================ */
.faq-section { padding: 5rem 0; background: #fff; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border-light); border-radius: var(--radius-md);
  margin-bottom: 0.75rem; overflow: hidden; transition: var(--transition);
  background: var(--bg-main);
}
.faq-item[open] { box-shadow: var(--shadow-md); border-color: var(--aqua-cyan); background: #fff; }
.faq-question {
  padding: 1.1rem 1.5rem; font-size: 1rem; font-weight: 700; color: var(--primary-deep);
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--ocean-blue); font-weight: 700; transition: var(--transition); }
.faq-item[open] .faq-question::after { content: '−'; }
.faq-answer { padding: 0 1.5rem 1.1rem; font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; }

/* ============================ FINAL CTA ============================ */
.final-cta-section {
  padding: 5rem 0; text-align: center;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary-navy));
  color: #fff;
}
.final-cta-title { font-size: 2.5rem; font-weight: 900; margin-bottom: 0.5rem; }
.final-cta-subtitle { font-size: 1.2rem; color: var(--aqua-cyan); font-weight: 600; margin-bottom: 2rem; }
.btn-final-cta {
  display: inline-block; background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-hover));
  color: #fff; font-weight: 700; font-size: 1.15rem; padding: 1rem 2.5rem;
  border-radius: var(--radius-full); text-decoration: none;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.45); transition: var(--transition);
}
.btn-final-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(245, 158, 11, 0.6); }

/* ============================ SHARED SECTION CTA ============================ */
.btn-primary-section {
  display: inline-block; background: linear-gradient(135deg, var(--ocean-blue), #0284c7);
  color: #fff; font-weight: 700; font-size: 1.05rem; padding: 0.85rem 2rem;
  border-radius: var(--radius-full); text-decoration: none;
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35); transition: var(--transition);
}
.btn-primary-section:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(2, 132, 199, 0.5); }

/* ============================ FOOTER ============================ */
.site-footer { background: #030e17; color: #94a3b8; padding: 4.5rem 0 2rem; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 3.5rem; }
.footer-brand-title { color: #fff; font-size: 1.4rem; font-weight: 800; margin-bottom: 0.5rem; }
.footer-tagline { color: var(--aqua-cyan); font-size: 0.9rem; font-weight: 600; margin-bottom: 1rem; }
.footer-club-name { color: #e2e8f0; font-size: 0.95rem; margin-bottom: 0.5rem; }
.footer-location { font-size: 0.85rem; line-height: 1.5; margin-bottom: 0.5rem; }
.footer-season { font-size: 0.85rem; color: var(--aqua-cyan); font-weight: 600; }
.footer-col-title { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; }
.footer-links-list { list-style: none; }
.footer-links-list li { margin-bottom: 0.6rem; }
.footer-links-list a { color: #94a3b8; text-decoration: none; font-size: 0.9rem; transition: var(--transition); unicode-bidi: isolate; }
.footer-links-list a:hover { color: var(--aqua-cyan); }
.footer-bottom-bar { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.06); font-size: 0.82rem; }

/* ============================ STICKY MOBILE CTA ============================ */
.sticky-mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: linear-gradient(135deg, var(--ocean-blue), #0284c7);
  padding: 0; box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}
.sticky-mobile-cta a {
  display: block; text-align: center; color: #fff; font-weight: 800; font-size: 1.05rem;
  padding: 1rem; text-decoration: none;
}

/* ============================ LIGHTBOX ============================ */
.lightbox-modal { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(0, 0, 0, 0.88); backdrop-filter: blur(8px); align-items: center; justify-content: center; padding: 2rem; }
.lightbox-modal.show { display: flex; }
.lightbox-content { position: relative; max-width: 90vw; max-height: 90vh; display: flex; flex-direction: column; align-items: center; }
.lightbox-content img { max-width: 100%; max-height: 80vh; border-radius: var(--radius-md); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6); border: 1px solid rgba(255, 255, 255, 0.2); }
.lightbox-caption { color: #fff; margin-top: 1rem; font-size: 1rem; font-weight: 600; }
.lightbox-close-btn { position: absolute; top: -45px; right: 0; background: transparent; border: none; color: #fff; font-size: 2rem; cursor: pointer; line-height: 1; }
body.rtl-layout .lightbox-close-btn { right: auto; left: 0; }

/* ============================ CONFIG MODAL ============================ */
.config-modal { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(6, 26, 41, 0.85); backdrop-filter: blur(10px); align-items: center; justify-content: center; padding: 1.5rem; }
.config-modal.show { display: flex; }
.config-modal-panel { background: #fff; border-radius: var(--radius-lg); max-width: 780px; width: 100%; max-height: 85vh; overflow-y: auto; box-shadow: var(--shadow-lg); padding: 2.25rem; position: relative; }
.config-modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; border-bottom: 1px solid var(--border-light); padding-bottom: 1rem; }
.config-modal-title { font-size: 1.35rem; font-weight: 800; color: var(--primary-deep); }
.config-modal-close { background: transparent; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-muted); }
.config-grid-form { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.config-group-box { background: var(--bg-main); padding: 1.25rem; border-radius: var(--radius-md); border: 1px solid var(--border-light); }
.config-group-title { font-size: 1rem; font-weight: 700; color: var(--ocean-blue); margin-bottom: 0.75rem; }
.test-msg { font-size: 0.85rem; padding: 8px 12px; border-radius: var(--radius-sm); margin-top: 8px; }
.test-msg.pending { background: #f1f5f9; color: #475569; }
.test-msg.success { background: #dcfce7; color: #15803d; }
.test-msg.warning { background: #fef3c7; color: #b45309; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 992px) {
  .hero-section { min-height: 560px; padding: 4rem 0 4.5rem; background-position: 72% center; }
  .hero-headline { font-size: clamp(2rem, 5vw, 2.6rem); }
  .hero-text-content { max-width: 100%; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .groups-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .info-cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 992px) {
  body.rtl-layout .hero-section { background-position: 28% center; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 76px; left: 0; right: 0;
    background: #061a29; flex-direction: column; padding: 2rem; gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); display: none;
  }
  .nav-links.nav-open { display: flex; }
  .mobile-menu-btn { display: block; }
  .btn-header-cta { display: none; }
  .hero-section { min-height: 520px; padding: 3.5rem 0 4rem; background-position: 74% 28%; }
  .hero-headline { font-size: clamp(1.7rem, 6vw, 2.1rem); line-height: 1.22; }
  .hero-subheadline { font-size: 1rem; line-height: 1.6; }
  .hero-quick-info { grid-template-columns: 1fr 1fr; gap: 0.5rem 1rem; max-width: 100%; }
  .quick-info-item { font-size: 0.85rem; }
  .hero-cta-group { gap: 0.75rem; }
  .btn-primary-hero, .btn-secondary-hero { font-size: 0.95rem; padding: 0.8rem 1.5rem; }
  .section-title { font-size: 1.6rem; }
  .why-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .rules-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card { padding: 2rem 1.5rem; }
  .pricing-currency { font-size: 2.8rem; }
  .final-cta-title { font-size: 1.7rem; }
  .footer-bottom-bar { flex-direction: column; gap: 1rem; text-align: center; }
  .sticky-mobile-cta { display: block; }
  body { padding-bottom: 56px; }
  .why-section, .groups-section, .pricing-section { background-attachment: scroll; }
}

@media (max-width: 768px) {
  body.rtl-layout .hero-section { background-position: 26% 28%; }
}

@media (max-width: 430px) {
  .hero-section { min-height: 480px; padding: 3rem 0 3.5rem; background-position: 76% 22%; }
  .hero-headline { font-size: clamp(1.45rem, 7vw, 1.7rem); }
  .hero-subheadline { font-size: 0.9rem; }
  .hero-quick-info { grid-template-columns: 1fr; gap: 0.4rem; }
  .quick-info-item { font-size: 0.8rem; }
  .hero-cta-group { flex-wrap: wrap; gap: 0.6rem; }
  .btn-primary-hero, .btn-secondary-hero { font-size: 0.9rem; padding: 0.75rem 1.25rem; }
  .section-title { font-size: 1.35rem; }
  .group-card { padding: 1.75rem 1.5rem; }
  .pricing-currency { font-size: 2.4rem; }
  .final-cta-title { font-size: 1.5rem; }
  .rules-grid { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  body.rtl-layout .hero-section { background-position: 24% 22%; }
}

@media (max-width: 360px) {
  .hero-section { min-height: 460px; background-position: 78% 18%; }
  .hero-headline { font-size: clamp(1.3rem, 8vw, 1.5rem); }
  .hero-cta-group { flex-direction: column; align-items: stretch; gap: 0.5rem; }
  .btn-primary-hero, .btn-secondary-hero { justify-content: center; width: 100%; }
}

@media (max-width: 360px) {
  body.rtl-layout .hero-section { background-position: 22% 18%; }
}

/* ========================================================
   Footer Contact Buttons — WhatsApp, Instagram, Phone
   ======================================================== */
.footer-contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #e2e8f0;
}

.footer-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.footer-wa-btn {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(37, 211, 102, 0.05));
  border-color: rgba(37, 211, 102, 0.3);
  color: #34d399;
}

.footer-wa-btn:hover {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.25), rgba(37, 211, 102, 0.1));
  border-color: rgba(37, 211, 102, 0.5);
}

.footer-ig-btn {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.15), rgba(247, 119, 55, 0.1));
  border-color: rgba(225, 48, 108, 0.3);
  color: #e1306c;
}

.footer-ig-btn:hover {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.25), rgba(247, 119, 55, 0.15));
  border-color: rgba(225, 48, 108, 0.5);
}

.footer-phone-btn {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(56, 189, 248, 0.05));
  border-color: rgba(56, 189, 248, 0.3);
  color: #38bdf8;
}

.footer-phone-btn:hover {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.25), rgba(56, 189, 248, 0.1));
  border-color: rgba(56, 189, 248, 0.5);
}

.footer-contact-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-contact-buttons {
    grid-column: 1 / -1;
  }
}
