/* ============================================================
   THE GOLDEN LOTUS — Global Styles
   Converted from Tailwind CSS v4 + shadcn/ui design tokens
   ============================================================ */

/* ─── CSS Custom Properties (Design Tokens) ─── */
:root {
  /* Border Radius */
  --radius: 0.25rem;

  /* ── Unified Premium Dark Theme — The Golden Lotus ── */
  --background: #0d0413;       /* Midnight purple — site-wide default */
  --background-alt: #1A1120;   /* Elevated surface for cards & alternating sections */
  --background-alt2: #220f2d;  /* Slightly lighter surface for section alternation */
  --foreground: #F8FAFC;       /* Near-white — primary readable text */
  --card: #1A1120;             /* Card background */
  --card-foreground: #F8FAFC;
  --popover: #1A1120;
  --popover-foreground: #F8FAFC;
  --primary: #D4A853;
  --primary-foreground: #0F0814;
  --secondary: #D4A853;        /* Unified to gold — removes blue inconsistency */
  --secondary-foreground: #0F0814;
  --muted: #220f2d;
  --muted-foreground: #94A3B8;
  --accent: #220f2d;
  --accent-foreground: #F8FAFC;
  --destructive: #ef4444;
  --destructive-foreground: #FFFFFF;
  --border: rgba(212, 168, 83, 0.20); /* Gold border — consistent across all pages */
  --input: rgba(255, 255, 255, 0.08);
  --ring: #D4A853;
  --gold: #D4A853;             /* Authentic Radiant Gold (WCAG AAA on dark bg) */
  --gold-muted: rgba(212, 168, 83, 0.18);
  --gold-light: #F5E8C7;
  --gold-dark: #B8860B;        /* Deeper gold for gradients */

  --btn-gradient: linear-gradient(135deg, #D4A853 0%, #B8860B 100%);

  --color-surface-elevated: #1A1120;
  --text-muted: #94A3B8;       /* Cool silver — metadata, captions */
  --text-secondary: #CBD5E1;   /* Mid-tone — subtitles, descriptions */

  /* Font families */
  --font-display: "Cinzel", serif;
  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "Inter", sans-serif;

  /* Layout */
  --max-width: 80rem;
}


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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

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

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

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

ul, ol {
  list-style: none;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}


/* ─── Typography ─── */
.font-display {
  font-family: var(--font-display);
}

.font-serif-display {
  font-family: var(--font-serif);
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.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;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}


/* ─── Animations ─── */

/* Ping animation (WhatsApp floating button) */
@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

.animate-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* FAQ "+" icon rotation */
details[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-icon {
  transition: transform 0.2s ease;
}

/* Image crossfade */
.slide-image {
  transition: opacity 1s ease;
}

.slide-image.active {
  opacity: 1;
}

.slide-image.inactive {
  opacity: 0;
}

/* Hero slides get reduced opacity when active */
.hero-slide.active {
  opacity: 0.4;
}

.hero-slide.inactive {
  opacity: 0;
}


/* ─── Transitions ─── */
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color;
  transition-timing-function: ease;
  transition-duration: 200ms;
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: ease;
  transition-duration: 200ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: ease;
  transition-duration: 200ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: ease;
  transition-duration: 200ms;
}


/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  z-index: 50;
  width: 100%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(26, 17, 32, 0.95);
  border-bottom: 1px solid var(--gold);
}

.announcement-bar {
  background-color: var(--gold);
  color: var(--primary-foreground);
  text-align: center;
  padding: 0.5rem 0.75rem;
  font-size: clamp(0.72rem, 2.5vw, 0.875rem);
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
  box-sizing: border-box;
  width: 100%;
}

.announcement-bar a {
  color: var(--primary-foreground);
  text-decoration: underline;
  font-weight: 700;
}

.announcement-bar p {
  margin: 0;
  max-width: 100%;
}

.header-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.header-logo-img {
  height: 38px;
  width: auto;
  max-width: 210px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

/* Mobile Menu Button (Hamburger) */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  background: transparent;
  border: 1px solid rgba(212, 168, 83, 0.4);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  z-index: 60;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover,
.mobile-menu-btn:focus {
  border-color: var(--gold);
  background: rgba(212, 168, 83, 0.15);
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: var(--gold);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: var(--gold);
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 360px;
  background-color: #12071a;
  border-left: 1px solid rgba(212, 168, 83, 0.3);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
  z-index: 55;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  padding: 5rem 1.25rem 2.5rem;
  box-sizing: border-box;
}

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

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 54;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.25rem 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.65rem 0;
  transition: color 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--gold);
}

