/* ==========================================================================
   A.M DRIVING SCHOOL - PRODUCTION STYLESHEET
   Brand: Coastal Meridian Driver System (DVSA Grade-A Tuition)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Brand Core */
  --color-primary: #0B3D91;
  --color-primary-dark: #062356;
  --color-primary-light: #1A54B8;
  --color-primary-subtle: #E8EEF7;
  
  --color-secondary: #D9381E;
  --color-secondary-dark: #B9260F;
  --color-secondary-subtle: rgba(217, 56, 30, 0.12);
  
  --color-teal: #0A786E;
  --color-teal-dark: #064E48;
  --color-teal-subtle: #E6F5F3;
  
  /* Surfaces & Canvas */
  --color-canvas: #F4F6F8;
  --color-surface: #F8F9FF;
  --color-surface-card: #FFFFFF;
  --color-surface-low: #EEF4FF;
  --color-surface-container: #E4EFFF;
  --color-surface-high: #DBE9FF;
  --color-surface-variant: #D5E4F9;
  --color-sky: #F0F6FE;

  /* Typography & Ink */
  --color-text-main: #0E1D2C;
  --color-text-muted: #434652;
  --color-text-subtle: #64748B;
  --color-text-light: #FFFFFF;

  /* Borders & Dividers */
  --color-border: #E2E8F0;
  --color-border-dark: #CBD5E1;
  --color-border-subtle: rgba(255, 255, 255, 0.12);

  /* Shadows (Depth Stratification) */
  --shadow-sm: 0 1px 2px 0 rgba(11, 61, 145, 0.05);
  --shadow-level-1: 0 2px 8px -2px rgba(11, 61, 145, 0.05);
  --shadow-level-2: 0 8px 24px -4px rgba(11, 61, 145, 0.10);
  --shadow-level-3: 0 16px 36px -6px rgba(6, 35, 86, 0.14);
  --shadow-sticky: 0 -4px 16px 0 rgba(6, 35, 86, 0.08);
  --shadow-glow-coral: 0 0 0 4px rgba(217, 56, 30, 0.25);
  --shadow-glow-navy: 0 0 0 3px rgba(11, 61, 145, 0.18);

  /* Radii */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-pill: 9999px;

  /* Spacing Base */
  --container-max: 1240px;
  --transition-standard: 0.24s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

section[id], main[id], [id] {
  scroll-margin-top: 96px;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--color-surface);
  color: var(--color-text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

::selection {
  background-color: rgba(255, 107, 95, 0.25);
  color: var(--color-primary-dark);
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   3. LAYOUT UTILITIES & TYPOGRAPHY
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 768px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.section {
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 1024px) {
  .section {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}

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

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.section-eyebrow.coral {
  color: var(--color-secondary-dark);
  background-color: var(--color-secondary-subtle);
}

.section-eyebrow.navy {
  color: var(--color-primary);
  background-color: var(--color-primary-subtle);
}

.section-eyebrow.teal {
  color: var(--color-teal-dark);
  background-color: var(--color-teal-subtle);
}

.section-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 38px;
  }
}

.section-desc {
  color: var(--color-text-muted);
  font-size: 15px;
  margin-top: 12px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .section-desc {
    font-size: 16px;
  }
}

/* --------------------------------------------------------------------------
   4. BUTTONS & CHIPS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 0 22px;
  min-height: 48px;
  transition: all var(--transition-standard);
  white-space: nowrap;
  user-select: none;
}

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

.btn-coral {
  background-color: var(--color-secondary);
  color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(217, 56, 30, 0.35);
}

.btn-coral:hover {
  background-color: var(--color-secondary-dark);
  box-shadow: 0 4px 16px rgba(217, 56, 30, 0.45);
}

.btn-navy {
  background-color: var(--color-primary);
  color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(11, 61, 145, 0.2);
}

.btn-navy:hover {
  background-color: var(--color-primary-light);
  box-shadow: 0 4px 16px rgba(11, 61, 145, 0.3);
}

.btn-teal {
  background-color: var(--color-teal);
  color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(10, 120, 110, 0.25);
}

.btn-teal:hover {
  background-color: var(--color-teal-dark);
}

.btn-outline {
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--color-primary-subtle);
}

.btn-white {
  background-color: #FFFFFF;
  color: var(--color-primary);
  box-shadow: var(--shadow-level-1);
}

.btn-white:hover {
  background-color: var(--color-surface-container);
}

.btn-sm {
  min-height: 38px;
  padding: 0 16px;
  font-size: 13px;
}

.btn-lg {
  min-height: 52px;
  padding: 0 28px;
  font-size: 16px;
  font-weight: 800;
}

.btn-block {
  width: 100%;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  border: 1px solid var(--color-border);
  background-color: #FFFFFF;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.chip-teal {
  background-color: var(--color-teal-subtle);
  color: var(--color-teal-dark);
  border-color: rgba(10, 120, 110, 0.2);
}

.chip-coral {
  background-color: var(--color-secondary-subtle);
  color: var(--color-secondary-dark);
  border-color: rgba(255, 107, 95, 0.2);
}

.chip-sky {
  background-color: var(--color-sky);
  color: var(--color-primary);
  border-color: var(--color-surface-container);
}

/* Card hover animation */
.lift-card {
  transition: transform var(--transition-standard), box-shadow var(--transition-standard), border-color var(--transition-standard);
}

.lift-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-level-2);
}

/* --------------------------------------------------------------------------
   5. TOP UTILITY BANNER
   -------------------------------------------------------------------------- */
