/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (Investments: Obsidian, Gold, Emerald)
   ========================================================================== */
:root {
  --font-heading: 'Outfit', 'Inter', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Colors */
  --bg-dark: #070b13;
  --bg-card: rgba(13, 20, 35, 0.65);
  --bg-card-hover: rgba(22, 33, 56, 0.85);
  --border-light: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(223, 180, 56, 0.15);

  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;

  /* Accents & Gradients */
  --accent-gold: #dfb438;
  --accent-gold-hover: #c49925;
  --accent-navy-blue: #0b1a30;
  
  --grad-primary: linear-gradient(135deg, #f6d365 0%, #dfb438 50%, #9e7518 100%);
  --grad-navy: linear-gradient(135deg, #0b1a30 0%, #060e1a 100%);
  --grad-dark: linear-gradient(180deg, #0d1527 0%, #060a12 100%);
  --grad-text: linear-gradient(135deg, #ffffff 0%, #f6d365 100%);
  
  /* Shadow & Blur */
  --blur-glass: blur(16px);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 10px 30px rgba(223, 180, 56, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

[hidden] {
  display: none !important;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

/* ==========================================================================
   BACKGROUND VISUAL EFFECTS
   ========================================================================== */
.bg-orbs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  mix-blend-mode: screen;
  animation: float 20s infinite alternate;
}

.orb-1 {
  top: -10%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: var(--accent-gold);
}

.orb-2 {
  bottom: -10%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: #0d2347;
  animation-delay: -5s;
}

.orb-3 {
  top: 40%;
  left: 50%;
  width: 30vw;
  height: 30vw;
  background: #0f172a;
  animation-delay: -10s;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(5%, 5%) scale(1.1); }
}

/* ==========================================================================
   LAYOUT & CONTAINER
   ========================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.glass {
  background: var(--bg-card);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-premium);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid var(--border-light);
  background: rgba(9, 10, 15, 0.85);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-accent {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: var(--accent-gold);
}

.logo-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-primary);
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

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

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 6px;
}

.burger-menu span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition);
}

.burger-menu.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: rgba(9, 10, 15, 0.95);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  padding: 24px;
  border-bottom: 1px solid var(--border-light);
  display: none;
  flex-direction: column;
  gap: 20px;
  z-index: 99;
}

.mobile-nav.active {
  display: flex;
}

.mobile-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
}

.mobile-link:hover {
  color: var(--accent-gold);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  gap: 8px;
}

.btn-block {
  width: 100%;
}

.btn-nav-cta {
  background: rgba(226, 185, 60, 0.1);
  color: var(--accent-gold);
  border: 1px solid rgba(226, 185, 60, 0.3);
  padding: 8px 20px;
  font-size: 13px;
}

.btn-nav-cta:hover {
  background: var(--grad-primary);
  color: #000;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.btn-gradient {
  background: var(--grad-primary);
  color: #0e0a01;
  box-shadow: var(--shadow-gold);
}

.btn-gradient:hover {
  background: linear-gradient(135deg, #ffd358 0%, #b88613 100%);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--text-secondary);
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg-dark);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  padding-top: 160px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-flex;
  padding: 6px 14px;
  background: rgba(226, 185, 60, 0.08);
  border: 1px solid rgba(226, 185, 60, 0.15);
  border-radius: 99px;
  color: var(--accent-gold);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 52px;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #fff;
}

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
}

/* Hero card visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.hero-expert-wrapper {
  position: relative;
  width: 260px;
  height: auto;
  z-index: 2;
}

.hero-expert-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 40px rgba(223, 180, 56, 0.1));
}

.hero-expert-glow {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(223, 180, 56, 0.2) 0%, rgba(223, 180, 56, 0) 70%);
  filter: blur(25px);
  z-index: -1;
  pointer-events: none;
}

.hero-card {
  width: 100%;
  max-width: 360px;
  border-radius: 24px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 3;
}

.card-glow {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--accent-gold);
  filter: blur(50px);
  opacity: 0.2;
  pointer-events: none;
}

.hero-stat-row {
  display: flex;
  gap: 32px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 28px;
  margin-bottom: 28px;
}

.hero-stat-box {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.stat-lbl {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 6px;
}

.hero-card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(223, 180, 56, 0.1);
  color: var(--accent-gold);
  font-size: 11px;
  font-weight: bold;
}

/* ==========================================================================
   PHILOSOPHY SECTION
   ========================================================================== */
.philosophy {
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-glow);
}

.philosophy-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.philosophy-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
  color: #f3f4f6;
  max-width: 800px;
  margin: 0 auto 16px;
}

.philosophy-author {
  display: block;
  font-size: 14px;
  color: var(--accent-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==========================================================================
   SECTIONS & GRIDS
   ========================================================================== */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 16px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 50px;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  border-radius: 20px;
  padding: 40px;
  position: relative;
  transition: var(--transition);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.benefit-num {
  position: absolute;
  top: 24px;
  right: 32px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-gold);
  opacity: 0.3;
}

.benefit-icon {
  font-size: 40px;
  margin-bottom: 24px;
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
  color: #fff;
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-secondary);
}

.card-hover-effect:hover {
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  border-color: var(--accent-gold);
}

/* ==========================================================================
   EXPERT SECTION
   ========================================================================== */
.expert-section {
  background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.03) 50%, transparent 100%);
}

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

.expert-photo-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.expert-photo-frame {
  width: 360px;
  height: 460px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.expert-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.expert-photo-frame:hover .expert-photo {
  transform: scale(1.05);
}

.photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(9, 10, 15, 0.8) 0%, transparent 40%);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: var(--bg-card);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid var(--accent-gold);
  border-radius: 20px;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-premium);
}

