@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&family=Montserrat:wght@300;400;600;700&display=swap');

:root {
  --primary-gold: #d4af37;
  --secondary-gold: #996515;
  --bg-black: #0a0a0a;
  --surface-black: #121212;
  --text-white: #f5f5f5;
  --text-gray: #a0a0a0;
  --gold-glow: 0 0 15px rgba(212, 175, 55, 0.4);
  --gold-glow-strong: 0 0 25px rgba(212, 175, 55, 0.6);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  background-color: var(--bg-black);
  color: var(--text-white);
  font-family: 'Cairo', 'Montserrat', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

[dir="rtl"] body {
  direction: rtl;
}

[dir="ltr"] body {
  direction: ltr;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Cairo', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gold-text {
  background: linear-gradient(45deg, var(--primary-gold), #fff7d1, var(--secondary-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gold-shimmer 4s linear infinite;
}

section {
  padding: 40px 0;
  overflow: hidden;
}

.mb-50 {
  margin-bottom: 50px;
}

@keyframes gold-shimmer {
  to {
    background-position: 200% center;
  }
}

.btn-primary {
  background: transparent;
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-start: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-gold);
  transition: var(--transition);
  z-index: -1;
}

.btn-primary:hover::before {
  inset-inline-start: 0;
}

.btn-primary:hover {
  color: #000;
  box-shadow: var(--gold-glow-strong);
}

.glow-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.glow-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent; /* Seamless merge */
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

nav.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

/* Price Badge - Luxury Redesign */
.price-badge {
    position: absolute;
    top: 25px;
    inset-inline-end: 25px;
    inset-inline-start: auto; /* Prevent stretching */
    width: fit-content;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.85); /* Deep dark background */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.5); /* Gold border */
    color: var(--primary-gold);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    z-index: 5;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    animation: gold-pulse-text 2s infinite alternate;
}


@keyframes gold-pulse-text {
    from { color: var(--primary-gold); text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }
    to { color: #fff7d1; text-shadow: 0 0 20px var(--primary-gold); }
}

/* Modal System */
#offer-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

#offer-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    width: 92%;
    max-width: 400px;
    background: #0d0d0d;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    position: relative;
    transform: translateY(20px) scale(0.98);
    transition: var(--transition);
    box-shadow: 0 40px 80px rgba(0,0,0,0.9);
    display: flex;
    flex-direction: column;
}

#offer-modal.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-content-wrapper {
    overflow: visible; /* No scroll as requested */
}

#close-modal {
    position: absolute;
    top: 15px;
    inset-inline-start: 15px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    transition: var(--transition);
}

#close-modal::before,
#close-modal::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: var(--primary-gold); /* Guaranteed gold color */
    border-radius: 2px;
}

#close-modal::before {
    transform: rotate(45deg);
}

#close-modal::after {
    transform: rotate(-45deg);
}

#close-modal:hover {
    background: var(--primary-gold);
    transform: rotate(90deg);
}

#close-modal:hover::before,
#close-modal:hover::after {
    background-color: #000;
}

#close-modal i {
    display: none; /* Hide FontAwesome to avoid conflicts */
}

.modal-header {
    height: 120px;
    position: relative;
}

.modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.modal-title-box {
    position: absolute;
    bottom: 0;
    inset-inline-end: 0;
    width: 100%;
    padding: 10px 20px;
    background: linear-gradient(to top, #0d0d0d, transparent);
}

.modal-price {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary-gold);
}

.modal-content-inner {
    padding: 15px 20px;
}

.modal-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 12px;
    line-height: 1.3;
}

.modal-features {
    list-style: none;
    display: grid;
    gap: 6px;
    text-align: right;
    margin-bottom: 15px;
}

.modal-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #fff;
}

.modal-features i {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.cta-book-lux {
    background: linear-gradient(45deg, #b8860b, var(--primary-gold), #fff7d1, #b8860b);
    background-size: 200% auto;
    color: #000;
    text-decoration: none;
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    animation: gold-pulse-modal 2s infinite alternate, gold-shimmer-btn 3s infinite linear;
    transition: var(--transition);
}

@keyframes gold-pulse-modal {
    from { transform: scale(1); box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3); }
    to { transform: scale(1.03); box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6); }
}

