/* ==========================================================================
   PRETTY LASH STUDIOS & PRETTY LASH ACADEMY
   Orlando, FL — Luxury Lash Artistry & Master Academy
   Design System & Styling
   ========================================================================== */

:root {
  /* Dark Luxury Palette */
  --bg-dark-900: #0A0B0E;
  --bg-dark-800: #101217;
  --bg-dark-750: #151820;
  --bg-dark-700: #1C1F2B;
  --bg-dark-600: #262A3B;

  /* Card Surfaces & Glassmorphism */
  --card-bg: rgba(22, 25, 34, 0.75);
  --card-bg-elevated: rgba(28, 32, 44, 0.9);
  --card-border: rgba(229, 193, 88, 0.16);
  --card-border-hover: rgba(229, 193, 88, 0.45);
  --glass-blur: blur(20px);

  /* Metallic Champagne Gold Tokens */
  --gold-300: #FFF3D4;
  --gold-400: #F3DC9E;
  --gold-500: #E5C158;
  --gold-600: #D4AF37;
  --gold-700: #A88320;
  --gold-glow: rgba(229, 193, 88, 0.22);
  --gold-gradient: linear-gradient(135deg, #FFF3D4 0%, #E5C158 50%, #C59A27 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(255, 243, 212, 0.12) 0%, rgba(229, 193, 88, 0.04) 100%);

  /* Blush Silk & Rose Nude Tokens */
  --blush-100: #FAF5F2;
  --blush-200: #F3ECE7;
  --blush-300: #E8C5B8;
  --blush-400: #D8A48F;
  --blush-500: #C28B99;
  --blush-glow: rgba(232, 197, 184, 0.18);

  /* Typography Colors */
  --text-primary: #FAF8F5;
  --text-heading: #FFFFFF;
  --text-muted: #A3A6B4;
  --text-subtle: #6D7080;
  --text-gold: #E5C158;

  /* Typography Families */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-editorial: 'Cormorant Garamond', Georgia, serif;
  --font-cinzel: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  /* Transitions */
  --trans-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --trans-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --trans-spring: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* Shadows */
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.35);
  --shadow-elevated: 0 12px 40px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 8px 30px rgba(229, 193, 88, 0.25);
  --shadow-gold-lg: 0 16px 50px rgba(229, 193, 88, 0.35);

  --container-max: 1240px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark-900);
  color-scheme: dark;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark-900);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--trans-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: all var(--trans-fast);
}

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

.max-w-4xl {
  max-w-width: 900px;
}

/* Ambient Cursor Glow */
.cursor-ambient-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 193, 88, 0.08) 0%, rgba(232, 197, 184, 0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

/* Scroll Progress Line */
.scroll-progress-line {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gold-gradient);
  z-index: 1000;
  box-shadow: 0 0 10px var(--gold-500);
}

/* ==========================================================================
   Luxury Preloader
   ========================================================================== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark-900);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.preloader-inner {
  text-align: center;
  max-width: 380px;
  padding: 24px;
}

.preloader-emblem-wrap {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: var(--radius-md);
  padding: 4px;
  background: var(--gold-gradient);
  box-shadow: var(--shadow-gold);
}

.preloader-emblem {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 3px);
}

.preloader-brand {
  font-family: var(--font-cinzel);
  font-size: 20px;
  letter-spacing: 4px;
  color: var(--gold-400);
  margin-bottom: 6px;
  font-weight: 700;
}

.preloader-role {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.preloader-bar-wrap {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 10px;
}

.preloader-bar {
  width: 0%;
  height: 100%;
  background: var(--gold-gradient);
  transition: width 0.1s linear;
}

.preloader-percent {
  font-size: 12px;
  color: var(--gold-500);
  font-weight: 600;
  letter-spacing: 1px;
}

/* ==========================================================================
   Header & Navigation (NO ANNOUNCEMENT BAR)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  background: rgba(10, 11, 14, 0.92);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(229, 193, 88, 0.18);
  transition: all var(--trans-smooth);
}

.site-header.scrolled {
  background: rgba(10, 11, 14, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  border-bottom-color: rgba(229, 193, 88, 0.28);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 16px;
  padding: 12px 28px;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1.5px solid var(--gold-500);
  box-shadow: 0 0 14px rgba(229, 193, 88, 0.3);
  transition: transform var(--trans-fast);
  flex-shrink: 0;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.06);
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.brand-name {
  font-family: var(--font-cinzel);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 2px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-sub {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2.8px;
  color: var(--blush-300);
  line-height: 1.2;
  margin-top: 2px;
  white-space: nowrap;
}

/* Desktop Nav Links - STRICTLY ONE LINE */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 1;
  flex-wrap: nowrap;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--trans-fast);
}