.top-utility-bar {
  background-color: var(--color-primary-dark);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-utility-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.top-utility-left, .top-utility-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-utility-badge {
  color: var(--color-teal);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.top-utility-loc {
  display: none;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 768px) {
  .top-utility-loc {
    display: inline-flex;
  }
}

.top-utility-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #FFFFFF;
  transition: color var(--transition-standard);
}

.top-utility-link:hover {
  color: var(--color-secondary);
}

.top-utility-wa {
  color: var(--color-teal);
  font-weight: 700;
}

.top-utility-wa:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   6. STICKY HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-surface-container);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-standard);
}

.site-header.scrolled {
  box-shadow: var(--shadow-level-1);
}

.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-standard);
}

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

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 19px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.brand-tagline {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-subtle);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 4px;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: all var(--transition-standard);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--color-primary);
  background-color: var(--color-surface-container);
}

.nav-link.active {
  color: var(--color-primary);
  background-color: var(--color-surface-container);
  font-weight: 700;
}

/* --- Smart Desktop Dropdown Navigation --- */
.nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: all var(--transition-standard);
  text-decoration: none;
}

.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.active,
.nav-item-dropdown:hover .nav-dropdown-trigger,
.nav-item-dropdown.open .nav-dropdown-trigger {
  color: var(--color-primary);
  background-color: var(--color-surface-container);
}

.nav-dropdown-chevron {
  font-size: 18px;
  transition: transform var(--transition-standard);
  pointer-events: none;
}

.nav-item-dropdown:hover .nav-dropdown-chevron,
.nav-item-dropdown.open .nav-dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 280px;
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 36px -4px rgba(6, 35, 86, 0.12), 0 4px 12px rgba(6, 35, 86, 0.04);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.2s ease;
  z-index: 100;
  pointer-events: none;
}

/* Invisible bridge so mouse hover doesn't drop between trigger and menu */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu,
.nav-item-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-standard);
  border: 1px solid transparent;
}

.nav-dropdown-item:hover {
  background-color: var(--color-surface-container);
  border-color: rgba(11, 61, 145, 0.08);
}

.nav-dropdown-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: var(--color-surface-container);
  color: var(--color-primary);
  font-size: 18px;
  transition: all var(--transition-standard);
}

.nav-dropdown-item:hover .nav-dropdown-icon {
  background-color: var(--color-primary);
  color: #FFFFFF;
}

.nav-dropdown-content {
  flex: 1;
  min-width: 0;
}

.nav-dropdown-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}

.nav-dropdown-desc {
  display: block;
  font-size: 11px;
  color: var(--color-text-subtle);
  line-height: 1.3;
  margin-top: 2px;
}

.nav-tag-badge {
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 9999px;
  line-height: 1;
}

.nav-tag-badge.coral {
  background: var(--color-secondary-subtle);
  color: var(--color-secondary);
}

.nav-tag-badge.teal {
  background: var(--color-teal-subtle);
  color: var(--color-teal);
}

.nav-tag-badge.sky {
  background: var(--color-primary-subtle);
  color: var(--color-primary);
}

@media (min-width: 1024px) and (max-width: 1240px) {
  .nav-desktop {
    gap: 2px;
  }
  .nav-link,
  .nav-dropdown-trigger {
    font-size: 13px;
    padding: 6px 8px;
  }
}

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

.header-phone-btn {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: color var(--transition-standard);
}

.header-phone-btn:hover {
  color: var(--color-secondary);
}

@media (min-width: 640px) {
  .header-phone-btn {
    display: flex;
  }
}

.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  padding: 10px;
  background-color: var(--color-surface-container);
  color: var(--color-primary);
  transition: background-color var(--transition-standard);
}

@media (min-width: 1024px) {
  .hamburger-btn {
    display: none;
  }
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: transform var(--transition-standard), opacity var(--transition-standard);
}

.hamburger-btn.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Slide-Out Drawer */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(6, 35, 86, 0.45);
  backdrop-filter: blur(4px);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

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

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background-color: #FFFFFF;
  z-index: 100;
  box-shadow: -8px 0 24px rgba(6, 35, 86, 0.15);
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}

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

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.drawer-section-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-subtle);
  padding: 12px 10px 4px 10px;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-main);
  padding: 9px 12px;
  border-radius: var(--radius-lg);
  transition: all var(--transition-standard);
  text-decoration: none;
}

.drawer-link:hover {
  background-color: var(--color-surface-container);
  color: var(--color-primary);
}

.drawer-link-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-surface-container);
  color: var(--color-primary);
  font-size: 16px;
  flex-shrink: 0;
}

.drawer-link-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 9999px;
}

.drawer-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* --------------------------------------------------------------------------
   7. HERO SECTION (Cinematic Full-Bleed Backdrop with Overlaid Content)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  overflow: hidden;
  background-color: #061A3D;
  border-bottom: 1px solid var(--color-surface-container);
}

.hero-section-cinematic {
  position: relative;
  width: 100%;
  min-height: 600px;
  padding-top: 56px;
  padding-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-section-cinematic {
    padding-top: 72px;
    padding-bottom: 68px;
    min-height: 640px;
  }
}

@media (min-width: 1024px) {
  .hero-section-cinematic {
    padding-top: 92px;
    padding-bottom: 88px;
    min-height: 700px;
  }
}

/* Full-bleed background media layer covering 100% of hero area */
.hero-bg-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-section-cinematic:hover .hero-bg-img {
  transform: scale(1.045);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 26, 61, 0.88) 0%,
    rgba(10, 37, 84, 0.78) 45%,
    rgba(6, 26, 61, 0.94) 100%
  );
  pointer-events: none;
}

/* Overlaid foreground container */
.hero-overlay-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-status-pill-overlaid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-pill);
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}

