/* ============================================
   ALPENPANORAMA EXPRESS - NATURE ORGANIC DESIGN
   CSS Stylesheet with Flexbox Layouts Only
   ============================================ */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.7;
  color: #2C3E2F;
  background-color: #F8FAF7;
  overflow-x: hidden;
}

/* ============================================
   NATURE ORGANIC COLOR SCHEME
   ============================================ */

:root {
  --primary-green: #1A4D2E;
  --secondary-gold: #C9A959;
  --accent-mint: #E8F3F1;
  --earth-brown: #6B5D4F;
  --forest-dark: #0F2C1B;
  --sage-green: #8BA888;
  --cream: #FFF8F0;
  --moss: #4A6741;
  --stone-gray: #B5B5A8;
  --text-dark: #2C3E2F;
  --white: #FFFFFF;
}

/* ============================================
   TYPOGRAPHY - NATURE INSPIRED
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-green);
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

h4 {
  font-size: 22px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: var(--text-dark);
  font-size: 16px;
}

a {
  color: var(--primary-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary-gold);
}

strong {
  font-weight: 700;
  color: var(--forest-dark);
}

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

li {
  margin-bottom: 10px;
  line-height: 1.7;
}

/* ============================================
   CONTAINER & LAYOUT - FLEXBOX ONLY
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

section {
  padding: 60px 20px;
  margin-bottom: 40px;
}

/* ============================================
   HEADER & NAVIGATION - ORGANIC SHAPES
   ============================================ */

header {
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(26, 77, 46, 0.08);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 2px solid var(--accent-mint);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
}

.main-nav img {
  height: 50px;
  width: auto;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  flex-wrap: wrap;
  align-items: center;
}

.main-nav li {
  margin: 0;
}

.main-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-green);
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--secondary-gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav a:hover {
  color: var(--secondary-gold);
  background-color: var(--accent-mint);
}

.main-nav a:hover::after {
  width: 80%;
}

/* ============================================
   MOBILE MENU - SLIDE IN ANIMATION
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background-color: var(--primary-green);
  color: var(--white);
  border: none;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(26, 77, 46, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: var(--moss);
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--forest-dark) 100%);
  z-index: 1001;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

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

.mobile-nav a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-left-color: var(--secondary-gold);
  transform: translateX(8px);
}

/* ============================================
   HERO SECTION - ORGANIC CURVES
   ============================================ */

.hero {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--moss) 100%);
  color: var(--white);
  padding: 80px 20px;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 60% 40% 50% 50%;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background-color: rgba(201, 169, 89, 0.1);
  border-radius: 50% 60% 40% 50%;
  z-index: 0;
}

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

.hero h1 {
  color: var(--white);
  font-size: 52px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.hero p {
  color: var(--accent-mint);
  font-size: 20px;
  margin-bottom: 32px;
  max-width: 700px;
}

/* ============================================
   BREADCRUMB - NATURAL PATH
   ============================================ */

.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--accent-mint);
}

.breadcrumb a {
  color: var(--accent-mint);
  text-decoration: underline;
}

.breadcrumb a:hover {
  color: var(--secondary-gold);
}

/* ============================================
   BUTTONS - ORGANIC ROUNDED SHAPES
   ============================================ */

.btn, .btn-primary, .btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--secondary-gold);
  color: var(--forest-dark);
  box-shadow: 0 4px 12px rgba(201, 169, 89, 0.3);
}

.btn-primary:hover {
  background-color: #D4B666;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(201, 169, 89, 0.4);
}

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

.btn-secondary:hover {
  background-color: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
}

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

.hero .btn-primary:hover {
  background-color: var(--secondary-gold);
  color: var(--forest-dark);
}

.hero .btn-secondary {
  border-color: var(--white);
  color: var(--white);
}

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

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin: 24px 0;
  justify-self: center;
}

/* ============================================
   TRUST BADGES - ORGANIC DESIGN
   ============================================ */

.trust-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}

.trust-badges div {
  background-color: var(--accent-mint);
  color: var(--primary-green);
  padding: 12px 24px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  border: 2px solid var(--sage-green);
}

/* ============================================
   STATS GRID - FLEXBOX LAYOUT
   ============================================ */

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  justify-content: space-between;
}