.mobile-accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.65rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.mobile-accordion-icon {
  transition: transform 0.3s ease;
}

.mobile-nav-item.expanded .mobile-accordion-icon {
  transform: rotate(180deg);
  color: var(--gold);
}

.mobile-submenu {
  display: none;
  flex-direction: column;
  padding-left: 1rem;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.mobile-nav-item.expanded .mobile-submenu {
  display: flex;
}

.mobile-submenu a {
  color: #CBD5E1;
  font-size: 0.875rem;
  padding: 0.35rem 0;
  transition: color 0.2s;
}

.mobile-submenu a:hover {
  color: var(--gold);
}

.mobile-drawer-ctas {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 1.25rem;
}

.header-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  color: #FFFFFF;
  transition: color 0.3s ease;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

/* Dropdown CSS */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown .dropbtn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #1A1120;
  min-width: 220px;
  box-shadow: 0px 8px 24px rgba(0,0,0,0.6);
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: 8px;
  z-index: 100;
  padding: 0.5rem 0;
  top: 100%;
  left: 0;
}

.dropdown-content a {
  color: #E2E8F0;
  padding: 0.75rem 1rem;
  text-decoration: none;
  display: block;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.85rem;
  transition: background-color 0.2s, color 0.2s;
}

.dropdown-content a:hover {
  background-color: rgba(212, 168, 83, 0.15);
  color: var(--gold);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.header-ctas {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.btn-call-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1.5px solid var(--gold);
  color: var(--gold) !important;
  background: rgba(212, 168, 83, 0.08);
  font-family: var(--font-display);
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.625rem 1.25rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-call-outline:hover {
  background-color: var(--gold);
  color: #0F0814 !important;
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(212, 168, 83, 0.4);
  transform: translateY(-1px);
}

.btn-call-outline svg {
  stroke: currentColor;
}

.btn-whatsapp-filled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #16A34A 0%, #15803D 100%);
  color: #FFFFFF !important;
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.625rem 1.25rem;
  border-radius: 4px;
  border: none;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.35);
  transition: all 0.3s ease;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp-filled:hover {
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  color: #FFFFFF !important;
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.45);
  transform: translateY(-1px);
}

