/* ==========================================
   DIMENSIONAL WIDGET - VINTAGE RETRO CSS
   Journey Through Time Design System
   ========================================== */

/* CSS RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.7;
  color: #3E2723;
  background-color: #F5E6D3;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(139, 69, 19, 0.03) 2px, rgba(139, 69, 19, 0.03) 4px);
}

/* TYPOGRAPHY - VINTAGE STYLE */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  line-height: 1.3;
  color: #5C2D0C;
  margin-bottom: 16px;
  text-shadow: 2px 2px 0px rgba(212, 175, 55, 0.15);
}

h1 {
  font-size: 48px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h2 {
  font-size: 36px;
  letter-spacing: 1px;
}

h3 {
  font-size: 24px;
  letter-spacing: 0.5px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  color: #4A4A4A;
}

a {
  color: #8B4513;
  text-decoration: none;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 2px solid transparent;
}

a:hover {
  color: #C29A1F;
  border-bottom: 2px solid #C29A1F;
}

ul {
  list-style: none;
}

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

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================
   HEADER & NAVIGATION - VINTAGE STYLE
   ========================================== */
header {
  background: linear-gradient(180deg, #5C2D0C 0%, #3E2723 100%);
  padding: 20px 0;
  box-shadow: 0 4px 12px rgba(92, 45, 12, 0.4);
  border-bottom: 4px solid #C29A1F;
  position: relative;
}

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

.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(194, 154, 31, 0.5));
}

.main-nav {
  display: flex;
  gap: 12px;
  align-items: center;
}

.main-nav a {
  color: #F5E6D3;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #D4AF37;
  border-bottom: 3px solid #D4AF37;
  transform: translateY(-2px);
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #8B4513;
  color: #F5E6D3;
  border: 3px solid #C29A1F;
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 3px 3px 0px rgba(92, 45, 12, 0.6);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #C29A1F;
  transform: scale(1.05);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #5C2D0C 0%, #3E2723 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  transition: right 0.4s ease;
  border-left: 4px solid #C29A1F;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #C29A1F;
  color: #3E2723;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.mobile-menu-close:hover {
  background: #D4AF37;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  color: #F5E6D3;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 0;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #D4AF37;
  padding-left: 10px;
  border-bottom: 2px solid #D4AF37;
}

/* ==========================================
   HERO SECTION - VINTAGE ADVENTURE STYLE
   ========================================== */
.hero {
  background: linear-gradient(135deg, #8B4513 0%, #5C2D0C 50%, #3E2723 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 6px solid #C29A1F;
  box-shadow: inset 0 -20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(212, 175, 55, 0.05) 20px, rgba(212, 175, 55, 0.05) 40px);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #F5E6D3;
  margin-bottom: 24px;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.6);
}

.hero .subheadline,
.hero p {
  color: #E8D4B8;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: #D4AF37;
  border-bottom: none;
}

.breadcrumb a:hover {
  color: #F5E6D3;
}

/* CTA BUTTONS - VINTAGE STYLE */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid;
  text-decoration: none;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.3);
}

.btn-primary {
  background: #C29A1F;
  color: #3E2723;
  border-color: #8B4513;
}

.btn-primary:hover {
  background: #D4AF37;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.4);
  border-bottom: 3px solid #8B4513;
}

.btn-secondary {
  background: transparent;
  color: #F5E6D3;
  border-color: #D4AF37;
}

.btn-secondary:hover {
  background: #8B4513;
  color: #F5E6D3;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.4);
  border-bottom: 3px solid #D4AF37;
}

.btn-link {
  background: #8B4513;
  color: #F5E6D3;
  border-color: #5C2D0C;
  padding: 12px 24px;
  font-size: 14px;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
}

.btn-link:hover {
  background: #C29A1F;
  color: #3E2723;
  border-bottom: 3px solid #5C2D0C;
}

