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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #0a0a0a;
  color: #f5f5f5;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.navbar-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(245, 245, 245, 0.7);
  transition: color 0.2s;
}

.navbar-links a:hover {
  color: #f5f5f5;
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: #f5f5f5;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

/* ── Sections ── */
.section {
  padding: 100px 0;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245, 245, 245, 0.4);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #f5f5f5;
}

.section-subtitle {
  font-size: 1.05rem;
  color: rgba(245, 245, 245, 0.6);
  max-width: 680px;
  line-height: 1.65;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(ellipse at 40% 30%, rgba(212, 160, 23, 0.08), transparent 60%),
              radial-gradient(ellipse at 70% 70%, rgba(239, 68, 68, 0.05), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.25);
  font-size: 0.78rem;
  font-weight: 500;
  color: #d4a017;
  margin-bottom: 24px;
}

.hero-logo {
  margin: 0 auto 32px;
  width: 96px;
  height: 96px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 20px;
  color: #f5f5f5;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #d4a017, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(245, 245, 245, 0.6);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #d4a017, #f97316);
  color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212, 160, 23, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #f5f5f5;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ── Hero Stats Bar ── */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f5f5f5;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(245, 245, 245, 0.45);
  margin-top: 2px;
}

/* ── Tour Section ── */
.tour-grid {
  display: grid;
  gap: 8px;
  margin-top: 40px;
}

.tour-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s;
}

.tour-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.tour-date {
  font-size: 0.85rem;
  font-weight: 600;
  color: #d4a017;
  min-width: 80px;
}

.tour-venue {
  flex: 1;
  padding: 0 16px;
}

.tour-venue-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #f5f5f5;
}

.tour-venue-location {
  font-size: 0.82rem;
  color: rgba(245, 245, 245, 0.5);
  margin-top: 2px;
}

.tour-status {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tour-status.available {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
}

.tour-status.sold-out {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

.tour-status.presale {
  background: rgba(59, 130, 246, 0.12);
  color: #3b82f6;
}

/* ── Highlights Grid ── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.highlight-card {
  padding: 28px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.2s;
}

.highlight-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.highlight-card-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.highlight-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.highlight-card p {
  font-size: 0.88rem;
  color: rgba(245, 245, 245, 0.55);
  line-height: 1.6;
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.service-card {
  padding: 28px 20px;
  border-radius: 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.2s;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 160, 23, 0.3);
}

.service-card-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.service-card .service-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(245, 245, 245, 0.35);
  margin-bottom: 12px;
}

.service-card ul {
  list-style: none;
  font-size: 0.85rem;
  color: rgba(245, 245, 245, 0.55);
  line-height: 1.8;
}

/* ── About Section ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
  align-items: start;
}

.about-text p {
  font-size: 0.95rem;
  color: rgba(245, 245, 245, 0.65);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-highlights {
  display: grid;
  gap: 12px;
}

.about-highlight-item {
  padding: 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-highlight-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-highlight-item p {
  font-size: 0.85rem;
  color: rgba(245, 245, 245, 0.5);
}

/* ── Contact Section ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.contact-card {
  padding: 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-card .contact-role {
  font-size: 0.82rem;
  color: #d4a017;
  font-weight: 500;
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 0.88rem;
  color: rgba(245, 245, 245, 0.55);
  line-height: 1.6;
}

.contact-card a {
  color: #d4a017;
  transition: color 0.2s;
}

.contact-card a:hover {
  color: #f97316;
}

/* ── Footer ── */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-text {
  font-size: 0.82rem;
  color: rgba(245, 245, 245, 0.35);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(245, 245, 245, 0.45);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #f5f5f5;
}

/* ── Social Icons ── */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: rgba(245, 245, 245, 0.6);
  transition: all 0.2s;
}

.social-links a:hover {
  background: rgba(212, 160, 23, 0.15);
  border-color: rgba(212, 160, 23, 0.3);
  color: #d4a017;
}

/* ── Section Divider ── */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.06), transparent);
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .navbar-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(12px);
    padding: 16px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .navbar-links.open {
    display: flex;
  }

  .navbar-toggle {
    display: block;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .tour-item {
    flex-wrap: wrap;
    gap: 8px;
  }

  .tour-date {
    min-width: unset;
  }

  .tour-venue {
    width: 100%;
    padding: 4px 0;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

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