.btn-whatsapp-filled svg {
  stroke: #FFFFFF !important;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE HEADER & NAVIGATION (Mobile, Tablet, Desktop)
   ════════════════════════════════════════════════════════════ */

/* Tablet Portrait & Landscape (640px to 1199px)
   Specifically covers iPad Mini (768px), iPad (810px), iPad Air (820px), iPad Pro 11" (834px), iPad Pro 12.9" (1024px) */
@media (min-width: 640px) and (max-width: 1199px) {
  .header-inner {
    padding: 0.75rem 1.5rem;
  }
  
  .header-logo-img {
    height: 38px;
    max-width: 200px;
  }

  /* CRITICAL: Keep 9-item desktop nav hidden on tablets to eliminate layout overflow */
  .header-nav {
    display: none !important;
  }

  /* Display Call & WhatsApp CTAs alongside hamburger button on tablets */
  .header-ctas {
    display: flex !important;
    align-items: center;
    gap: 0.625rem;
    margin-left: auto;
    margin-right: 0.75rem;
  }

  .header-ctas .btn-call-outline {
    padding: 0.5rem 0.85rem;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }

  .header-ctas .btn-whatsapp-filled {
    padding: 0.5rem 0.85rem;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }

  /* Hamburger button remains active and accessible on all tablets */
  .mobile-menu-btn {
    display: flex !important;
    flex-shrink: 0;
  }
}

/* Compact Desktop (1200px to 1299px) */
@media (min-width: 1200px) and (max-width: 1299px) {
  .mobile-menu-btn {
    display: none !important;
  }

  .mobile-nav-drawer,
  .mobile-nav-backdrop {
    display: none !important;
  }

  .header-nav {
    display: flex !important;
    align-items: center;
    gap: 0.65rem;
  }

  .header-nav a {
    font-size: 0.76rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }

  .header-ctas {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
  }

  .header-ctas .btn-call-outline {
    padding: 0.5rem 0.85rem;
    font-size: 0.7rem;
  }

  .header-ctas .btn-whatsapp-filled {
    padding: 0.5rem 0.85rem;
    font-size: 0.7rem;
  }

  .header-inner {
    padding: 0.875rem 1.5rem;
    max-width: 82rem;
  }

  .header-logo-img {
    height: 40px;
    max-width: 220px;
  }
}

/* Full Desktop & Widescreen (min-width: 1300px) */
@media (min-width: 1300px) {
  .mobile-menu-btn {
    display: none !important;
  }

  .mobile-nav-drawer,
  .mobile-nav-backdrop {
    display: none !important;
  }

  .header-nav {
    display: flex !important;
    align-items: center;
    gap: 1.15rem;
  }

  .header-nav a {
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  .header-ctas {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
  }

  .header-inner {
    padding: 1.15rem 2.5rem;
    max-width: 88rem;
  }

  .header-logo-img {
    height: 48px;
    max-width: 270px;
  }
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(250, 248, 242, 0.6),
    rgba(250, 248, 242, 0.8),
    var(--background)
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
  box-sizing: border-box;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.eyebrow-line {
  height: 1px;
  width: 2rem;
  background-color: var(--gold);
}

.eyebrow-text {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: clamp(0.15em, 1.5vw, 0.35em);
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 5.5vw, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
  color: var(--foreground);
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  margin: 0 auto;
}

.text-gold-italic {
  color: var(--gold);
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 500;
}

.hero-subtitle {
  margin-top: 1.25rem;
  font-size: clamp(0.95rem, 3.2vw, 1.25rem);
  color: var(--foreground);
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-serif);
  line-height: 1.6;
  padding: 0 0.5rem;
}

.hero-tagline {
  margin-top: 1rem;
  font-family: var(--font-display);
  letter-spacing: clamp(0.15em, 2vw, 0.4em);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
}

.hero-buttons {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  width: 100%;
}

.btn-gold-filled {
  background: linear-gradient(135deg, #D4A853 0%, #B8860B 100%);
  color: #0F0814 !important;
  font-family: var(--font-display);
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.875rem 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(212, 168, 83, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-gold-filled:hover {
  background: linear-gradient(135deg, #E5BE6A 0%, #C5931D 100%);
  color: #0F0814 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 168, 83, 0.5);
}

.btn-gold-filled svg {
  stroke: #0F0814 !important;
}

.btn-gold-outline {
  background: rgba(212, 168, 83, 0.08);
  border: 1.5px solid var(--gold);
  color: var(--gold) !important;
  font-family: var(--font-display);
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.875rem 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: #0F0814 !important;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 168, 83, 0.4);
}

.btn-gold-outline svg {
  stroke: currentColor;
}

.hero-contact-buttons {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.btn-subtle-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-subtle-outline:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
  background: rgba(212, 168, 83, 0.12);
}

.btn-subtle-outline svg {
  stroke: currentColor;
}

.btn-gold-outline-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1.5px solid var(--gold);
  color: var(--gold) !important;
  background: rgba(212, 168, 83, 0.08);
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-gold-outline-sm:hover {
  background-color: var(--gold);
  color: #0F0814 !important;
  box-shadow: 0 4px 15px rgba(212, 168, 83, 0.35);
  transform: translateY(-1px);
}

.btn-gold-outline-sm svg {
  stroke: currentColor;
}


/* Hero buttons on light background — High Contrast & Legibility */
.hero-section .btn-gold-filled {
  background: var(--btn-gradient);
  color: #0F0814 !important;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(212, 168, 83, 0.4);
}

.hero-section .btn-gold-filled:hover {
  background: linear-gradient(135deg, #E0B865 0%, #C9971D 100%);
  color: #0F0814 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 168, 83, 0.5);
}

.hero-section .btn-gold-outline {
  border: 1.5px solid var(--gold-dark);
  color: var(--gold-dark) !important;
  background: rgba(212, 168, 83, 0.08);
  font-weight: 700;
}

.hero-section .btn-gold-outline:hover {
  background: var(--gold);
  color: #0F0814 !important;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 168, 83, 0.4);
}

.hero-section .btn-subtle-outline {
  border: 1.5px solid rgba(26, 17, 32, 0.28);
  color: #1A1120 !important;
  background: rgba(26, 17, 32, 0.04);
  font-weight: 700;
}

.hero-section .btn-subtle-outline:hover {
  border-color: var(--gold-dark);
  color: #0F0814 !important;
  background: rgba(212, 168, 83, 0.15);
}

.hero-section .btn-subtle-outline svg {
  stroke: #1A1120;
}

.hero-section .btn-gold-outline-sm {
  border: 1.5px solid #16A34A;
  color: #15803D !important;
  background: rgba(22, 163, 74, 0.08);
  font-weight: 700;
}

.hero-section .btn-gold-outline-sm:hover {
  background: linear-gradient(135deg, #16A34A 0%, #15803D 100%);
  color: #FFFFFF !important;
  border-color: #16A34A;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.35);
}

.hero-section .btn-gold-outline-sm svg {
  stroke: currentColor;
}

/* Slide indicators */
.slide-indicators {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.slide-dot {
  height: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slide-dot.active {
  width: 2.5rem;
  background-color: var(--gold);
}

.slide-dot.inactive {
  width: 1.5rem;
  background-color: var(--gold-muted);
}

.slide-dot.inactive:hover {
  background-color: var(--gold);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: clamp(2.25rem, 3.8vw + 0.5rem, 3.5rem);
    line-height: 1.18;
  }
  .hero-subtitle {
    font-size: clamp(1rem, 1.4vw + 0.3rem, 1.25rem);
  }
  .hero-tagline {
    font-size: 0.95rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: clamp(2.75rem, 4.2vw, 4rem);
  }
}


/* ============================================================
   SECTION HEADING (reusable)
   ============================================================ */
.section-heading {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-eyebrow .line {
  height: 1px;
  width: 2rem;
  background-color: var(--gold);
}

.footer-tagline {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}

.footer-socials {
  text-align: left;
}

@media (max-width: 1024px) {
  .footer-socials {
    text-align: center;
    margin-bottom: 2rem;
  }
}

.footer-socials h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #E2E8F0;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .social-links {
    justify-content: center;
  }
}

.social-links a {
  color: var(--gold);
  transition: all 0.3s ease;
  display: inline-flex;
  padding: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 168, 83, 0.3);
}

.social-links a:hover {
  color: #0F0814 !important;
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 168, 83, 0.4);
}

.section-eyebrow .text {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.15;
}

.section-subtitle {
  margin-top: 1.5rem;
  color: var(--text-secondary);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.65;
}

@media (min-width: 768px) {
  .section-title {
    font-size: clamp(2.25rem, 4vw, 3rem);
  }
}


/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: 7rem 1.5rem;
}

.about-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-border {
  position: absolute;
  inset: -1rem;
  border: 1px solid var(--gold-muted);
}

.about-image-container {
  position: relative;
  width: 100%;
  height: 540px;
  overflow: hidden;
}

.about-image-container img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-slide-indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.about-slide-dot {
  height: 0.375rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-slide-dot.active {
  width: 2rem;
  background-color: var(--gold);
}

.about-slide-dot.inactive {
  width: 1rem;
  background-color: var(--gold-muted);
}

.about-slide-dot.inactive:hover {
  background-color: var(--gold);
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 700;
  color: var(--foreground);
}

.about-text {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--text-secondary);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.65;
}

.about-text .highlight {
  color: var(--gold);
  font-weight: 600;
}

@media (min-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr 1fr;
  }
  .about-title {
    font-size: clamp(2rem, 3.8vw, 3rem);
  }
}


/* ============================================================
   WHY US SECTION
   ============================================================ */
.why-us-section {
  padding: 7rem 1.5rem;
  background-color: var(--background-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-us-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.why-us-grid {
  display: grid;
  gap: 2rem;
}

.why-us-card {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--background);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.why-us-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.why-us-icon-circle {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  margin: 0 auto 1.5rem;
  background: rgba(212, 168, 83, 0.08);
}

.why-us-icon-circle svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--gold);
}

.why-us-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--foreground);
}

.why-us-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  line-height: 1.65;
}

@media (min-width: 640px) {
  .why-us-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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


/* ============================================================
   COURSES SECTION
   ============================================================ */
.courses-section {
  padding: 7rem 1.5rem;
}

.courses-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.courses-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.course-card {
  position: relative;
  padding: 2rem;
  border: 1px solid var(--border);
  background-color: var(--background-alt);
  border-radius: 14px;
  width: 100%;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 168, 83, 0.12);
}

.course-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.course-tag svg {
  width: 1rem;
  height: 1rem;
}

.course-tag span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
}

