/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  --color-bg-dark: #0a0f0d;
  --color-bg-darker: #050807;
  --color-bg-card: #0e1613;
  --color-text-light: #f3f4f6;
  --color-text-muted: #9ca3af;
  --color-text-dark: #1f2937;
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-primary-rgb: 16, 185, 129;
  --color-accent-blue: #3b82f6;
  --color-accent-red: #ef4444;
  --color-white: #ffffff;
  
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(255, 255, 255, 0.05);
  --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.05);
  --border-glass: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   BASE & RESET
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

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

/* Utilities */
.accent-text {
  color: var(--color-primary);
}

/* ==========================================================================
   HEADER SECTION
   ========================================================================== */
.main-header {
  background-color: var(--color-bg-darker);
  border-bottom: var(--border-glass);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition-smooth);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.logo-svg {
  width: 3.6rem;
  height: 3.6rem;
  filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.4));
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--color-white);
}

.desktop-nav ul {
  display: flex;
  gap: 3.2rem;
}

.nav-item {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  padding: 0.8rem 0;
  position: relative;
}

.nav-item:hover,
.nav-item.active {
  color: var(--color-white);
}

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

.nav-item:hover::after {
  width: 100%;
}

.user-utilities {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.lang-selector {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
}

.divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 1.4rem;
}

.auth-btn {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: var(--border-glass);
  color: var(--color-white);
}

.auth-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

/* Subheader Social/Phone Bar */
.subheader-bar {
  background-color: rgba(0, 0, 0, 0.3);
  border-bottom: var(--border-glass);
  padding: 0.8rem 2.4rem;
}

.subheader-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.promo-tag {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 1px;
}

.subheader-right {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.social-icons {
  display: flex;
  gap: 1.6rem;
  color: var(--color-text-muted);
}

.social-icons a:hover {
  color: var(--color-white);
}

.phone-number {
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--color-text-muted);
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background-color: var(--color-white);
  transition: var(--transition-smooth);
}

/* Mobile Overlay Menu */
.mobile-overlay-menu {
  position: fixed;
  top: 7rem;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(5, 8, 7, 0.95);
  backdrop-filter: blur(15px);
  z-index: 99;
  overflow: hidden;
  transition: height 0.4s ease;
}

.mobile-overlay-menu.open {
  height: calc(100vh - 7rem);
}

.mobile-nav {
  padding: 4rem 2.4rem;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.mob-nav-item {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-white);
  display: block;
}

.mob-auth-li {
  margin-top: 2rem;
}

.mob-auth-btn {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
  text-align: center;
  padding: 1.6rem;
  border-radius: 8px;
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 80vh;
  max-height: 900px;
  background: linear-gradient(180deg, var(--color-bg-darker) 0%, var(--color-bg-dark) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8rem 2.4rem;
  z-index: 1;
}

.hero-bg-text {
  position: absolute;
  font-family: var(--font-heading);
  font-size: clamp(8rem, 20vw, 24rem);
  font-weight: 900;
  letter-spacing: -2px;
  color: rgba(255, 255, 255, 0.04);
  user-select: none;
  pointer-events: none;
  z-index: -1;
  text-align: center;
  width: 100%;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-center-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-img {
  width: 85%;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 40px rgba(16, 185, 129, 0.15));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Floating interactive tags */
.floating-tag {
  position: absolute;
  z-index: 5;
  background: rgba(14, 22, 19, 0.7);
  backdrop-filter: blur(10px);
  border: var(--border-glass);
  padding: 0.8rem 1.6rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.floating-tag:hover {
  background: rgba(16, 185, 129, 0.2);
  border-color: var(--color-primary);
  transform: scale(1.05);
}

.floating-tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-primary);
  box-shadow: 0 0 10px var(--color-primary);
  display: inline-block;
}

.floating-tag .tag-label {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--color-white);
  white-space: nowrap;
}

/* Positioning tooltips around the main image */
.tag-1 { top: 10%; left: -5%; }
.tag-2 { top: 30%; right: -5%; }
.tag-3 { bottom: 15%; left: -8%; }
.tag-4 { bottom: 12%; right: -2%; }