.hero-title-overlaid {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.15;
  color: #FFFFFF;
  letter-spacing: -0.025em;
  max-width: 880px;
  margin: 0 auto;
  text-wrap: balance;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

@media (min-width: 640px) {
  .hero-title-overlaid {
    font-size: 42px;
  }
}

@media (min-width: 1024px) {
  .hero-title-overlaid {
    font-size: 52px;
  }
}

.hero-desc-overlaid {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.6;
  color: #E2E8F0;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

@media (min-width: 640px) {
  .hero-desc-overlaid {
    font-size: 18px;
    margin-top: 20px;
  }
}

/* Frosted glass white outline button for hero overlay */
.btn-outline-white {
  background-color: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #FFFFFF !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.24);
  border-color: #FFFFFF;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

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

/* Floating Badges Strip Overlaid */
.hero-overlay-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-overlay-footnote {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-overlay-footnote strong {
  color: #FFFFFF;
  font-weight: 700;
}

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

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 7fr 5fr;
    gap: 48px;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #FFFFFF;
  border: 1px solid var(--color-surface-high);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-teal);
  position: relative;
}

.live-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background-color: rgba(10, 120, 110, 0.4);
  animation: ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

.hero-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-primary);
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 44px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 48px;
  }
}

.hero-desc {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 600px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  margin-bottom: 28px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
    width: auto;
  }
}

.hero-showcase {
  width: calc(100% + 3rem);
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  max-width: none;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .hero-showcase {
    width: calc(100% + 4rem);
    margin-left: -2rem;
    margin-right: -2rem;
  }
}

.hero-section-cinematic .hero-showcase {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  max-width: none !important;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-section-cinematic .hero-visual-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: none;
  box-shadow: none;
  background-color: #061A3D;
  overflow: hidden;
}

.hero-section-cinematic .hero-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  overflow: hidden;
}

.hero-section-cinematic .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.hero-section-cinematic .hero-img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 26, 61, 0.88) 0%,
    rgba(10, 37, 84, 0.78) 45%,
    rgba(6, 26, 61, 0.94) 100%
  );
  pointer-events: none;
}

.hero-visual-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 20px 45px -12px rgba(11, 61, 145, 0.2), 0 2px 10px rgba(0, 0, 0, 0.05);
  background-color: #0E1D2C;
  border: 1px solid rgba(11, 61, 145, 0.12);
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: block;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-visual-card:hover .hero-img {
  transform: scale(1.025);
}

.hero-img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 35, 86, 0.04) 0%, rgba(6, 35, 86, 0.2) 55%, rgba(6, 35, 86, 0.88) 100%);
  pointer-events: none;
}

.hero-floating-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  z-index: 5;
}

.active-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10B981;
}

.hero-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  color: #FFFFFF;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-caption-top {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-pass-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  border-radius: var(--radius-pill);
  background-color: rgba(10, 120, 110, 0.95);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.hero-location-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 11px;
  border-radius: var(--radius-pill);
  background-color: rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-caption-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-caption-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: #FFFFFF;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
  margin: 0;
  text-align: left;
}

.hero-transmission-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.hero-trans-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: var(--radius-md);
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-trans-badge.auto {
  background-color: rgba(14, 29, 44, 0.78);
  color: #FFFFFF;
  border: 1px solid rgba(10, 120, 110, 0.5);
}

.hero-trans-badge.auto .material-symbols-outlined {
  color: var(--color-teal);
  font-size: 15px;
}

.hero-trans-badge.manual {
  background-color: rgba(14, 29, 44, 0.78);
  color: #FFFFFF;
  border: 1px solid rgba(255, 107, 95, 0.5);
}

.hero-trans-badge.manual .material-symbols-outlined {
  color: var(--color-secondary);
  font-size: 15px;
}

@media (max-width: 640px) {
  .hero-showcase {
    margin-top: 1.5rem;
  }
  .hero-showcase .hero-floating-badge {
    top: 10px;
    left: 10px;
    font-size: 10px;
    padding: 4px 10px;
    gap: 6px;
  }
  .hero-showcase .hero-img-caption {
    padding: 12px 14px;
    gap: 6px;
  }
  .hero-caption-title {
    font-size: 12px;
  }
  .hero-pass-chip,
  .hero-location-chip,
  .hero-trans-badge {
    font-size: 10px;
    padding: 3px 8px;
  }
}

/* --------------------------------------------------------------------------
   8. STAT PROOF STRIP
   -------------------------------------------------------------------------- */
.stats-strip {
  background-color: var(--color-primary);
  color: #FFFFFF;
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}

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

.stat-value {
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  color: var(--color-teal);
  letter-spacing: -0.03em;
}

@media (min-width: 1024px) {
  .stat-value {
    font-size: 46px;
  }
}

.stat-label {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  margin-top: 6px;
}

.stat-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   9. WHY CHOOSE US (4 PILLARS)
   -------------------------------------------------------------------------- */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

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

.pillar-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 24px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pillar-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background-color: var(--color-sky);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.pillar-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.pillar-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.pillar-foot {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--color-surface-container);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-teal-dark);
}

/* --------------------------------------------------------------------------
   10. 3-STEP JOURNEY
   -------------------------------------------------------------------------- */
.journey-section {
  background-color: var(--color-surface-low);
  border-top: 1px solid var(--color-surface-container);
  border-bottom: 1px solid var(--color-surface-container);
}

.journey-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .journey-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.journey-header .section-desc {
  max-width: 440px;
  margin: 0;
}

.journey-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.journey-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 28px;
  border: 1px solid var(--color-surface-high);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.journey-card.featured {
  border-color: rgba(255, 107, 95, 0.4);
  box-shadow: 0 0 0 2px rgba(255, 107, 95, 0.25), var(--shadow-sm);
}

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

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-num.coral {
  background-color: var(--color-secondary);
}

.step-stage-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  letter-spacing: 0.05em;
}

.step-stage-tag.coral {
  color: var(--color-secondary);
}