.course-divider {
  height: 1px;
  width: 4rem;
  background-color: var(--gold);
  margin-bottom: 1.25rem;
}

.course-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--gold);
  transition: color 0.2s ease;
}

.course-card:hover h3 {
  color: var(--foreground);
}

.course-card .course-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  min-height: 5rem;
}

.course-pricing {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.course-pricing .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
}

.course-pricing .fee {
  font-family: var(--font-display);
  font-size: 1.875rem;
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}

.course-pricing .fee-usd {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.course-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.course-details-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  border: 1px solid var(--border);
  color: var(--gold);
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.625rem 1rem;
  transition: all 0.2s ease;
}

.course-details-link:hover {
  border-color: var(--gold);
  background-color: var(--border);
}

.course-cta {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--gold);
  color: var(--primary-foreground);
  font-family: var(--font-display);
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.75rem 1rem;
}

.course-cta:hover {
  opacity: 0.9;
}

@media (min-width: 768px) {
  .course-card {
    width: calc(50% - 12px);
  }
}

@media (min-width: 1024px) {
  .course-card {
    width: calc(33.333% - 16px);
  }
}


/* ============================================================
   SESSIONS SECTION
   ============================================================ */
.sessions-section {
  position: relative;
  padding: 7rem 1.5rem;
  overflow: hidden;
}