/* Diagonal split dividing screen */
.diagonal-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background-color: var(--color-white);
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 0);
  z-index: 3;
}

/* ==========================================================================
   PACKAGES SECTION (COURSES)
   ========================================================================== */
.packages-section {
  background-color: var(--color-white);
  color: var(--color-text-dark);
  padding: 10rem 2.4rem;
  position: relative;
  z-index: 4;
  text-align: center;
}

.section-badge {
  display: inline-flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--color-bg-darker);
  margin-bottom: 1.2rem;
}

.section-subtitle {
  font-size: 1.6rem;
  color: #6b7280;
  margin-bottom: 6rem;
}

.packages-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
}

.course-card {
  background: var(--color-white);
  border: 1px dashed #d1d5db;
  border-radius: 4px;
  padding: 2.4rem;
  position: relative;
  transition: var(--transition-smooth);
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: var(--color-primary);
}

.card-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.4rem 1.2rem;
  border-radius: 4px;
}

.red-badge { background-color: rgba(239, 68, 68, 0.1); color: var(--color-accent-red); }
.green-badge { background-color: rgba(16, 185, 129, 0.1); color: var(--color-primary); }
.blue-badge { background-color: rgba(59, 130, 246, 0.1); color: var(--color-accent-blue); }

.card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: flex-start;
  text-align: left;
}

.course-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--color-bg-darker);
  margin-bottom: 0.4rem;
  margin-top: 1rem;
}

.course-sub {
  font-size: 1.3rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

.price-container {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  margin-bottom: 2.4rem;
}

.current-price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-bg-darker);
}

.per-month {
  font-size: 1.4rem;
  font-weight: 500;
  color: #6b7280;
}

.old-price {
  font-size: 1.6rem;
  color: #9ca3af;
  text-decoration: line-through;
}

.card-media {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 2.4rem;
}

.card-img {
  max-height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.color-swatches {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 3.2rem;
}

.swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
}

.swatch.active,
.swatch:hover {
  border-color: #6b7280;
  transform: scale(1.2);
}

.enroll-btn {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--color-bg-darker);
  border-bottom: 2px solid var(--color-bg-darker);
  padding-bottom: 0.4rem;
  margin-top: auto;
  align-self: flex-start;
}

.enroll-btn:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 6rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d1d5db;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.indicator.active {
  background-color: var(--color-bg-darker);
  transform: scale(1.2);
}

/* ==========================================================================
   MIDDLE BANNER (SPLIT GRID)
   ========================================================================== */
.middle-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 550px;
  position: relative;
  z-index: 5;
}

.banner-split {
  display: flex;
  align-items: center;
  padding: 6rem;
  position: relative;
  overflow: hidden;
}

.split-left {
  background-color: var(--color-bg-card);
  justify-content: flex-end;
}

.split-left-content {
  max-width: 480px;
  width: 100%;
}

.collection-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-primary);
  margin-bottom: 1.2rem;
}

.collection-main-text {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 2.4rem;
}

.collection-desc {
  font-size: 1.6rem;
  color: var(--color-text-muted);
  margin-bottom: 4rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  margin-bottom: 4rem;
}

.cat-box {
  background-color: rgba(255, 255, 255, 0.03);
  border: var(--border-glass);
  padding: 1.6rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  transition: var(--transition-smooth);
}

.cat-box:hover {
  background-color: rgba(16, 185, 129, 0.08);
  border-color: var(--color-primary);
}

.cat-icon {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-primary);
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-label {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-white);
}

.explore-btn {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-primary);
  display: inline-block;
  transition: var(--transition-smooth);
}

.explore-btn:hover {
  color: var(--color-white);
  transform: translateX(5px);
}

/* Split Right Column */
.split-right {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  justify-content: center;
}

.banner-player-img {
  position: relative;
  z-index: 2;
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
  animation: slow-tilt 8s ease-in-out infinite;
}

@keyframes slow-tilt {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(3deg) scale(1.02); }
  100% { transform: rotate(0deg) scale(1); }
}

.bg-watermark {
  position: absolute;
  font-family: var(--font-heading);
  font-size: 12rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
  pointer-events: none;
  z-index: 1;
}

