/* ============================================================
   GA FITNESS – LUXURY DARK GOLD DESIGN SYSTEM
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Outfit:wght@300;400;500;600;700&family=Noto+Kufi+Arabic:wght@300;400;600;700;900&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --bg-primary:    #090A0C;
  --bg-secondary:  #0E1015;
  --bg-card:       #13161D;
  --bg-card-hover: #191D26;
  --border-subtle: rgba(212,175,55,0.12);
  --border-glow:   rgba(212,175,55,0.35);

  --gold:          #D4AF37;
  --gold-light:    #F0D060;
  --gold-dark:     #A07B1E;
  --gold-muted:    rgba(212,175,55,0.18);
  --bronze:        #CD7F32;

  --text-primary:  #F2EFE9;
  --text-secondary:#A09880;
  --text-muted:    #5A5447;

  --success:       #3D9970;
  --danger:        #C62828;
  --women-color:   #C2185B;
  --men-color:     #1565C0;
  --mixed-color:   #7B5EA7;
  --closed-color:  #4A4A4A;

  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;

  --shadow-card:   0 4px 24px rgba(0,0,0,0.45);
  --shadow-gold:   0 0 24px rgba(212,175,55,0.25);
  --shadow-float:  0 8px 40px rgba(0,0,0,0.6);

  --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);

  --font-heading:  'Cinzel', 'Noto Kufi Arabic', serif;
  --font-body:     'Outfit', 'Noto Kufi Arabic', sans-serif;
}

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

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

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

/* ── RTL Support ──────────────────────────────────────────── */
[dir="rtl"] {
  font-family: 'Noto Kufi Arabic', 'Outfit', sans-serif;
}
[dir="rtl"] .brand-name {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.05em;
}
[dir="rtl"] .section-badge,
[dir="rtl"] .hero-tagline {
  letter-spacing: 0.03em;
}

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── Selection ────────────────────────────────────────────── */
::selection { background: var(--gold-muted); color: var(--gold-light); }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text-primary);
}
p { color: var(--text-secondary); }
a { color: inherit; text-decoration: none; }

/* ── Utility ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.gold-text { color: var(--gold); }
.section-pad { padding: 100px 0; }

/* ── Section Badge ────────────────────────────────────────── */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-muted);
  border: 1px solid var(--border-glow);
  border-radius: 999px;
  padding: 6px 18px;
  margin-bottom: 20px;
}
.section-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* ── Divider ──────────────────────────────────────────────── */
.gold-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin: 20px 0 28px;
}
[dir="rtl"] .gold-divider {
  background: linear-gradient(270deg, var(--gold), transparent);
}

/* ────────────────────────────────────────────────────────────
   NAVBAR
   ──────────────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
#navbar.scrolled {
  background: rgba(9,10,12,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.6);
  border-bottom: 1px solid var(--border-subtle);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1240px;
  margin: 0 auto;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--bronze));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--bg-primary);
  letter-spacing: -1px;
  flex-shrink: 0;
}
.brand-name {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-primary);
}
.brand-name span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 3px;
}
.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.lang-btn.active {
  background: var(--gold);
  color: var(--bg-primary);
}
.lang-btn:hover:not(.active) {
  background: var(--gold-muted);
  color: var(--gold);
}

.btn-nav-join {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}
.btn-nav-join:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.35);
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ────────────────────────────────────────────────────────────
   HERO
   ──────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/hero.png');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(9,10,12,0.92) 0%,
    rgba(9,10,12,0.7) 55%,
    rgba(9,10,12,0.35) 100%
  );
}
[dir="rtl"] .hero-overlay {
  background: linear-gradient(
    to left,
    rgba(9,10,12,0.92) 0%,
    rgba(9,10,12,0.7) 55%,
    rgba(9,10,12,0.35) 100%
  );
}
.hero-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  animation: fadeSlideUp 1.1s ease both;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(9,10,12,0.75);
  border: 1px solid var(--border-glow);
  border-radius: 999px;
  padding: 7px 16px 7px 10px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  font-size: 0.8rem;
}
.live-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  animation: livePulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
.live-dot.red { background: var(--danger); }
.live-dot.blue { background: #42A5F5; }
.live-dot.pink { background: #EC407A; }
.live-dot.purple { background: #AB47BC; }
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.5); }
  50%       { box-shadow: 0 0 0 8px rgba(212,175,55,0); }
}
.live-label { color: var(--gold); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }
.live-status-text { color: var(--text-primary); font-weight: 500; }

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 16px 34px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212,175,55,0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-glow);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.btn-secondary:hover {
  background: var(--gold-muted);
  color: var(--gold);
  border-color: var(--gold);
}

/* Hero stat chips */
.hero-stats {
  position: absolute;
  bottom: 60px;
  left: 0; right: 0;
  z-index: 2;
}
.hero-stats .container {
  display: flex;
  gap: 1px;
}
.stat-chip {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 24px;
  background: rgba(13,16,21,0.7);
  backdrop-filter: blur(12px);
  border-top: 2px solid var(--border-subtle);
  border-bottom: 0;
  transition: border-color var(--transition);
  animation: fadeSlideUp 1.1s ease both;
}
.stat-chip:hover { border-top-color: var(--gold); }
.stat-chip:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.stat-chip:last-child  { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
[dir="rtl"] .stat-chip:first-child { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
[dir="rtl"] .stat-chip:last-child  { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }

.stat-chip-label {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}
.stat-chip-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ────────────────────────────────────────────────────────────
   ABOUT SECTION
   ──────────────────────────────────────────────────────────── */
#about { background: var(--bg-secondary); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: brightness(0.9);
}
.about-image-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(9,10,12,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
[dir="rtl"] .about-image-overlay { left: 24px; right: 24px; }
.about-overlay-icon {
  width: 44px; height: 44px;
  background: var(--gold-muted);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.about-overlay-label { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 2px; }
.about-overlay-value { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--gold); }

.about-content .about-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.about-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.about-features {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  transition: border-color var(--transition), transform var(--transition);
}
.feature-item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.feature-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-text { font-size: 0.83rem; color: var(--text-secondary); line-height: 1.5; font-weight: 500; }

/* ────────────────────────────────────────────────────────────
   SCHEDULE SECTION
   ──────────────────────────────────────────────────────────── */
#schedule { background: var(--bg-primary); }

.schedule-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.schedule-header .section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.schedule-header p { font-size: 0.95rem; color: var(--text-secondary); }

/* Tabs */
.sched-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}
.sched-tab {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}
.sched-tab:hover {
  border-color: var(--gold-muted);
  color: var(--text-primary);
}
.sched-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #111;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
}

