/* ===================================================
   UNIVERSE LASHES — styles.css
   Mobile-First Premium Luxury Design
   Gold + Deep Space Palette
   =================================================== */

/* ── CSS Custom Properties ─────────────────────────── */
:root {
  /* Purple Palette */
  --gold-100: #f3eaff;
  --gold-200: #d4a0f5;
  --gold-300: #a855c8;
  --gold-400: #9333b0;
  --gold-500: #7b2d9b;
  --gold-gradient: linear-gradient(135deg, #d4a0f5 0%, #a855c8 40%, #7b2d9b 70%, #a855c8 100%);
  --gold-text: linear-gradient(135deg, #e8c0ff 0%, #a855c8 50%, #9333b0 100%);

  /* Dark Universe Palette */
  --bg-void: #030308;
  --bg-deep: #07070f;
  --bg-dark: #0c0c18;
  --bg-mid: #12121f;
  --bg-card: rgba(18, 18, 32, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-glass-hover: rgba(255, 255, 255, 0.07);

  /* Text */
  --text-primary: #f0ece3;
  --text-secondary: rgba(240, 236, 227, 0.65);
  --text-muted: rgba(240, 236, 227, 0.4);

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', system-ui, sans-serif;

  /* Spacing */
  --section-pad: clamp(4rem, 10vw, 8rem) 0;
  --container-pad: 0 clamp(1.25rem, 5vw, 4rem);

  /* Transitions */
  --ease-luxury: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 0.25s;
  --duration-med: 0.5s;
  --duration-slow: 0.85s;

  /* Borders */
  --border-gold: 1px solid rgba(160, 90, 220, 0.3);
  --border-subtle: 1px solid rgba(255, 255, 255, 0.07);
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 70px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-void);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-luxury);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-sans);
}

ul, ol { list-style: none; }

/* ── Starfield Canvas ─────────────────────────────── */
#starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
}

/* ── Container ────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-pad);
  position: relative;
  z-index: 2;
}

/* ── Scroll Reveal Animations ─────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity var(--duration-slow) var(--ease-luxury),
    transform var(--duration-slow) var(--ease-luxury);
}

.reveal-left,
.reveal-right {
  opacity: 0;
  transition:
    opacity 1.1s cubic-bezier(0.25, 0.8, 0.25, 1),
    transform 1.1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-left {
  transform: translateX(-80px);
}

.reveal-right {
  transform: translateX(80px);
}

.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translate(0);
}

.delay-1 { transition-delay: 0.15s !important; }
.delay-2 { transition-delay: 0.4s !important; }
.delay-3 { transition-delay: 0.55s !important; }
.delay-4 { transition-delay: 0.8s !important; }
.delay-5 { transition-delay: 1.0s !important; }
.delay-6 { transition-delay: 1.2s !important; }
.delay-7 { transition-delay: 1.4s !important; }
.delay-8 { transition-delay: 1.6s !important; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2.25rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition:
    transform var(--duration-fast) var(--ease-luxury),
    box-shadow var(--duration-fast) var(--ease-luxury),
    background var(--duration-fast) var(--ease-luxury),
    opacity var(--duration-fast) var(--ease-luxury);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-gold {
  background: var(--gold-gradient);
  color: #0a0a0f;
  font-weight: 600;
  box-shadow: 0 0 30px rgba(160, 90, 220, 0.3), 0 4px 15px rgba(0,0,0,0.5);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 45px rgba(160, 90, 220, 0.5), 0 8px 25px rgba(0,0,0,0.5);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
  color: #ffffff;
}

/* ── Section Headings System ─────────────────────── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  display: block;
}

.section-eyebrow.light {
  -webkit-text-fill-color: transparent;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title.light {
  color: var(--text-primary);
}

.section-desc {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
  margin-bottom: 3rem;
}

.section-desc.light {
  color: rgba(240, 236, 227, 0.7);
}

/* ── NAVIGATION ───────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition:
    background var(--duration-med) var(--ease-luxury),
    box-shadow var(--duration-med) var(--ease-luxury),
    backdrop-filter var(--duration-med) var(--ease-luxury);
}

#navbar.scrolled {
  background: transparent;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: none;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .nav-inner {
    padding: 1rem;
  }
}

.nav-logo {
  flex-shrink: 0;
  transition: transform var(--duration-fast) var(--ease-luxury);
}

.nav-logo img {
  height: 60px;
  width: auto;
  filter: brightness(1.1);
}

.nav-logo:hover {
  transform: scale(1.03);
}

.nav-links {
  display: none;
  gap: 3rem;
  align-items: center;
}

.nav-left {
  flex: 1;
  justify-content: flex-start;
}

.nav-right {
  flex: 1;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 0 15px rgba(160, 90, 220, 0.7);
  transition: color var(--duration-fast) var(--ease-luxury), text-shadow var(--duration-fast);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-gradient);
  transition: width var(--duration-med) var(--ease-luxury);
}

.nav-links a:hover {
  color: var(--gold-200);
}

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

.nav-cta {
  background: var(--gold-gradient) !important;
  color: #0a0a0f !important;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-sm);
  font-size: 0.68rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em !important;
  transition: transform var(--duration-fast), box-shadow var(--duration-fast) !important;
}

.nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 0 20px rgba(160, 90, 220, 0.4) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 100;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold-300);
  transition: transform var(--duration-med) var(--ease-luxury),
              opacity var(--duration-fast),
              width var(--duration-med) var(--ease-luxury);
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 2rem 2rem;
  background: rgba(3, 3, 8, 0.97);
  backdrop-filter: blur(20px);
  border-top: var(--border-gold);
  gap: 0.25rem;
}

.nav-mobile.open {
  display: flex;
  animation: slideDown 0.3s var(--ease-luxury);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-link {
  display: block;
  padding: 0.85rem 1.5rem;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--duration-fast);
  width: 100%;
  text-align: center;
}

.mobile-link:hover,
.mobile-link:focus {
  color: var(--gold-200);
}

.mobile-link--cta {
  margin-top: 0.75rem;
  padding: 0.85rem 2rem;
  background: var(--gold-gradient);
  color: #0a0a0f !important;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

/* Desktop Nav */
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-left { display: flex; }
  .nav-right { display: flex; }
  .nav-hamburger { display: none; }
  .nav-mobile { display: none !important; }
}