.sessions-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.sessions-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sessions-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--background),
    var(--background),
    var(--background)
  );
}

.sessions-inner {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
}

.sessions-grid {
  display: grid;
  gap: 1.5rem;
}

.session-card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  background-color: var(--background-alt);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.session-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.session-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
  font-weight: 600;
}

.session-card .session-desc {
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.session-pricing {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.session-pricing .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
}

.session-pricing .fee {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}

.session-pricing .fee-usd {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.session-ctas {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.session-cta-primary {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--gold);
  color: var(--primary-foreground);
  font-family: var(--font-display);
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.75rem 1rem;
}

.session-cta-primary:hover {
  opacity: 0.9;
}

.session-cta-secondary {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.75rem 1rem;
}

.session-cta-secondary:hover {
  background-color: var(--gold);
  color: var(--primary-foreground);
}

@media (min-width: 768px) {
  .sessions-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* ============================================================
   VISION & MISSION SECTION
   ============================================================ */
.vision-mission-section {
  padding: 7rem 1.5rem;
  background-color: var(--background-alt2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.vision-mission-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}

.vision-mission-card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--background-alt);
}

.vision-mission-card .vm-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.vision-mission-card h3 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--foreground);
}

.vision-mission-card p {
  margin-top: 1.5rem;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.7;
}

.mission-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mission-list li {
  display: flex;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 1.05rem;
}

.mission-list li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
  margin-top: 0.375rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .vision-mission-inner {
    grid-template-columns: 1fr 1fr;
  }
}


/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: 7rem 1.5rem;
}