@keyframes gold-shimmer-btn {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.modal-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: #fff;
}

.modal-features i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .modal-container { border-radius: 30px; }
    .modal-content-inner { padding: 25px; }
    .price-badge { font-size: 0.75rem; padding: 6px 12px; top: 15px; right: 15px; }
    .modal-features li { font-size: 0.95rem; }
}

/* Contact Modal System - Glassmorphism Redesign */
#contact-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

#contact-modal.active {
    opacity: 1;
    visibility: visible;
}

.contact-modal-container {
    width: 90%;
    max-width: 450px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 40px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}

#contact-modal.active .contact-modal-container {
    transform: translateY(0) scale(1);
}

.close-contact-modal {
    position: absolute;
    top: 25px;
    inset-inline-end: 25px;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
    padding: 5px;
}

.close-contact-modal:hover {
    color: var(--primary-gold);
    transform: rotate(90deg);
}

.contact-modal-header {
    margin-bottom: 40px;
}

.contact-modal-title {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.contact-modal-subtitle {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    font-weight: 300;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.contact-btn-whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
    border-color: rgba(37, 211, 102, 0.2);
}

.contact-btn-whatsapp:hover {
    background: #25d366;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.contact-btn-call {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    border-color: rgba(212, 175, 55, 0.2);
}

.contact-btn-call:hover {
    background: var(--gold-gradient);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-icon {
    font-size: 1.2rem;
}

@media (max-width: 480px) {
    .contact-modal-container {
        padding: 50px 25px;
    }
    .contact-modal-title { font-size: 1.5rem; }
    .contact-btn { padding: 15px; font-size: 0.95rem; }
}

.contact-btn:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    filter: brightness(1.1);
}

.close-contact-modal {
    position: absolute;
    top: 20px;
    inset-inline-end: 20px;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: var(--primary-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: 0.3s;
}

.close-contact-modal:hover {
    background: var(--primary-gold);
    color: #000;
    transform: rotate(90deg);
}

@media (max-width: 480px) {
    .contact-modal-container {
        padding: 40px 20px;
    }
    .contact-modal-title {
        font-size: 1.6rem;
    }
    .contact-btn {
        font-size: 1.1rem;
        padding: 18px;
    }
}

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

/* Brand & Logo */
.brand-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
}

.logo-img {
    height: 45px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.brand-name {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 1.1rem;
    }
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-white);
  font-weight: 400;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary-gold);
  text-shadow: var(--gold-glow);
}

/* Language Selector */
.lang-item {
    position: relative;
    cursor: pointer;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-gold);
    transition: var(--transition);
}

.lang-toggle:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-gold);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    inset-inline-end: 0;
    display: flex;
    flex-direction: row;
    gap: 5px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
    padding: 8px;
    width: max-content;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    list-style: none;
    z-index: 2000;
    box-shadow: 0 15px 35px rgba(0,0,0,0.8);
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown li {
    padding: 10px 18px;
    font-size: 0.9rem;
    color: #fff;
    transition: 0.3s;
    text-align: center;
    border-radius: 50px;
    white-space: nowrap;
}

.lang-dropdown li:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--primary-gold);
}

@media (max-width: 768px) {
  .lang-dropdown {
    position: static;
    flex-direction: column;
    width: 100%;
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    margin-top: 10px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none; /* Controlled by toggle */
    box-shadow: none;
  }

  .lang-dropdown.active {
    display: flex;
  }

  .lang-dropdown li {
    width: 100%;
    text-align: center;
    border-radius: 15px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    inset-inline-start: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 40px;
    gap: 30px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-inline-end: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 15px 0 50px rgba(0,0,0,0.9);
    z-index: 2000;
  }
  
  .nav-links.active {
    inset-inline-start: 0;
  }
  
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2100;
    transition: var(--transition);
    padding: 10px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
  }

  /* Hamburger to X Animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: var(--primary-gold);
  border-radius: 5px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes gold-glow-pulse {
  from { text-shadow: 0 0 5px var(--primary-gold); }
  to { text-shadow: 0 0 20px var(--primary-gold), 0 0 30px var(--secondary-gold); }
}


/* Hero Section - Redesigned for Professional Luxury */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  background: url('hero-beauty-bg.png') no-repeat center center/cover;
  overflow: hidden;
  padding: 140px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to inline-end, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.9) 100%);
  z-index: 1;
}