.nav-link:hover {
  color: var(--gold-400);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--trans-smooth);
}

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

/* Header Action Buttons - STRICTLY ONE LINE */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: nowrap;
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-align: center;
  transition: all var(--trans-smooth);
  user-select: none;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #0E0F14;
  padding: 13px 28px;
  font-size: 14.5px;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-gold);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
  filter: brightness(1.08);
}

.btn-secondary {
  background: rgba(229, 193, 88, 0.08);
  color: var(--gold-400);
  border: 1px solid rgba(229, 193, 88, 0.35);
  padding: 13px 26px;
  font-size: 14.5px;
}

.btn-secondary:hover {
  background: rgba(229, 193, 88, 0.16);
  border-color: var(--gold-500);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 11px 22px;
  font-size: 14px;
}

.btn-outline:hover {
  border-color: var(--gold-500);
  color: var(--gold-400);
  background: rgba(229, 193, 88, 0.06);
}

.btn-primary-header {
  background: var(--gold-gradient);
  color: #0B0C10;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(229, 193, 88, 0.28);
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  line-height: 1.2;
}

.btn-primary-header:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 6px 24px rgba(229, 193, 88, 0.45);
}

.btn-secondary-header {
  background: rgba(232, 197, 184, 0.1);
  color: var(--blush-300);
  border: 1px solid rgba(232, 197, 184, 0.35);
  padding: 8px 16px;
  font-size: 12.5px;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.2;
}

.btn-secondary-header:hover {
  border-color: var(--gold-500);
  color: #FFFFFF;
  background: rgba(229, 193, 88, 0.14);
  transform: translateY(-2px);
}

.btn-text-desktop {
  display: inline;
}

.btn-text-mobile {
  display: none;
}

.btn-block {
  width: 100%;
}

.btn-sparkle, .badge-sparkle, .pill-sparkle {
  color: var(--gold-500);
}

/* Mobile Hamburger Button - Perfectly Centered SVG */
.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: rgba(229, 193, 88, 0.08);
  border: 1px solid rgba(229, 193, 88, 0.35);
  border-radius: var(--radius-sm);
  color: var(--gold-400);
  cursor: pointer;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
  box-sizing: border-box;
  transition: all var(--trans-fast);
}

.mobile-menu-btn:hover,
.mobile-menu-btn:active {
  background: rgba(229, 193, 88, 0.18);
  border-color: var(--gold-500);
  color: #FFFFFF;
  transform: scale(1.05);
}

.hamburger-svg {
  width: 22px;
  height: 22px;
  display: block;
  pointer-events: none;
  stroke: var(--gold-400);
  transition: stroke var(--trans-fast);
}

.mobile-menu-btn:hover .hamburger-svg {
  stroke: #FFFFFF;
}

/* ==========================================================================
   Mobile Navigation Drawer & Dedicated Close Button
   ========================================================================== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 950;
  opacity: 0;
  visibility: hidden;
  transition: all var(--trans-smooth);
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -360px;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--bg-dark-800);
  border-left: 1px solid rgba(229, 193, 88, 0.2);
  z-index: 990;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
}

.mobile-drawer.open {
  transform: translateX(-360px);
}

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

.mobile-brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-brand-img {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-500);
}

.mobile-brand-title {
  font-family: var(--font-cinzel);
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-400);
  letter-spacing: 1.5px;
}

.mobile-brand-subtitle {
  font-size: 8px;
  color: var(--blush-300);
  letter-spacing: 2.5px;
  font-weight: 600;
}

/* DEDICATED CLOSE BUTTON IN MOBILE DRAWER */
.mobile-drawer-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(229, 193, 88, 0.25);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans-fast);
}