.faq-inner {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-list {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary span.faq-question {
  font-family: var(--font-display);
  font-size: 1.1rem;
  padding-right: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
}

.faq-icon {
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.faq-item .faq-answer {
  margin-top: 1rem;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.7;
}


.media-grid {
  column-count: 3;
  column-gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 1024px) {
  .media-grid {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .media-grid {
    column-count: 1;
  }
}

.media-item {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--background-alt);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  margin-bottom: 1.5rem;
  break-inside: avoid;
  display: inline-block;
  width: 100%;
}

.media-item img,
.media-item video {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  padding: 8rem 1.5rem;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

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

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--background), rgba(13, 4, 19, 0.92));
}

.cta-content {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.cta-sparkle {
  width: 2rem;
  height: 2rem;
  color: var(--gold);
  margin: 0 auto 1.5rem;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 700;
  color: var(--foreground);
}

.cta-subtitle {
  margin-top: 2rem;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 1.1rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: rgba(26, 17, 32, 1);
  color: #FFFFFF;
  border-top: 1px solid var(--gold);
  padding: 3rem 1.5rem;
}

.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-logo-img {
  height: 4rem;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-tagline {
  font-size: 0.875rem;
  color: #E2E8F0;
  font-family: var(--font-serif);
  font-style: italic;
}

.footer-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-copyright {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #CBD5E1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-display);
  text-align: center;
}

.footer-nav-links a {
  color: #E2E8F0 !important;
  transition: color 0.2s ease;
  font-weight: 500;
}

.footer-nav-links a:hover {
  color: var(--gold) !important;
}

.footer-copyright a {
  color: var(--gold) !important;
  text-decoration: underline;
  font-weight: 600;
  opacity: 1 !important;
}

@media (min-width: 640px) {
  .footer-brand {
    flex-direction: row;
    text-align: left;
  }
  .footer-ctas {
    flex-direction: row;
  }
  .footer-logo-img {
    height: 5rem;
    max-width: 400px;
  }
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}


/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: #25D366;
  color: white;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  display: grid;
  place-items: center;
  transition: transform 0.2s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.05);
}

.floating-whatsapp .ping-ring {
  position: absolute;
  display: inline-flex;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25D366;
  opacity: 0.6;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.floating-whatsapp .wa-icon {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
}


/* ============================================================
   INLINE SVG ICON SIZING
   ============================================================ */
.icon-sm {
  width: 0.875rem;
  height: 0.875rem;
}

.icon-md {
  width: 1rem;
  height: 1rem;
}

.icon-lg {
  width: 1.75rem;
  height: 1.75rem;
}

.icon-xl {
  width: 2rem;
  height: 2rem;
}

svg {
  display: inline-block;
  vertical-align: middle;
}

/* ─── Contact Form ─── */
.contact-form-container {
  margin-top: 4rem;
  background: #1A1120;
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(212, 168, 83, 0.35);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.contact-form-container .form-title {
  font-family: var(--font-display);
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
.contact-form .form-row {
  display: flex;
  gap: 1rem;
}
.contact-form .form-group {
  margin-bottom: 1.5rem;
  flex: 1;
}
.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #E2E8F0;
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(15, 8, 20, 0.7);
  border: 1px solid rgba(212, 168, 83, 0.25);
  border-radius: 6px;
  color: #FFFFFF;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(226, 232, 240, 0.5);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212, 168, 83, 0.25);
}
.w-full {
  width: 100%;
}
.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 6px;
  text-align: center;
  font-weight: 500;
}
.form-message.hidden { display: none; }
.form-message.success { background: rgba(37, 211, 102, 0.1); color: #4ade80; border: 1px solid #25D366; }
.form-message.error { background: rgba(239, 68, 68, 0.1); color: #f87171; border: 1px solid #ef4444; }

@media (max-width: 600px) {
  .contact-form .form-row {
    flex-direction: column;
    gap: 0;
  }
}

/* ─── Detail Pages (Courses/Sessions/Products/Services) ─── */
.detail-hero {
  background: linear-gradient(to bottom, #180922, #0d0413);
  padding: 6.5rem 1rem 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
  .detail-hero {
    padding: 10rem 2rem 4rem;
  }
}
.detail-hero h1 {
  font-family: var(--font-display);
  color: var(--foreground);
  font-size: clamp(1.65rem, 5vw, 2.5rem);
  margin-bottom: 1rem;
  word-wrap: break-word;
}
.detail-hero p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
}
.detail-hero .tag {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(212, 168, 83, 0.12);
  color: var(--gold);
  border: 1px solid rgba(212, 168, 83, 0.35);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.detail-content {
  max-width: 56rem;
  margin: 0 auto;
  padding: 2.5rem 1rem;
  color: var(--foreground);
  line-height: 1.7;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .detail-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
    padding: 4rem 2rem;
  }
}
.detail-main { min-width: 0; }
.detail-section { margin-bottom: 3rem; }
.detail-section h2 {
  color: var(--foreground);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3.5vw, 1.65rem);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.detail-section p,
.content-section p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.detail-section ul { list-style: none; padding: 0; }
.detail-section ul li { position: relative; padding-left: 1.5rem; margin-bottom: 0.75rem; color: var(--text-secondary); }
.detail-section ul li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--gold); font-size: 1.1rem; font-weight: bold; }
.detail-section ul li strong { color: var(--foreground); }
.content-section { margin-bottom: 2rem; }
.content-section h2 {
  color: var(--foreground);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3.5vw, 1.65rem);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.content-section ul { list-style: none; padding: 0; }
.content-section ul li { position: relative; padding-left: 1.5rem; margin-bottom: 0.5rem; color: var(--text-secondary); }
.content-section ul li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--gold); font-weight: bold; }
.detail-sidebar { position: sticky; top: 6rem; }
.pricing-box,
.detail-pricing-box {
  border: 1px solid var(--gold);
  border-radius: 14px;
  padding: 2rem;
  background: var(--background-alt);
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
}
.pricing-box h3,
.detail-pricing-box h3 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  font-family: var(--font-display);
}
.pricing-box .price,
.price-flex { display: flex; justify-content: center; gap: 0.5rem; align-items: baseline; margin-bottom: 1.5rem; flex-wrap: wrap; }
.pricing-box .price { font-family: var(--font-display); font-size: 2rem; color: var(--gold); font-weight: 700; }
.pricing-box .usd { font-size: 0.9rem; color: var(--text-muted); }
.price-item { font-size: 1.5rem; font-weight: bold; color: var(--gold); font-family: var(--font-display); }
.detail-cta-row,
.sidebar-ctas { display: flex; flex-direction: column; justify-content: center; gap: 0.75rem; }


