/* ==========================================================================
   AL NOKHBA FOOTBALL ACADEMY - MAIN STYLESHEET
   Location: Hay Al Hassani, Dakhla - Morocco
   Aesthetic: Premium European Club / Athletic Glassmorphism Dark Mode
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: #07090e;
  color: #f1f5f9;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
}

body {
  font-family: 'Cairo', 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #07090e;
  color: #f1f5f9;
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background Atmosphere Gradients */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: 
    radial-gradient(circle at 85% 15%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 15% 75%, rgba(0, 245, 212, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(13, 17, 26, 0.95) 0%, #07090e 100%);
  z-index: -2;
  pointer-events: none;
}

/* Subtle Athletic Pitch Grid Pattern Overlay */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -1;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

ul, ol {
  list-style: none;
}

img, svg {
  max-width: 100%;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* 2. Typography & Badges */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #ffd700;
  padding: 6px 18px;
  border-radius: 9999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 16px;
}

.section-title span {
  background: linear-gradient(135deg, #FFF9D2 0%, #FFDF73 30%, #D4AF37 75%, #997404 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.15rem;
  color: #94a3b8;
  line-height: 1.8;
}

/* 3. Athletic Glassmorphic Cards */
.glass-card {
  background: rgba(16, 22, 35, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s ease, 
              box-shadow 0.4s ease;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
}

.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 25px 50px -12px rgba(212, 175, 55, 0.2), 0 0 20px rgba(212, 175, 55, 0.1);
}

.glass-card:hover::before {
  opacity: 1;
}

/* 4. Buttons & Interactive Elements */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  border-radius: 12px;
  padding: 14px 28px;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-gold {
  background: linear-gradient(135deg, #FFDF73 0%, #D4AF37 60%, #997404 100%);
  color: #07090e;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6), 0 0 20px rgba(255, 223, 115, 0.5);
  color: #000;
}

.btn-outline-gold {
  background: rgba(212, 175, 55, 0.08);
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  color: #FFDF73;
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: #ffd700;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6), 0 0 20px rgba(37, 211, 102, 0.5);
}

.btn-neon {
  background: linear-gradient(135deg, #00f5d4 0%, #00b4d8 100%);
  color: #07090e;
  box-shadow: 0 8px 25px rgba(0, 245, 212, 0.4);
}

.btn-neon:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 245, 212, 0.6);
}

/* 5. Navigation Bar */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.35s ease;
  height: 80px;
  display: flex;
  align-items: center;
}

.header-nav.scrolled {
  background: rgba(7, 9, 14, 0.95);
  height: 70px;
  border-bottom-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-brand-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
}

.nav-brand-title span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffd700;
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 1rem;
  font-weight: 700;
  color: #cbd5e1;
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2.5px;
  background: #ffd700;
  border-radius: 999px;
  transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: #ffd700;
}

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

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

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffd700;
  transition: all 0.3s ease;
}