.mobile-drawer-close:hover {
  background: rgba(229, 193, 88, 0.2);
  color: #FFFFFF;
  transform: rotate(90deg);
}

.mobile-drawer-body {
  flex: 1;
  padding: 22px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-usp-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(229, 193, 88, 0.1);
  border: 1px solid rgba(229, 193, 88, 0.25);
  color: var(--gold-400);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  align-self: flex-start;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  transition: all var(--trans-fast);
}

.mobile-nav-item:hover {
  background: rgba(229, 193, 88, 0.08);
  color: var(--gold-400);
  padding-left: 18px;
}

.mobile-arrow {
  color: var(--gold-500);
  opacity: 0.6;
}

.mobile-drawer-cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 20px;
}

.mobile-drawer-footer {
  font-size: 12px;
  color: var(--text-subtle);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-drawer-footer a {
  color: var(--gold-400);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 90px 0 100px;
  overflow: hidden;
  background: radial-gradient(circle at 75% 30%, rgba(229, 193, 88, 0.06) 0%, transparent 60%);
}

.hero-background-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}

.hero-glow-1 {
  width: 480px;
  height: 480px;
  background: var(--gold-500);
  top: -100px;
  left: 10%;
}

.hero-glow-2 {
  width: 520px;
  height: 520px;
  background: var(--blush-400);
  bottom: 0;
  right: 5%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229, 193, 88, 0.08);
  border: 1px solid rgba(229, 193, 88, 0.28);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-400);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: 52px;
  line-height: 1.14;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.hero-subhead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 16px 34px;
  font-size: 15.5px;
}

/* Hero Stats Strip */
.hero-stats-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.stat-number {
  font-family: var(--font-cinzel);
  font-size: 26px;
  font-weight: 800;
  color: var(--gold-400);
  line-height: 1.1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-subtle);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
}

/* Hero Visual Showcase */
.hero-card-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 8px;
  background: linear-gradient(135deg, rgba(229, 193, 88, 0.4) 0%, rgba(232, 197, 184, 0.1) 50%, rgba(229, 193, 88, 0.3) 100%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.hero-main-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 4px);
  filter: brightness(0.96) contrast(1.04);
}

/* Floating Glassmorphic Badges */
.floating-glass-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(16, 18, 24, 0.85);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(229, 193, 88, 0.35);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-elevated);
  z-index: 5;
}

.floating-card-top {
  top: 36px;
  left: -28px;
  animation: floatTop 4s ease-in-out infinite alternate;
}

.floating-card-bottom {
  bottom: 40px;
  right: -24px;
  animation: floatBottom 4.5s ease-in-out infinite alternate;
}

@keyframes floatTop {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

@keyframes floatBottom {
  0% { transform: translateY(0px); }
  100% { transform: translateY(10px); }
}

.floating-icon {
  font-size: 20px;
  color: var(--gold-500);
}

.floating-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-heading);
}

.floating-sub {
  font-size: 11px;
  color: var(--blush-300);
}

.hero-seal-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--gold-gradient);
  padding: 3px;
  box-shadow: var(--shadow-gold-lg);
  z-index: 6;
}

.seal-inner {
  width: 100%;
  height: 100%;
  background: var(--bg-dark-900);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px dashed rgba(229, 193, 88, 0.6);
}

.seal-star {
  font-size: 7px;
  color: var(--gold-500);
  letter-spacing: 1px;
}

.seal-text {
  font-family: var(--font-cinzel);
  font-size: 9px;
  font-weight: 800;
  color: var(--gold-400);
  letter-spacing: 0.8px;
}

.seal-location {
  font-size: 7px;
  color: var(--blush-300);
  letter-spacing: 1px;
}

/* ==========================================================================
   Section Universal Styles
   ========================================================================== */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-header.text-center {
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gold-400);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-tag.gold-tag {
  color: var(--gold-500);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-heading);
  margin-bottom: 16px;
}