/* TESTIMONIALS SECTION */
.testimonials-section {
  padding: 5rem 1.5rem;
  background: var(--background-alt);
}
.testimonials-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--background);
  padding: 2.5rem;
  border-radius: 12px;
  border-top: 4px solid var(--gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  text-align: left;
  transition: transform 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
}
.testimonial-card p {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.testimonial-author {
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}
.testimonial-role {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

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


/* ─── Detail Page Testimonial & Master Styling ─── */
.detail-content .testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

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

.detail-content .testimonial-card {
  background: var(--background-alt);
  padding: 2rem;
  border-radius: 12px;
  border-top: 4px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.detail-content .testimonial-card p {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.detail-content .master-section {
  display: block;
  margin-top: 1rem;
}

.detail-content .master-content h3 {
  font-family: var(--font-display);
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

.detail-content .master-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ════════════════════════════════════════════════════════
   BLOG ARCHIVE & SINGLE POST STYLES
   ════════════════════════════════════════════════════════ */
.blog-hero {
  padding: 8rem 2rem 3rem;
  text-align: center;
  background: linear-gradient(to bottom, #180922, #100618);
  border-bottom: 1px solid rgba(212, 168, 83, 0.15);
  position: relative;
}

.blog-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.blog-hero .hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.blog-hero .hero-subtitle {
  max-width: 42rem;
  margin: 0 auto;
  color: #CBD5E1;
  font-size: 1.05rem;
  line-height: 1.7;
}

.blog-section {
  padding: 4rem 1.5rem 6rem;
  max-width: 76rem;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.blog-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 168, 83, 0.45);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 168, 83, 0.15);
}

.blog-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #1a0a27;
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-thumb img {
  transform: scale(1.05);
}

.blog-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(26, 10, 39, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 168, 83, 0.3);
  color: var(--gold);
  font-size: 0.725rem;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-weight: 600;
}

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #94A3B8;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.blog-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(212, 168, 83, 0.5);
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: #FFFFFF;
  transition: color 0.2s ease;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
}

.blog-card:hover .blog-card-title {
  color: var(--gold);
}

.blog-card-excerpt {
  color: #CBD5E1;
  font-size: 0.925rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
}

.blog-card-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #E2E8F0;
  font-size: 0.825rem;
}

.blog-card-author img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold);
}

.blog-read-more {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s ease;
}

.blog-read-more:hover {
  gap: 0.6rem;
  text-decoration: underline;
}

/* Single Post */
.single-post-main,
.blog-page-main,
.author-profile-page {
  /* Background handled globally by :root — no override needed */
}

.single-post-hero {
  padding: 8rem 1.5rem 3rem;
  background: linear-gradient(to bottom, #180922, #0d0413);
  border-bottom: 1px solid rgba(212, 168, 83, 0.15);
  text-align: center;
}

.single-post-inner {
  max-width: 52rem;
  margin: 0 auto;
}

.single-post-breadcrumbs {
  font-size: 0.825rem;
  color: #94A3B8;
  margin-bottom: 1rem;
}

.single-post-breadcrumbs a {
  color: #CBD5E1;
  text-decoration: none;
  transition: color 0.2s;
}

.single-post-breadcrumbs a:hover {
  color: var(--gold);
}

.single-post-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: #FFFFFF !important;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.single-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #CBD5E1;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.single-post-featured {
  max-width: 52rem;
  margin: -1.5rem auto 3rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(212, 168, 83, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.single-post-featured img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.single-post-content {
  max-width: 46rem;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
  color: #E2E8F0 !important;
  font-size: 1.125rem;
  line-height: 1.85;
}

.single-post-content h1,
.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
  font-family: var(--font-display);
}

.single-post-content h2 {
  color: #FFFFFF !important;
  font-size: 1.85rem;
  margin: 2.75rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212, 168, 83, 0.2);
}

.single-post-content h3 {
  color: #d4a853 !important;
  font-size: 1.4rem;
  margin: 2rem 0 0.75rem;
}

.single-post-content p {
  color: #E2E8F0 !important;
  margin-bottom: 1.5rem;
}

.single-post-content strong,
.single-post-content b {
  color: #FFFFFF !important;
  font-weight: 700;
}

.single-post-content ul,
.single-post-content ol {
  margin: 1rem 0 1.75rem 1.5rem;
  color: #E2E8F0 !important;
}

.single-post-content li {
  margin-bottom: 0.5rem;
  line-height: 1.75;
  color: #E2E8F0 !important;
}

.single-post-content blockquote {
  border-left: 3px solid #d4a853;
  background: rgba(212, 168, 83, 0.08);
  padding: 1.25rem 1.75rem;
  margin: 2rem 0;
  font-style: italic;
  color: #FFFFFF !important;
  border-radius: 0 8px 8px 0;
}

.single-post-content blockquote p {
  color: #FFFFFF !important;
}

.single-post-content a {
  color: #d4a853 !important;
  text-decoration: underline;
  font-weight: 500;
}

