/* =============================================
   Seville Cathedral Tickets - Main Stylesheet
   ============================================= */

/* CSS Variables */
:root {
  --primary-color: #8B4513;
  --primary-dark: #654321;
  --secondary-color: #D4AF37;
  --accent-color: #C0392B;
  --text-color: #2C3E50;
  --text-light: #5D6D7E;
  --bg-color: #FDFCFB;
  --bg-warm: #FFF9F0;
  --bg-card: #FFFFFF;
  --border-color: #E8E0D5;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --max-width: 1200px;
  --header-height: 80px;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--bg-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-color);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo img {
  height: 45px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text span:first-child {
  font-size: 1.1rem;
  font-weight: 700;
}

.logo-text span:last-child {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-light);
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-color);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover {
  background: var(--bg-warm);
  color: var(--primary-color);
}

.nav-link.active {
  color: var(--primary-color);
  background: var(--bg-warm);
}

/* Header CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--primary-color);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.header-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--bg-warm);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.lang-current:hover {
  background: var(--border-color);
}

.lang-current img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 100;
  max-height: 400px;
  overflow-y: auto;
}

.lang-switcher:hover .lang-dropdown,
.lang-switcher.active .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.lang-option:hover {
  background: var(--bg-warm);
}

.lang-option.active {
  background: var(--bg-warm);
  color: var(--primary-color);
  font-weight: 600;
}

.lang-option img {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  object-fit: cover;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-color);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 60px) 0 60px;
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-color) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('../images/cathedral-hero.jpg') center/cover no-repeat;
  opacity: 0.15;
  mask-image: linear-gradient(to left, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 0%, transparent 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-sidebar {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: white;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  color: var(--text-color);
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--primary-color);
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 32px;
  color: var(--text-light);
}

/* Disclaimer inline */
.hero-disclaimer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 16px;
  padding: 6px 12px;
  background: rgba(0,0,0,0.03);
  border-radius: var(--radius-sm);
  cursor: help;
  position: relative;
}

.hero-disclaimer:hover .disclaimer-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.disclaimer-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  width: 280px;
  padding: 12px 16px;
  background: var(--text-color);
  color: white;
  font-size: 0.8rem;
  line-height: 1.5;
  border-radius: var(--radius-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: var(--transition);
  z-index: 10;
}

.disclaimer-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 20px;
  border: 6px solid transparent;
  border-top-color: var(--text-color);
}

/* Booking Widget Area */
.hero-widget {
  padding: 24px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.widget-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.widget-title svg {
  width: 18px;
  height: 18px;
  color: var(--secondary-color);
}

/* CTA Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
}

.btn-accent {
  background: var(--accent-color);
  color: white;
}

.btn-accent:hover {
  background: #A93226;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* Quick Summary Section */
.quick-summary {
  padding: 80px 0;
  background: white;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.summary-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.summary-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.summary-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.summary-icon svg {
  width: 28px;
  height: 28px;
}

.summary-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.summary-card p {
  font-size: 0.95rem;
  margin: 0;
}

.summary-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: 'Playfair Display', serif;
}

/* Ticket Types Section */
.ticket-types {
  padding: 100px 0;
  background: var(--bg-color);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header p {
  font-size: 1.1rem;
}

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

.ticket-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.ticket-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.ticket-card.featured {
  border-color: var(--secondary-color);
  position: relative;
}

.ticket-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: 20px;
  right: -35px;
  padding: 6px 40px;
  background: var(--secondary-color);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  transform: rotate(45deg);
  z-index: 1;
}

.ticket-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.ticket-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.ticket-card:hover .ticket-image img {
  transform: scale(1.05);
}

.ticket-content {
  padding: 28px;
}

.ticket-content h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.ticket-content p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.ticket-features {
  margin-bottom: 24px;
}

.ticket-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-color);
}

.ticket-features li:last-child {
  border-bottom: none;
}

.ticket-features svg {
  width: 18px;
  height: 18px;
  color: var(--secondary-color);
  flex-shrink: 0;
}

.ticket-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}

.price-from {
  font-size: 0.85rem;
  color: var(--text-light);
}

.price-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: 'Playfair Display', serif;
}

.price-note {
  font-size: 0.8rem;
  color: var(--text-light);
}

.ticket-card .btn {
  width: 100%;
}

/* Info Section */
.info-section {
  padding: 100px 0;
  background: white;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.info-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.info-content h2 {
  margin-bottom: 24px;
}

.info-content p {
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.info-list {
  margin: 24px 0;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
}

.info-list svg {
  width: 22px;
  height: 22px;
  color: var(--secondary-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text-color);
}

/* Comparison Table */
.comparison-section {
  padding: 100px 0;
  background: var(--bg-warm);
}

.comparison-table {
  width: 100%;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background: var(--primary-color);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: var(--bg-warm);
}

.check-icon {
  color: #27AE60;
}

.cross-icon {
  color: #E74C3C;
}

/* Tips Section */
.tips-section {
  padding: 100px 0;
  background: white;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tip-card {
  padding: 32px;
  background: var(--bg-color);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--secondary-color);
  transition: var(--transition);
}

.tip-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.tip-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--secondary-color);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50%;
  margin-bottom: 16px;
}