.section-description {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   The USP Experience Section
   ========================================================================== */
.usp-section {
  background: var(--bg-dark-800);
  border-top: 1px solid rgba(229, 193, 88, 0.1);
  border-bottom: 1px solid rgba(229, 193, 88, 0.1);
}

.usp-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.usp-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  position: relative;
  transition: all var(--trans-smooth);
  backdrop-filter: var(--glass-blur);
  display: flex;
  flex-direction: column;
}

.usp-card:hover {
  transform: translateY(-6px);
  border-color: var(--card-border-hover);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.usp-card.highlighted {
  border-color: rgba(229, 193, 88, 0.45);
  background: linear-gradient(180deg, rgba(229, 193, 88, 0.08) 0%, rgba(22, 25, 34, 0.9) 100%);
  box-shadow: var(--shadow-gold);
}

.usp-highlight-badge {
  position: absolute;
  top: -14px;
  left: 30px;
  background: var(--gold-gradient);
  color: #0E0F14;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

.usp-card-number {
  position: absolute;
  top: 26px;
  right: 28px;
  font-family: var(--font-cinzel);
  font-size: 28px;
  font-weight: 800;
  color: rgba(229, 193, 88, 0.2);
}

.usp-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(229, 193, 88, 0.1);
  border: 1px solid rgba(229, 193, 88, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.usp-icon {
  font-size: 26px;
}

.usp-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 14px;
}

.usp-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
}

.usp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 13.5px;
  color: var(--text-primary);
}

.usp-list li {
  color: var(--blush-200);
}

.usp-link {
  margin-top: auto;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-400);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.usp-link:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

/* ==========================================================================
   Services & Menu Section
   ========================================================================== */
.services-section {
  background: var(--bg-dark-900);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  transition: all var(--trans-smooth);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-500);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.service-card.popular-card {
  border-color: rgba(229, 193, 88, 0.5);
  background: linear-gradient(180deg, rgba(229, 193, 88, 0.09) 0%, rgba(22, 25, 34, 0.9) 100%);
  box-shadow: var(--shadow-gold);
}

.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.service-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-subtle);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.service-badge.gold-badge {
  color: #0E0F14;
  background: var(--gold-gradient);
}

.service-price {
  font-family: var(--font-cinzel);
  font-size: 24px;
  font-weight: 800;
  color: var(--gold-400);
}

.service-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.service-meta {
  font-size: 12px;
  color: var(--blush-300);
  font-weight: 600;
  margin-bottom: 14px;
}

.service-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
  flex: 1;
}

/* ==========================================================================
   Pretty Lash Academy Section
   ========================================================================== */
.academy-section {
  background: linear-gradient(180deg, var(--bg-dark-800) 0%, var(--bg-dark-900) 100%);
  border-top: 1px solid rgba(229, 193, 88, 0.15);
}

.academy-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 70px;
}

.academy-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 36px;
}

.academy-highlight-item {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-primary);
  line-height: 1.6;
}

.highlight-bullet {
  color: var(--gold-500);
  font-size: 16px;
  line-height: 1.4;
}

.academy-highlight-item strong {
  color: var(--gold-300);
}

.academy-cta-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.academy-card-showcase {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 8px;
  background: var(--gold-gradient);
  box-shadow: var(--shadow-gold-lg);
}

.academy-kit-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 4px);
}

.academy-badge-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(16, 18, 24, 0.9);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(229, 193, 88, 0.4);
  padding: 12px 20px;
  border-radius: var(--radius-md);
}

.badge-title {
  font-family: var(--font-cinzel);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold-400);
}

.badge-sub {
  font-size: 13px;
  color: #FFFFFF;
  font-weight: 600;
}

/* Academy Courses Grid */
.academy-courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.course-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  transition: all var(--trans-smooth);
}

.course-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-500);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}

.course-level-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold-400);
  margin-bottom: 12px;
}

.course-name {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.25;
  margin-bottom: 12px;
}