/* ── HERO SECTION ─────────────────────────────────── */
.hero {
  position: relative;
  min-height: 110svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0a0a0f;
}

.diagonal-gallery {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  width: 250vw;
  height: 250%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  will-change: transform;
}

.gallery-row {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  will-change: transform;
}

.gallery-img {
  width: clamp(180px, 20vw, 320px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(160, 90, 220, 0.5), 0 0 25px rgba(160, 90, 220, 0.3);
  opacity: 0.8;
  filter: blur(0.5px);
  flex-shrink: 0;
  transition: opacity var(--duration-slow) var(--ease-luxury);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(3, 3, 8, 0.85) 0%,
    rgba(3, 3, 8, 0.25) 50%,
    rgba(3, 3, 8, 0.85) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: initial;
  text-shadow: 0 2px 10px rgba(0,0,0,0.9), 0 0 20px rgba(160, 90, 220, 0.9);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 14vw, 8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-shadow: 0 4px 15px rgba(0,0,0,0.9), 0 0 30px rgba(160, 90, 220, 0.8), 0 0 10px rgba(0,0,0,0.7);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-title .main-title {
  font-size: 0.75em;
  letter-spacing: 0.15em;
  margin-bottom: 0.2rem;
}

.hero-title .italic {
  font-family: var(--font-serif);
  font-style: italic;
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: initial;
  font-size: 0.85em;
  letter-spacing: 0.05em;
  text-shadow: 0 4px 15px rgba(0,0,0,0.9), 0 0 30px rgba(160, 90, 220, 0.8), 0 0 10px rgba(0,0,0,0.7);
  padding-top: 0;
  display: block;
}

.hero-subtitle {
  font-size: clamp(0.8rem, 2vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.9), 0 0 20px rgba(160, 90, 220, 0.8);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: scrollPulse 2.5s infinite var(--ease-luxury);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(160, 90, 220, 0.8), transparent);
}

.hero-scroll-indicator span {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-400);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

/* ── STATS SECTION ────────────────────────────────── */
.stats-section {
  padding: var(--section-pad);
  position: relative;
  z-index: 2;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-void) 0%, var(--bg-deep) 100%);
  overflow: hidden;
}

