/* Base reset */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body { margin: 0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: #0f172a; background: #fafafa; line-height: 1.6; overflow-x: hidden; }
:root {
  --brand: #B55239; /* brick */
  --brand-700: #8E3F2B;
  --accent: #10b981; /* emerald */
  --accent-700: #059669;
  --ink: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --bg-soft: #f6f7fb;
}

/* Layout */
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 16px; }
.grid { display: grid; gap: 16px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 900px) { .grid.two, .grid.three { grid-template-columns: 1fr; } }

/* Typography */
h1, h2, h3, h4 { line-height: 1.3; margin: 0 0 16px; font-weight: 700; }
h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; margin-top: 32px; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }
p { margin: 0 0 16px; line-height: 1.6; }
.lead { font-size: 1.125rem; color: #334155; line-height: 1.6; margin-bottom: 24px; }
.small { font-size: 0.875rem; line-height: 1.5; }
.muted { color: #64748b; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,1px,1px); white-space: nowrap; border: 0; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9); backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 56px; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-weight: 700; }
.logo img { height: 48px; width: auto; }
.brand-text { font-family: Montserrat, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; font-weight: 700; letter-spacing: .2px; font-size: 2rem; line-height: 1; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a { margin: 0; color: var(--ink); text-decoration: none; font-weight: 600; padding: 8px 12px; border-radius: 8px; }
.main-nav a:hover { color: var(--brand-700); background: #fff1ec; }

/* Tickets link with icon badge */
.main-nav a[href*="#official-tickets"] { 
  position: relative; 
  padding: 8px 16px 8px 40px;
  background: linear-gradient(135deg, rgba(236, 72, 21, 0.12) 0%, rgba(236, 72, 21, 0.08) 100%);
  border: 1px solid rgba(236, 72, 21, 0.2);
}
.main-nav a[href*="#official-tickets"]::before { 
  content: "";
  position: absolute; 
  left: 10px; 
  top: 50%; 
  transform: translateY(-50%); 
  width: 20px;
  height: 12px;
  background: var(--brand);
  opacity: 0.25;
  border-radius: 2px;
  border-left: 2px dashed rgba(255, 255, 255, 0.5);
  border-right: 2px dashed rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 0 0 1px rgba(236, 72, 21, 0.3);
}
.main-nav a[href*="#official-tickets"]::after { 
  content: "";
  position: absolute; 
  left: 16px; 
  top: 50%; 
  transform: translateY(-50%); 
  width: 8px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
}
.main-nav a[href*="#official-tickets"]:hover {
  background: linear-gradient(135deg, rgba(236, 72, 21, 0.18) 0%, rgba(236, 72, 21, 0.12) 100%);
  border-color: rgba(236, 72, 21, 0.3);
}
.actions { display: none; }
@media (min-width: 640px) { .actions { display: block; } }

/* Language switcher */
.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 16px;
}

.lang-switcher-mobile {
  display: none;
}

.lang-current {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  border: 2px solid var(--border);
  transition: all 0.2s ease;
}

.lang-current:hover {
  border-color: var(--brand);
  transform: scale(1.08);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  padding: 12px;
  display: none;
  z-index: 1000;
  min-width: 200px;
}

.lang-dropdown.open {
  display: block;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.lang-option:hover {
  background: var(--bg-soft);
}

.lang-option.active {
  background: var(--brand);
  color: #fff;
}

.lang-flag {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  background: #f0f0f0;
}

.lang-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lang-current {
  background: #f0f0f0;
}

.lang-current img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lang-option.active .lang-flag {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(236, 72, 21, 0.2);
}

/* Mobile menu toggle button */
.mobile-menu-toggle { 
  display: none; 
  flex-direction: column; 
  justify-content: space-around; 
  width: 30px; 
  height: 30px; 
  background: transparent; 
  border: none; 
  cursor: pointer; 
  padding: 0; 
  z-index: 10;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Mobile menu styles */
@media (max-width: 768px) {
  .mobile-menu-toggle { display: flex; position: relative; z-index: 1001; }
  .main-nav { 
    position: fixed; 
    top: 0; 
    right: -100%; 
    width: 280px; 
    height: 100vh; 
    background: #ffffff; 
    box-shadow: -2px 0 10px rgba(0,0,0,0.1); 
    transition: right 0.3s ease; 
    z-index: 1000; 
    padding: 20px; 
    padding-top: 70px;
    display: flex; 
    flex-direction: column; 
    gap: 16px;
    overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .main-nav a { 
    margin: 0; 
    padding: 12px 16px; 
    border-radius: 8px; 
    text-align: left; 
    border-bottom: 1px solid var(--border);
  }
  .main-nav a:last-child { border-bottom: none; }
  
  /* Reorder menu items for mobile - Buy tickets first */
  .main-nav { 
    display: flex; 
    flex-direction: column; 
  }
  .main-nav .btn-primary { 
    order: -1; 
    margin-bottom: 8px; 
    border-bottom: 2px solid var(--brand);
    font-weight: 700;
  }
  
  /* Hamburger animation */
  .mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  /* Prevent body scroll when menu open */
  body.menu-open { overflow: hidden; }
  
  /* Hide desktop lang switcher, show mobile */
  .lang-switcher {
    display: none;
  }
  
  .lang-switcher-mobile {
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: 12px;
  }
  
  .lang-switcher-mobile .lang-current {
    width: 44px;
    height: 44px;
  }
  
  .lang-switcher-mobile .lang-dropdown {
    left: auto;
    right: 0;
  }
  
  /* Prevent horizontal scroll on mobile */
  .container {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .header-inner {
    max-width: 100%;
    overflow: visible;
  }
}

/* Medium screens - use hamburger menu */
@media (max-width: 1100px) and (min-width: 769px) {
  .mobile-menu-toggle { display: flex; position: relative; z-index: 1001; }
  .main-nav { 
    position: fixed; 
    top: 0; 
    right: -100%; 
    width: 320px; 
    height: 100vh; 
    background: #ffffff; 
    box-shadow: -2px 0 10px rgba(0,0,0,0.1); 
    transition: right 0.3s ease; 
    z-index: 1000; 
    padding: 20px; 
    padding-top: 70px;
    display: flex; 
    flex-direction: column; 
    gap: 16px;
    overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .main-nav a { 
    margin: 0; 
    padding: 12px 16px; 
    border-radius: 8px; 
    text-align: left; 
    border-bottom: 1px solid var(--border);
  }
  .main-nav a:last-child { border-bottom: none; }
  
  .main-nav .btn-primary { 
    order: -1; 
    margin-bottom: 8px; 
    border-bottom: 2px solid var(--brand);
    font-weight: 700;
  }
  
  .mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  body.menu-open { overflow: hidden; }
  
  .main-nav.open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: -1;
  }
  
  .lang-switcher {
    display: none;
  }
  
  .lang-switcher-mobile {
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: 12px;
  }
  
  .lang-switcher-mobile .lang-current {
    width: 44px;
    height: 44px;
  }
  
  .lang-switcher-mobile .lang-dropdown {
    left: auto;
    right: 0;
  }
  
  /* Prevent horizontal scroll on medium screens */
  .container {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .header-inner {
    max-width: 100%;
    overflow: visible;
  }
}

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 14px; border-radius: 10px; text-decoration: none; font-weight: 700; transition: background .2s, color .2s, box-shadow .2s, border-color .2s; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 4px 10px rgba(181,82,57,.25); }
.btn-primary:hover { background: var(--brand-700); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-700); }
.btn-ghost { background: transparent; color: var(--brand-700); border: 1px solid #f3c9bd; }
.btn-ghost:hover { background: #fff4f0; }

/* Hero */
.hero { position: relative; padding: 0; border-bottom: 1px solid var(--border); min-height: 100vh; }
.hero-inner { position: relative; height: 100vh; display: flex; flex-direction: column; justify-content: space-between; text-align: center; padding-top: 1rem; padding-bottom: 1rem; }
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 0; aspect-ratio: 16/9; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,16,32,.15) 0%, rgba(11,16,32,.3) 40%, rgba(11,16,32,.55) 70%, rgba(11,16,32,.75) 100%); }
.hero-content { position: relative; z-index: 1; color: #fff; padding: 1rem 0 0; }
.hero-head { align-self: center; margin-top: 1rem; }
.hero h1 { color: #fff; font-size: 2.7rem; text-shadow: 0 4px 24px rgba(0,0,0,.75), 0 1px 2px rgba(0,0,0,.9); }
.hero .lead { color: #e5e7eb; background: rgba(11,16,32,.6); display: inline-block; padding: 8px 12px; border-radius: 10px; margin-top: 8px; }
.hero-actions { position: relative; z-index: 1; margin-bottom: 2rem; }
.hero .btn { padding: 15px 21px; font-size: 1.125rem; }
.hero .cta-row { margin-top: 16px; }
.btn-plain { background: #ffffff; color: var(--ink); border: 1px solid #e5e7eb; }
.btn-plain:hover { background: #f3f4f6; }
.hero-note { text-align: center; margin-top: 8px; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 16px 0; }
.note { color: #475569; }

/* Cards */
.card { background: #ffffff; border: 1px solid var(--border); border-radius: 12px; padding: 16px; box-shadow: 0 8px 24px rgba(15, 23, 42, .08), 0 2px 6px rgba(15,23,42,.06); margin-bottom: 16px; }
.ticket-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 1100px) { .ticket-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 700px) { .ticket-grid { grid-template-columns: 1fr; } }
.ticket .price { font-weight: 700; margin: 8px 0 12px; }

/* Tickets: horizontal orientation */
.ticket-grid { grid-template-columns: 1fr; }
.ticket.horizontal { display: grid; grid-template-columns: 144px 1fr 200px; align-items: start; gap: 24px; }
.ticket .title { display: flex; flex-direction: column; gap: 12px; }
.ticket .title h3 { margin: 0 0 8px; font-size: 1.25rem; }
.ticket .title img { width: 144px; height: 144px; object-fit: cover; border-radius: 8px; background: #f3f4f6; }
.ticket .body { min-width: 0; }
.ticket .body p { max-width: none; }
.ticket .cta { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.ticket .cta .price { margin: 0; font-size: 1.125rem; }

/* CTA buttons layout */
.cta-buttons { display: flex; flex-direction: column; gap: 8px; }
.btn-secondary { background: #ffffff; color: var(--brand); border: 2px solid var(--brand); }
.btn-secondary:hover { background: var(--brand); color: #ffffff; }

/* Mobile CTA buttons */
@media (max-width: 768px) {
  .cta-buttons { flex-direction: row; gap: 12px; }
  .cta-buttons .btn { flex: 1; }
}

.ticket.horizontal h3 { margin: 0 0 8px; }

/* Mobile layout for tickets */
@media (max-width: 700px) {
  .ticket.horizontal { grid-template-columns: 1fr; }
  .ticket .title { flex-direction: column; align-items: center; gap: 12px; text-align: center; }
  .ticket .title img { width: 120px; height: 120px; object-fit: cover; border-radius: 8px; }
  .ticket .cta { align-items: stretch; }
  .ticket .cta .price { text-align: right; }
}

/* Smaller square images for very small mobile devices */
@media (max-width: 480px) {
  .ticket .title img { width: 100px; height: 100px; }
}

/* Checkmark lists inside cards */
.card ul { list-style: none; padding-left: 0; }
.card ul li { position: relative; padding-left: 1.4rem; }
.card ul li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--brand); font-weight: 700; }

/* Footer */
.site-footer { margin-top: 40px; padding: 32px 0; border-top: 0; background: #0b1020; color: #e5e7eb; }
.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: nowrap; }
.footer-inner > div { max-width: 50%; flex: 0 0 auto; }
.footer-inner > div .small { margin-top: 4px; display: block; line-height: 1.4; }
.footer-nav { flex: 0 0 auto; white-space: nowrap; display: flex; align-items: center; }
.footer-nav a { margin: 0 8px; color: #cbd5e1; text-decoration: none; }
.footer-nav a:hover { color: #fff; }
@media (max-width: 768px) {
  .footer-inner { flex-wrap: wrap; }
  .footer-inner > div { max-width: 100%; }
}

/* Accessibility */
.skip-link { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { position: static; width: auto; height: auto; margin: 8px; padding: 8px 12px; background: #111827; color: #fff; border-radius: 8px; }

/* Images */
img { max-width: 100%; height: auto; border-radius: 12px; display: block; }

/* Utility */
.trust { background: #f8fafc; border: 1px dashed #e2e8f0; }
.placeholder { background: #e5e7eb; border: 2px dashed #cbd5e1; border-radius: 12px; height: 360px; display: flex; align-items: center; justify-content: center; color: #475569; font-weight: 600; }
.official-photo { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.official-grid { align-items: start; }
.official-col { display: flex; }
.official-col > * { flex: 1 1 auto; }
.compact { padding: 16px; }
.compact h3 { margin-bottom: 12px; }
.compact ol.small li, .compact ul.small li { margin-bottom: 8px; }
.stack { display: grid; gap: 16px; grid-template-rows: auto auto auto 1fr auto; min-height: 100%; }
.stack-spacer { min-height: 0; }
.book-cta { display: block; width: 100%; text-align: center; }

/* Map */

/* Comparison Grid */
.comparison-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 20px; 
  margin-top: 20px; 
}

.comparison-card { 
  background: #ffffff; 
  border: 2px solid var(--border); 
  border-radius: 16px; 
  padding: 24px; 
  position: relative; 
  transition: all 0.3s ease; 
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.comparison-card:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1); 
  border-color: var(--brand);
}

.comparison-card.featured { 
  border-color: var(--brand); 
  background: linear-gradient(135deg, #fff 0%, #fff8f6 100%);
  transform: scale(1.02);
}

.comparison-header { 
  text-align: center; 
  margin-bottom: 20px; 
  position: relative; 
  padding-top: 20px; 
}

.comparison-header h4 { 
  margin: 0 0 12px; 
  font-size: 1.25rem; 
  font-weight: 700; 
  color: var(--ink); 
}

.price-badge { 
  background: var(--brand); 
  color: white; 
  padding: 8px 16px; 
  border-radius: 20px; 
  font-weight: 700; 
  font-size: 1.1rem; 
  display: inline-block; 
}

.popular-badge { 
  position: absolute; 
  top: -16px; 
  left: 50%; 
  transform: translateX(-50%); 
  background: var(--accent); 
  color: white; 
  padding: 6px 16px; 
  border-radius: 16px; 
  font-size: 0.75rem; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 0.5px; 
  z-index: 10; 
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
  white-space: nowrap;
  line-height: 1.2;
}

.comparison-features { 
  margin-bottom: 20px; 
}

.feature-item { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  margin-bottom: 0; 
  padding: 4px 0; 
  font-size: 0.9rem;
  line-height: 1.3;
}

.feature-icon { 
  font-size: 1.2rem; 
  width: 24px; 
  text-align: center; 
}

.comparison-best-for { 
  background: #f8fafc; 
  padding: 16px; 
  border-radius: 12px; 
  border-left: 4px solid var(--brand); 
  font-size: 0.9rem; 
  color: var(--muted); 
}

@media (max-width: 768px) {
  .comparison-grid { 
    grid-template-columns: 1fr; 
    gap: 16px; 
  }
  .comparison-card.featured { 
    transform: none; 
  }
  .popular-badge {
    top: -6px;
    padding: 4px 12px;
    font-size: 0.7rem;
  }
}

/* FAQ Styles */
.faq {
  margin: 24px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.faq-category {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-category-header {
  background: var(--brand);
  color: white;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-category-content {
  padding: 0;
}

.faq-item {
  border-bottom: 1px solid #f1f5f9;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  background: white;
  transition: all 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-question:hover {
  background: #f8fafc;
  color: var(--brand);
}

.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform 0.2s ease;
  color: var(--muted);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
  color: var(--brand);
}

.faq-item.active .faq-question {
  background: #f0fdf4;
  color: var(--brand);
  border-left: 4px solid var(--brand);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fafbfc;
}

.faq-item.active .faq-answer {
  padding: 16px 20px;
  max-height: 200px;
}

.faq-answer p {
  margin: 0;
  line-height: 1.6;
  color: var(--text);
}

.faq-answer ul {
  margin: 8px 0 0 0;
  padding-left: 20px;
}

.faq-answer li {
  margin-bottom: 4px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* FAQ Navigation Styles */
.faq-navigation {
  margin: 32px 0;
}

.nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.nav-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-color: var(--brand);
  color: var(--brand);
}

.nav-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.nav-title {
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 4px;
}

.nav-count {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
}

@media (max-width: 768px) {
  .nav-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .nav-card {
    padding: 16px 12px;
  }
  
  .nav-icon {
    font-size: 1.5rem;
  }
  
  .nav-title {
    font-size: 0.8rem;
  }
  
  .nav-count {
    font-size: 0.7rem;
  }
}

/* Visitor Information Styles */
.visitor-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.visitor-info-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.visitor-info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.visitor-info-header {
  background: var(--brand);
  color: white;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.visitor-info-icon {
  font-size: 1.5rem;
}

.visitor-info-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.visitor-info-content {
  padding: 24px;
}

.visitor-info-content h4 {
  color: var(--brand);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.visitor-info-content p {
  margin: 0 0 16px 0;
  line-height: 1.6;
  color: var(--text);
}

.visitor-info-content h4:last-of-type {
  margin-top: 20px;
}

.visitor-info-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .visitor-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .visitor-info-header {
    padding: 16px 20px;
  }
  
  .visitor-info-content {
    padding: 20px;
  }
}

/* Trust Section Styles */
.trust-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 16px;
  padding: 40px;
  margin: 32px 0;
  border: 1px solid #e2e8f0;
}

.trust-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.trust-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.trust-content h2 {
  font-size: 1.5rem;
  color: var(--ink);
  margin: 0 0 16px 0;
  font-weight: 700;
}

.trust-description {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.trust-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.trust-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: white;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-feature:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.trust-feature-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.trust-feature-text {
  font-size: 0.8rem;
  color: var(--text);
  font-weight: 500;
}

@media (max-width: 768px) {
  .trust-section {
    padding: 24px 20px;
    margin: 24px 0;
  }
  
  .trust-icon {
    font-size: 2.5rem;
  }
  
  .trust-content h2 {
    font-size: 1.3rem;
  }
  
  .trust-description {
    font-size: 0.85rem;
  }
  
  .trust-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .trust-feature {
    padding: 10px 12px;
  }
  
  .trust-feature-text {
    font-size: 0.75rem;
  }
}

/* Terms and Conditions Styles */
.terms-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.terms-content h2 {
  color: var(--brand);
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 8px;
  margin-top: 40px;
  margin-bottom: 16px;
}

.terms-content h2:first-of-type {
  margin-top: 0;
}

.terms-content ul {
  margin: 16px 0;
  padding-left: 24px;
}

.terms-content li {
  margin-bottom: 8px;
}

.terms-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
  color: var(--muted);
}

.terms-footer p {
  margin: 8px 0;
}

/* 404 Error Page Styles */
.error-content {
  max-width: 800px;
  margin: 0 auto;
}

.error-suggestions {
  margin-top: 40px;
}

.suggestion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.suggestion-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.suggestion-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-color: var(--brand);
  color: var(--brand);
}

.suggestion-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.suggestion-title {
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 4px;
}

.suggestion-desc {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .error-content h1 {
    font-size: 4rem !important;
  }
  
  .error-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .suggestion-grid {
    grid-template-columns: 1fr;
  }
}

/* Ticket Detail Pages */
.ticket-detail {
  max-width: 1000px;
  margin: 0 auto;
}

.ticket-detail header {
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

.ticket-detail h1 {
  color: var(--brand);
  margin-bottom: 16px;
}

.ticket-info {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.ticket-content-full {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.content-section {
  width: 100%;
}

.tiqets-widget-intro {
  margin: 2rem 0;
  max-width: 100%;
  overflow: hidden;
}

.tiqets-widget-intro > div {
  max-width: 100% !important;
  width: 100% !important;
}

.tiqets-widget-pricing {
  margin: 1.5rem 0;
}

.ticket-media {
  position: relative;
}

.hero-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.ticket-content h2 {
  color: var(--brand);
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 8px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.ticket-content h2:first-of-type {
  margin-top: 0;
}

.ticket-content h3 {
  color: var(--ink);
  margin-top: 24px;
  margin-bottom: 12px;
}

.ticket-content ul {
  margin: 16px 0;
  padding-left: 24px;
}

.ticket-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.pricing {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
  text-align: center;
}

.pricing h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--brand);
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 8px;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.cta-section {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
  flex-wrap: wrap;
}

.breadcrumb {
  margin: 20px 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--brand);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.related-articles {
  margin: 4rem 0 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(236, 72, 21, 0.03) 0%, rgba(236, 72, 21, 0.01) 100%);
  border-radius: 12px;
  border: 1px solid rgba(236, 72, 21, 0.1);
}

.related-articles h2 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--text);
}

.related-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.related-links a {
  padding: 1rem 1.5rem;
  background: white;
  border: 1px solid rgba(236, 72, 21, 0.15);
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.related-links a:hover {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(236, 72, 21, 0.2);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.blog-card h2 {
  padding: 1.5rem 1.5rem 1rem;
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.4;
}

.blog-card h2 a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card h2 a:hover {
  color: var(--brand);
}

.blog-featured-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.blog-excerpt {
  padding: 1rem 1.5rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.blog-card .read-more {
  display: inline-block;
  padding: 0 1.5rem 1.5rem;
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card .read-more:hover {
  color: #d94012;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .related-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ticket-info {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .hero-image {
    height: 200px;
  }
  
  .cta-section {
    flex-direction: column;
    align-items: center;
  }
  
  .ticket-detail header {
    margin-bottom: 24px;
  }
}

/* Interactive Map Styles */
.map-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin: 16px 0;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

.map-note {
  margin-top: 12px;
  text-align: center;
  color: var(--muted);
}

.map-note a {
  color: var(--brand);
  text-decoration: none;
}

.map-note a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .map-container {
    height: 300px;
  }
}

/* Carousel Styles */
.carousel-container {
  position: relative;
  margin: 24px 0;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-wrapper {
  overflow: visible;
  border-radius: 12px;
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 16px;
}

.carousel-item {
  flex: 0 0 calc(20% - 12.8px); /* 5 items visible */
  cursor: pointer;
  border-radius: 8px;
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0.3s ease;
  aspect-ratio: 4/3;
  position: relative;
  z-index: 1;
  min-width: 0; /* Allow flex items to shrink */
}

.carousel-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  z-index: 10;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.7);
  border: none;
  color: white;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  background: var(--brand);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-dot.active {
  background: var(--brand);
}

@media (max-width: 1200px) {
  .carousel-item {
    flex: 0 0 calc(25% - 12px); /* 4 items visible */
  }
}

@media (max-width: 900px) {
  .carousel-item {
    flex: 0 0 calc(33.333% - 10.67px); /* 3 items visible */
  }
}

@media (max-width: 600px) {
  .carousel-item {
    flex: 0 0 calc(50% - 8px); /* 2 items visible */
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .carousel-prev {
    left: 5px;
  }
  
  .carousel-next {
    right: 5px;
  }
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0);
  backdrop-filter: blur(0px);
  opacity: 0;
  transition: all 0.3s ease;
}

.lightbox.active {
  background-color: rgba(0,0,0,0.9);
  backdrop-filter: blur(5px);
  opacity: 1;
}

.lightbox-content {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 90%;
  max-width: 1200px;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--brand);
}

#lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: opacity 0.15s ease;
  opacity: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.lightbox-btn {
  background: rgba(0,0,0,0.7);
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 30px;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  pointer-events: all;
  backdrop-filter: blur(10px);
  min-width: 60px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  transform: scale(1.1);
}

#lightbox-prev {
  margin-left: 20px;
}

#lightbox-next {
  margin-right: 20px;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
  }
  
  .lightbox-content {
    width: 95%;
    height: 95%;
    padding: 10px;
  }
  
  .lightbox-close {
    top: 10px;
    right: 20px;
    font-size: 30px;
  }
  
  .lightbox-btn {
    font-size: 24px;
    padding: 12px 16px;
    min-width: 50px;
    min-height: 50px;
  }
  
  #lightbox-prev {
    margin-left: 10px;
  }
  
  #lightbox-next {
    margin-right: 10px;
  }
  
  /* Touch-friendly navigation areas */
  .lightbox-nav {
    top: 0;
    height: 100%;
  }
  
  .lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  
  #lightbox-prev {
    left: 10px;
    margin-left: 0;
  }
  
  #lightbox-next {
    right: 10px;
    margin-right: 0;
  }
}

/* Planning Steps */
.planning-steps {
  margin: 32px 0;
}

.planning-step {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--brand);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 1.25rem;
}

.step-content h4 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.125rem;
  font-weight: 600;
}

.step-content ul {
  margin: 12px 0;
  padding-left: 0;
  list-style: none;
}

.step-content ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 6px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.step-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}

@media (max-width: 768px) {
  .planning-step {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }
  
  .step-number {
    align-self: flex-start;
  }
}