.tip-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.tip-card p {
  font-size: 0.95rem;
  margin: 0;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: var(--bg-color);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 16px;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  color: var(--text-color);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 24px 20px;
  color: var(--text-light);
  line-height: 1.8;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta-section .btn-primary {
  background: white;
  color: var(--primary-color);
}

.cta-section .btn-primary:hover {
  background: var(--secondary-color);
  color: white;
}

/* Footer */
.footer {
  background: var(--text-color);
  color: white;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
  color: white;
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--secondary-color);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-column h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

.footer-disclaimer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
}

.footer-disclaimer svg {
  width: 18px;
  height: 18px;
  color: var(--secondary-color);
  flex-shrink: 0;
}

.footer-disclaimer p {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.5;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

.footer-legal a:hover {
  color: white;
}

/* Content Sections */
.content-section {
  padding: 80px 0;
}

.content-section:nth-child(even) {
  background: white;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper h2 {
  margin-top: 48px;
  margin-bottom: 24px;
}

.content-wrapper h3 {
  margin-top: 36px;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.content-wrapper p {
  font-size: 1.05rem;
  line-height: 1.85;
}

.content-wrapper ul,
.content-wrapper ol {
  margin: 20px 0;
  padding-left: 24px;
}

.content-wrapper li {
  position: relative;
  padding-left: 12px;
  margin-bottom: 12px;
  font-size: 1.02rem;
  color: var(--text-light);
}

.content-wrapper ul li::before {
  content: '→';
  position: absolute;
  left: -20px;
  color: var(--secondary-color);
}

.content-wrapper ol {
  counter-reset: item;
  list-style: none;
}

.content-wrapper ol li {
  counter-increment: item;
}

.content-wrapper ol li::before {
  content: counter(item) '.';
  position: absolute;
  left: -24px;
  color: var(--primary-color);
  font-weight: 600;
}

/* Expert Tip Box */
.expert-tip {
  margin: 32px 0;
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--bg-warm) 0%, white 100%);
  border-left: 4px solid var(--secondary-color);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.expert-tip-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.expert-tip-header svg {
  width: 24px;
  height: 24px;
  color: var(--secondary-color);
}

.expert-tip-header span {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.expert-tip p {
  margin: 0;
  font-style: italic;
  color: var(--text-color);
}

/* Info Box */
.info-box {
  margin: 32px 0;
  padding: 24px;
  background: var(--bg-color);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.info-box.warning {
  background: #FFF9E6;
  border-color: #F1C40F;
}

.info-box.success {
  background: #E8F8F5;
  border-color: #27AE60;
}

.info-box-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--text-color);
}

.info-box-header svg {
  width: 20px;
  height: 20px;
}

.info-box p {
  margin: 0;
  font-size: 0.95rem;
}

/* Price Table */
.price-table {
  width: 100%;
  margin: 32px 0;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.price-table th,
.price-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.price-table th {
  background: var(--primary-color);
  color: white;
  font-weight: 600;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table tr:hover td {
  background: var(--bg-warm);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 20px 0;
  background: white;
  border-bottom: 1px solid var(--border-color);
  margin-top: var(--header-height);
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.breadcrumbs-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs-list li:not(:last-child)::after {
  content: '›';
  color: var(--text-light);
}

.breadcrumbs-list a {
  color: var(--text-light);
}

.breadcrumbs-list a:hover {
  color: var(--primary-color);
}

.breadcrumbs-list li:last-child {
  color: var(--primary-color);
  font-weight: 500;
}

/* Page Header */
.page-header {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-color) 100%);
  text-align: center;
}

.page-header h1 {
  margin-bottom: 16px;
}

.page-header p {
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto;
}

/* Discovery Widget Container */
.discovery-widget {
  padding: 80px 0;
  background: var(--bg-warm);
}

.discovery-widget h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* Schema Markup Hidden */
.schema-hidden {
  display: none !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .info-grid {
    gap: 40px;
  }
  
  .tips-grid {
    grid-template-columns: 1fr;
  }
  
  .summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .nav-list {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background: white;
    padding: 30px;
    gap: 0;
  }
  
  .nav-list.active {
    display: flex;
  }
  
  .nav-link {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .header-cta {
    display: none;
  }
  
  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 40px) 0 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .hero::before {
    width: 100%;
    height: 30%;
    top: auto;
    bottom: 0;
    mask-image: linear-gradient(to top, black 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, black 0%, transparent 100%);
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .info-image {
    order: -1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .summary-grid {
    grid-template-columns: 1fr;
  }
  
  .comparison-table {
    font-size: 0.9rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 12px 16px;
  }
  
  .tickets-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero-widget {
    padding: 16px;
  }
  
  .btn {
    padding: 14px 24px;
    width: 100%;
  }
  
  .btn-lg {
    padding: 16px 28px;
  }
  
  .content-section {
    padding: 60px 0;
  }
  
  .ticket-types,
  .info-section,
  .tips-section,
  .faq-section,
  .cta-section {
    padding: 60px 0;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .cta-section,
  .hero-widget,
  .btn {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .content-section {
    padding: 20px 0;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.animate-pulse {
  animation: pulse 2s ease infinite;
}