.stat {
  flex: 1 1 200px;
  background-color: var(--white);
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(26, 77, 46, 0.08);
  border: 2px solid var(--accent-mint);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(26, 77, 46, 0.12);
  border-color: var(--sage-green);
}

.stat strong {
  display: block;
  font-size: 36px;
  color: var(--secondary-gold);
  font-family: 'Playfair Display', serif;
  margin-bottom: 8px;
}

.stat span {
  display: block;
  color: var(--primary-green);
  font-size: 14px;
  font-weight: 600;
}

/* ============================================
   ROUTE CARDS - ORGANIC CARD DESIGN
   ============================================ */

.route-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  justify-content: space-between;
}

.route-card {
  flex: 1 1 300px;
  background-color: var(--white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(26, 77, 46, 0.1);
  border: 2px solid var(--accent-mint);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
}

.route-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(26, 77, 46, 0.15);
  border-color: var(--secondary-gold);
}

.route-card h3 {
  color: var(--primary-green);
  font-size: 24px;
  margin-bottom: 16px;
}

.route-card p {
  color: var(--text-dark);
  margin-bottom: 16px;
  flex-grow: 1;
}

.route-card ul {
  list-style: none;
  margin: 16px 0;
  padding: 0;
}

.route-card li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-dark);
}

.route-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage-green);
  font-weight: bold;
}

.route-card .price {
  font-size: 28px;
  color: var(--secondary-gold);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin: 16px 0;
}

.route-card .btn {
  width: 100%;
  margin-top: 16px;
  background-color: var(--primary-green);
  color: var(--white);
}

.route-card .btn:hover {
  background-color: var(--moss);
}

/* ============================================
   DETAILED ROUTE ITEMS
   ============================================ */

.route-detailed {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.route-item {
  background-color: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 16px rgba(26, 77, 46, 0.1);
  border-left: 6px solid var(--secondary-gold);
  margin-bottom: 24px;
}

.route-item .tagline {
  font-style: italic;
  color: var(--sage-green);
  font-size: 16px;
  margin-bottom: 16px;
}

.route-item h3 {
  font-size: 32px;
  margin-bottom: 12px;
}

.route-item ul {
  margin: 20px 0;
}

/* ============================================
   HIGHLIGHTS GRID - FLEXBOX
   ============================================ */

.highlights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  justify-content: space-between;
}

.highlight {
  flex: 1 1 250px;
  text-align: center;
  padding: 32px 24px;
  background-color: var(--accent-mint);
  border-radius: 20px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.highlight:hover {
  transform: translateY(-4px);
  background-color: var(--white);
  box-shadow: 0 8px 20px rgba(26, 77, 46, 0.12);
}

.highlight img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(18%) sepia(35%) saturate(1820%) hue-rotate(103deg) brightness(93%) contrast(95%);
}

.highlight h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary-green);
}

.highlight p {
  font-size: 14px;
  color: var(--text-dark);
}

/* ============================================
   FEATURES GRID
   ============================================ */

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  justify-content: space-between;
}

.feature {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 28px;
  background-color: var(--white);
  border-radius: 16px;
  border: 2px solid var(--accent-mint);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.feature:hover {
  border-color: var(--sage-green);
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(26, 77, 46, 0.1);
}

.feature img {
  width: 50px;
  height: 50px;
  filter: invert(18%) sepia(35%) saturate(1820%) hue-rotate(103deg) brightness(93%) contrast(95%);
}

.feature h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.feature p {
  font-size: 14px;
  margin-bottom: 0;
}

/* ============================================
   TESTIMONIALS - READABLE DESIGN
   ============================================ */

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  justify-content: space-between;
}

