/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2d2d2d;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #2D4263;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #C84B31 0%, #FFD93D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 32px;
  color: #2D4263;
}

h3 {
  font-size: 24px;
  color: #2D4263;
}

h4 {
  font-size: 18px;
  color: #2D4263;
}

p {
  margin-bottom: 16px;
  color: #2d2d2d;
}

a {
  color: #C84B31;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #FFD93D;
  transform: translateY(-2px);
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  color: #2d2d2d;
}

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

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

/* Header */
header {
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(200, 75, 49, 0.15);
  backdrop-filter: blur(10px);
}

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

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05) rotate(2deg);
}

/* Main Navigation */
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-weight: 600;
  font-size: 16px;
  color: #2D4263;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 217, 61, 0.2) 0%, rgba(200, 75, 49, 0.2) 100%);
  transition: left 0.3s ease;
  z-index: -1;
}

.main-nav a:hover::before {
  left: 0;
}

.main-nav a:hover {
  color: #C84B31;
  transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #C84B31 0%, #FFD93D 100%);
  color: white;
  border: none;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(200, 75, 49, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(200, 75, 49, 0.4);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #2D4263 0%, #1a2840 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  font-size: 32px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, #C84B31 0%, #FFD93D 100%);
  transform: translateX(10px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 217, 61, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: white;
  background: linear-gradient(135deg, #FFD93D 0%, white 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: #FFD93D;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-description {
  font-size: 18px;
  color: white;
  margin-bottom: 32px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.4s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
  padding: 60px 20px 40px;
  text-align: center;
}

.page-hero h1 {
  color: white;
  background: linear-gradient(135deg, #FFD93D 0%, white 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero .hero-subtitle {
  color: white;
  font-size: 18px;
}

.breadcrumb {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.breadcrumb a {
  color: #FFD93D;
}

.breadcrumb a:hover {
  color: white;
}

.last-updated {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-style: italic;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #C84B31 0%, #a63d26 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(200, 75, 49, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(200, 75, 49, 0.4);
  color: white;
}

.btn-secondary {
  background: linear-gradient(135deg, #2D4263 0%, #1a2840 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(45, 66, 99, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(45, 66, 99, 0.4);
  color: white;
}

.btn:active {
  transform: translateY(0);
}

/* Sections */
section {
  padding: 60px 20px;
  margin-bottom: 0;
  background: white;
  position: relative;
}

section:nth-child(even) {
  background: linear-gradient(135deg, rgba(255, 217, 61, 0.05) 0%, rgba(200, 75, 49, 0.05) 100%);
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Grids - Using Flexbox */
.values-grid,
.tours-grid,
.destinations-grid,
.features-grid,
.testimonials-grid,
.seasons-grid,
.contact-grid,
.booking-grid,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

/* Cards */
.value-item,
.tour-card,
.destination-card,
.feature-item,
.testimonial-card,
.season-item,
.contact-method,
.booking-type,
.step-item,
.destination-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.value-item::before,
.tour-card::before,
.destination-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #C84B31 0%, #FFD93D 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.value-item:hover::before,
.tour-card:hover::before,
.destination-card:hover::before {
  transform: scaleX(1);
}

.value-item:hover,
.tour-card:hover,
.destination-card:hover,
.feature-item:hover,
.testimonial-card:hover,
.season-item:hover,
.contact-method:hover,
.booking-type:hover,
.step-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(200, 75, 49, 0.2);
}

.tour-card h3,
.destination-card h2,
.value-item h3 {
  color: #2D4263;
  margin-bottom: 16px;
  font-size: 22px;
}

.tour-price,
.climate-info {
  font-size: 24px;
  font-weight: 700;
  color: #C84B31;
  margin: 16px 0;
}

.tour-duration,
.tour-difficulty,
.tour-group {
  font-size: 14px;
  color: #666;
  margin: 8px 0;
  font-weight: 600;
}

.tour-highlights {
  margin: 16px 0;
  padding-left: 0;
  list-style: none;
}

.tour-highlights li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #2d2d2d;
}

.tour-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFD93D;
  font-weight: 700;
  font-size: 18px;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, #2D4263 0%, #1a2840 100%);
  color: white;
  padding: 60px 20px;
}

.testimonials h2 {
  color: white;
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 32px;
  border-radius: 16px;
}

.testimonial-card p {
  color: white;
  font-style: italic;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.testimonial-author {
  color: #FFD93D;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
}

.rating {
  text-align: center;
  font-size: 18px;
  color: #FFD93D;
  font-weight: 600;
  margin-top: 32px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(200, 75, 49, 0.95) 0%, rgba(255, 217, 61, 0.95) 100%);
  padding: 60px 20px;
  text-align: center;
  color: white;
}

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

.cta-banner p {
  color: white;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-buttons,
.cta-center {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.urgency-note {
  margin-top: 24px;
  font-size: 14px;
  color: white;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.2);
  padding: 12px 24px;
  border-radius: 50px;
  display: inline-block;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #2D4263 0%, #1a2840 100%);
  color: white;
  padding: 60px 20px 20px;
}

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

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

.footer-section h3,
.footer-section h4 {
  color: #FFD93D;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  font-size: 14px;
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
  position: relative;
}

.footer-nav a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #FFD93D;
  padding-left: 20px;
}

.footer-nav a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  text-align: center;
}

.footer-legal {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.footer-legal a:hover {
  color: #FFD93D;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

/* Lists */
.highlights-list,
.certifications-list,
.practices-list,
.benefits-list,
.trust-list {
  list-style: none;
  padding-left: 0;
  margin: 24px 0;
}

.highlights-list li,
.certifications-list li,
.practices-list li,
.benefits-list li,
.trust-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
  border-bottom: 1px solid rgba(200, 75, 49, 0.1);
}

.highlights-list li::before,
.certifications-list li::before,
.practices-list li::before,
.benefits-list li::before,
.trust-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C84B31;
  font-weight: 700;
  font-size: 18px;
  background: linear-gradient(135deg, #FFD93D 0%, #C84B31 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Specific Sections */
.story,
.legal-content,
.tips-content,
.contact-info {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section,
.tip-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 2px solid rgba(200, 75, 49, 0.1);
}

.legal-section:last-child,
.tip-section:last-child {
  border-bottom: none;
}

blockquote {
  background: linear-gradient(135deg, rgba(255, 217, 61, 0.1) 0%, rgba(200, 75, 49, 0.1) 100%);
  border-left: 4px solid #C84B31;
  padding: 24px;
  margin: 32px 0;
  font-style: italic;
  font-size: 18px;
  border-radius: 8px;
}

.award,
.impact-stats,
.emergency,
.response-time,
.note {
  background: linear-gradient(135deg, rgba(255, 217, 61, 0.2) 0%, rgba(200, 75, 49, 0.1) 100%);
  padding: 16px 24px;
  border-radius: 8px;
  margin: 24px 0;
  font-weight: 600;
  border-left: 4px solid #FFD93D;
}

/* FAQ */
.faq-item {
  background: white;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(200, 75, 49, 0.15);
  transform: translateX(5px);
}

.faq-item h3 {
  color: #2D4263;
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #FFD93D 0%, #C84B31 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: white;
  margin: 0 auto 24px;
  animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
  from {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  to {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

.confirmation,
.next-steps,
.testimonial-feature,
.urgent-contact {
  padding: 60px 20px;
  text-align: center;
}

.timeline {
  background: linear-gradient(135deg, rgba(200, 75, 49, 0.1) 0%, rgba(255, 217, 61, 0.1) 100%);
  padding: 16px 24px;
  border-radius: 50px;
  display: inline-block;
  margin-top: 16px;
  font-weight: 600;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2D4263 0%, #1a2840 100%);
  color: white;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-consent.active {
  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;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  font-size: 14px;
}

.cookie-text a {
  color: #FFD93D;
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(135deg, #C84B31 0%, #FFD93D 100%);
  color: white;
}

.cookie-reject {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-settings {
  background: transparent;
  color: #FFD93D;
  border: 1px solid #FFD93D;
}

.cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Cookie Settings Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2001;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: white;
  max-width: 600px;
  width: 100%;
  border-radius: 16px;
  padding: 40px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: #C84B31;
  transform: rotate(90deg);
}

.cookie-category {
  padding: 20px;
  background: rgba(200, 75, 49, 0.05);
  border-radius: 8px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.cookie-category-info h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.cookie-category-info p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

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

.cookie-toggle.active {
  background: linear-gradient(135deg, #C84B31 0%, #FFD93D 100%);
}

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

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* Contact Form Display */
.form-info {
  background: linear-gradient(135deg, rgba(255, 217, 61, 0.1) 0%, rgba(200, 75, 49, 0.1) 100%);
  padding: 32px;
  border-radius: 12px;
  border: 2px solid rgba(200, 75, 49, 0.2);
}

.contact-fields {
  margin: 24px 0;
}

.contact-fields ul {
  list-style: none;
  padding-left: 0;
}

.contact-fields li {
  padding: 8px 0 8px 28px;
  position: relative;
}

.contact-fields li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #C84B31;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
  }
  
  .value-item,
  .tour-card,
  .destination-card,
  .feature-item,
  .testimonial-card,
  .season-item,
  .contact-method,
  .booking-type,
  .step-item {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .value-item,
  .tour-card,
  .destination-card,
  .season-item,
  .contact-method,
  .booking-type,
  .step-item {
    flex: 1 1 calc(50% - 24px);
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
.btn:focus {
  outline: 2px solid #FFD93D;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .cta-banner {
    display: none;
  }
}