.stats-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.stats-title em {
  font-style: italic;
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-desc {
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 3.5rem;
  line-height: 1.85;
  text-align: justify;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  border: var(--border-gold);
  border-radius: var(--radius-md);
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: transform var(--duration-med) var(--ease-luxury),
              background var(--duration-med) var(--ease-luxury),
              opacity var(--duration-slow) var(--ease-luxury);
}

.stat-item > *:not(.stat-watermark) {
  position: relative;
  z-index: 1;
}

.stat-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  color: var(--gold-200);
  opacity: 0.12;
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
  transition: all var(--duration-med) var(--ease-luxury);
}

.stat-item:hover {
  transform: translateY(-4px);
  background: var(--bg-glass-hover);
}

.stat-item:hover .stat-watermark {
  opacity: 0.25;
  transform: translate(-50%, -50%) scale(1.15) rotate(5deg);
  filter: blur(4px);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 7vw, 3.5rem);
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

@media (max-width: 580px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ── SERVICES SECTION ─────────────────────────────── */
.services-section {
  padding: var(--section-pad);
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 100%);
}

.services-section .container {
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
  text-align: left;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  transition:
    transform var(--duration-med) var(--ease-luxury),
    box-shadow var(--duration-med) var(--ease-luxury),
    border-color var(--duration-med),
    opacity var(--duration-slow) var(--ease-luxury);
  cursor: pointer;
  /* Make all cards equal height with footer pinned to bottom */
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 30px rgba(160, 90, 220, 0.1);
  border-color: rgba(160, 90, 220, 0.3);
}

.service-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.service-img-dark {
  background: var(--bg-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-dark));
}

.star-icon {
  font-size: 3rem;
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.5;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.07);
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 3, 8, 0.85) 0%, transparent 60%);
  pointer-events: none;
}

.service-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1; /* stretch to fill remaining card height */
}

.service-number {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold-400);
  font-weight: 400;
}

.service-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin: 0.35rem 0 0.75rem;
}

.service-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  text-align: left;
  flex: 1; /* push footer to bottom */
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: var(--border-subtle);
}

.service-price {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-link {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--duration-fast);
}

.service-link:hover {
  color: var(--gold-300);
}

/* Product badge (price pill on image) */
.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(100, 30, 180, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(200, 120, 255, 0.4);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

/* Buy button */
.product-buy-btn {
  font-size: 0.68rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em !important;
  color: var(--gold-300) !important;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease !important;
}

.product-buy-btn:hover {
  color: var(--gold-100) !important;
  border-bottom-color: var(--gold-300);
}

/* Products CTA */
.products-cta {
  margin-top: 3rem;
  text-align: center;
}

/* ── GALLERY SECTION ──────────────────────────────── */
.gallery-section {
  padding-top: var(--section-pad);
  padding-bottom: 0;
  position: relative;
  z-index: 2;
  background: var(--bg-dark);
  overflow: hidden;
}

.gallery-section .container {
  text-align: center;
  margin-bottom: 2rem;
}

/* ── Editorial Magazine Grid — full bleed ─ */
.gallery-grid {
  display: grid;
  gap: 4px;
  width: 100%;
  grid-template-columns: 1fr;
}

/* Tablet */
@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 360px 260px 340px;
    gap: 4px;
  }
  .g-hero   { grid-column: 1; grid-row: 1 / 3; }
  .g-tall   { grid-column: 2; grid-row: 1; }
  .g-sq-a   { display: none; }
  .g-sq-b   { grid-column: 2; grid-row: 2; }
  .g-banner { grid-column: 1 / -1; grid-row: 3; }
}