.testimonial-card {
  flex: 1 1 300px;
  background-color: var(--cream);
  padding: 32px;
  border-radius: 20px;
  border-left: 4px solid var(--secondary-gold);
  box-shadow: 0 4px 12px rgba(26, 77, 46, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-style: italic;
  color: var(--forest-dark);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-card strong {
  color: var(--primary-green);
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
}

.testimonial-card span {
  color: var(--earth-brown);
  font-size: 14px;
  display: block;
}

.testimonial-card .rating {
  color: var(--secondary-gold);
  font-size: 18px;
  margin-top: 8px;
}

/* ============================================
   PACKAGES - FEATURED DESIGN
   ============================================ */

.packages {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  justify-content: space-between;
}

.package-featured {
  flex: 1 1 100%;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--moss) 100%);
  color: var(--white);
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(26, 77, 46, 0.2);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.package-featured::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.package-featured .badge {
  display: inline-block;
  background-color: var(--secondary-gold);
  color: var(--forest-dark);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.package-featured h3 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 16px;
}

.package-featured .tagline {
  color: var(--accent-mint);
  font-size: 18px;
  font-style: italic;
  margin-bottom: 20px;
}

.package-featured p {
  color: var(--accent-mint);
  margin-bottom: 16px;
}

.package-featured h4 {
  color: var(--white);
  font-size: 22px;
  margin-top: 24px;
  margin-bottom: 16px;
}

.package-featured ul {
  margin: 16px 0;
  list-style: none;
}

.package-featured li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--accent-mint);
}

.package-featured li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-gold);
  font-weight: bold;
  font-size: 18px;
}

.package-featured .price {
  font-size: 40px;
  color: var(--secondary-gold);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin: 24px 0;
}

.package-featured .btn-primary {
  background-color: var(--white);
  color: var(--primary-green);
  margin-top: 24px;
}

.package {
  flex: 1 1 300px;
  background-color: var(--white);
  padding: 32px;
  border-radius: 20px;
  border: 2px solid var(--accent-mint);
  box-shadow: 0 4px 12px rgba(26, 77, 46, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.package:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(26, 77, 46, 0.12);
  border-color: var(--sage-green);
}

.package h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.package .price {
  font-size: 28px;
  color: var(--secondary-gold);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin: 16px 0;
}

/* ============================================
   PACKAGES GRID
   ============================================ */

.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  justify-content: space-between;
}

/* ============================================
   THEMED PACKAGES
   ============================================ */

.themed-packages {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  justify-content: space-between;
}

.theme {
  flex: 1 1 300px;
  background-color: var(--accent-mint);
  padding: 32px;
  border-radius: 20px;
  border-left: 4px solid var(--primary-green);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.theme:hover {
  background-color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(26, 77, 46, 0.1);
}

.theme h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.theme .price {
  font-size: 24px;
  color: var(--secondary-gold);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin-top: 16px;
}

/* ============================================
   SEASONS GRID
   ============================================ */

.seasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  justify-content: space-between;
}

.season {
  flex: 1 1 240px;
  background-color: var(--white);
  padding: 28px;
  border-radius: 16px;
  border: 2px solid var(--accent-mint);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.season:hover {
  border-color: var(--secondary-gold);
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(26, 77, 46, 0.1);
}

.season h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.season p {
  font-size: 14px;
  margin-bottom: 8px;
}

.season strong {
  color: var(--primary-green);
  font-size: 15px;
}

/* ============================================
   SEASONS GALLERY
   ============================================ */

.seasons-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  justify-content: space-between;
}

.season-item {
  flex: 1 1 240px;
  background-color: var(--accent-mint);
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.season-item:hover {
  background-color: var(--white);
  box-shadow: 0 6px 16px rgba(26, 77, 46, 0.1);
  transform: translateY(-4px);
}

.season-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

/* ============================================
   CLASS ITEMS
   ============================================ */

.class-item {
  background-color: var(--white);
  padding: 40px;
  border-radius: 20px;
  border-left: 6px solid var(--sage-green);
  margin-bottom: 32px;
  box-shadow: 0 4px 12px rgba(26, 77, 46, 0.08);
}

.class-item .tagline {
  color: var(--sage-green);
  font-style: italic;
  font-size: 16px;
  margin-bottom: 16px;
}

.class-item h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.class-item ul {
  margin: 20px 0;
  list-style: none;
}

.class-item li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
}

.class-item li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage-green);
  font-weight: bold;
}

.class-item .price {
  font-size: 24px;
  color: var(--secondary-gold);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin-top: 16px;
}

/* ============================================
   VALUES & FACTS GRID
   ============================================ */

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  justify-content: space-between;
}

.value {
  flex: 1 1 240px;
  background-color: var(--accent-mint);
  padding: 28px;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 20px;
}

