:root {
  --navy: #0b1f3a;
  --navy-dark: #071428;
  --blue: #0a7cff;
  --blue-dark: #075ec0;
  --gold: #f4c95d;
  --bg: #f6f8fb;
  --card: #ffffff;
  --text: #1b2633;
  --muted: #5c6b7a;
  --border: #e4e9f0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 18px rgba(7, 20, 40, 0.25);
}

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

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  gap: 16px;
  font-size: 0.95rem;
  color: #d7e4ff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.btn.primary {
  background: var(--blue);
  color: #fff;
}

.btn.primary:hover {
  background: var(--blue-dark);
}

.btn.outline {
  background: transparent;
  border: 2px solid #d7e4ff;
  color: #fff;
}

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

.section {
  padding: 64px 0;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.hero {
  background: linear-gradient(180deg, rgba(7, 20, 40, 0.8), rgba(7, 20, 40, 0.9)),
    url("https://images.unsplash.com/photo-1699862731387-d40f6908ca4e?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  color: #fff;
  padding: 90px 0 70px;
}

.hero-content {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin-bottom: 12px;
}

.hero p {
  color: #000;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(10, 34, 68, 0.08);
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.category-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.category-card {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 30px rgba(8, 24, 46, 0.08);
}

.category-card img {
  height: 160px;
  width: 100%;
  object-fit: cover;
}

.category-card .card-body {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.event-card {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 30px rgba(8, 24, 46, 0.08);
  display: flex;
  flex-direction: column;
}

.event-image {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.event-body {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.event-meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.price-box {
  background: #f2f6ff;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d6e2ff;
  display: grid;
  gap: 6px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.strike {
  text-decoration: line-through;
  color: #7a8a9c;
  font-size: 0.95rem;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}

.badge {
  background: var(--gold);
  color: #3a2a00;
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 700;
}

.fee,
.total {
  font-size: 0.95rem;
  color: var(--muted);
}

.total {
  color: var(--navy);
  font-weight: 600;
}

.price-note {
  font-size: 0.85rem;
  color: #5a6b7e;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.event-layout {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.event-hero {
  padding-top: 80px;
}

.event-hero-card img {
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(8, 24, 46, 0.2);
}

.price-panel {
  background: #f7f9ff;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #d6e2ff;
  margin: 12px 0 18px;
  display: grid;
  gap: 6px;
}

.bullet-list {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.bullet-list li::before {
  content: "•";
  color: var(--blue);
  margin-right: 8px;
}

.trust-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.trust-badge {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 14px;
  text-align: center;
  border-radius: 12px;
  font-weight: 600;
}

.reviews {
  background: #f3f6fb;
}

.reviews-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.review {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: 12px;
  color: var(--muted);
}

.footer {
  background: var(--navy-dark);
  color: #d7e4ff;
  padding: 40px 0 80px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}

.footer .disclaimer {
  font-size: 0.9rem;
}

.payments {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.payments img {
  width: 60px;
  height: auto;
  background: #fff;
  padding: 6px 10px;
  border-radius: 8px;
}

.call-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
}

.call-pill {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 12px 25px rgba(7, 20, 40, 0.25);
}

.call-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(7, 20, 40, 0.55);
  z-index: 80;
}

.call-modal.open {
  display: flex;
}

.call-card {
  background: var(--card);
  border-radius: 16px;
  padding: 24px;
  max-width: 420px;
  width: 92vw;
  text-align: center;
  box-shadow: 0 20px 40px rgba(8, 24, 46, 0.2);
}

.call-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.checkout-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.checkout-summary {
  background: var(--card);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border);
}

.checkout-summary .total {
  font-size: 1.2rem;
}

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

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .call-float {
    right: 12px;
    bottom: 12px;
  }
}