.single-post-content a:hover {
  color: #fce2a6 !important;
}

.post-author-box {
  max-width: 46rem;
  margin: 3.5rem auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(212, 168, 83, 0.25) !important;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .post-author-box {
    flex-direction: row;
    text-align: left;
    align-items: center;
  }
}

.post-author-box .author-avatar-link,
.post-author-box > a {
  display: block !important;
  flex: 0 0 85px !important;
  width: 85px !important;
  height: 85px !important;
  min-width: 85px !important;
  max-width: 85px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;
}

.post-author-box img {
  width: 85px !important;
  height: 85px !important;
  min-width: 85px !important;
  max-width: 85px !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 2px solid #d4a853 !important;
  display: block !important;
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
}

.post-author-box .author-bio-content,
.post-author-box > div {
  flex: 1 1 auto;
  min-width: 0;
}

.post-author-box h3,
.post-author-box h3 a {
  font-family: var(--font-display);
  color: #d4a853 !important;
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.post-author-box p {
  color: #CBD5E1 !important;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.post-inquiry-box {
  max-width: 46rem;
  margin: 3rem auto;
  padding: 2.5rem 2rem;
  background: radial-gradient(circle at center, rgba(212, 168, 83, 0.12) 0%, rgba(26, 10, 39, 0.8) 100%);
  border: 1px solid rgba(212, 168, 83, 0.35);
  border-radius: 14px;
  text-align: center;
}

.post-inquiry-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.post-inquiry-box p {
  color: #CBD5E1;
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.post-inquiry-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.post-pagination-nav {
  max-width: 46rem;
  margin: 2rem auto;
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.post-pagination-nav a {
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.post-pagination-nav a:hover {
  text-decoration: underline;
}

.pagination-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination-nav .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(212, 168, 83, 0.2);
  color: #E2E8F0;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.9rem;
  transition: all 0.2s;
}

.pagination-nav .page-numbers.current,
.pagination-nav .page-numbers:hover {
  background: var(--gold);
  color: #100618;
  border-color: var(--gold);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   AUTHOR PROFILE PAGE (Google E-E-A-T)
   ═══════════════════════════════════════════════════════════ */
.author-hero {
  padding: 8rem 1.5rem 4rem;
  background: linear-gradient(180deg, #180922 0%, #12061b 100%);
  border-bottom: 1px solid rgba(212, 168, 83, 0.2);
}

.author-hero-inner {
  max-width: 68rem;
  margin: 0 auto;
}

.author-profile-card {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 168, 83, 0.25);
  border-radius: 16px;
  padding: 2.5rem;
  margin-top: 1.5rem;
  backdrop-filter: blur(10px);
}

.author-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.author-avatar-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 0 25px rgba(212, 168, 83, 0.25);
}

.verified-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: #10B981;
  color: #FFFFFF;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #180922;
}

.author-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.author-name {
  font-family: 'Cinzel', serif;
  font-size: 2.25rem;
  color: #FFFFFF;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.author-legal-name {
  font-size: 1.25rem;
  color: #94A3B8;
  font-weight: 400;
  font-family: var(--font-sans);
}

.author-tagline {
  color: #CBD5E1;
  font-size: 1.05rem;
  margin: 0 0 1.25rem;
}

.author-credential-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.cred-pill {
  font-size: 0.8rem;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.3);
  color: var(--gold);
  font-weight: 500;
}

.author-contact-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-icon-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid rgba(212, 168, 83, 0.3);
  color: var(--gold);
  transition: all 0.2s;
}

.btn-icon-outline:hover {
  background: rgba(212, 168, 83, 0.15);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.author-bio-section {
  padding: 5rem 1.5rem;
  background: #0f0514;
}

.author-bio-container {
  max-width: 68rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
}

.bio-column h2 {
  font-family: 'Cinzel', serif;
  color: #FFFFFF;
  font-size: 1.85rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.bio-column h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--gold);
}

.bio-column p {
  color: #CBD5E1;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.bio-column .lead-text {
  font-size: 1.2rem;
  color: #F8FAFC;
  line-height: 1.7;
}

.philosophy-card {
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.25rem;
}

.philosophy-card h4 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}

.philosophy-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #94A3B8;
  line-height: 1.6;
}

.author-articles-section {
  padding: 4rem 1.5rem 6rem;
  background: #12061b;
}

.author-articles-inner {
  max-width: 72rem;
  margin: 0 auto;
}

@media (max-width: 850px) {
  .author-profile-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .author-credential-tags,
  .author-contact-actions {
    justify-content: center;
  }
  .author-bio-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}