/* Desktop — full editorial 3-col */
@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: 2fr 1.3fr 1fr;
    grid-template-rows: 460px 320px 380px;
    gap: 5px;
  }

  /* Big hero: col 1, rows 1-2 */
  .g-hero {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  /* Tall portrait: col 2, rows 1-2 */
  .g-tall {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  /* Small square A: col 3, row 1 */
  .g-sq-a {
    display: block;
    grid-column: 3;
    grid-row: 1;
  }

  /* Small square B: col 3, row 2 */
  .g-sq-b {
    grid-column: 3;
    grid-row: 2;
  }

  /* Full-width cinematic banner: row 3, all cols */
  .g-banner {
    grid-column: 1 / -1;
    grid-row: 3;
  }
}

/* Mobile heights */
.g-hero   { min-height: 400px; }
.g-tall   { min-height: 300px; }
.g-sq-a,
.g-sq-b   { min-height: 220px; }
.g-banner { min-height: 300px; }

@media (min-width: 900px) {
  .g-hero, .g-tall, .g-sq-a, .g-sq-b, .g-banner { min-height: unset; }
}

/* ── Base item ─ */
.gallery-item {
  position: relative;
  overflow: hidden;
  background: #07070f;
  cursor: pointer;
  margin: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 1s var(--ease-luxury), filter 1s var(--ease-luxury);
  filter: brightness(0.88) saturate(1.1);
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.05) saturate(1.18);
}

/* Purple gradient vignette */
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    transparent 35%,
    rgba(65, 10, 130, 0.55) 100%
  );
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
  transition: opacity 0.6s ease;
}

.gallery-item:hover::before { opacity: 0.3; }

/* Radial highlight on hover */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 25% 25%,
    rgba(190, 110, 255, 0.2) 0%,
    transparent 60%
  );
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.gallery-item:hover::after { opacity: 1; }

/* ── Pill label tags ─ */
.g-label {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  z-index: 3;
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(235, 210, 255, 0.95);
  background: rgba(50, 8, 100, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(180, 90, 255, 0.35);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item:hover .g-label {
  opacity: 1;
  transform: translateY(0);
}

/* ── Full-width banner ─ */
.g-banner img {
  object-position: center 35%;
}

.g-banner-inner {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 2rem;
  background: linear-gradient(
    to right,
    rgba(3, 3, 12, 0.75) 0%,
    rgba(55, 10, 110, 0.3) 50%,
    rgba(3, 3, 12, 0.75) 100%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.g-banner:hover .g-banner-inner { opacity: 1; }

.g-banner-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-200);
}

.g-banner-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(0,0,0,0.9);
}

/* Gallery CTA */
.gallery-cta {
  margin-top: 3rem;
  text-align: center;
  padding-bottom: 1rem;
}

/* ── PRELOADER ────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #110A1F 0%, #030308 100%);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  overflow: hidden;
}

.stars-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: 
    radial-gradient(1px 1px at 45px 50px, rgba(255,255,255,0.85), transparent),
    radial-gradient(1.5px 1.5px at 140px 180px, rgba(160,90,220,0.4), transparent),
    radial-gradient(1px 1px at 230px 90px, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 280px 270px, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 90px 240px, rgba(255,255,255,0.6), transparent);
  background-size: 300px 300px;
  animation: starsPan 90s linear infinite;
  z-index: 0;
  opacity: 0.55;
}

@keyframes starsPan {
  from { background-position: 0 0; }
  to { background-position: -300px 300px; }
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader-content::before {
  content: "";
  position: absolute;
  top: 30%; /* Align with logo center */
  left: 50%;
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, rgba(160, 90, 220, 0.45) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 1;
  filter: blur(8px);
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 0.8;
}

@keyframes starGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.4); opacity: 1; }
}

.preloader-content img {
  width: 50px;
  height: auto;
  position: relative;
  z-index: 2;
  animation: pulseLogo 2s infinite ease-in-out, spinLogo 12s infinite linear;
}

.preloader-content p {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.8em;
  text-transform: uppercase;
  margin-top: 1.5rem;
  margin-right: -0.8em; /* offset the massive letter spacing to ensure true centering */
  position: relative;
  z-index: 2;
  display: inline-block;
  animation: pulseText 2.5s infinite ease-in-out;
}

.preloader-content p::after {
  content: '';
  position: absolute;
  left: 100%;
  animation: loadingDots 1.5s steps(1, end) infinite;
}

@keyframes loadingDots {
  0%   { content: ''; }
  25%  { content: '.'; }
  50%  { content: '..'; }
  75%  { content: '...'; }
  100% { content: ''; }
}

@keyframes spinLogo {
  0% { rotate: 0deg; }
  100% { rotate: 360deg; }
}

