/* Global variables — FIX base */
:root {
  --bg-primary:   #0A0E1A;
  --bg-surface:   #111827;
  --bg-elevated:  #1A2235;
  --bg-border:    #1E2D45;
  --text-primary: #F0EDE8;
  --text-muted:   #9A9690;
  --text-faint:   #5A5957;
  --gold:         #C9A84C;
  --gold-hover:   #E8C76A;
  --gold-dim:     rgba(201, 168, 76, 0.15);
  --radius:       10px;
  --transition:   all 0.2s ease;
}

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: inherit; }

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header / Navbar — FIX 4 */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bg-border);
}

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

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

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
}

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

.main-nav a {
  padding: 8px 12px;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 6px;
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active { color: var(--gold); }

.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  cursor: pointer;
}

.nav-dropdown-toggle:hover { color: var(--gold); }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius);
  min-width: 160px;
  padding: 8px 0;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}

.nav-dropdown-menu a:hover { color: var(--gold); background: var(--gold-dim); }

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

.btn-book-nav {
  background: var(--gold);
  color: #0A0E1A;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-book-nav:hover { background: var(--gold-hover); }

.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 20px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--bg-border);
  padding: 16px 24px;
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 6px;
}

.mobile-nav a:hover { color: var(--gold); background: var(--gold-dim); }

.mobile-nav-label {
  padding: 12px 12px 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
}

@media (min-width: 1024px) {
  .main-nav { display: flex; }
  .mobile-toggle { display: none; }
}

/* Hero — FIX 2, 3 */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--bg-border);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(201, 168, 76, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(30, 39, 64, 0.8) 0%, transparent 50%),
    linear-gradient(180deg, #0A0E1A 0%, #141B2D 50%, #0A0E1A 100%);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 80px 24px;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr auto; }
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(42px, 7vw, 88px);
  letter-spacing: 0.02em;
  color: var(--text-primary);
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 8px;
}

.role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 32px;
}

.role-tag {
  border: 1px solid rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold);
  border-radius: 999px;
  padding: 5px 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  white-space: nowrap;
}

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

.hero-photo-wrapper {
  position: relative;
  display: inline-block;
  margin: 0 auto;
}

.hero-photo {
  width: 280px;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}

@media (min-width: 768px) {
  .hero-photo { width: 320px; height: 380px; }
}

.hero-badge {
  position: absolute;
  bottom: -14px;
  left: -14px;
  background: var(--gold);
  color: #0A0E1A;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(201,168,76,0.45);
  white-space: nowrap;
  z-index: 2;
}

.hero-badge i { margin-right: 6px; }

/* Stats — FIX 1 */
.stats-section {
  background: var(--bg-surface);
  padding: 60px 40px;
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.stat-item:nth-child(4n) { border-right: none; }
.stat-item:nth-child(n+9) { border-bottom: none; }

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.stat-sublabel {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .stats-section { padding: 40px 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(4n) { border-right: 1px solid rgba(201,168,76,0.15); }
  .stat-item:nth-child(n+5) { border-bottom: 1px solid rgba(201,168,76,0.15); }
  .stat-item:nth-child(n+9) { border-bottom: none; }
}

/* Section utilities */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.link-gold {
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}

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

/* About — FIX 6 */
.about-section {
  padding: 80px 24px;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 48px;
  align-items: center;
}

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

.about-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.credential-card {
  background: var(--bg-elevated);
  border: 1px solid var(--bg-border);
  border-radius: 12px;
  padding: 32px;
}

.credential-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.credential-list { list-style: none; padding: 0; margin: 0; }
.credential-list--scroll {
  max-height: min(52vh, 520px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}


.credential-list li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--bg-border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.credential-list li:last-child { border-bottom: none; }
.credential-list li i { color: var(--gold); font-size: 8px; flex-shrink: 0; }
.credential-list li strong { color: var(--text-primary); }

/* Services — FIX 5 */
.services-section {
  background: rgba(20, 27, 45, 0.5);
  padding: 80px 24px;
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 48px auto 32px;
  text-align: left;
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: 12px;
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }

.service-icon { font-size: 28px; color: var(--gold); margin-bottom: 16px; }

.service-price {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 4px;
}

.service-duration {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.service-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-cta {
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}

.service-cta:hover { color: var(--gold-hover); letter-spacing: 0.02em; }

.services-footer { margin-top: 16px; }

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

/* Research — FIX 7 */
.research-section {
  background: var(--bg-primary);
  padding: 100px 40px;
  border-top: 1px solid var(--bg-border);
}

.research-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.research-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--text-primary);
  line-height: 1.2;
  margin: 12px 0 20px;
}

.research-text p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.journal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.journal-tags span {
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  color: var(--text-muted);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
}

.research-metrics { display: flex; flex-direction: column; gap: 16px; }

.metric-card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: 10px;
  padding: 22px 28px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

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

.metric-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 4px;
}

.metric-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
}

.metric-link-icon {
  color: var(--text-faint);
  font-size: 14px;
  transition: var(--transition);
}