/* TRUST BADGE */
.trust-badge {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 24px;
  background: rgba(212, 175, 55, 0.2);
  border: 2px solid #D4AF37;
  border-radius: 30px;
  color: #F5E6D3;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================
   SECTIONS - VINTAGE PAPER STYLE
   ========================================== */
section {
  margin-bottom: 60px;
  padding: 60px 20px;
  background: #FAF3E8;
  border: 4px solid #C29A1F;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(92, 45, 12, 0.2);
  position: relative;
}

section::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dashed rgba(139, 69, 19, 0.3);
  pointer-events: none;
  border-radius: 4px;
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

section h2::after {
  content: '';
  display: block;
  width: 120px;
  height: 4px;
  background: #C29A1F;
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ==========================================
   GRID LAYOUTS - FLEXBOX ONLY
   ========================================== */
.benefits-grid,
.services-grid,
.testimonial-grid,
.collection-grid,
.routes-grid,
.cities-grid,
.theme-grid,
.features-grid,
.tours-grid,
.pricing-grid,
.packages-grid,
.stats-grid,
.values-grid,
.contact-grid,
.departments-list,
.steps-grid,
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

/* CARD STYLES - VINTAGE POSTCARD AESTHETIC */
.benefit-card,
.service-card,
.testimonial-card,
.collection-card,
.route-card,
.city-card,
.theme-card,
.feature-card,
.tour-card,
.pricing-card,
.package-card,
.stat-card,
.value-card,
.contact-card,
.step-card,
.explore-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #FFF9F0;
  padding: 32px;
  border: 3px solid #8B4513;
  border-radius: 8px;
  box-shadow: 5px 5px 0px rgba(139, 69, 19, 0.3);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card::before,
.service-card::before,
.collection-card::before,
.route-card::before,
.city-card::before,
.theme-card::before,
.feature-card::before,
.tour-card::before,
.pricing-card::before,
.package-card::before,
.value-card::before,
.contact-card::before {
  content: '★';
  position: absolute;
  top: 16px;
  right: 16px;
  color: #C29A1F;
  font-size: 24px;
}

.benefit-card:hover,
.service-card:hover,
.collection-card:hover,
.route-card:hover,
.city-card:hover,
.theme-card:hover,
.feature-card:hover,
.tour-card:hover,
.pricing-card:hover,
.package-card:hover,
.explore-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0px rgba(139, 69, 19, 0.4);
  border-color: #C29A1F;
}

.benefit-card h3,
.service-card h3,
.collection-card h3,
.route-card h3,
.city-card h3,
.theme-card h3,
.feature-card h3,
.tour-card h3,
.pricing-card h3,
.package-card h3,
.stat-card h3,
.value-card h3,
.contact-card h3 {
  color: #5C2D0C;
  margin-bottom: 16px;
}

.benefit-card p,
.service-card p,
.collection-card p,
.route-card p,
.city-card p,
.theme-card p,
.feature-card p,
.tour-card p,
.pricing-card p,
.package-card p,
.stat-card p,
.value-card p,
.contact-card p {
  color: #4A4A4A;
  line-height: 1.7;
}

/* TESTIMONIAL CARDS - SPECIAL STYLING */
.testimonial-card {
  background: #F0E6D2;
  border-color: #8B4513;
  padding: 32px;
  font-style: italic;
}

.testimonial-card p {
  color: #3E2723;
  margin-bottom: 16px;
  font-size: 16px;
}

.testimonial-card .author {
  font-weight: 700;
  font-style: normal;
  color: #5C2D0C;
  margin-top: 16px;
}

.testimonial-card .rating {
  color: #C29A1F;
  font-size: 18px;
  margin-top: 8px;
}

.aggregate-rating {
  text-align: center;
  font-weight: 700;
  color: #8B4513;
  margin-top: 32px;
  font-size: 18px;
}

/* SERVICE CARD PRICING */
.price,
.price-display {
  font-size: 24px;
  font-weight: 700;
  color: #C29A1F;
  margin: 16px 0;
  display: block;
}

.service-card ul,
.pricing-card ul {
  margin: 20px 0;
  padding-left: 0;
}

.service-card li,
.pricing-card li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #4A4A4A;
}

.service-card li::before,
.pricing-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8B4513;
  font-weight: 700;
}