@keyframes pulseLogo {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 15px rgba(160, 90, 220, 0.6)); }
}

@keyframes pulseText {
  0%, 100% { 
    opacity: 0.3; 
    transform: scale(0.95); 
    text-shadow: 0 0 0 transparent; 
  }
  50% { 
    opacity: 1; 
    transform: scale(1); 
    text-shadow: 0 0 12px rgba(160, 90, 220, 0.8); 
  }
}

.gallery-placeholder {
  background: var(--bg-mid);
  border: var(--border-subtle);
  cursor: default;
}

.gallery-ph-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 0.5rem;
}

.gallery-ph-icon {
  font-size: 1.5rem;
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
}

.gallery-ph-inner p {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.gallery-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ── ACADEMY SECTION ──────────────────────────────── */
.academy-section {
  position: relative;
  padding: var(--section-pad);
  z-index: 2;
  text-align: center;
  overflow: hidden;
}

.academy-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.academy-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.academy-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    var(--bg-dark) 0%,
    rgba(3, 3, 8, 0.8) 50%,
    var(--bg-void) 100%
  );
}

.academy-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold-200);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.academy-sub {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.courses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
  text-align: left;
}

@media (min-width: 640px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .courses-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.course-card {
  background: var(--bg-card);
  border: var(--border-gold);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--duration-med) var(--ease-luxury),
              box-shadow var(--duration-med) var(--ease-luxury),
              opacity var(--duration-slow) var(--ease-luxury);
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.6), 0 0 40px rgba(160, 90, 220, 0.15);
}

.course-img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.course-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-luxury);
}

.course-card:hover .course-img-wrap img {
  transform: scale(1.1);
}

/* Efectos Delineados card — portrait flyer, show full image */
#courseEfectos .course-img-wrap {
  aspect-ratio: 4 / 5;
}

#courseEfectos .course-img-wrap img {
  object-fit: cover;
  object-position: center top;
}

/* La Nueva Era card — portrait flyer, show full image */
#courseNuevaEra .course-img-wrap {
  aspect-ratio: 1279 / 1600;
}

#courseNuevaEra .course-img-wrap img {
  object-fit: cover;
  object-position: center top;
}

/* Mega Volumen card — portrait flyer, show full image */
#courseMegaVolumen .course-img-wrap {
  aspect-ratio: 4 / 5;
}

#courseMegaVolumen .course-img-wrap img {
  object-fit: cover;
  object-position: center top;
}


.course-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold-gradient);
  color: #0c0c18;
  padding: 0.4rem 0.8rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  border-radius: 4px;
  text-transform: uppercase;
}

.course-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.course-name {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.course-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2rem;
  text-align: justify;
}

.course-footer {
  margin-top: auto;
}

.course-btn {
  width: 100%;
}

.academy-cta {
  margin-top: 5rem;
  text-align: center;
}

/* ── VIDEO SECTION ────────────────────────────────── */
.video-section {
  position: relative;
  padding: var(--section-pad);
  z-index: 2;
  text-align: center;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.video-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.video-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    var(--bg-dark) 0%,
    rgba(3, 3, 8, 0.7) 50%,
    var(--bg-mid) 100%
  );
}

.video-frame-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border: var(--border-gold);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-deep);
  box-shadow: 0 0 60px rgba(160, 90, 220, 0.15), 0 30px 80px rgba(0,0,0,0.7);
}

.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 1.5rem;
}

.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 40px rgba(160, 90, 220, 0.5);
  transition: transform var(--duration-fast) var(--ease-bounce),
              box-shadow var(--duration-fast) var(--ease-luxury);
}

.video-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 60px rgba(160, 90, 220, 0.7);
}

.play-icon {
  color: #0a0a0f;
  font-size: 1.3rem;
  margin-left: 4px;
}

.video-placeholder-text {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── ABOUT SECTION ────────────────────────────────── */
.about-section {
  position: relative;
  z-index: 2;
  background: #ffffff;
  overflow: hidden;
}

.about-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 600px;
}

@media (min-width: 900px) {
  .about-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.about-img-col {
  position: relative;
  min-height: 50vw;
  max-height: 700px;
  overflow: hidden;
}

@media (min-width: 900px) {
  .about-img-col {
    min-height: 600px;
  }
}

.about-img-wrap {
  position: relative;
  height: 100%;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%) brightness(0.85);
  transition: filter 0.8s var(--ease-luxury);
}