.value h4 {
  font-size: 20px;
  color: var(--primary-green);
  margin-bottom: 12px;
}

.value p {
  font-size: 14px;
}

.facts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
  justify-content: space-between;
}

.fact {
  flex: 1 1 200px;
  background-color: var(--primary-green);
  color: var(--white);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 20px;
}

/* ============================================
   TIMELINE
   ============================================ */

.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px 0;
  padding-left: 32px;
  border-left: 3px solid var(--secondary-gold);
}

.timeline-item {
  position: relative;
  padding: 16px 24px;
  background-color: var(--accent-mint);
  border-radius: 12px;
  margin-bottom: 12px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: var(--secondary-gold);
  border-radius: 50%;
  border: 3px solid var(--white);
}

.timeline-item strong {
  color: var(--primary-green);
  font-size: 18px;
  font-family: 'Playfair Display', serif;
}

/* ============================================
   LISTS - ORGANIC STYLE
   ============================================ */

.awards-list {
  list-style: none;
  margin: 32px 0;
  padding: 0;
}

.awards-list li {
  padding: 16px 20px;
  padding-left: 40px;
  background-color: var(--accent-mint);
  border-radius: 12px;
  margin-bottom: 12px;
  position: relative;
  transition: all 0.3s ease;
}

.awards-list li::before {
  content: '★';
  position: absolute;
  left: 16px;
  color: var(--secondary-gold);
  font-size: 20px;
}

.awards-list li:hover {
  background-color: var(--white);
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(26, 77, 46, 0.08);
}

.sustainability-list {
  list-style: none;
  margin: 32px 0;
  padding: 0;
}

.sustainability-list li {
  padding: 16px 20px;
  padding-left: 40px;
  background-color: var(--white);
  border-radius: 12px;
  margin-bottom: 12px;
  position: relative;
  border: 2px solid var(--accent-mint);
  transition: all 0.3s ease;
}

.sustainability-list li::before {
  content: '🌱';
  position: absolute;
  left: 16px;
  font-size: 18px;
}

.sustainability-list li:hover {
  border-color: var(--sage-green);
  transform: translateX(8px);
}

.landmarks-list {
  list-style: none;
  margin: 32px 0;
  padding: 0;
}

.landmarks-list li {
  padding: 16px 20px;
  padding-left: 40px;
  background-color: var(--cream);
  border-radius: 12px;
  margin-bottom: 12px;
  position: relative;
  border-left: 4px solid var(--secondary-gold);
}

.landmarks-list li::before {
  content: '🏔';
  position: absolute;
  left: 16px;
  font-size: 18px;
}

/* ============================================
   GALLERY FILTERS
   ============================================ */

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
  justify-content: center;
}

.gallery-filters button {
  padding: 12px 24px;
  background-color: var(--accent-mint);
  color: var(--primary-green);
  border: 2px solid var(--sage-green);
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-filters button:hover {
  background-color: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   MOMENTS & GALLERY GRID
   ============================================ */

.moments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  justify-content: space-between;
}

.moment {
  flex: 1 1 300px;
  background-color: var(--white);
  padding: 28px;
  border-radius: 16px;
  border: 2px solid var(--accent-mint);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.moment:hover {
  border-color: var(--secondary-gold);
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(26, 77, 46, 0.1);
}

.moment h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.moment .location {
  color: var(--sage-green);
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
  display: block;
}

/* ============================================
   CONTACT OPTIONS
   ============================================ */

.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  justify-content: space-between;
}

.contact-option {
  flex: 1 1 300px;
  background-color: var(--accent-mint);
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-option:hover {
  background-color: var(--white);
  box-shadow: 0 6px 16px rgba(26, 77, 46, 0.1);
  transform: translateY(-4px);
}

.contact-option img {
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  filter: invert(18%) sepia(35%) saturate(1820%) hue-rotate(103deg) brightness(93%) contrast(95%);
}

.contact-option h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.contact-option strong {
  color: var(--secondary-gold);
  font-size: 16px;
}

/* ============================================
   OFFICE INFO
   ============================================ */

.office-info {
  background-color: var(--white);
  padding: 40px;
  border-radius: 20px;
  border-left: 6px solid var(--secondary-gold);
  margin: 32px 0;
  box-shadow: 0 4px 12px rgba(26, 77, 46, 0.08);
}

.office-info h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.office-info h4 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--primary-green);
}