/* SAVINGS & HIGHLIGHTS */
.savings {
  display: inline-block;
  padding: 6px 12px;
  background: #C29A1F;
  color: #3E2723;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  margin-top: 8px;
}

.offer-highlight {
  display: inline-block;
  padding: 12px 24px;
  background: #8B4513;
  color: #F5E6D3;
  border: 2px solid #C29A1F;
  border-radius: 6px;
  font-weight: 700;
  margin: 16px 0;
}

/* TRUST INDICATORS */
.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 2px dashed #C29A1F;
}

.trust-indicators span {
  font-weight: 700;
  color: #8B4513;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================
   BENEFITS & FEATURES LISTS
   ========================================== */
.benefits-list,
.expectations-list {
  margin: 24px 0;
  padding-left: 0;
}

.benefits-list li,
.expectations-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #4A4A4A;
  line-height: 1.7;
}

.benefits-list li::before,
.expectations-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #C29A1F;
  font-size: 20px;
  font-weight: 700;
}

/* ==========================================
   CTA SECTIONS - VINTAGE BANNER STYLE
   ========================================== */
.cta-section,
.cta-banner {
  background: linear-gradient(135deg, #8B4513 0%, #5C2D0C 100%);
  padding: 60px 20px;
  text-align: center;
  border: 4px solid #C29A1F;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(92, 45, 12, 0.4);
  margin-bottom: 60px;
}

.cta-section::before,
.cta-banner::before {
  display: none;
}

.cta-section h2,
.cta-banner h2 {
  color: #F5E6D3;
  margin-bottom: 24px;
}

.cta-section p,
.cta-banner p {
  color: #E8D4B8;
  font-size: 18px;
  margin-bottom: 32px;
}

.contact-info {
  color: #F5E6D3;
  font-size: 14px;
  margin-top: 24px;
}

/* ==========================================
   FOOTER - VINTAGE NEWSPAPER STYLE
   ========================================== */
footer {
  background: linear-gradient(180deg, #3E2723 0%, #2C1F1A 100%);
  color: #E8D4B8;
  padding: 60px 20px 30px;
  border-top: 6px solid #C29A1F;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-section h4 {
  color: #D4AF37;
  margin-bottom: 20px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  color: #C5B5A0;
  font-size: 14px;
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #C5B5A0;
  font-size: 14px;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.footer-nav a:hover {
  color: #D4AF37;
  padding-left: 8px;
  border-bottom: 1px solid #D4AF37;
}

.copyright {
  text-align: center;
  color: #9B8B7A;
  font-size: 14px;
  padding-top: 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

/* ==========================================
   CONTACT FORM STYLING
   ========================================== */
.contact-form-section {
  background: #FAF3E8;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: #FFF9F0;
  padding: 40px;
  border: 3px solid #8B4513;
  border-radius: 8px;
  box-shadow: 5px 5px 0px rgba(139, 69, 19, 0.3);
}

.form-note {
  text-align: center;
  color: #8B4513;
  margin-bottom: 32px;
  font-style: italic;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group label {
  font-weight: 700;
  color: #5C2D0C;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-placeholder {
  padding: 14px 16px;
  border: 2px solid #C29A1F;
  border-radius: 4px;
  background: #FFFBF5;
  color: #8B8B8B;
  font-size: 14px;
  min-height: 48px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #4A4A4A;
  text-transform: none;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #8B4513;
}

/* ==========================================
   THANK YOU PAGE STYLING
   ========================================== */
.confirmation-message {
  text-align: center;
  padding: 60px 20px;
}

.confirmation-icon {
  font-size: 72px;
  color: #4CAF50;
  margin: 24px 0;
}

.promo-code {
  display: inline-block;
  padding: 16px 32px;
  background: #C29A1F;
  border: 3px solid #8B4513;
  border-radius: 8px;
  font-size: 20px;
  margin: 16px 0;
  box-shadow: 4px 4px 0px rgba(139, 69, 19, 0.3);
}

.promo-code strong {
  color: #3E2723;
  font-size: 24px;
  letter-spacing: 2px;
}

.expiration {
  font-size: 14px;
  color: #8B4513;
  font-style: italic;
}

/* ==========================================
   LEGAL PAGES STYLING
   ========================================== */
.legal-content {
  background: #FAF3E8;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #FFF9F0;
  padding: 48px;
  border: 3px solid #8B4513;
  border-radius: 8px;
  box-shadow: 5px 5px 0px rgba(139, 69, 19, 0.3);
}

.content-wrapper h2 {
  color: #5C2D0C;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #C29A1F;
  text-align: left;
}

.content-wrapper h2::after {
  display: none;
}

.content-wrapper h3 {
  color: #8B4513;
  margin-top: 24px;
  margin-bottom: 12px;
}

.content-wrapper p {
  color: #4A4A4A;
  margin-bottom: 16px;
  line-height: 1.8;
}

.content-wrapper a {
  color: #8B4513;
  font-weight: 700;
  border-bottom: 1px solid #C29A1F;
}

.content-wrapper a:hover {
  color: #C29A1F;
}

/* ==========================================
   COOKIE CONSENT BANNER
   ========================================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #3E2723 0%, #2C1F1A 100%);
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  border-top: 4px solid #C29A1F;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 400px;
  color: #E8D4B8;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid;
  background: #C29A1F;
  color: #3E2723;
  border-color: #8B4513;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
}

.cookie-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.4);
}

.cookie-btn.secondary {
  background: transparent;
  color: #E8D4B8;
  border-color: #C29A1F;
}

.cookie-btn.settings {
  background: #8B4513;
  color: #F5E6D3;
  border-color: #C29A1F;
}

/* COOKIE SETTINGS MODAL */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#cookie-modal.show {
  display: flex;
}

.modal-content {
  background: #FAF3E8;
  padding: 40px;
  border-radius: 8px;
  border: 4px solid #C29A1F;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #C29A1F;
  color: #3E2723;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: #8B4513;
  color: #F5E6D3;
  transform: rotate(90deg);
}

.cookie-category {
  margin: 24px 0;
  padding: 20px;
  background: #FFF9F0;
  border: 2px solid #C29A1F;
  border-radius: 6px;
}

.cookie-category h3 {
  color: #5C2D0C;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  color: #4A4A4A;
  font-size: 14px;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background: #CCC;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #8B4513;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: left 0.3s ease;
}

.cookie-toggle.active::after {
  left: 27px;
}

.modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ========================================== */
@media (max-width: 768px) {
  /* Typography scaling */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Header adjustments */
  header .container {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .logo img {
    height: 50px;
  }
  
  /* Hero section */
  .hero {
    padding: 60px 20px;
  }
  
  /* Button stacking */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary,
  .btn-link {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  
  /* Cards full width on mobile */
  .benefit-card,
  .service-card,
  .testimonial-card,
  .collection-card,
  .route-card,
  .city-card,
  .theme-card,
  .feature-card,
  .tour-card,
  .pricing-card,
  .package-card,
  .stat-card,
  .value-card,
  .contact-card,
  .step-card,
  .explore-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Section padding */
  section {
    padding: 40px 20px;
    margin-bottom: 40px;
  }
  
  /* Footer stacking */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie banner stacking */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Form adjustments */
  .form-container {
    padding: 24px;
  }
  
  /* Trust indicators stacking */
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .benefit-card,
  .service-card,
  .collection-card,
  .route-card,
  .city-card,
  .theme-card,
  .feature-card,
  .tour-card,
  .pricing-card,
  .package-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .main-nav {
    gap: 20px;
  }
  
  .main-nav a {
    font-size: 14px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .cta-section,
  .cta-banner {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}

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

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

/* ACCESSIBILITY FOCUS STYLES */
*:focus {
  outline: 3px solid #C29A1F;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 3px solid #D4AF37;
  outline-offset: 3px;
}

/* HIGH CONTRAST MODE SUPPORT */
@media (prefers-contrast: high) {
  body {
    background: white;
    color: black;
  }
  
  .hero {
    background: #000;
  }
  
  .hero h1,
  .hero p {
    color: white;
  }
}

/* REDUCED MOTION SUPPORT */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}