.metric-card:hover .metric-link-icon { color: var(--gold); }

@media (max-width: 768px) {
  .research-section { padding: 60px 24px; }
  .research-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* Testimonial — FIX 9 */
.testimonial-section {
  background: var(--bg-surface);
  padding: 100px 40px;
  text-align: center;
  border-top: 1px solid var(--bg-border);
}

.testimonial-inner { max-width: 760px; margin: 0 auto; }

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  color: var(--gold);
  opacity: 0.25;
  line-height: 0.5;
  margin-bottom: 24px;
  display: block;
}

blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--text-primary);
  line-height: 1.55;
  border: none;
  padding: 0;
  margin: 0 0 28px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

cite {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 15px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 16px;
}

.testimonial-badge {
  display: inline-block;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-size: 11px;
  padding: 4px 14px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.testimonial-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--bg-border);
  flex-wrap: wrap;
}

.t-stat { text-align: center; }

.t-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--gold);
}

.t-stat span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
}

.t-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--bg-border);
}

@media (max-width: 768px) {
  .testimonial-section { padding: 60px 24px; }
  .t-stat-divider { display: none; }
}

/* Partners — FIX 10 */
.partners-section {
  background: var(--bg-primary);
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--bg-border);
}

.partners-section .section-title { margin-bottom: 48px; padding: 0 24px; }
.partners-section .section-label { padding: 0 24px; }

.marquee-wrapper {
  overflow: hidden;
  margin-bottom: 16px;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.marquee-left  { animation: marquee-left  35s linear infinite; }
.marquee-right { animation: marquee-right 35s linear infinite; }

.marquee-wrapper:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee-left  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marquee-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.partner-logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #111827;
  border: 1px solid #1E2D45;
  border-radius: 8px;
  padding: 16px 24px;
  transition: var(--transition);
  cursor: default;
}

.partner-logo-tile img {
  display: block;
  max-height: 40px;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0.85) grayscale(20%);
  transition: filter 0.3s ease;
}

.partner-logo-tile:hover {
  border-color: var(--gold);
}

.partner-logo-tile:hover img {
  filter: brightness(1) grayscale(0);
}

.partner-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 40px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.partner-logo-tile:hover .partner-fallback {
  color: var(--text-primary);
}

/* Ventures — FIX 8 */
.ventures-section {
  background: var(--bg-surface);
  padding: 100px 40px;
  text-align: center;
  border-top: 1px solid var(--bg-border);
}

.ventures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 48px auto 0;
  text-align: left;
}

.venture-card {
  background: var(--bg-elevated);
  border: 1px solid var(--bg-border);
  border-radius: 12px;
  padding: 32px;
  transition: var(--transition);
}

.venture-card:hover {
  border-top: 3px solid var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.venture-icon { font-size: 28px; color: var(--gold); margin-bottom: 16px; }

.venture-tag {
  display: inline-block;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.venture-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--text-primary);
  margin: 12px 0;
}

.venture-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.venture-link {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}

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

@media (max-width: 768px) {
  .ventures-section { padding: 60px 24px; }
  .ventures-grid { grid-template-columns: 1fr; }
}

/* CTA — FIX 11 */
.cta-banner {
  background: linear-gradient(135deg, #0A0E1A 0%, #1A2235 50%, #0A0E1A 100%);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 100px 40px;
  text-align: center;
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.cta-banner p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold);
  color: #0A0E1A;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover { background: var(--gold-hover); transform: translateY(-2px); }

.btn-secondary {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
}

.btn-secondary:hover { background: var(--gold-dim); transform: translateY(-2px); }

@media (max-width: 768px) {
  .cta-banner { padding: 60px 24px; }
}

/* Footer — FIX 13 */
.site-footer {
  background: rgba(20, 27, 45, 0.5);
  border-top: 1px solid var(--bg-border);
  margin-top: auto;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px 32px;
}

.footer-grid {
  display: grid;
  gap: 40px;
}

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

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-tagline,
.footer-sub {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-heading {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-social { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }

.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--bg-border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-nav { display: flex; flex-direction: column; gap: 8px; }

.footer-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-nav-cta { color: var(--gold) !important; font-weight: 600; }

.footer-input-row { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }

.footer-input-row input {
  flex: 1;
  min-width: 180px;
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: 8px;
  padding: 10px 16px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
}

.footer-input-row input:focus { border-color: var(--gold); }

.footer-input-row button {
  background: var(--gold);
  color: #0A0E1A;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}

.footer-input-row button:hover { background: var(--gold-hover); }

.footer-contact-email a {
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-email a:hover { color: var(--gold); }

.footer-contact-email i { margin-right: 8px; color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  margin-top: 48px;
  border-top: 1px solid var(--bg-border);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p, .footer-bottom a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-faint);
  text-decoration: none;
}

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

.alert-success {
  background: rgba(34, 197, 94, 0.15);
  color: #86efac;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 12px;
}

.alert-error {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 12px;
}

.form-card {
  margin-top: 28px;
  padding: 28px;
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: 12px;
}

.site-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.form-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--bg-border);
  border-radius: 8px;
  padding: 10px 16px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold);
}

.form-submit {
  align-self: flex-start;
  background: var(--gold);
  color: #0A0E1A;
  border: none;
  border-radius: 8px;
  padding: 12px 22px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.form-submit:hover {
  background: var(--gold-hover);
}

.form-section-label {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 8px 0 4px;
}

.service-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 8px;
}

.service-select-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--bg-border);
  border-radius: 10px;
  background: var(--bg-primary);
  cursor: pointer;
  transition: var(--transition);
}