/* Panel */
.sched-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.sched-panel-hidden {
  display: none;
}

/* Timeline */
.timeline-wrap {
  position: relative;
  margin-bottom: 40px;
}
.timeline-bar {
  display: flex;
  height: 64px;
  background: #222;
  border-radius: var(--radius-sm);
  position: relative;
}
.tl-seg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 16px;
  color: #fff;
  position: relative;
  border-inline-end: 1px solid rgba(0,0,0,0.2);
  transition: opacity var(--transition);
}
.tl-seg:last-child { border-inline-end: none; }
.tl-seg:hover { opacity: 0.85; }

.tl-mixed { 
  background: #C9A84C; 
  color: #111; 
  border-start-start-radius: var(--radius-sm);
  border-end-start-radius: var(--radius-sm);
}
.tl-women { background: #C06080; }
.tl-men   { 
  background: #A04040; 
  border-start-end-radius: var(--radius-sm);
  border-end-end-radius: var(--radius-sm);
}

.tl-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tl-time {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Time Axis (Labels below bar) */
.tl-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
}

/* Live Needle */
.tl-needle {
  position: absolute;
  top: -10px; 
  bottom: -10px;
  width: 2px;
  background: #fff;
  z-index: 10;
  box-shadow: 0 0 8px rgba(255,255,255,0.8);
  transform: translateX(-50%);
  pointer-events: none;
  transition: left 1s ease-in-out;
}
.tl-needle::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px rgba(255,255,255,1);
}

/* Legend */
.tl-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-subtle);
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.legend-dot {
  width: 12px; height: 12px;
  border-radius: 2px;
}

/* Open Now */
.tl-open-now {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  flex-wrap: wrap;
}
.men-countdown-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

/* Mixed countdown styling (Targets Women Only - Pink color scheme) */
.men-countdown-badge.cd-women {
  background: rgba(192, 96, 128, 0.15);
  border: 1px solid rgba(192, 96, 128, 0.4);
  color: #ffa6c9;
  box-shadow: 0 0 12px rgba(192, 96, 128, 0.2);
  animation: glow-pink 2s infinite alternate;
}
@keyframes glow-pink {
  0% { border-color: rgba(192, 96, 128, 0.4); box-shadow: 0 0 8px rgba(192, 96, 128, 0.2); }
  100% { border-color: rgba(255, 166, 201, 0.7); box-shadow: 0 0 14px rgba(255, 166, 201, 0.4); }
}

/* Women countdown styling (Targets Men Only - Red/Blue color scheme) */
.men-countdown-badge.cd-men {
  background: rgba(160, 64, 64, 0.15);
  border: 1px solid rgba(160, 64, 64, 0.4);
  color: #ff8a8a;
  box-shadow: 0 0 12px rgba(160, 64, 64, 0.2);
  animation: glow-red 2s infinite alternate;
}
@keyframes glow-red {
  0% { border-color: rgba(160, 64, 64, 0.4); box-shadow: 0 0 8px rgba(160, 64, 64, 0.2); }
  100% { border-color: rgba(255, 138, 138, 0.7); box-shadow: 0 0 14px rgba(255, 138, 138, 0.4); }
}