/* ============================================
   FAQ
   ============================================ */

.faq {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px 0;
}

.faq-item {
  background-color: var(--white);
  padding: 28px;
  border-radius: 16px;
  border-left: 4px solid var(--sage-green);
  box-shadow: 0 4px 12px rgba(26, 77, 46, 0.08);
  margin-bottom: 12px;
}

.faq-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary-green);
}

.faq-item p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================
   STEPS
   ============================================ */

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  justify-content: space-between;
}

.step {
  flex: 1 1 220px;
  background-color: var(--accent-mint);
  padding: 28px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 20px;
  color: var(--primary-green);
  margin-bottom: 12px;
}

.step p {
  font-size: 14px;
  margin-bottom: 0;
}

/* ============================================
   SUGGESTIONS GRID
   ============================================ */

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  justify-content: space-between;
}

.suggestion {
  flex: 1 1 240px;
  background-color: var(--white);
  padding: 28px;
  border-radius: 16px;
  border: 2px solid var(--accent-mint);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.suggestion:hover {
  border-color: var(--sage-green);
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(26, 77, 46, 0.1);
}

.suggestion h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.suggestion .btn {
  margin-top: 16px;
  background-color: var(--primary-green);
  color: var(--white);
}

/* ============================================
   CONTACT INFO
   ============================================ */

.contact-info {
  background-color: var(--accent-mint);
  padding: 32px;
  border-radius: 16px;
  margin: 32px 0;
  text-align: center;
}

.contact-info p {
  margin-bottom: 12px;
  color: var(--text-dark);
  font-size: 15px;
}

/* ============================================
   SOCIAL LINKS
   ============================================ */

.social-links {
  margin: 32px 0;
  text-align: center;
}

.social-links p {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--primary-green);
  font-weight: 600;
}

/* ============================================
   SUCCESS ICON
   ============================================ */

.success-icon {
  width: 80px;
  height: 80px;
  background-color: var(--sage-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 12px rgba(138, 168, 136, 0.3);
}

/* ============================================
   TABLE - ORGANIC DESIGN
   ============================================ */

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 32px 0;
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(26, 77, 46, 0.08);
}

th {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 16px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
}

td {
  padding: 16px;
  border-bottom: 1px solid var(--accent-mint);
  color: var(--text-dark);
  font-size: 14px;
}

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

tr:hover {
  background-color: var(--accent-mint);
}

/* ============================================
   CTA SECTION - ORGANIC GRADIENT
   ============================================ */

.cta-section {
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--primary-green) 100%);
  color: var(--white);
  padding: 80px 20px;
  border-radius: 32px;
  margin: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-section h2 {
  color: var(--white);
  font-size: 40px;
  margin-bottom: 20px;
}

.cta-section p {
  color: var(--accent-mint);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FOOTER - NATURAL EARTH TONES
   ============================================ */

footer {
  background-color: var(--forest-dark);
  color: var(--accent-mint);
  padding: 60px 20px 32px;
  margin-top: 80px;
}

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

.footer-section {
  flex: 1 1 220px;
}

.footer-section img {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
  color: var(--secondary-gold);
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-section p {
  color: var(--accent-mint);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: var(--accent-mint);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--secondary-gold);
}

.copyright {
  text-align: center;
  color: var(--stone-gray);
  font-size: 13px;
  padding-top: 32px;
  border-top: 1px solid rgba(232, 243, 241, 0.1);
  margin-top: 32px;
}

/* ============================================
   COOKIE CONSENT BANNER - ORGANIC DESIGN
   ============================================ */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--forest-dark) 100%);
  color: var(--white);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid var(--secondary-gold);
}

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

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

.cookie-text {
  flex: 1 1 300px;
}

.cookie-text p {
  color: var(--accent-mint);
  margin-bottom: 8px;
  font-size: 14px;
}

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

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

#accept-cookies {
  background-color: var(--secondary-gold);
  color: var(--forest-dark);
}

#accept-cookies:hover {
  background-color: #D4B666;
  transform: translateY(-2px);
}