.journey-card-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.journey-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.journey-card-foot {
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* --------------------------------------------------------------------------
   11. PRICING & PACKAGE MATRIX
   -------------------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1040px;
  margin: 0 auto 36px auto;
}

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

.pricing-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-2xl);
  padding: 32px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-level-1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.pricing-card.popular {
  border: 2px solid var(--color-secondary);
  box-shadow: var(--shadow-level-2);
}

.popular-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background-color: var(--color-secondary);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(255, 107, 95, 0.3);
}

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

.pricing-package-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-primary);
}

.pricing-package-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.pricing-rate-box {
  margin: 24px 0;
  padding: 18px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-rate-main {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.rate-amount {
  font-size: 40px;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}

.pricing-card.popular .rate-amount {
  color: var(--color-secondary);
}

.rate-unit {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-subtle);
}

.block-deal-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-surface-low);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
}

.block-save {
  color: var(--color-secondary);
  font-weight: 800;
}

.pricing-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--color-text-main);
  margin-bottom: 32px;
}

.pricing-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features-list .material-symbols-outlined {
  color: var(--color-teal);
  font-size: 18px;
  flex-shrink: 0;
}

/* Secondary Courses Grid */
.courses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto;
}

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

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

.course-card {
  background-color: var(--color-surface-low);
  border-radius: var(--radius-xl);
  padding: 20px;
  border: 1px solid var(--color-surface-container);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.course-card-tag {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-teal);
}

.course-card-tag.coral {
  color: var(--color-secondary);
}

.course-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 4px;
}

.course-desc {
  font-size: 12px;
  color: var(--color-text-subtle);
  margin-top: 6px;
  line-height: 1.5;
}

.course-card-foot {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(203, 213, 225, 0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.course-price {
  font-size: 15px;
  font-weight: 800;
  color: var(--color-primary);
}

.course-price.coral {
  color: var(--color-secondary);
}

.cancellation-guarantee-wrap {
  text-align: center;
  margin-top: 36px;
}

.cancellation-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   12. MEET YOUR INSTRUCTORS
   -------------------------------------------------------------------------- */
.instructors-section {
  background-color: rgba(238, 244, 255, 0.6);
  border-top: 1px solid var(--color-surface-container);
  border-bottom: 1px solid var(--color-surface-container);
}

.instructors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1040px;
  margin: 0 auto;
}

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

.instructor-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-2xl);
  padding: 28px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-level-1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.instructor-profile-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

@media (min-width: 640px) {
  .instructor-profile-row {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
}

.instructor-profile-row picture {
  flex-shrink: 0;
  display: block;
}

.instructor-photo {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  border: 3px solid var(--color-sky);
}

.instructor-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 640px) {
  .instructor-meta {
    align-items: flex-start;
  }
}

.instructor-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-primary);
  margin-top: 4px;
}

.instructor-role {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-secondary);
}

.instructor-sub {
  font-size: 12px;
  color: var(--color-text-subtle);
  font-weight: 600;
  margin-top: 2px;
}

.instructor-bio {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-top: 18px;
}

.instructor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.instructor-foot {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--color-surface-container);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.student-avatar-stack {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar-row {
  display: flex;
  margin-right: 4px;
}

.avatar-row img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  object-fit: cover;
  margin-left: -10px;
  box-shadow: var(--shadow-sm);
}

.avatar-row img:first-child {
  margin-left: 0;
}

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

/* --------------------------------------------------------------------------
   13. SUCCESS GALLERY
   -------------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

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

.gallery-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.gallery-thumb-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.gallery-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.gallery-card:hover .gallery-thumb {
  transform: scale(1.06);
}

.gallery-location-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--color-primary);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

.gallery-verified-tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background-color: var(--color-teal);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: var(--shadow-sm);
}

.gallery-info {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gallery-pupil-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 800;
  color: var(--color-primary);
}

.gallery-pupil-desc {
  font-size: 12px;
  color: var(--color-text-subtle);
}

/* --------------------------------------------------------------------------
   14. VERIFIED PUPIL REVIEWS
   -------------------------------------------------------------------------- */
.reviews-section {
  background-color: var(--color-surface-low);
  border-top: 1px solid var(--color-surface-container);
  border-bottom: 1px solid var(--color-surface-container);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

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

.review-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 24px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars-row {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #F59E0B;
  margin-bottom: 12px;
}

.review-quote {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-main);
  font-style: italic;
}

.reviewer-meta {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--color-surface-container);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reviewer-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--color-primary);
}

.reviewer-badge {
  font-size: 11px;
  color: var(--color-teal-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 3px;
}

/* --------------------------------------------------------------------------
   15. AREAS WE COVER
   -------------------------------------------------------------------------- */
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
}

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

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

.coverage-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 20px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.coverage-icon {
  background-color: var(--color-sky);
  color: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.coverage-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-primary);
}

.coverage-desc {
  font-size: 13px;
  color: var(--color-text-subtle);
  margin-top: 4px;
  line-height: 1.5;
}

.coverage-postcode {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: var(--color-teal-dark);
  margin-top: 8px;
}

/* --------------------------------------------------------------------------
   16. INSTRUCTOR AVAILABILITY BOOKING FORM
   -------------------------------------------------------------------------- */
.booking-section {
  background-color: var(--color-surface-low);
}

.booking-card {
  max-width: 840px;
  margin: 0 auto;
  background-color: #FFFFFF;
  border-radius: var(--radius-2xl);
  padding: 32px 24px;
  box-shadow: var(--shadow-level-2);
  border: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .booking-card {
    padding: 48px;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

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

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
}

.form-control {
  height: 48px;
  padding: 0 16px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--color-border);
  background-color: var(--color-surface);
  color: var(--color-text-main);
  font-size: 14px;
  transition: all var(--transition-standard);
  outline: none;
  width: 100%;
}