/* Men countdown styling (Targets Closed - Orange/Yellow warning theme) */
.men-countdown-badge.cd-closed {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #ffdf7a;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
  animation: glow-yellow 2s infinite alternate;
}
@keyframes glow-yellow {
  0% { border-color: rgba(212, 175, 55, 0.4); box-shadow: 0 0 8px rgba(212, 175, 55, 0.2); }
  100% { border-color: rgba(255, 223, 122, 0.7); box-shadow: 0 0 14px rgba(255, 223, 122, 0.4); }
}

/* Closed countdown styling (Targets Open - Green/Gold positive theme) */
.men-countdown-badge.cd-open {
  background: rgba(76, 175, 80, 0.12);
  border: 1px solid rgba(76, 175, 80, 0.4);
  color: #a5d6a7;
  box-shadow: 0 0 12px rgba(76, 175, 80, 0.2);
  animation: glow-green 2s infinite alternate;
}
@keyframes glow-green {
  0% { border-color: rgba(76, 175, 80, 0.4); box-shadow: 0 0 8px rgba(76, 175, 80, 0.2); }
  100% { border-color: rgba(165, 214, 167, 0.7); box-shadow: 0 0 14px rgba(165, 214, 167, 0.4); }
}
.live-dot {
  width: 10px; height: 10px;
  background: #4CAF50;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(76,175,80,0.6);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(76,175,80, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(76,175,80, 0); }
  100% { box-shadow: 0 0 0 0 rgba(76,175,80, 0); }
}

/* Friday Closed */
.friday-closed-box {
  text-align: center;
  padding: 40px 20px;
}
.friday-msg {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
  .sched-panel { padding: 24px 16px; }
  .tl-label { font-size: 0.75rem; }
  .tl-time { display: none; }
  .tl-legend { flex-direction: column; gap: 12px; }
}


/* ────────────────────────────────────────────────────────────
   AMENITIES SECTION
   ──────────────────────────────────────────────────────────── */
#amenities { background: var(--bg-secondary); }

.amenities-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.amenities-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.amenity-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: default;
}
.amenity-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-card);
}
.amenity-img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.amenity-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.8);
}
.amenity-card:hover .amenity-img-wrap img {
  transform: scale(1.08);
}
.amenity-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(19,22,29,0.95), transparent);
}

.amenity-body { padding: 24px; }
.amenity-icon-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.amenity-icon {
  width: 48px; height: 48px;
  background: var(--gold-muted);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.amenity-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}
.amenity-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ────────────────────────────────────────────────────────────
   LOCATION SECTION
   ──────────────────────────────────────────────────────────── */
#location { background: var(--bg-primary); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.location-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
  transition: border-color var(--transition);
}
.contact-card:hover { border-color: var(--border-glow); }
.contact-card-icon {
  width: 44px; height: 44px;
  background: var(--gold-muted);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-card-value {
  font-size: 0.92rem;
  color: var(--text-primary);
  line-height: 1.5;
}
.contact-card-value a[href^="tel"], 
.footer-contact-row a[href^="tel"] {
  direction: ltr !important;
  unicode-bidi: embed !important;
  display: inline-block;
}
.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  margin-top: 10px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-directions:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.35);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  height: 400px;
  position: relative;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) saturate(0.5) brightness(0.9);
}

/* ────────────────────────────────────────────────────────────
   MEMBERSHIP CTA STRIP
   ──────────────────────────────────────────────────────────── */
#membership-cta {
  background: linear-gradient(135deg, #0D0F14 0%, #161209 50%, #0D0F14 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#membership-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.15;
}
.cta-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ────────────────────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────────────────────── */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .brand-logo { margin-bottom: 16px; }
.footer-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}
.social-links { display: flex; gap: 12px; }
.social-btn {
  width: 38px; height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  cursor: pointer;
}
.social-btn:hover {
  border-color: var(--gold);
  background: var(--gold-muted);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-row .fi { font-size: 1rem; color: var(--gold); flex-shrink: 0; }
.footer-contact-row span { font-size: 0.87rem; color: var(--text-muted); }

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }
.footer-bottom .gold-logo-small {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
}

/* ────────────────────────────────────────────────────────────
   FLOATING WHATSAPP
   ──────────────────────────────────────────────────────────── */
#wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
[dir="rtl"] #wa-float {
  right: auto;
  left: 28px;
  align-items: flex-start;
}
.wa-tooltip {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
[dir="rtl"] .wa-tooltip { transform: translateX(-10px); }
#wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.wa-btn {
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  animation: wa-glow 2.5s ease-in-out infinite;
  transition: transform var(--transition);
  cursor: pointer;
}
.wa-btn:hover { transform: scale(1.1); }
.wa-btn svg { width: 30px; height: 30px; fill: #fff; }
@keyframes wa-glow {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.3); }
  50%       { box-shadow: 0 6px 24px rgba(37,211,102,0.5), 0 0 0 16px rgba(37,211,102,0); }
}

/* ────────────────────────────────────────────────────────────
   MEMBERSHIP MODAL
   ──────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(9,10,12,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 40px rgba(212,175,55,0.08);
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }

.modal-header {
  padding: 32px 32px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.modal-header-text { flex: 1; }
.modal-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}
.modal-subtitle { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }
.modal-close {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}
.modal-close:hover { background: rgba(212,175,55,0.1); color: var(--gold); }

.modal-body { padding: 28px 32px 32px; }

.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-label .req { color: var(--danger); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 13px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
[dir="rtl"] .form-input,
[dir="rtl"] .form-select,
[dir="rtl"] .form-textarea {
  font-family: 'Noto Kufi Arabic', 'Outfit', sans-serif;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23D4AF37' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 10px;
  padding-right: 38px;
  cursor: pointer;
}
[dir="rtl"] .form-select {
  background-position: left 14px center;
  padding-right: 16px;
  padding-left: 38px;
}
.form-select option { background: var(--bg-card); }
.form-textarea { resize: vertical; min-height: 90px; }

/* Radio gender */
.gender-radios { display: flex; gap: 12px; }
.gender-radio-label {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.gender-radio-label input[type="radio"] { display: none; }
.gender-radio-label:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-muted);
  color: var(--gold);
  font-weight: 600;
}
.radio-icon { font-size: 1.1rem; }

.btn-submit-wa {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 17px 24px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}
.btn-submit-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212,175,55,0.35);
}
.btn-submit-wa:active { transform: scale(0.98); }

/* ────────────────────────────────────────────────────────────
   SCROLL REVEAL ANIMATION
   ──────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ────────────────────────────────────────────────────────────
   RESPONSIVE
   ──────────────────────────────────────────────────────────── */
@media (max-width: 992px) {
  .about-grid     { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap img { height: 360px; }
  .location-grid  { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav-join { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(9,10,12,0.97);
    backdrop-filter: blur(16px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border-subtle);
  }
  .nav-links.open .btn-nav-join { display: flex; }

  .hero-stats { position: relative; bottom: auto; margin-top: 0; }
  .hero-stats .container { flex-direction: row; flex-wrap: wrap; gap: 0; }
  .stat-chip { border-radius: 0; border-top-width: 1px; flex: 1 1 50%; min-width: 0; }
  .stat-chip:first-child { border-radius: var(--radius-sm) 0 0 0; }
  .stat-chip:last-child  { border-radius: 0 0 var(--radius-sm) var(--radius-sm); }

  .hero-content { padding-top: 100px; padding-bottom: 32px; }
  #hero { height: auto; min-height: 100vh; }
  .hero-overlay { background: rgba(9,10,12,0.8); }

  /* 2-column mobile layouts */
  .amenities-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .about-features { grid-template-columns: 1fr 1fr; }

  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand   { grid-column: 1 / -1; }
  .footer-bottom  { flex-direction: column; text-align: center; }

  .schedule-grid  { grid-template-columns: 1fr; }
  .modal-header   { padding: 24px 24px 0; }
  .modal-body     { padding: 20px 24px 24px; }
  .hours-banner   { flex-direction: column; align-items: flex-start; }

  /* Amenity cards mobile: compact */
  .amenity-card   { border-radius: var(--radius-md); }
  .amenity-img-wrap img { height: 140px; }
  .amenity-body   { padding: 14px; }
  .amenity-card-title { font-size: 0.9rem; }
  .amenity-desc   { font-size: 0.8rem; }

  /* Timeline mobile */
  .tl-label { font-size: 0.7rem; }
  .tl-time  { font-size: 0.6rem; }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .gender-radios  { flex-direction: column; }
  .amenities-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
}

/* ────────────────────────────────────────────────────────────
   REVIEWS SECTION
   ──────────────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 0;
}

@media (max-width: 992px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 480px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: -12px;
  inset-inline-start: 20px;
  font-size: 7rem;
  line-height: 1;
  color: var(--gold-muted);
  font-family: 'Cinzel', serif;
  pointer-events: none;
  select: none;
}
.review-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-secondary);
  font-style: italic;
  flex: 1;
  margin: 0;
  quotes: none;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--bronze));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.review-info { flex: 1; min-width: 0; }

.review-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 5px;
}