#reject-cookies {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

#reject-cookies:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

#cookie-settings {
  background-color: transparent;
  color: var(--accent-mint);
  text-decoration: underline;
  border: none;
  padding: 12px 16px;
}

#cookie-settings:hover {
  color: var(--secondary-gold);
}

/* ============================================
   COOKIE MODAL - ORGANIC POPUP
   ============================================ */

#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

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

.cookie-modal-content {
  background-color: var(--white);
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--accent-mint);
  color: var(--primary-green);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background-color: var(--primary-green);
  color: var(--white);
  transform: rotate(90deg);
}

.cookie-modal-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary-green);
}

.cookie-category {
  background-color: var(--accent-mint);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
  border-left: 4px solid var(--sage-green);
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  font-size: 14px;
  margin-bottom: 0;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background-color: var(--stone-gray);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background-color: var(--sage-green);
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--white);
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  transform: translateX(24px);
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.cookie-modal-buttons button {
  flex: 1 1 140px;
  padding: 14px 24px;
  border: none;
  border-radius: 24px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#save-cookie-preferences {
  background-color: var(--primary-green);
  color: var(--white);
}

#save-cookie-preferences:hover {
  background-color: var(--moss);
  transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

@media (max-width: 768px) {
  /* Mobile Navigation */
  .main-nav ul {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Typography */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 38px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  /* Sections */
  section {
    padding: 40px 16px;
  }
  
  .hero {
    padding: 60px 16px;
  }
  
  /* Flexbox layouts - mobile stacking */
  .stats-grid,
  .route-cards,
  .highlights-grid,
  .features-grid,
  .testimonials,
  .packages,
  .seasons-grid,
  .values-grid,
  .facts-grid,
  .contact-options,
  .moments-grid,
  .suggestions-grid,
  .footer-content {
    flex-direction: column;
  }
  
  .stat,
  .route-card,
  .highlight,
  .feature,
  .testimonial-card,
  .package,
  .season,
  .value,
  .fact,
  .contact-option,
  .moment,
  .suggestion,
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* CTA Buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }
  
  /* Package Featured */
  .package-featured {
    padding: 32px 24px;
  }
  
  .package-featured h3 {
    font-size: 28px;
  }
  
  .package-featured .price {
    font-size: 32px;
  }
  
  /* CTA Section */
  .cta-section {
    padding: 60px 20px;
    border-radius: 20px;
  }
  
  .cta-section h2 {
    font-size: 32px;
  }
  
  /* Footer */
  footer {
    padding: 40px 16px 24px;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    padding: 32px 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons button {
    width: 100%;
  }
  
  /* Tables */
  table {
    font-size: 12px;
  }
  
  th, td {
    padding: 12px 8px;
  }
  
  /* Timeline */
  .timeline {
    padding-left: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .container {
    padding: 0 32px;
  }
  
  h1 {
    font-size: 42px;
  }
  
  .hero h1 {
    font-size: 46px;
  }
  
  /* 2-column layouts on tablet */
  .stats-grid,
  .highlights-grid,
  .features-grid {
    justify-content: flex-start;
  }
  
  .stat,
  .highlight,
  .feature {
    flex: 1 1 calc(50% - 12px);
  }
  
  .route-cards {
    justify-content: flex-start;
  }
  
  .route-card {
    flex: 1 1 calc(50% - 12px);
  }
}

/* ============================================
   SMOOTH ANIMATIONS & TRANSITIONS
   ============================================ */

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Apply animations on scroll */
section {
  animation: fadeIn 0.6s ease-out;
}

.route-card,
.package,
.testimonial-card {
  animation: scaleIn 0.5s ease-out;
}

/* ============================================
   ACCESSIBILITY & FOCUS STATES
   ============================================ */

*:focus {
  outline: 3px solid var(--secondary-gold);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 3px solid var(--secondary-gold);
  outline-offset: 2px;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal {
    display: none !important;
  }
  
  header {
    position: static;
  }
  
  .hero {
    background: var(--white);
    color: var(--primary-green);
  }
  
  a {
    text-decoration: underline;
  }
}

/* ============================================
   END OF STYLESHEET
   ============================================ */