/* 6. Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 130px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -3;
  filter: brightness(0.25) contrast(1.2);
}

.hero-overlay-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.15) 0%, rgba(7, 9, 14, 0.95) 75%);
  z-index: -2;
}

.hero-stage-box {
  position: relative;
  width: 260px;
  height: 220px;
  margin: 0 auto 30px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-player-silhouette {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
}

.hero-flying-ball {
  position: absolute;
  left: 80px;
  bottom: 30px;
  z-index: 4;
}

.hero-shockwave-ring {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid rgba(255, 223, 115, 0.8);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}

.hero-shield-crest {
  width: 130px;
  height: 130px;
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 22px;
  color: #ffffff;
}

.hero-title span {
  background: linear-gradient(135deg, #FFF9D2 0%, #FFDF73 30%, #D4AF37 75%, #997404 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-description {
  font-size: 1.25rem;
  color: #cbd5e1;
  max-width: 720px;
  margin: 0 auto 36px auto;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.hero-social-panel {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 18px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  font-size: 1.1rem;
  transition: all 0.25s ease;
}

.social-icon-btn:hover {
  background: #ffd700;
  color: #07090e;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* 7. Stats Counter Section */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-box {
  background: rgba(16, 22, 35, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 18px;
  padding: 24px 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.stat-box:hover {
  border-color: rgba(212, 175, 55, 0.6);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.2);
}

.counter-val {
  font-family: 'Plus Jakarta Sans', 'Cairo', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #ffd700;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-box p {
  font-size: 0.95rem;
  font-weight: 700;
  color: #94a3b8;
}

/* 8. Sections Structure */
.section {
  padding: 100px 0;
  position: relative;
}

/* 9. 3D Player Showcase Carousel */
.players-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.filter-tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  padding: 10px 24px;
  border-radius: 9999px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-tab-btn.active, .filter-tab-btn:hover {
  background: linear-gradient(135deg, #FFDF73 0%, #D4AF37 100%);
  border-color: #ffd700;
  color: #07090e;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.4);
}

.players-carousel-3d-wrapper {
  position: relative;
  width: 100%;
  perspective: 1200px;
  padding: 30px 0;
  overflow: hidden;
}

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

/* Player Card Athletic Glassmorphism */
.player-card {
  background: rgba(16, 22, 35, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
}

.player-card:hover {
  border-color: rgba(212, 175, 55, 0.8);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 0 0 25px rgba(212, 175, 55, 0.35);
}

.player-card-header {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 40%, rgba(212, 175, 55, 0.2) 0%, rgba(7, 9, 14, 0.9) 100%);
}

.player-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.player-card:hover .player-image {
  transform: scale(1.1) rotate(-1deg);
}

.player-rating-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #FFDF73 0%, #D4AF37 100%);
  color: #07090e;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.player-pos-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(7, 9, 14, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #ffd700;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 999px;
  z-index: 2;
}

.player-info {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.player-name {
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 4px;
}

.player-category {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 16px;
}

.player-skills-meter {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 18px;
}

.skill-stat-item .stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  color: #00f5d4;
  display: block;
}

.skill-stat-item .stat-lbl {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 600;
}

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

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

.program-card.featured {
  border-color: rgba(212, 175, 55, 0.8);
  background: rgba(26, 32, 50, 0.85);
  box-shadow: 0 25px 60px rgba(212, 175, 55, 0.18);
}

.program-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #ffd700;
  padding: 4px 14px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.program-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.program-desc {
  color: #94a3b8;
  font-size: 0.98rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.program-features-list {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.program-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.program-features-list li i {
  color: #ffd700;
  font-size: 1.1rem;
}

/* 11. Matches & Fixtures */
.matches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 24px;
}

.match-card {
  background: rgba(16, 22, 35, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.match-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
}

.match-league {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffd700;
}

.match-status-badge {
  font-size: 0.78rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(0, 245, 212, 0.15);
  color: #00f5d4;
  border: 1px solid rgba(0, 245, 212, 0.3);
}

.match-scoreboard {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.match-team {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.match-team.away {
  justify-content: flex-end;
}

.team-logo-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #ffd700;
}

.team-name {
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
}

.match-score {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  padding: 0 16px;
  color: #ffd700;
}

.match-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #94a3b8;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* 12. Coaches Section */
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.coach-card {
  text-align: center;
  padding: 30px 24px;
}

.coach-avatar-wrapper {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  border: 3px solid #d4af37;
  padding: 4px;
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
  overflow: hidden;
}

.coach-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.coach-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.coach-role {
  color: #ffd700;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.coach-license-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

/* 13. Map & Direct Registration Section */
.map-contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.interactive-map-card {
  height: 100%;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.map-viewport {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 14px;
  overflow: hidden;
  background: #0d111a;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.map-location-banner {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.loc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.loc-item i {
  color: #ffd700;
  font-size: 1.2rem;
  width: 24px;
}

/* Custom Styled Map Graphic Pin */
.map-pin-dakhla {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.map-pin-pulse {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.3);
  animation: mapPulse 2s infinite ease-out;
}

.map-pin-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFDF73 0%, #D4AF37 100%);
  color: #07090e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
  position: relative;
  z-index: 2;
}

.map-pin-label {
  background: rgba(7, 9, 14, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.6);
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  margin-top: 8px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

@keyframes mapPulse {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Registration Form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #cbd5e1;
}

.form-control {
  background: rgba(7, 9, 14, 0.7);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px 18px;
  color: #ffffff;
  transition: all 0.3s ease;
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  background: rgba(13, 17, 26, 0.9);
}

.form-control option {
  background: #0d111a;
  color: #fff;
}

/* 14. Preloader */
.nokhba-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #07090e;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader-crest {
  width: 100px;
  height: 100px;
  margin-bottom: 24px;
  animation: preloaderPulse 1.8s infinite ease-in-out;
  filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.8));
}

.preloader-progress-bar {
  width: 220px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.preloader-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #FFDF73, #D4AF37);
  border-radius: 999px;
  transition: width 0.3s ease;
}

.preloader-text {
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffd700;
  letter-spacing: 1px;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5)); }
  50% { transform: scale(1.08); filter: drop-shadow(0 0 35px rgba(212, 175, 55, 0.9)); }
}

/* 15. Footer */
.footer-main {
  background: #040609;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  padding: 80px 0 30px 0;
  position: relative;
}

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

.footer-col-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35px;
  height: 2.5px;
  background: #ffd700;
  border-radius: 999px;
}

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

.footer-links a {
  color: #94a3b8;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: #ffd700;
  transform: translateX(-5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #64748b;
  font-size: 0.9rem;
}

/* 16. Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.7rem;
  }
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .map-contact-wrapper {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: calc(100vh - 80px);
    background: rgba(7, 9, 14, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: 2.1rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