#courses {
    background: linear-gradient(to bottom, var(--bg-black), #151515, var(--bg-black));
}

.courses-container-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.courses-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.course-card {
    width: 100%;
    background: transparent;
    transition: var(--transition);
}

.course-img-wrapper {
    width: 100%;
    height: 450px;
    border-radius: 40px; /* Super soft edges */
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    margin-bottom: 30px;
}

.course-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s cubic-bezier(0.2, 0, 0.2, 1); /* Cinematic slow zoom */
    filter: brightness(0.8);
}

.lux-feature:hover .lux-icon-wrap {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--primary-gold);
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 15px 30px rgba(212,175,55,0.2);
}

.mb-80 {
    margin-bottom: 80px;
}

.course-card:hover .course-img {
    transform: scale(1.15) rotate(0.5deg);
    filter: brightness(1);
}

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

.course-info h3 {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-family: 'Cairo', sans-serif;
}

.course-info p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 500px;
    margin: 0 auto 30px;
}

.course-btn-lux {
    background: var(--gold-gradient);
    color: #000;
    border: none;
    padding: 15px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
}

.course-btn-lux:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.5);
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  max-width: 900px;
  margin-inline-end: 10%; 
}

.hero h1 {
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 25px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.hero p {
  font-size: 1.6rem;
  color: #e0e0e0;
  max-width: 650px;
  margin-bottom: 45px;
  border-inline-start: 3px solid var(--primary-gold);
  padding-inline-start: 20px;
  font-weight: 300;
}

.hero .container {
    position: relative;
    z-index: 10;
}

.hero-btns {
  display: flex;
  gap: 25px;
  margin-top: 30px;
}

.cta-glow-btn {
  background: rgba(255, 255, 255, 0.03);
  color: var(--primary-gold);
  padding: 18px 45px;
  font-size: 1.15rem;
  font-weight: 700;
  border: 1px solid rgba(212, 175, 55, 0.4);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  text-decoration: none;
  border-radius: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.cta-glow-btn .btn-icon {
    margin-inline-end: 12px;
    opacity: 0.8;
}

.cta-glow-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--primary-gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.cta-book-btn {
  background: linear-gradient(-45deg, #d4af37, #f1c40f, #ffeb3b, #d4af37);
  background-size: 400% 400%;
  color: #000;
  padding: 18px 50px;
  font-size: 1.15rem;
  font-weight: 900;
  border: none;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  text-decoration: none;
  border-radius: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
  animation: tempting-bg 3s ease infinite, alluring-pulse 2s infinite alternate;
}

.cta-book-btn .btn-icon {
    margin-inline-end: 12px;
    font-size: 1.3rem;
}

@keyframes tempting-bg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes alluring-pulse {
    from { transform: scale(1); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5); }
    to { transform: scale(1.04); box-shadow: 0 15px 50px rgba(212, 175, 55, 0.8); }
}

.cta-book-btn:hover {
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 30px 60px rgba(212, 175, 55, 0.7);
  filter: brightness(1.2);
}

.hero-deco {
  position: absolute;
  bottom: 50px;
  inset-inline-start: 50px;
  font-family: 'Montserrat', sans-serif;
  color: var(--primary-gold);
  letter-spacing: 10px;
  font-size: 0.7rem;
  opacity: 0.5;
  transform: rotate(-90deg);
  transform-origin: inset-inline-start bottom;
}

[dir="rtl"] .hero-deco {
    transform: rotate(90deg);
    transform-origin: inset-inline-start bottom;
}

@media (max-width: 768px) {
  .hero {
    justify-content: center;
    text-align: center;
  }
  .hero .container {
    margin-right: 0;
    align-items: center;
  }
  .hero h1 { font-size: 2.2rem; margin-bottom: 20px; }
  .hero p { font-size: 1rem; border-inline-start: 2px solid var(--primary-gold); padding-inline-start: 15px; margin-bottom: 30px; width: 100%; }
  .hero-btns { flex-direction: column; width: 100%; gap: 15px; }
  .cta-glow-btn, .cta-book-btn { width: 100%; padding: 14px; font-size: 1rem; }
  
  /* Mobile Adjustments for Courses */
  .courses-container-wrapper { max-width: 100%; }
  .courses-grid { 
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Columns on mobile as requested */
    gap: 15px; 
  }
  .course-img-wrapper { height: 180px; border-radius: 20px; margin-bottom: 12px; }
  .course-info h3 { font-size: 1.1rem; margin-bottom: 5px; }
  .course-info p { display: none; } /* Hide desc on mobile for cleaner 2-col look */
  .course-btn-lux { width: 100%; padding: 8px; font-size: 0.8rem; }

  /* Compact Features for Mobile */
  .features-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
    margin-top: 30px;
  }

  .feature-item i {
    font-size: 1.8rem;
  }

  .feature-item h3 {
    font-size: 1.1rem;
  }

  .feature-item p {
    font-size: 0.9rem;
  }
}


/* High-End Loader (App Style) */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 1.5s ease-in-out, visibility 1.5s;
}

#loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-container {
  text-align: center;
  transition: transform 1.5s ease-in-out;
}

#loader.fade-out .loader-container {
  transform: scale(1.1);
}

.loader-logo {
  width: 180px;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 15px var(--primary-gold));
  animation: logo-zoom 3s infinite alternate ease-in-out;
}

.loader-progress-bg {
  width: 200px;
  height: 2px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 10px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.loader-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--primary-gold);
  box-shadow: 0 0 10px var(--primary-gold);
  transition: width 0.3s ease;
}

@keyframes logo-zoom {
  from { transform: scale(0.9); opacity: 0.7; }
  to { transform: scale(1.05); opacity: 1; }
}

/* Page Entry */
.page-content {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 2s ease-out, transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  background: var(--bg-black);
}

.page-content.v-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- About Page Exclusive Styles --- */
#about-page {
    padding-top: 80px;
    background: #000;
    overflow-x: hidden;
}

.about-hero {
    position: relative;
    height: 55vh;
    min-height: 400px;
    overflow: hidden;
}

.about-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) saturate(1.2);
    transform: scale(1.1);
    animation: slow-zoom-hero 25s infinite alternate ease-in-out;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.9));
    z-index: 2;
}

.about-main-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    color: #fff;
    font-weight: 950;
    margin-bottom: 25px;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff, var(--primary-gold), #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gold-shimmer 5s linear infinite;
}

.about-main-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: rgba(255,255,255,0.85);
    max-width: 900px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.5;
}

/* Intertwined Section */
.intertwined-section {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 30px 0;
}

.intertwined-img-box {
    flex: 1;
    position: relative;
}

.intertwined-img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px rgba(212,175,55,0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 2;
    position: relative;
}

.intertwined-content {
    flex: 1;
}

.intertwined-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 30px;
}

.intertwined-content p {
    font-size: 1.35rem;
    line-height: 2;
    color: #ccc;
    font-weight: 300;
}

/* Location Glass Section */
.location-section {
    position: relative;
    padding: 40px 0;
    background: #050505;
    overflow: hidden;
}

.location-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: blur(5px);
}

.location-glass-card {
    position: relative;
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
    padding: 60px 30px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}

.location-icon-box {
    width: 90px;
    height: 90px;
    background: var(--primary-gold);
    color: #000;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    font-size: 2.5rem;
    box-shadow: 0 15px 40px rgba(212,175,55,0.4);
}

.location-glass-card h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.location-text {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.about-concept-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.about-stats-mini {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@keyframes gold-shimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@media (max-width: 992px) {
    .intertwined-section {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    .intertwined-img-box {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .location-glass-card {
        padding: 50px 25px;
    }
    .location-glass-card h2 { font-size: 2rem; }
    .location-text { font-size: 1.2rem; }
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.testi-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 30px;
    padding: 35px 25px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testi-card:hover {
    transform: translateY(-10px);
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: -15px;
    font-family: serif;
}

.testi-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    font-weight: 300;
}

.testi-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.testi-name {
    color: var(--primary-gold);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.testi-stars {
    color: #ff9800;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

@media (max-width: 1100px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .testi-card {
        padding: 30px 20px;
    }
}

/* Footer Social Icons */
.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.social-icon {
    color: var(--primary-gold);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.2);
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .footer-social-links {
        gap: 20px;
    }
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
}