.badge-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
}

.badge-txt {
  font-size: 11px;
  color: var(--text-primary);
  margin-top: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.expert-info {
  display: flex;
  flex-direction: column;
}

.expert-name {
  font-size: 40px;
  margin-top: 8px;
  margin-bottom: 8px;
  color: #fff;
}

.expert-tagline {
  font-size: 16px;
  color: var(--accent-gold);
  margin-bottom: 32px;
  font-weight: 500;
}

.expert-achievements {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
}

.expert-achievements li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ach-icon {
  font-size: 24px;
  display: inline-flex;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 12px;
}

.ach-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 4px;
}

.ach-text strong {
  color: #fff;
}

/* ==========================================================================
   FORMATS SECTION
   ========================================================================== */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.format-card {
  border-radius: 20px;
  padding: 36px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.format-card:hover {
  border-color: rgba(223, 180, 56, 0.3);
  box-shadow: 0 15px 30px rgba(223, 180, 56, 0.05);
  transform: translateY(-2px);
}

.format-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.format-icon {
  font-size: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 12px;
}

.format-card h3 {
  font-size: 20px;
  color: #fff;
}

.format-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   BOTTOM CTA SECTION
   ========================================================================== */
.bottom-cta {
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  margin: 60px 0 100px;
  background: linear-gradient(135deg, rgba(223, 180, 56, 0.05) 0%, rgba(11, 26, 48, 0.3) 100%), var(--bg-card);
  border: 1px solid var(--border-glow);
}

.bottom-cta h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: #fff;
}

.bottom-cta p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 36px;
}

.bottom-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  border-top: 1px solid var(--border-light);
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
}

.link {
  color: var(--accent-gold);
  border-bottom: 1px solid transparent;
}

.link:hover {
  border-color: var(--accent-gold);
}

/* ==========================================================================
   MODAL WINDOW & FORM Capture
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background: rgba(6, 7, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  padding: 40px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.modal-close:hover {
  color: #fff;
  transform: rotate(90deg);
}

.modal-title {
  font-size: 24px;
  margin-bottom: 8px;
  color: #fff;
}

.modal-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

/* Forms */
.field-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.field-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.field-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #fff;
  transition: var(--transition);
}

.field-input::placeholder {
  color: var(--text-muted);
}

.field-input:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.06);
}

.field-input.error {
  border-color: #ef4444;
}

.field-error {
  font-size: 11px;
  color: #ef4444;
  margin-top: 4px;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 28px;
}

.consent-check {
  margin-top: 4px;
  accent-color: var(--accent-gold);
}