.service-select-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-select-card--selected,
.service-select-card:has(input:checked) {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.35);
}

.service-select-price {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.service-select-duration,
.service-select-name {
  color: var(--text-muted);
  font-size: 13px;
}

.service-select-name {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 15px;
}

.contact-form-section {
  padding: 48px 24px 80px;
  border-top: 1px solid var(--bg-border);
  background: rgba(255, 255, 255, 0.02);
}

.contact-form-section-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.contact-form-section .form-card {
  text-align: start;
}

.contact-form-section .section-sub {
  margin: 0 auto 24px;
}

@media (max-width: 700px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

[dir="rtl"] .form-card,
[dir="rtl"] .site-form,
[dir="rtl"] .contact-form-section .form-card {
  text-align: right;
}

[dir="rtl"] .form-submit {
  align-self: flex-end;
}

/* Inner pages */
.page-hero-simple {
  padding: 80px 24px 48px;
  border-bottom: 1px solid var(--bg-border);
  text-align: center;
}

.page-hero-simple h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 12px;
}

.booking-calendar-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 24px;
}

.booking-calendar-card {
  text-align: center;
  padding: 40px 32px;
  border: 1px solid rgba(201, 169, 98, 0.35);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(201, 169, 98, 0.08) 0%, rgba(201, 169, 98, 0.02) 100%);
}

.booking-calendar-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.booking-calendar-card h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 32px);
  margin-bottom: 12px;
}

.booking-calendar-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.booking-selected {
  color: var(--gold);
  font-weight: 600;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.page-content p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

main { flex: 1; }

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.lang-link {
  color: var(--text-muted);
  text-decoration: none;
  padding: 4px 6px;
  border-radius: 4px;
  transition: var(--transition);
}

.lang-link:hover { color: var(--text-primary); }

.lang-link.active {
  color: var(--gold);
  background: var(--gold-dim);
}

.lang-sep {
  color: var(--text-faint);
  user-select: none;
}

.lang-switcher-mobile {
  padding: 12px 24px;
  border-top: 1px solid var(--bg-border);
  margin-top: 8px;
}

/* RTL overrides */
[dir="rtl"] body {
  font-family: 'Noto Sans Arabic', 'Inter', sans-serif;
}

[dir="rtl"] .logo-text,
[dir="rtl"] .hero-title,
[dir="rtl"] .section-title,
[dir="rtl"] .page-hero-simple h1 {
  font-family: 'Noto Sans Arabic', 'Playfair Display', serif;
}

[dir="rtl"] .header-inner {
  flex-direction: row-reverse;
}

[dir="rtl"] .main-nav {
  flex-direction: row-reverse;
}

[dir="rtl"] .header-actions {
  flex-direction: row-reverse;
}

[dir="rtl"] .nav-dropdown-menu {
  left: auto;
  right: 0;
  text-align: right;
}

[dir="rtl"] .hero-grid,
[dir="rtl"] .about-inner,
[dir="rtl"] .research-inner,
[dir="rtl"] .footer-grid,
[dir="rtl"] .stats-grid,
[dir="rtl"] .services-grid,
[dir="rtl"] .ventures-grid {
  direction: rtl;
}

[dir="rtl"] .about-text,
[dir="rtl"] .research-text,
[dir="rtl"] .page-content,
[dir="rtl"] .section-sub,
[dir="rtl"] .footer-col {
  text-align: right;
}

[dir="rtl"] .credential-list li,
[dir="rtl"] .footer-nav a {
  text-align: right;
}

[dir="rtl"] .btn-primary i,
[dir="rtl"] .btn-secondary i,
[dir="rtl"] .link-gold i,
[dir="rtl"] .service-cta i {
  transform: scaleX(-1);
}

[dir="rtl"] .marquee-wrapper {
  mask-image: linear-gradient(to left, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to left, transparent, black 10%, black 90%, transparent);
}

[dir="rtl"] .marquee-left {
  animation-name: marquee-right;
}

[dir="rtl"] .marquee-right {
  animation-name: marquee-left;
}

[dir="rtl"] .footer-input-row {
  flex-direction: row-reverse;
}

[dir="rtl"] .footer-bottom {
  flex-direction: row-reverse;
}

@media (max-width: 900px) {
  .lang-switcher:not(.lang-switcher-mobile) {
    display: none;
  }
}