.form-control:focus {
  border-color: var(--color-primary);
  background-color: #FFFFFF;
  box-shadow: var(--shadow-glow-navy);
}

.form-control.is-invalid {
  border-color: #DC2626;
  background-color: #FEF2F2;
}

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

.form-feedback-banner {
  display: none;
  padding: 16px;
  border-radius: var(--radius-lg);
  background-color: var(--color-teal-subtle);
  border: 1px solid var(--color-teal);
  color: var(--color-teal-dark);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  margin-top: 16px;
}

.form-feedback-banner.show {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.whatsapp-bypass-wrap {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-text-subtle);
  text-align: center;
}

.whatsapp-bypass-link {
  font-weight: 800;
  color: var(--color-teal-dark);
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.whatsapp-bypass-link:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   17. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background-color: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition-standard);
}

.faq-item[open] {
  box-shadow: var(--shadow-level-1);
}

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 800;
  color: var(--color-primary);
  cursor: pointer;
  user-select: none;
  list-style: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  color: var(--color-primary);
  transition: transform 0.25s ease;
  font-size: 22px;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 24px 20px 24px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-surface-container);
  padding-top: 14px;
}

.faq-snippet-box {
  background-color: var(--color-sky);
  border-left: 4px solid var(--color-coral);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--color-primary);
}

.faq-snippet-box strong {
  color: var(--color-coral-dark);
  font-weight: 800;
  margin-right: 4px;
}

/* --------------------------------------------------------------------------
   18. FULL-WIDTH CALLOUT BANNER
   -------------------------------------------------------------------------- */
.callout-section {
  background-color: var(--color-primary);
  color: #FFFFFF;
  text-align: center;
  padding: 72px 0;
}

.callout-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.callout-key-icon {
  font-size: 48px;
  color: var(--color-teal);
  margin-bottom: 12px;
}

.callout-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  color: #FFFFFF;
}

@media (min-width: 768px) {
  .callout-title {
    font-size: 44px;
  }
}

.callout-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 14px;
  line-height: 1.6;
}

.callout-ctas {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
  width: 100%;
}

@media (min-width: 640px) {
  .callout-ctas {
    flex-direction: row;
    width: auto;
  }
}

/* --------------------------------------------------------------------------
   19. RICH FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-surface-low);
  border-top: 1px solid var(--color-surface-container);
  padding: 64px 0 32px 0;
}

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

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
  }
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 360px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.footer-heading {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.footer-links a:hover {
  color: var(--color-secondary);
}

.footer-hours-list {
  font-size: 13px;
  color: var(--color-text-muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contact-desk {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
  font-size: 13px;
  color: var(--color-text-muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-address-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.footer-address-link:hover {
  color: var(--color-secondary);
}

.footer-map-link {
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.footer-map-link:hover {
  opacity: 0.85;
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: var(--color-text-subtle);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

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

.footer-legal-links a:hover,
.footer-legal-links button:hover {
  text-decoration: underline;
  color: var(--color-primary);
}

.cookie-settings-btn {
  font-size: 12px;
  color: var(--color-text-subtle);
  text-decoration: underline;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   20. MOBILE STICKY ACTION BAR (< 768px)
   -------------------------------------------------------------------------- */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-border);
  box-shadow: var(--shadow-sticky);
  z-index: 40;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  gap: 10px;
  transition: transform 0.3s ease;
}

@media (max-width: 767px) {
  .mobile-action-bar {
    display: flex;
  }
  
  /* Give bottom padding to footer so it is not obscured by fixed action bar */
  .site-footer {
    padding-bottom: 84px;
  }
}

.mobile-action-bar.hidden-bar {
  transform: translateY(100%);
}

.mobile-bar-btn {
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  font-weight: 800;
  font-size: 13px;
  transition: transform var(--transition-standard);
}

.mobile-bar-btn:active {
  transform: scale(0.96);
}

.mobile-bar-call {
  width: 44px;
  background-color: var(--color-surface-container);
  color: var(--color-secondary);
  flex-shrink: 0;
}

.mobile-bar-book {
  flex: 1;
  background-color: var(--color-secondary);
  color: #FFFFFF;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(255, 107, 95, 0.3);
}

.mobile-bar-wa {
  width: 44px;
  background-color: var(--color-teal);
  color: #FFFFFF;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   21. UK GDPR COOKIE BANNER & PREFERENCES MODAL
   -------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 540px;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--color-surface-container);
  box-shadow: var(--shadow-level-3);
  padding: 24px;
  z-index: 999;
  display: none;
  flex-direction: column;
  gap: 16px;
  animation: slideUpBanner 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media (max-width: 767px) {
  .cookie-banner {
    bottom: 74px;
    left: 12px;
    right: 12px;
    padding: 20px;
  }
}

.cookie-banner.show {
  display: flex;
}

@keyframes slideUpBanner {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-banner-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-icon {
  font-size: 24px;
  color: var(--color-primary);
}

.cookie-banner-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-primary);
}

.cookie-banner-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.cookie-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 480px) {
  .cookie-banner-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .cookie-banner-actions .btn {
    flex: 1;
  }
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(6, 35, 86, 0.5);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal-overlay.open {
  display: flex;
}

.cookie-modal {
  background-color: #FFFFFF;
  border-radius: var(--radius-2xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  box-shadow: var(--shadow-level-3);
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modalScale 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalScale {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.cookie-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-modal-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary);
}

.cookie-category {
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background-color: var(--color-surface);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-cat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-cat-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
}

.cookie-cat-status {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-teal-dark);
}

.cookie-cat-desc {
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text-muted);
}