.course-pricing {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

.price-val {
  font-family: var(--font-cinzel);
  font-size: 28px;
  font-weight: 800;
  color: var(--gold-400);
}

.price-sub {
  font-size: 12px;
  color: var(--blush-300);
}

.course-summary {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.course-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12.5px;
  color: var(--blush-200);
  margin-bottom: 28px;
  margin-top: auto;
}

/* ==========================================================================
   The Unified Booking Engine (#booking)
   ========================================================================== */
.booking-section {
  background: var(--bg-dark-900);
  padding: 110px 0;
}

.hub-switcher-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.hub-switcher {
  display: inline-flex;
  padding: 6px;
  background: var(--bg-dark-750);
  border: 1px solid rgba(229, 193, 88, 0.25);
  border-radius: var(--radius-full);
  gap: 6px;
  box-shadow: var(--shadow-subtle);
}

.hub-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-muted);
  transition: all var(--trans-smooth);
}

.hub-tab-btn:hover {
  color: var(--text-primary);
}

.hub-tab-btn.active {
  background: var(--gold-gradient);
  color: #0E0F14;
  box-shadow: 0 4px 20px rgba(229, 193, 88, 0.35);
}

.hub-tab-icon {
  font-size: 16px;
}

.booking-engine-card {
  background: var(--card-bg-elevated);
  border: 1px solid rgba(229, 193, 88, 0.3);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  backdrop-filter: var(--glass-blur);
}

.hub-pane.hidden {
  display: none;
}

.booking-pane-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 34px;
}

.pane-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.pane-subtitle {
  font-size: 14px;
  color: var(--text-muted);
}

.pane-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold-400);
  background: rgba(229, 193, 88, 0.1);
  border: 1px solid rgba(229, 193, 88, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
}

/* Forms */
.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold-300);
  margin-bottom: 8px;
}

.form-select, .form-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(12, 14, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  transition: all var(--trans-fast);
}

.form-select:focus, .form-input:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 12px rgba(229, 193, 88, 0.25);
  background: rgba(18, 21, 30, 0.95);
}

.form-row {
  display: flex;
  gap: 16px;
}

.col-half {
  flex: 1;
}

/* Time Slots Grid */
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.time-slot-btn {
  padding: 10px 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xs);
  text-align: center;
  transition: all var(--trans-fast);
}

.time-slot-btn:hover {
  border-color: var(--gold-500);
  color: var(--gold-400);
  background: rgba(229, 193, 88, 0.08);
}

.time-slot-btn.selected {
  background: var(--gold-gradient);
  color: #0B0C10;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(229, 193, 88, 0.35);
  font-weight: 700;
}

/* Addons List */
.addons-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.addon-checkbox-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(12, 14, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--trans-fast);
}

.addon-checkbox-card:hover {
  border-color: rgba(229, 193, 88, 0.3);
  background: rgba(18, 21, 30, 0.8);
}

.addon-checkbox-card input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold-500);
  cursor: pointer;
}

.addon-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.addon-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-primary);
}

.addon-desc {
  font-size: 11.5px;
  color: var(--text-muted);
}

.addon-price {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--gold-400);
}

/* Payment Options Grid for Academy */
.payment-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.payment-opt-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: rgba(12, 14, 20, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--trans-fast);
}

.payment-opt-card:hover {
  border-color: rgba(229, 193, 88, 0.4);
}

.payment-opt-card input {
  margin-top: 3px;
  accent-color: var(--gold-500);
}

.opt-desc {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Order Summary Column */
.summary-card {
  background: var(--bg-dark-750);
  border: 1px solid rgba(229, 193, 88, 0.3);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 100px;
}

.summary-header {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

.summary-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold-400);
}

.summary-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-heading);
  margin-top: 4px;
}

.summary-duration {
  font-size: 12px;
  color: var(--blush-300);
  margin-top: 2px;
}

.summary-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--text-muted);
}

.summary-line strong {
  color: var(--text-primary);
}

.summary-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 6px 0;
}

.summary-line.total-line {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
}

.total-amount {
  font-family: var(--font-cinzel);
  font-size: 24px;
  color: var(--gold-400);
}

.total-amount.highlight-gold {
  color: var(--gold-300);
}

.deposit-notice {
  display: flex;
  gap: 10px;
  background: rgba(229, 193, 88, 0.08);
  border: 1px solid rgba(229, 193, 88, 0.2);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--blush-200);
  line-height: 1.5;
  margin: 6px 0 16px;
}

