/* ============================================================
   Asimov Group — Main Website
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

@font-face {
  font-family: 'Azonix';
  src: url('../fonts/Azonix.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ── Design Tokens ───────────────────────────────────────── */
:root {
  /* ── Palette ─────────────────────────────────────────────── */
  /* #041D22  main dark   #346967  accent teal                 */
  /* #EEF6F6  near-white  #6EA3A4  muted teal                  */

  /* Backgrounds — blended between #041D22 and #346967 */
  --bg-page:       #041D22;
  --bg-surface:    #082A30;
  --bg-card:       #0D3438;
  --bg-card-hover: #133E42;

  /* Accent — #346967 anchors, #6EA3A4 is the light variant */
  --accent:        #346967;
  --accent-light:  #6EA3A4;
  --accent-dark:   #245250;
  --accent-glow:   rgba(52, 105, 103, 0.12);
  --accent-border: rgba(110, 163, 164, 0.22);

  /* Text — palette colours used directly */
  --text-primary:  #EEF6F6;
  --text-secondary:#6EA3A4;
  --text-muted:    #4C8080;

  --border:        rgba(52, 105, 103, 0.15);
  --border-strong: rgba(110, 163, 164, 0.24);

  --font-body:    'Inter', sans-serif;
  --font-display: 'Azonix', sans-serif;

  --max-width:    1140px;
  --radius:       12px;
  --radius-sm:    8px;
  --transition:   0.2s ease;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: var(--font-body);
  background:  var(--bg-page);
  color:       var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img   { display: block; max-width: 100%; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Container ───────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-display);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--accent);
  color: #EEF6F6;
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(52, 105, 103, 0.40);
}
.btn-outline {
  background: rgba(110, 163, 164, 0.08);
  color: var(--accent-light);
  border: 1px solid rgba(110, 163, 164, 0.55);
}
.btn-outline:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
}

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(4, 29, 34, 0.90);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  text-decoration: none;
}
.nav-logo .logo-mark {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 2px;
}
.nav-logo .logo-sub {
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-display);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: var(--accent-glow);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-dashboard {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.nav-dashboard:hover { color: var(--accent); }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links, .nav-cta { display: none; }
  .nav-links.open, .nav-cta.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-inner { flex-wrap: wrap; height: auto; padding-block: 1rem; }
  .nav-links.open {
    width: 100%;
    padding-bottom: 0.5rem;
    gap: 0.1rem;
  }
  .nav-links.open a { width: 100%; padding: 0.55rem 0.85rem; }
  .nav-cta.open {
    width: 100%;
    padding-bottom: 0.75rem;
    flex-direction: row;
  }
}

/* ── Home Hero ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 1.5rem 5rem;
  position: relative;
  background:
    linear-gradient(to bottom,
      rgba(4,29,34,0.65) 0%,
      rgba(4,29,34,0.50) 40%,
      rgba(4,29,34,0.75) 100%),
    url('../img/hero-bg.jpg') center / cover no-repeat;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 70% at 50% -10%, rgba(52,105,103,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 80% 60%,  rgba(52,105,103,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  padding: 9rem 1.5rem 4rem;
  text-align: center;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(52,105,103,0.08) 0%, transparent 70%);
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.page-hero p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Section Layout ──────────────────────────────────────── */
.section {
  padding: 5rem 1.5rem;
}
.section-alt {
  background: var(--bg-surface);
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.section-header p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
}

/* ── Cards ───────────────────────────────────────────────── */
.card-grid {
  display: grid;
  gap: 1.25rem;
}
.card-grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card-grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: var(--accent-border);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(52, 105, 103, 0.10);
}
.card-img {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover;
  background: var(--bg-surface);
}
.card-img-placeholder {
  aspect-ratio: 16 / 9;
  width: 100%;
  background: linear-gradient(135deg, #062C35 0%, #083540 50%, #041D22 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 1px;
}
.card-body { padding: 1.4rem; }
.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.card-body p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.card-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

/* Feature cards (icon + text) */
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color var(--transition), transform var(--transition);
}
.feature-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-2px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.6rem;
  color: var(--text-primary);
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Stats Bar ───────────────────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}
.stat-item {
  padding: 1.75rem 1.25rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.5px;
}

@media (max-width: 600px) {
  .stat-item { padding: 1.25rem 0.75rem; }
  .stat-number { font-size: 1.5rem; }
}

/* ── Forms ───────────────────────────────────────────────── */
.form-section {
  max-width: 720px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 1.4rem;
}
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.45rem;
  letter-spacing: 0.2px;
}
.form-label .required { color: var(--accent); margin-left: 2px; }
.form-hint {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 0.45rem;
}
.form-control {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  font-size: 0.88rem;
  font-family: var(--font-body);
  color: var(--text-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(52, 105, 103, 0.18);
}
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 120px; line-height: 1.6; }
select.form-control { appearance: none; cursor: pointer; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 580px) { .form-row { grid-template-columns: 1fr; } }

.form-check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}
.form-checks { display: flex; gap: 1.5rem; flex-wrap: wrap; }