/* ==========================================================================
   UPCOMING EVENTS SECTION
   ========================================================================== */
.events-section {
  padding: 10rem 2.4rem;
  background-color: var(--color-bg-darker);
  position: relative;
  z-index: 6;
}

.events-section .section-title {
  color: var(--color-white);
  text-align: center;
  margin-bottom: 6rem;
}

.events-container {
  max-width: 1100px;
  margin: 0 auto;
}

.event-details-card {
  background-color: var(--color-bg-card);
  border: var(--border-glass);
  border-radius: 12px;
  padding: 4.8rem;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 4.8rem;
  box-shadow: var(--shadow-premium);
}

.card-left {
  display: flex;
  flex-direction: column;
}

.event-tag {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--color-primary);
  margin-bottom: 1.6rem;
}

.event-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--color-white);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.event-desc {
  font-size: 1.5rem;
  color: var(--color-text-muted);
  margin-bottom: 3.2rem;
  line-height: 1.7;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: 4rem;
  padding-left: 1.6rem;
  border-left: 3px solid var(--color-primary);
}

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

.meta-title {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}

.meta-value {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-white);
}

.event-cta-btn {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 1.6rem 3.2rem;
  border-radius: 8px;
  cursor: pointer;
  align-self: flex-start;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.event-cta-btn:hover {
  background-color: var(--color-primary-hover);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
  transform: translateY(-2px);
}

.event-sub-indicators {
  display: flex;
  gap: 0.8rem;
  margin-top: 4.8rem;
}

.bar-ind {
  width: 2.4rem;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  cursor: pointer;
}

.bar-ind.active {
  background-color: var(--color-primary);
}

/* Roadmap Area */
.roadmap-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.roadmap-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-white);
  margin-bottom: 3.2rem;
  text-align: center;
}

.svg-map-wrapper {
  position: relative;
  width: 100%;
}

.roadmap-svg {
  width: 100%;
  height: auto;
}

.pulse-circle {
  animation: pulse 2s infinite;
  transform-origin: center;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.9; }
  50% { transform: scale(1.3); opacity: 0.3; }
  100% { transform: scale(0.9); opacity: 0.9; }
}

.map-node {
  cursor: pointer;
}

.map-node circle {
  transition: var(--transition-smooth);
}

.map-node:hover circle {
  fill: var(--color-accent-blue);
  r: 10px;
}

.node-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  pointer-events: none;
}

.map-tooltip {
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: var(--border-glass);
  padding: 1.6rem;
  border-radius: 8px;
  font-size: 1.3rem;
  color: var(--color-text-muted);
  min-height: 70px;
  transition: var(--transition-smooth);
  text-align: center;
  backdrop-filter: blur(5px);
}

/* ==========================================================================
   NEWSLETTER SECTION
   ========================================================================== */
.newsletter-cta {
  padding: 8rem 2.4rem;
  background-color: var(--color-bg-dark);
  position: relative;
  z-index: 7;
  overflow: hidden;
  border-top: var(--border-glass);
  border-bottom: var(--border-glass);
}

.newsletter-decor {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 4px solid rgba(16, 185, 129, 0.1);
  border-radius: 20px;
  pointer-events: none;
}

.decor-left {
  top: -40px;
  left: -40px;
  transform: rotate(15deg);
}

.decor-right {
  bottom: -40px;
  right: -40px;
  transform: rotate(-30deg);
}

.newsletter-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--color-white);
  margin-bottom: 1.6rem;
}

.newsletter-sub {
  font-size: 1.5rem;
  color: var(--color-text-muted);
  margin-bottom: 4rem;
}

.newsletter-form {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  gap: 1.2rem;
}

.news-input {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.05);
  border: var(--border-glass);
  padding: 1.6rem 2.4rem;
  border-radius: 8px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.news-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
  background-color: rgba(255, 255, 255, 0.08);
}