.about-section:hover .about-img-wrap img {
  filter: grayscale(0%) brightness(0.9);
}

.about-img-frame {
  position: absolute;
  inset: 20px;
  border: var(--border-gold);
  border-radius: var(--radius-sm);
  pointer-events: none;
  opacity: 0.4;
}

.about-img-accent {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  font-size: 2rem;
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.6;
}

.about-text-col {
  padding: clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  min-width: 0;
  max-height: 700px;
  overflow-y: auto;
  scrollbar-width: none;
}

.about-text-col::-webkit-scrollbar {
  display: none;
}

@media (max-width: 899px) {
  .about-text-col {
    padding: 3rem 1.5rem;
  }
}

.about-text-col .section-eyebrow {
  background: linear-gradient(135deg, #a855c8 0%, #7b2d9b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-name {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, #9333b0 0%, #7b2d9b 100%); /* High contrast for name on light bg too! */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.3rem;
  line-height: 1;
}

.about-title {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 0.9rem;
}

.golden-divider {
  width: 40px;
  height: 1px;
  background: var(--gold-gradient);
  margin-bottom: 1rem;
  border-radius: 2px;
}

.about-desc {
  font-size: clamp(0.72rem, 1.4vw, 0.8rem);
  color: #333;
  line-height: 1.65;
  margin-bottom: 0.65rem;
  text-align: justify;
}

.about-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: #7b2d9b;
  margin: 0.75rem 0;
  padding-left: 1rem;
  border-left: 2px solid #a855c8;
  line-height: 1.5;
  font-weight: 400;
}

.about-btn {
  margin-top: 1rem;
  align-self: flex-start;
}