.form-error {
  display: none;
  font-size: 0.77rem;
  color: #e06060;
  margin-top: 0.3rem;
}
.form-error.visible { display: block; }
.form-control.invalid { border-color: #8a3a3a; }

.form-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
}
.alert-success {
  background: rgba(52, 105, 103, 0.10);
  border: 1px solid rgba(52, 105, 103, 0.28);
  color: var(--accent-light);
}
.alert-error {
  background: rgba(200, 60, 60, 0.08);
  border: 1px solid rgba(200, 60, 60, 0.25);
  color: #e08080;
}

/* ── Requirements List ───────────────────────────────────── */
.requirements {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 3rem;
}
.requirements h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}
.req-list { display: flex; flex-direction: column; gap: 0.65rem; }
.req-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.req-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3.5rem 2rem;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.cta-banner p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn-group {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem 1.5rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo-mark {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
}
.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.6;
  max-width: 220px;
}
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── About page specific ─────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.value-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-2px);
}
.value-card .value-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.value-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-split .text-col h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.about-split .text-col p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-split .img-col .img-wrap {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-split .img-col .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-split .img-col .img-placeholder {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #062C35 0%, #083540 50%, #041D22 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .about-split { grid-template-columns: 1fr; gap: 2rem; }
  .about-split .img-col { order: -1; }
}

/* ── Rank Journey Path ───────────────────────────────────── */
.rank-journey {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.journey-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.rank-stop {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 1;
}
.stop-left {
  flex-direction: row;
  transform: translate(-32px, -50%);
}
.stop-right {
  flex-direction: row-reverse;
  transform: translate(calc(-100% + 32px), -50%);
  text-align: right;
}
.stop-center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translate(-50%, -32px);
}
.stop-center .journey-info {
  max-width: 140px;
}
.journey-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  position: relative;
  flex-shrink: 0;
  border: 3px solid rgba(255,255,255,0.15);
}
.rank-number {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-page);
  border: 1px solid var(--border-strong);
  font-size: 0.62rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}
.journey-info {
  max-width: 160px;
  min-width: 0;
}
.journey-name {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}
.journey-xp {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.journey-desc {
  font-size: 0.73rem;
  color: var(--text-secondary);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 600px) {
  .rank-journey {
    height: auto !important;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 0.5rem 0;
  }
  .journey-svg { display: none; }
  .rank-stop {
    position: static !important;
    transform: none !important;
    flex-direction: row !important;
    text-align: left !important;
  }
  .journey-info { max-width: none; }
}

/* ── XP Source Cards ─────────────────────────────────────── */
.xp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.xp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.xp-card-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
}
.xp-card-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.xp-icon {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

/* ── Event Cards ─────────────────────────────────────────── */
.event-date {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.event-route {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 0.4rem;
}
.event-route .arrow { color: var(--accent); }

/* ── Slot Booking Carousel ───────────────────────────────── */
.carousel { position: relative; margin-bottom: 2.5rem; }
.carousel-slides {
  display: grid;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.carousel-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.carousel-slide.active { opacity: 1; visibility: visible; }
.carousel-slide-img {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover;
  background: var(--bg-surface);
  display: block;
}
.carousel-slide-img-placeholder {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #062C35, #083540);
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 1px;
}
.carousel-body {
  padding: 1.5rem;
  background: var(--bg-card);
}
.carousel-body h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.slide-status {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}
.slide-status.full { color: rgba(220,100,100,0.8); }

/* ── Slot Tags ───────────────────────────────────────────── */
.slot-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.25rem; }
.slot-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  background: rgba(52,105,103,0.12);
  color: var(--accent);
  border: 1px solid rgba(52,105,103,0.25);
}
.slot-tag.open {
  background: transparent;
  color: var(--text-muted);
  border: 1px dashed rgba(52,105,103,0.22);
  font-weight: 400;
}

/* ── Carousel Controls ───────────────────────────────────── */
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem 1rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-radius: 0 0 var(--radius) var(--radius);
}
.car-arrow {
  background: none;
  border: 1px solid var(--border-strong);
  color: var(--text-secondary);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.car-arrow:hover { border-color: var(--accent); color: var(--accent); }
.car-arrow:disabled { opacity: 0.3; cursor: default; }
.car-dots { display: flex; gap: 0.4rem; }
.car-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-strong);
  cursor: pointer;
  transition: background 0.2s;
}
.car-dot.active { background: var(--accent); }

/* ── Booking Modal ───────────────────────────────────────── */
.booking-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 900;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.booking-overlay.open { display: flex; }
.booking-modal {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 2rem;
  width: 100%;
  max-width: 460px;
}
.booking-modal h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}
.booking-modal .modal-subtitle {
  font-size: 0.82rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.modal-actions { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.modal-actions .btn { flex: 1; justify-content: center; }

/* ── Status Banners ──────────────────────────────────────── */
.status-banner {
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  margin-bottom: 2rem;
  border: 1px solid;
}
.status-banner.success {
  background: rgba(52,105,103,0.10);
  color: var(--accent-light);
  border-color: rgba(52,105,103,0.28);
}
.status-banner.error {
  background: rgba(220,60,60,0.07);
  color: rgba(220,120,120,0.9);
  border-color: rgba(220,60,60,0.2);
}

/* ── Misc ────────────────────────────────────────────────── */
.text-accent  { color: var(--accent); }
.text-muted   { color: var(--text-secondary); }
.text-center  { text-align: center; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