.academy-perks-box {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: var(--blush-200);
  margin: 6px 0 16px;
}

.summary-cta-btn {
  margin-top: 8px;
  padding: 15px 24px;
  font-size: 15px;
}

.summary-guarantee {
  text-align: center;
  font-size: 11px;
  color: var(--text-subtle);
  margin-top: 14px;
}

/* ==========================================================================
   Portfolio Section
   ========================================================================== */
.portfolio-section {
  background: var(--bg-dark-800);
}

.portfolio-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--trans-fast);
}

.filter-pill:hover {
  color: var(--text-primary);
  border-color: rgba(229, 193, 88, 0.3);
}

.filter-pill.active {
  background: var(--gold-gradient);
  color: #0E0F14;
  border-color: transparent;
  font-weight: 700;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--bg-dark-700);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--trans-smooth);
}

.portfolio-item:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 193, 88, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.portfolio-img-wrap {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item:hover .portfolio-img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 11, 14, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.portfolio-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--gold-400);
  margin-bottom: 4px;
}

.portfolio-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
}

.portfolio-info {
  font-size: 12.5px;
  color: var(--blush-200);
  margin-top: 2px;
}

/* ==========================================================================
   Founder Section
   ========================================================================== */
.founder-section {
  background: var(--bg-dark-900);
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.founder-card-frame {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 6px;
  background: linear-gradient(135deg, rgba(229, 193, 88, 0.4) 0%, rgba(232, 197, 184, 0.2) 100%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.founder-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 3px);
}

.founder-experience-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(14, 16, 22, 0.9);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--gold-500);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-elevated);
  text-align: center;
}

.exp-number {
  font-family: var(--font-cinzel);
  font-size: 26px;
  font-weight: 800;
  color: var(--gold-400);
  display: block;
}

.exp-text {
  font-size: 11px;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.founder-bio-p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.founder-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0 40px;
}

.founder-stat-box {
  background: var(--bg-dark-750);
  border: 1px solid rgba(229, 193, 88, 0.18);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  text-align: center;
}

.box-num {
  font-family: var(--font-cinzel);
  font-size: 24px;
  font-weight: 800;
  color: var(--gold-400);
}

.box-desc {
  font-size: 11.5px;
  color: var(--text-subtle);
  margin-top: 2px;
}

.founder-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews-section {
  background: var(--bg-dark-800);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
}

.review-card.highlight-review {
  border-color: rgba(229, 193, 88, 0.45);
  background: linear-gradient(180deg, rgba(229, 193, 88, 0.08) 0%, rgba(22, 25, 34, 0.85) 100%);
}

.review-stars {
  color: var(--gold-500);
  letter-spacing: 2px;
  font-size: 15px;
  margin-bottom: 12px;
}

.review-type-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  align-self: flex-start;
}

.client-badge {
  background: rgba(232, 197, 184, 0.15);
  color: var(--blush-300);
}

.academy-badge {
  background: rgba(229, 193, 88, 0.15);
  color: var(--gold-400);
}

.review-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 24px;
  flex: 1;
  font-style: italic;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #0B0C10;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.reviewer-name {
  font-weight: 700;
  font-size: 14px;
  color: #FFFFFF;
}

.reviewer-sub {
  font-size: 12px;
  color: var(--text-subtle);
}

/* ==========================================================================
   Policies Section
   ========================================================================== */
.policies-section {
  background: var(--bg-dark-900);
  padding: 60px 0;
}

.policies-box {
  background: var(--bg-dark-750);
  border: 1px solid rgba(229, 193, 88, 0.22);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.policies-header {
  margin-bottom: 28px;
}

.policies-title {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--text-heading);
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.policy-item {
  display: flex;
  gap: 12px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.policy-icon {
  font-size: 24px;
}

.policy-item strong {
  color: var(--gold-300);
  display: block;
  margin-bottom: 4px;
}

/* ==========================================================================
   FAQ Accordion Section
   ========================================================================== */
.faq-section {
  background: var(--bg-dark-800);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--trans-fast);
}

.faq-item:hover {
  border-color: rgba(229, 193, 88, 0.4);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-heading);
  text-align: left;
}