/* ── TESTIMONIALS SECTION ─────────────────────────── */
.testimonials-section {
  padding: var(--section-pad);
  position: relative;
  z-index: 2;
  background: var(--bg-void);
  text-align: center;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(160, 90, 220, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.testimonials-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

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

@media (min-width: 960px) {
  .testimonials-track {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--bg-glass);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  text-align: left;
  transition:
    transform var(--duration-med) var(--ease-luxury),
    border-color var(--duration-med),
    box-shadow var(--duration-med) var(--ease-luxury);
  backdrop-filter: blur(10px);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(160, 90, 220, 0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 20px rgba(160, 90, 220, 0.08);
}

.testimonial-stars {
  font-size: 0.8rem;
  color: var(--gold-300);
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: var(--border-subtle);
  padding-top: 1.25rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0f;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-name {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}

.testimonial-date {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 0.1rem;
}

/* ── BOOKING SECTION ──────────────────────────────── */
.booking-section {
  position: relative;
  padding: var(--section-pad);
  z-index: 2;
  text-align: center;
  overflow: hidden;
}

.booking-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.booking-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.booking-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    var(--bg-dark) 0%,
    rgba(3, 3, 8, 0.85) 100%
  );
}

.booking-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media (min-width: 640px) {
  .booking-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

.booking-card {
  background: var(--bg-glass);
  border: var(--border-gold);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  backdrop-filter: blur(15px);
  transition:
    transform var(--duration-med) var(--ease-luxury),
    box-shadow var(--duration-med) var(--ease-luxury);
}

.booking-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px rgba(160, 90, 220, 0.12);
}

.booking-icon {
  font-size: 2rem;
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 1rem;
}

.booking-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.booking-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  text-align: justify;
}

.booking-btn {
  width: 100%;
}

.payment-info {
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.payment-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.payment-methods {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  border: var(--border-subtle);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
}

/* ── CONTACT SECTION ──────────────────────────────── */
.contact-section {
  padding: var(--section-pad);
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-mid) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: start;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-icon {
  font-size: 1.1rem;
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: 24px;
  flex-shrink: 0;
  margin-top: 2px;
  line-height: 1.4;
}

.contact-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.contact-value {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color var(--duration-fast);
  line-height: 1.5;
}

a.contact-value:hover {
  color: var(--gold-200);
}

.contact-social {
  display: flex;
  gap: 1rem;
  padding-top: 0.5rem;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  transition:
    background var(--duration-fast),
    color var(--duration-fast),
    transform var(--duration-fast),
    box-shadow var(--duration-fast);
}

.social-link:hover {
  background: var(--gold-gradient);
  color: #0a0a0f;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(160, 90, 220, 0.3);
  border-color: transparent;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input {
  background: var(--bg-glass);
  border: var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.85rem 1.1rem;
  transition:
    border-color var(--duration-fast),
    background var(--duration-fast),
    box-shadow var(--duration-fast);
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.form-input:focus {
  outline: none;
  border-color: rgba(160, 90, 220, 0.4);
  background: rgba(160, 90, 220, 0.04);
  box-shadow: 0 0 0 3px rgba(160, 90, 220, 0.08);
}

.form-input::placeholder {
  color: var(--text-muted);
  font-weight: 300;
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23d4a843'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-select option {
  background: var(--bg-dark);
  color: var(--text-primary);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.form-submit {
  margin-top: 0.5rem;
}

.form-success {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gold-300);
  letter-spacing: 0.08em;
  padding: 0.75rem;
  border: var(--border-gold);
  border-radius: var(--radius-sm);
  background: rgba(160, 90, 220, 0.05);
}

/* ── MODAL ────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(3, 3, 8, 0.9);
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn var(--duration-fast) var(--ease-luxury);
}

.modal-overlay[hidden] {
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-inner {
  background: var(--bg-dark);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  text-align: center;
  animation: slideUp 0.4s var(--ease-bounce);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 1.2rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--duration-fast);
  background: none;
  border: none;
  padding: 0.35rem;
}

.modal-close:hover {
  color: var(--gold-300);
}

.modal-logo {
  font-size: 2.5rem;
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.modal-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.payment-coming-soon {
  padding: 2rem;
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-glass);
}

.payment-coming-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.payment-coming-soon p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ── FOOTER ───────────────────────────────────────── */
.footer {
  position: relative;
  z-index: 2;
  background: var(--bg-void);
  border-top: var(--border-gold);
  padding: 4rem 0 2rem;
  overflow: hidden;
}

.footer-stars {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0.4;
}

.footer-logo {
  text-align: center;
  margin-bottom: 2.5rem;
}

.footer-logo img {
  height: 52px;
  width: auto;
  margin: 0 auto;
  filter: brightness(0.9);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
  margin-bottom: 2rem;
}

.footer-nav a {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--duration-fast);
}

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

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.footer-bottom {
  text-align: center;
  border-top: var(--border-subtle);
  padding-top: 2rem;
}

.footer-bottom p {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-tagline {
  margin-top: 0.35rem;
  color: rgba(160, 90, 220, 0.4) !important;
}

/* ── Touch devices ────────────────────────────────── */
@media (hover: none) {
  .service-card:hover,
  .testimonial-card:hover,
  .stat-item:hover {
    transform: none;
  }
}

/* ── Reduced motion ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-up,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}

/* ── Scrollbar ────────────────────────────────────── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg-void);
}

::-webkit-scrollbar-thumb {
  background: rgba(160, 90, 220, 0.4);
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(160, 90, 220, 0.7);
}

/* ── Selection ────────────────────────────────────── */
::selection {
  background: rgba(160, 90, 220, 0.25);
  color: var(--text-primary);
}

/* ── Focus visible ────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* =========================================================================
   COMPACT & ELEGANT MOBILE CARDS TWEAKS
   ========================================================================= */
@media (max-width: 767px) {
  /* Service Cards */
  .service-img-wrap {
    aspect-ratio: 1 / 1; /* Shorter image height on mobile */
  }
  .service-content {
    padding: 1.25rem 1rem;
  }
  .service-name {
    font-size: 1.25rem;
  }
  .service-desc {
    margin-bottom: 1rem;
  }

  /* Course Cards */
  .course-content {
    padding: 1.25rem 1rem;
  }
  .course-name {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
  }

  /* Testimonial Cards */
  .testimonial-card {
    padding: 1.5rem 1.25rem;
  }

  /* Booking Cards */
  .booking-card {
    padding: 1.5rem 1.25rem;
  }
  .booking-card-title {
    font-size: 1.25rem;
  }
  .booking-card-desc {
    margin-bottom: 1.25rem;
  }
}