/* Custom Toggle Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #CBD5E1;
  transition: 0.25s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.25s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--color-teal);
}

input:checked + .slider:before {
  transform: translateX(20px);
}

input:disabled + .slider {
  opacity: 0.6;
  cursor: not-allowed;
}

/* --------------------------------------------------------------------------
   22. ACCESSIBILITY & MOTION PREFERENCES
   -------------------------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --------------------------------------------------------------------------
   23. AUTOMATIC LESSONS SPOTLIGHT SECTION
   -------------------------------------------------------------------------- */
.auto-spotlight-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 50%, #FFFFFF 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.auto-spotlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
  margin-top: 36px;
}

@media (min-width: 992px) {
  .auto-spotlight-grid {
    grid-template-columns: 5fr 7fr;
  }
}

.auto-instructor-card {
  background: #FFFFFF;
  border-radius: var(--radius-2xl);
  border: 1.5px solid var(--color-border);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-level-1);
  position: relative;
  overflow: hidden;
}

.auto-instructor-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255, 107, 95, 0.1) 0%, rgba(255, 107, 95, 0) 70%);
  border-radius: 0 0 0 100%;
  pointer-events: none;
}

.auto-badge-avatar {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--color-primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 22px;
  border: 2px solid var(--color-secondary);
  box-shadow: 0 4px 12px rgba(11, 61, 145, 0.15);
}

.auto-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

.auto-benefit-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: var(--shadow-level-1);
  transition: all var(--transition-standard);
}

.auto-benefit-card:hover {
  border-color: var(--color-secondary);
  transform: translateY(-2px);
}

.auto-benefit-card.span-full {
  grid-column: 1 / -1;
}

.auto-icon-bubble {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.auto-icon-bubble.coral {
  background: var(--color-secondary-subtle);
  color: var(--color-secondary);
}

.auto-icon-bubble.teal {
  background: var(--color-teal-subtle);
  color: var(--color-teal);
}

.auto-icon-bubble.sky {
  background: var(--color-primary-subtle);
  color: var(--color-primary);
}

.auto-icon-bubble.emerald {
  background: #ECFDF5;
  color: #059669;
}

.auto-availability-banner {
  margin-top: 20px;
  padding: 20px 24px;
  background: var(--color-primary);
  border-radius: var(--radius-xl);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-level-2);
}

@media (min-width: 640px) {
  .auto-availability-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}


/* ==========================================================================
   SVG ICON & CONTAINER UTILITIES
   ========================================================================== */
svg {
  box-sizing: border-box;
}
svg.w-3, .w-3 { width: 0.75rem !important; height: 0.75rem !important; }
svg.w-3\.5, .w-3\.5 { width: 0.875rem !important; height: 0.875rem !important; }
svg.w-4, .w-4 { width: 1rem !important; height: 1rem !important; }
svg.w-5, .w-5 { width: 1.25rem !important; height: 1.25rem !important; }
svg.w-6, .w-6 { width: 1.5rem !important; height: 1.5rem !important; }
svg.w-10, .w-10 { width: 2.5rem !important; height: 2.5rem !important; }
svg.w-16, .w-16 { width: 4rem !important; height: 4rem !important; }

/* ==========================================================================
   21. SECTIONS & UTILITY SYSTEM (VANILLA CSS ARCHITECTURE)
   ========================================================================== */