.consent-label {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Spinners & Loaders */
.btn-loader {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.spinner {
  width: 18px;
  height: 18px;
  animation: rotate 1s linear infinite;
}

@keyframes rotate {
  100% { transform: rotate(360deg); }
}

/* Success State */
.success-block {
  text-align: center;
  padding: 10px 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(223, 180, 56, 0.1);
  color: var(--accent-gold);
  font-size: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 1px solid rgba(223, 180, 56, 0.2);
}

.success-title {
  font-size: 20px;
  margin-bottom: 8px;
  color: #fff;
}

.success-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

/* Animations */
.animate-zoom-in {
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .animate-zoom-in {
  transform: scale(1);
}

/* ==========================================================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 130px;
    text-align: center;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    gap: 24px;
    padding-top: 20px;
  }

  .hero-expert-wrapper {
    width: 240px;
  }

  .expert-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .expert-photo-container {
    order: -1;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .btn-nav-cta {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .section-title {
    font-size: 28px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .formats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bottom-cta-btns {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  .bottom-cta-btns .btn {
    width: 100%;
    max-width: 320px;
  }

  .footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-expert-wrapper {
    width: 210px;
  }

  .hero-title {
    font-size: 36px;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .expert-photo-frame {
    width: 100%;
    height: 380px;
  }

  .modal-card {
    padding: 30px 20px;
  }
}

/* ==========================================================================
   SCHEDULE / MEETINGS SECTION
   ========================================================================== */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.meeting-card {
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.meeting-card:hover {
  border-color: var(--accent-gold);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.meeting-card.sold-out {
  opacity: 0.7;
}

.meeting-card.sold-out:hover {
  transform: none;
  border-color: var(--border-light);
}

.meeting-status {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.status-active {
  background: rgba(223, 180, 56, 0.1);
  border: 1px solid rgba(223, 180, 56, 0.3);
  color: var(--accent-gold);
}

.status-soldout {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.meeting-date {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 12px;
}

.meeting-title {
  font-size: 24px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.meeting-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}

.meeting-price {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-gold);
}

.meeting-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .schedule-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   GOLD INLINE SVG ICONS
   ========================================================================== */
.gold-icon {
  width: 1em;
  height: 1em;
  stroke: var(--accent-gold);
  fill: none;
  stroke-width: 2.2; /* Slightly thicker line for hand-drawn / custom vector feel */
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(223, 180, 56, 0.15));
}

/* Specific Sizes and Styling for Different Contexts */
.badge .gold-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  stroke-width: 2.2;
}

.btn-icon .gold-icon {
  width: 18px;
  height: 18px;
  stroke-dashoffset: 0;
  stroke-width: 2.4;
  color: inherit;
  stroke: currentColor;
}

.btn-gradient:hover .gold-icon {
  stroke: #0e0a01;
}

.philosophy-icon .gold-icon {
  width: 48px;
  height: 48px;
  stroke-width: 1.8;
}

.format-icon .gold-icon {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}

.benefit-icon .gold-icon {
  width: 48px;
  height: 48px;
  stroke-width: 1.8;
}

.ach-icon .gold-icon {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.item-icon .gold-icon {
  width: 12px;
  height: 12px;
  stroke-width: 3.5;
}

/* Interactive Hover Animations */
.format-card:hover .gold-icon,
.benefit-card:hover .gold-icon,
.expert-achievements li:hover .gold-icon,
.btn:hover .gold-icon {
  transform: scale(1.15) translateY(-2px);
  filter: drop-shadow(0 0 8px rgba(223, 180, 56, 0.6));
}

.meeting-card:hover .gold-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 6px rgba(223, 180, 56, 0.4));
}

/* ==========================================================================
   GALLERY SECTION (AESTHETIC SCROLLING SLIDER)
   ========================================================================== */
.gallery-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 20px 0 30px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-gold) rgba(255, 255, 255, 0.03);
}

.gallery-track::-webkit-scrollbar {
  height: 6px;
}

.gallery-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 99px;
}

.gallery-track::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 99px;
  border: 1px solid transparent;
}

.gallery-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
  background: var(--bg-card);
}

.gallery-img-wrapper {
  width: 100%;
  height: 240px;
  position: relative;
  overflow: hidden;
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

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

.gallery-card:hover {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.gallery-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 11, 19, 0.4);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-zoom-icon {
  font-size: 24px;
  color: var(--accent-gold);
  background: rgba(13, 20, 35, 0.85);
  border: 1px solid rgba(223, 180, 56, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-premium);
}

.gallery-card:hover .gallery-zoom-icon {
  transform: scale(1.1);
  background: var(--grad-primary);
  color: #0e0a01;
  border-color: transparent;
}

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(13, 20, 35, 0.8);
  border: 1px solid rgba(223, 180, 56, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
  color: var(--accent-gold);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
}

.gallery-nav-btn:hover {
  background: var(--grad-primary);
  color: #0e0a01;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.gallery-nav-btn .gold-icon {
  width: 20px;
  height: 20px;
}

.gallery-nav-btn:hover .gold-icon {
  stroke: #0e0a01;
}

.gallery-nav-btn.prev-btn {
  left: -15px;
}

.gallery-nav-btn.next-btn {
  right: -15px;
}

/* ==========================================================================
   LIGHTBOX OVERLAY FOR GALLERY
   ========================================================================== */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(7, 11, 19, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s ease;
}

.lightbox-overlay[hidden] {
  display: none !important;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  font-size: 32px;
  line-height: 1;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2010;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
  background: rgba(223, 180, 56, 0.1);
  transform: rotate(90deg);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13, 20, 35, 0.8);
  border: 1px solid rgba(223, 180, 56, 0.3);
  color: var(--accent-gold);
  font-size: 36px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2010;
  transition: var(--transition);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
}

.lightbox-arrow:hover {
  background: var(--grad-primary);
  color: #0e0a01;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.lightbox-prev {
  left: 32px;
}

.lightbox-next {
  right: 32px;
}

.lightbox-content {
  max-width: 85%;
  max-height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  animation: zoomIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-caption {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  max-width: 600px;
  background: rgba(13, 20, 35, 0.8);
  padding: 8px 20px;
  border-radius: 99px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-premium);
}

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

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

/* Responsive adjustments for gallery & lightbox */
@media (max-width: 768px) {
  .gallery-nav-btn {
    display: none;
  }
  .gallery-container {
    padding: 0;
  }
  .gallery-track {
    gap: 16px;
    padding-bottom: 20px;
  }
  .gallery-card {
    flex: 0 0 270px;
  }
  .gallery-img-wrapper {
    height: 200px;
  }
  .lightbox-arrow {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
  .lightbox-prev {
    left: 12px;
  }
  .lightbox-next {
    right: 12px;
  }
  .lightbox-content {
    max-width: 95%;
  }
  .lightbox-content img {
    max-height: 65vh;
  }
}