.news-submit-btn {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 1.6rem 3.2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.news-submit-btn:hover {
  background-color: var(--color-primary-hover);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.main-footer {
  background-color: var(--color-bg-darker);
  padding: 8rem 2.4rem 4rem;
  position: relative;
  z-index: 8;
  border-top: var(--border-glass);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-row-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4.8rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-nav ul {
  display: flex;
  gap: 3.2rem;
}

.footer-nav a {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-text-muted);
}

.footer-nav a:hover {
  color: var(--color-white);
}

.footer-right-info {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}

.footer-socials {
  display: flex;
  gap: 1.6rem;
  color: var(--color-text-muted);
}

.footer-socials a:hover {
  color: var(--color-white);
}

/* Legal Compliance Container */
.footer-legal-container {
  display: grid;
  grid-template-columns: 65% 35%;
  gap: 3.2rem;
  align-items: center;
  margin-bottom: 4.8rem;
}

.company-details {
  font-size: 1.3rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.anpc-logos {
  display: flex;
  justify-content: flex-end;
  gap: 1.6rem;
}

.anpc-badge {
  background-color: #121d17;
  border: 1px solid #1a3b2b;
  color: #10b981;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 1rem 2rem;
  border-radius: 4px;
  transition: var(--transition-smooth);
  cursor: pointer;
  text-align: center;
}

.anpc-badge:hover {
  background-color: #162a20;
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.policy-links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  font-size: 1.2rem;
  color: var(--color-text-muted);
}

.policy-link-item:hover {
  color: var(--color-white);
}

.bullet {
  color: rgba(255, 255, 255, 0.2);
}

.copyright {
  font-size: 1.2rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   MODAL DIALOG SYSTEM
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.modal-box {
  background-color: var(--color-bg-card);
  border: var(--border-glass);
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  padding: 4.8rem;
  position: relative;
  overflow-y: auto;
  box-shadow: var(--shadow-premium);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal-box {
  transform: scale(1);
}

.small-modal {
  max-width: 500px;
}

.modal-close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 3.2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  color: var(--color-white);
}

.modal-content h3 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 2rem;
}

.modal-content p {
  font-size: 1.4rem;
  color: var(--color-text-muted);
  margin-bottom: 1.6rem;
  line-height: 1.8;
}

.modal-content h4 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
  margin-top: 2.4rem;
  margin-bottom: 1rem;
}

/* Forms in Modal */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.4rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: left;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
  background-color: rgba(255, 255, 255, 0.05);
  border: var(--border-glass);
  padding: 1.2rem 1.6rem;
  border-radius: 6px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1.4rem;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.submit-booking-btn {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 1.6rem;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.submit-booking-btn:hover {
  background-color: var(--color-primary-hover);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE-FIRST OUTLINE)
   ========================================================================== */

/* Tablet Screens (under 1024px) */
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
  
  .middle-banner {
    grid-template-columns: 1fr;
  }
  
  .split-left {
    justify-content: center;
    padding: 6rem 2.4rem;
  }
  
  .split-right {
    padding: 6rem 2.4rem;
  }
  
  .event-details-card {
    grid-template-columns: 1fr;
    padding: 3.2rem;
  }
  
  .footer-legal-container {
    grid-template-columns: 1fr;
  }
  
  .anpc-logos {
    justify-content: flex-start;
  }
}

/* Mobile Screens (under 768px) */
@media (max-width: 768px) {
  .desktop-nav,
  .user-utilities {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .floating-tag {
    display: none; /* Hide interactive tooltips on mobile to prevent layout issues */
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }
  
  .footer-row-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.4rem;
  }
  
  .footer-nav ul {
    flex-direction: column;
    gap: 1.6rem;
  }
  
  .footer-right-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}

/* Extra Small Screens (375px - 430px) */
@media (max-width: 480px) {
  html {
    font-size: 56.25%; /* Shrink base slightly for small screens */
  }
  
  .hero-section {
    padding: 6rem 1.6rem;
  }
  
  .hero-main-img {
    width: 95%;
  }
  
  .packages-section {
    padding: 6rem 1.6rem;
  }
  
  .course-card {
    padding: 1.6rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .news-submit-btn {
    width: 100%;
  }
  
  .event-details-card {
    padding: 2.4rem 1.6rem;
  }
  
  .modal-box {
    padding: 2.4rem 1.6rem;
  }
}