.faq-chevron {
  font-size: 20px;
  color: var(--gold-400);
  transition: transform var(--trans-smooth);
}

.faq-item.active .faq-chevron {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding-bottom: 22px;
}

/* ==========================================================================
   Contact & Location Section
   ========================================================================== */
.contact-section {
  background: var(--bg-dark-900);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.contact-card-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.contact-card-item {
  display: flex;
  gap: 16px;
  font-size: 14.5px;
  color: var(--text-primary);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(229, 193, 88, 0.1);
  border: 1px solid rgba(229, 193, 88, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-card-item strong {
  color: var(--gold-400);
  display: block;
  margin-bottom: 2px;
}

.gold-link {
  color: var(--gold-400);
}

.text-muted {
  color: var(--text-subtle);
  font-size: 12.5px;
}

.map-card-frame {
  background: var(--bg-dark-750);
  border: 1px solid rgba(229, 193, 88, 0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

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

.map-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
}

.map-dist {
  font-size: 12px;
  color: var(--gold-400);
}

.map-visual-placeholder {
  height: 280px;
  background: radial-gradient(circle at center, #1E2230 0%, #101218 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-pin-pulse {
  position: relative;
  width: 24px;
  height: 24px;
  margin-bottom: 16px;
}

.pin-dot {
  width: 14px;
  height: 14px;
  background: var(--gold-500);
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 5px;
  box-shadow: 0 0 12px var(--gold-500);
}

.pin-ring {
  width: 36px;
  height: 36px;
  border: 2px solid var(--gold-500);
  border-radius: 50%;
  position: absolute;
  top: -6px;
  left: -6px;
  animation: pulsePin 2s infinite ease-out;
}

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

.map-address-banner {
  background: rgba(14, 16, 22, 0.9);
  border: 1px solid rgba(229, 193, 88, 0.35);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  text-align: center;
  font-size: 13.5px;
}

.map-address-banner .text-sub {
  font-size: 11.5px;
  color: var(--text-muted);
}

.map-footer-actions {
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #07080A;
  border-top: 1px solid rgba(229, 193, 88, 0.2);
  padding: 70px 0 24px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo-img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-500);
}

.footer-logo-title {
  font-family: var(--font-cinzel);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold-400);
}

.footer-logo-sub {
  font-size: 8.5px;
  letter-spacing: 3px;
  color: var(--blush-300);
  font-weight: 700;
}

.footer-tagline {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  transition: all var(--trans-fast);
}

.social-icon-btn:hover {
  background: var(--gold-gradient);
  color: #0E0F14;
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-cinzel);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.footer-nav-list a:hover {
  color: var(--gold-400);
  padding-left: 4px;
}

.footer-address {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-hours {
  font-size: 12.5px;
  color: var(--blush-200);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--text-subtle);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-legal-links a:hover {
  color: var(--gold-400);
}

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

/* ==========================================================================
   Modals
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--trans-smooth);
}

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

.modal-dialog {
  background: var(--bg-dark-800);
  border: 1px solid rgba(229, 193, 88, 0.4);
  border-radius: var(--radius-xl);
  max-width: 580px;
  width: 100%;
  padding: 32px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.85);
  transform: translateY(20px) scale(0.96);
  transition: all var(--trans-smooth);
}

.modal-backdrop.active .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
  position: relative;
}

.modal-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(229, 193, 88, 0.15);
  border: 1px solid var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: #FFFFFF;
}

.modal-subtitle {
  font-size: 13px;
  color: var(--text-muted);
}

.modal-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 18px;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.modal-close-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.15);
}

.modal-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.modal-summary-box {
  background: rgba(12, 14, 20, 0.8);
  border: 1px solid rgba(229, 193, 88, 0.25);
  border-radius: var(--radius-sm);
  padding: 18px;
  margin: 16px 0;
}

.modal-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 13.5px;
}

.modal-summary-row strong {
  color: var(--gold-300);
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 1180px) {
  .services-grid, .academy-courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .policies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Switch to drawer at 1160px so desktop nav NEVER breaks into two lines */
@media (max-width: 1160px) {
  .desktop-nav, .btn-secondary-header {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-headline {
    font-size: 38px;
  }
  .hero-main-img {
    height: 420px;
  }
  .usp-cards-grid {
    grid-template-columns: 1fr;
  }
  .academy-hero-grid {
    grid-template-columns: 1fr;
  }
  .booking-grid {
    grid-template-columns: 1fr;
  }
  .founder-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile Header Alignment & Compact Controls */
@media (max-width: 768px) {
  .header-container {
    padding: 10px 16px;
    gap: 12px;
    justify-content: space-between;
  }

  .brand-logo {
    gap: 10px;
    flex-shrink: 1;
    min-width: 0;
  }

  .brand-logo-img {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 15px;
    letter-spacing: 1.5px;
  }

  .brand-sub {
    font-size: 7.5px;
    letter-spacing: 2px;
  }

  .header-actions {
    gap: 10px;
    flex-shrink: 0;
    align-items: center;
  }

  .btn-primary-header {
    padding: 7px 14px;
    font-size: 12px;
    white-space: nowrap;
    border-radius: 9999px;
    letter-spacing: 0.3px;
  }

  .btn-text-desktop {
    display: none;
  }

  .btn-text-mobile {
    display: inline;
  }

  .mobile-menu-btn {
    width: 38px;
    height: 38px;
  }

  .hamburger-svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 640px) {
  .hero-headline {
    font-size: 30px;
  }
  .hero-stats-strip {
    flex-wrap: wrap;
    gap: 16px;
  }
  .stat-divider {
    display: none;
  }
  .stat-item {
    width: calc(50% - 10px);
  }
  .services-grid, .academy-courses-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .policies-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .time-slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .payment-options-grid {
    grid-template-columns: 1fr;
  }
  .hub-tab-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
  .booking-engine-card {
    padding: 24px 18px;
  }
  .hero-btn {
    width: 100%;
  }
  .floating-glass-card {
    display: none;
  }
}

/* ==========================================================================
   Luxury Scroll Animations, Typewriter & Lively Micro-Interactions
   ========================================================================== */
.type-cursor {
  display: inline-block;
  color: var(--gold-400);
  font-weight: 300;
  margin-left: 2px;
  animation: blinkCursor 0.9s infinite;
}

@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-typed-target {
  color: var(--gold-300);
  font-weight: 700;
  text-shadow: 0 0 12px rgba(229, 193, 88, 0.4);
}

/* Scroll Reveal Base Engine */
.reveal-init {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-init.revealed {
  opacity: 1;
  transform: translate(0, 0) scale(1) !important;
}

.reveal-init.fade-left {
  transform: translateX(-40px);
}

.reveal-init.fade-right {
  transform: translateX(40px);
}

.reveal-init.zoom-in {
  transform: scale(0.92);
}

/* Staggered Grids */
.stagger-parent .service-card,
.stagger-parent .usp-card,
.stagger-parent .course-card,
.stagger-parent .portfolio-card,
.stagger-parent .review-card,
.stagger-parent .policy-card,
.stagger-parent .faq-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), box-shadow var(--trans-smooth), border-color var(--trans-smooth);
}

.stagger-parent.revealed .service-card,
.stagger-parent.revealed .usp-card,
.stagger-parent.revealed .course-card,
.stagger-parent.revealed .portfolio-card,
.stagger-parent.revealed .review-card,
.stagger-parent.revealed .policy-card,
.stagger-parent.revealed .faq-item {
  opacity: 1;
  transform: translateY(0);
}

/* Subtle Floating Animation for Badges */
@keyframes floatSubtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating-glass-card {
  animation: floatSubtle 5s ease-in-out infinite alternate;
}

.floating-card-bottom {
  animation-delay: -2.5s;
}

/* Ambient Pulse for Glow Accents */
@keyframes ambientGlowPulse {
  0%, 100% { opacity: 0.12; transform: scale(1); }
  50% { opacity: 0.22; transform: scale(1.08); }
}

.hero-glow-1 {
  animation: ambientGlowPulse 8s ease-in-out infinite alternate;
}

.hero-glow-2 {
  animation: ambientGlowPulse 10s ease-in-out infinite alternate-reverse;
}