/* Hero Section Optimized */
.hero-section-optimized {
  padding-top: 48px;
  padding-bottom: 64px;
  background: linear-gradient(180deg, rgba(238, 244, 255, 0.8) 0%, #F8F9FF 50%, #FFFFFF 100%);
  border-bottom: 1px solid var(--color-border);
}
@media (min-width: 768px) {
  .hero-section-optimized {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1024px) {
  .hero-section-optimized {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}

.hero-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-teal);
  position: relative;
  display: inline-block;
}

/* Common Layout Utilities */
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-7xl { max-width: 80rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-balance { text-wrap: balance; }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-stretch { align-items: stretch; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.shrink-0 { flex-shrink: 0; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.gap-1 { gap: 0.25rem; }
.gap-1\.5, .gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-2\.5, .gap-2\.5 { gap: 0.625rem; }
.gap-3 { gap: 0.75rem; }
.gap-3\.5, .gap-3\.5 { gap: 0.875rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }

@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:col-span-2 { grid-column: span 2 / span 2; }
  .sm\:w-auto { width: auto; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:p-6 { padding: 1.5rem; }
  .sm\:p-7 { padding: 1.75rem; }
  .sm\:p-8 { padding: 2rem; }
  .sm\:inline { display: inline; }
  .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .sm\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
}

@media (min-width: 768px) {
  .md\:flex-row { flex-direction: row; }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:mb-16 { margin-bottom: 4rem; }
  .md\:text-left { text-align: left; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1.15; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .lg\:col-span-5 { grid-column: span 5 / span 12; }
  .lg\:col-span-7 { grid-column: span 7 / span 12; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1.15; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1.1; }
}

/* Spacings */
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.px-3\.5, .px-3\.5 { padding-left: 0.875rem; padding-right: 0.875rem; }
.py-1\.5, .py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-2\.5, .py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5, .py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.p-3\.5, .p-3\.5 { padding: 0.875rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mt-0\.5, .mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pb-8 { padding-bottom: 2rem; }

/* Radii & Borders */
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-bl-full { border-bottom-left-radius: 9999px; }

.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-border { border-color: var(--color-border); }
.border-border\/80 { border-color: rgba(226, 232, 240, 0.8); }
.border-slate-100 { border-color: #F1F5F9; }
.border-slate-200 { border-color: #E2E8F0; }
.border-slate-200\/60 { border-color: rgba(226, 232, 240, 0.6); }
.border-slate-200\/80 { border-color: rgba(226, 232, 240, 0.8); }
.border-slate-700 { border-color: #334155; }
.border-slate-700\/90 { border-color: rgba(51, 65, 85, 0.9); }
.border-blue-200 { border-color: #BFDBFE; }
.border-blue-500\/30 { border-color: rgba(59, 130, 246, 0.3); }
.border-teal-200 { border-color: #99F6E4; }
.border-teal-400 { border-color: #2DD4BF; }
.border-teal-400\/50 { border-color: rgba(45, 212, 191, 0.5); }
.border-teal-500\/40 { border-color: rgba(45, 212, 191, 0.4); }
.border-teal\/30 { border-color: rgba(10, 120, 110, 0.3); }
.border-amber-500\/30 { border-color: rgba(245, 158, 11, 0.3); }
.border-rose-200 { border-color: #FECDD3; }
.border-rose-500\/30 { border-color: rgba(244, 63, 94, 0.3); }

/* Background Colors */
.bg-white { background-color: #FFFFFF; }
.bg-white\/90 { background-color: rgba(255, 255, 255, 0.9); }
.bg-slate-50 { background-color: #F8FAFC; }
.bg-slate-100 { background-color: #F1F5F9; }
.bg-slate-800 { background-color: #1E293B; }
.bg-slate-800\/60 { background-color: rgba(30, 41, 59, 0.6); }
.bg-slate-800\/80 { background-color: rgba(30, 41, 59, 0.8); }
.bg-slate-800\/90 { background-color: rgba(30, 41, 59, 0.9); }
.bg-slate-900 { background-color: #0B1528; }
.bg-blue-50 { background-color: #EFF6FF; }
.bg-blue-600 { background-color: #2563EB; }
.bg-blue-700 { background-color: #1D4ED8; }
.bg-blue-900 { background-color: #0B3D91; }
.bg-blue-900\/60 { background-color: rgba(11, 61, 145, 0.6); }
.bg-teal-50 { background-color: #F0FDFA; }
.bg-teal-900\/60 { background-color: rgba(19, 78, 74, 0.6); }
.bg-teal-950\/80 { background-color: rgba(4, 47, 46, 0.8); }
.bg-amber-50 { background-color: #FFFBEB; }
.bg-amber-900\/60 { background-color: rgba(120, 53, 15, 0.6); }
.bg-indigo-50 { background-color: #EEF2FF; }
.bg-emerald-50 { background-color: #ECFDF5; }
.bg-emerald-600 { background-color: #059669; }
.bg-rose-50 { background-color: #FFF1F2; }
.bg-rose-500 { background-color: #F43F5E; }
.bg-rose-950\/40 { background-color: rgba(76, 5, 25, 0.4); }

/* Text Colors */
.text-white { color: #FFFFFF; }
.text-slate-200 { color: #E2E8F0; }
.text-slate-300 { color: #CBD5E1; }
.text-slate-400 { color: #94A3B8; }
.text-slate-500 { color: #64748B; }
.text-slate-600 { color: #475569; }
.text-slate-700 { color: #334155; }
.text-slate-900 { color: #0F172A; }
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-teal { color: var(--color-teal); }
.text-teal-dark { color: var(--color-teal-dark); }
.text-teal-300 { color: #5EEAD4; }
.text-teal-400 { color: #2DD4BF; }
.text-teal-500 { color: #14B8A6; }
.text-teal-600 { color: #0D9488; }
.text-blue-300 { color: #93C5FD; }
.text-blue-600 { color: #2563EB; }
.text-blue-700 { color: #1D4ED8; }
.text-blue-800 { color: #1E40AF; }
.text-amber-300 { color: #FCD34D; }
.text-amber-600 { color: #D97706; }
.text-indigo-600 { color: #4F46E5; }
.text-emerald-600 { color: #059669; }
.text-rose-200 { color: #FECDD3; }
.text-rose-400 { color: #FB7185; }
.text-rose-500 { color: #F43F5E; }
.text-rose-600 { color: #E11D48; }

/* Font Sizes & Weights */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-\[11px\], .text-\[11px\] { font-size: 11px; line-height: 14px; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-tight { letter-spacing: -0.025em; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.uppercase { text-transform: uppercase; }

/* Effects */
.shadow-xs { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.03); }
.shadow-sm { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.08); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 8px 10px -6px rgba(0, 0, 0, 0.15); }
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.w-full { width: 100%; }
.z-10 { z-index: 10; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.w-32 { width: 8rem; }
.h-32 { height: 8rem; }
.object-cover { object-fit: cover; }

/* Hover & Interactive Utilities */
.transition-all { transition: all 0.24s cubic-bezier(0.16, 1, 0.3, 1); }
.transition-colors { transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease; }
.active\:scale-95:active { transform: scale(0.95); }
.hover\:bg-blue-700:hover { background-color: #1D4ED8; }
.hover\:bg-blue-800:hover { background-color: #1E40AF; }
.hover\:bg-emerald-700:hover { background-color: #047857; }
.hover\:bg-rose-600:hover { background-color: #E11D48; }
.hover\:border-teal-400\/50:hover { border-color: rgba(45, 212, 191, 0.5); }
.hover\:border-blue-300:hover { border-color: #93C5FD; }
.group:hover .group-hover\:text-teal-300 { color: #5EEAD4; }

.space-y-2\.5 > * + * { margin-top: 0.625rem; }

/* Gradients & Surface Blends */
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops, transparent, transparent)); }
.from-surface-low\/80 { --tw-gradient-from: rgba(238, 244, 255, 0.8); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 244, 255, 0)); }
.via-surface { --tw-gradient-stops: var(--tw-gradient-from, transparent), var(--color-surface), var(--tw-gradient-to, transparent); }
.to-white { --tw-gradient-to: #FFFFFF; }
.from-white { --tw-gradient-from: #FFFFFF; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.via-slate-50 { --tw-gradient-stops: var(--tw-gradient-from, transparent), #F8FAFC, var(--tw-gradient-to, transparent); }

/* SVG Icons & Sizing Utilities */
svg.w-3\.5, .w-3\.5 { width: 0.875rem; }
svg.h-3\.5, .h-3\.5 { height: 0.875rem; }
svg.w-4, .w-4 { width: 1rem; }
svg.h-4, .h-4 { height: 1rem; }
svg.w-5, .w-5 { width: 1.25rem; }
svg.h-5, .h-5 { height: 1.25rem; }
svg.w-10, .w-10 { width: 2.5rem; }
svg.h-10, .h-10 { height: 2.5rem; }
.w-2 { width: 0.5rem; }
.h-2 { height: 0.5rem; }
.w-96 { width: 24rem; }
.h-96 { height: 24rem; }
.fill-current { fill: currentColor; }

/* Positioning, Blur & Effects */
.-top-40 { top: -10rem; }
.-right-40 { right: -10rem; }
.-bottom-40 { bottom: -10rem; }
.-left-40 { left: -10rem; }
.-z-0 { z-index: 0; }
.blur-3xl { filter: blur(64px); -webkit-filter: blur(64px); }
.pointer-events-none { pointer-events: none; }
.bg-teal-500\/10 { background-color: rgba(20, 184, 166, 0.1); }
.bg-rose-500\/10 { background-color: rgba(244, 63, 94, 0.1); }

/* Typography & Spacings */
.leading-\[1\.15\] { line-height: 1.15; }
.text-balance { text-wrap: balance; }
.items-baseline { align-items: baseline; }
.mt-9 { margin-top: 2.25rem; }
.pt-4 { padding-top: 1rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.text-teal-800 { color: #115E59; }
.border-teal-500\/30 { border-color: rgba(20, 184, 166, 0.3); }
.text-\[\#11233B\], .text-\#11233B { color: #11233B; }
.footer-header-block { margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid var(--color-border); }
.faq-question-title { font-weight: 700; font-size: 1rem; color: #0F172A; }
.faq-answer-text { font-size: 0.875rem; line-height: 1.625; color: #475569; margin: 0; }
.js-open-cookie-prefs { cursor: pointer; }
.hover\:bg-sky:hover { background-color: var(--color-sky); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }

@media (min-width: 640px) {
  .sm\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
}

@media (min-width: 768px) {
  .md\:gap-8 { gap: 2rem; }
}

/* ==========================================================================
   LEGAL MODAL ARCHITECTURE (UK GDPR, TERMS & CONDUCT)
   ========================================================================== */
.legal-modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(6, 35, 86, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.legal-modal-overlay.open {
  display: flex;
}

.legal-modal {
  background-color: #FFFFFF;
  border-radius: var(--radius-2xl);
  max-width: 780px;
  width: 100%;
  max-height: 88vh;
  overflow: hidden;
  box-shadow: var(--shadow-level-3);
  display: flex;
  flex-direction: column;
  animation: modalFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.legal-modal-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-surface);
}

.legal-modal-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.legal-modal-close:hover {
  background-color: rgba(0, 0, 0, 0.06);
  color: var(--color-primary);
}

.legal-modal-tabs {
  display: flex;
  border-bottom: 1px solid var(--color-border);
  background: #FAFCFF;
  padding: 0 16px;
  overflow-x: auto;
  gap: 4px;
}

.legal-tab-btn {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

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

.legal-tab-btn.active {
  color: var(--color-secondary);
  border-bottom-color: var(--color-secondary);
}

.legal-modal-body {
  padding: 24px;
  overflow-y: auto;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--color-text-main);
}

.legal-tab-content {
  display: none;
}

.legal-tab-content.active {
  display: block;
}

.legal-section-block {
  margin-bottom: 20px;
}

.legal-section-block h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.legal-section-block p, .legal-section-block ul {
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.legal-section-block ul {
  padding-left: 20px;
  list-style-type: disc;
}

.legal-section-block li {
  margin-bottom: 4px;
}

/* ==========================================================================
   ENHANCED BOOKING & DUAL-TRACK CONVERSION UX
   ========================================================================== */
.booking-instructor-preview {
  background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 100%);
  border: 1px solid #A7F3D0;
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  margin-top: -6px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: all var(--transition-standard);
}

.booking-instructor-preview.manual {
  background: linear-gradient(135deg, #EFF6FF 0%, #F0F9FF 100%);
  border-color: #BFDBFE;
}

.booking-instructor-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking-instructor-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.booking-instructor-info h4 {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.booking-instructor-info p {
  font-size: 11.5px;
  color: var(--color-text-muted);
  margin: 2px 0 0;
}

.booking-rate-badge {
  text-align: right;
}

.booking-rate-val {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.booking-rate-sub {
  font-size: 10px;
  color: var(--color-text-subtle);
  margin-top: 2px;
}

.booking-dual-ctas {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}

@media (min-width: 640px) {
  .booking-dual-ctas {
    grid-template-columns: 1fr 1fr;
  }
}

.btn-whatsapp-action {
  background: #128C7E;
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(18, 140, 126, 0.25);
}

.btn-whatsapp-action:hover {
  background: #075E54;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(18, 140, 126, 0.35);
}

.booking-direct-call-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--color-text-muted);
  flex-wrap: wrap;
}

.booking-direct-call-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.booking-direct-call-link:hover {
  color: var(--color-secondary);
}

.booking-privacy-notice {
  margin-top: 10px;
  text-align: center;
  font-size: 11px;
  color: var(--color-text-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.booking-privacy-notice a {
  color: var(--color-secondary);
  text-decoration: underline;
  cursor: pointer;
}

