/* ==========================================
   LUMINARY VEIL - PLAYFUL DYNAMIC CSS
   Design Style: Playful and Dynamic
   ========================================== */

/* CSS RESET & BASE */
* {
  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', Arial, sans-serif;
  line-height: 1.7;
  color: #2C3E50;
  background: linear-gradient(135deg, #FFF5E6 0%, #FFFFFF 100%);
  overflow-x: hidden;
}

/* PLAYFUL TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1E5631;
  text-shadow: 2px 2px 4px rgba(200, 16, 46, 0.1);
}

h1 {
  font-size: 48px;
  color: #C8102E;
  animation: bounceIn 0.8s ease-out;
}

h2 {
  font-size: 38px;
  color: #1E5631;
}

h3 {
  font-size: 28px;
  color: #C8102E;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
}

a {
  color: #C8102E;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

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

/* ANIMATIONS */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(-10deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.05) rotate(2deg);
  }
  70% {
    transform: scale(0.9) rotate(-1deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

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

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

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

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
header {
  background: linear-gradient(135deg, #C8102E 0%, #A00D25 100%);
  padding: 20px 0;
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.3);
  position: sticky;
  top: 0;
  z-index: 999;
  animation: slideInLeft 0.6s ease-out;
}

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

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

.logo:hover img {
  transform: scale(1.1) rotate(5deg);
  animation: wiggle 0.5s ease;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-menu a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-menu a::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.4s ease, height 0.4s ease;
  z-index: -1;
}

.nav-menu a:hover::before {
  width: 200%;
  height: 200%;
}

.nav-menu a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  color: #FFF;
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #C8102E;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(200, 16, 46, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #A00D25;
  transform: rotate(90deg) scale(1.1);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #C8102E 0%, #A00D25 100%);
  z-index: 1000;
  padding: 80px 40px 40px;
  box-shadow: -8px 0 32px 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.2);
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

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

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-left-color: #F4E8D8;
  transform: translateX(10px);
}

/* ==========================================
   BUTTONS - PLAYFUL & DYNAMIC
   ========================================== */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.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.5s ease, height 0.5s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #C8102E 0%, #A00D25 100%);
  color: #FFFFFF;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #A00D25 0%, #800A1E 100%);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(200, 16, 46, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #1E5631 0%, #164226 100%);
  color: #FFFFFF;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #164226 0%, #0F2E1A 100%);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(30, 86, 49, 0.4);
}

.btn-link {
  color: #C8102E;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.btn-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #C8102E;
  transition: width 0.3s ease;
}

.btn-link:hover::after {
  width: 100%;
}

.btn-link:hover {
  color: #A00D25;
  transform: translateX(5px);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero .cta-buttons {
      justify-content: center;
}

/* ==========================================
   HERO SECTION - DYNAMIC & ENERGETIC
   ========================================== */
.hero {
  background: linear-gradient(135deg, #C8102E 0%, #1E5631 100%);
  padding: 100px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244, 232, 216, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(244, 232, 216, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: slideInLeft 0.8s ease-out;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
  animation: bounceIn 1s ease-out;
}

.hero-subtitle {
  color: #F4E8D8;
  font-size: 20px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.trust-badges span {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.trust-badges span:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px) scale(1.05);
}

/* ==========================================
   PAGE HERO - PLAYFUL BREADCRUMBS
   ========================================== */
.page-hero {
  background: linear-gradient(135deg, #1E5631 0%, #C8102E 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '🏔️';
  position: absolute;
  top: 20px;
  right: 10%;
  font-size: 80px;
  opacity: 0.2;
  animation: float 5s ease-in-out infinite;
}

.breadcrumbs {
  margin-bottom: 20px;
  font-size: 14px;
  color: #F4E8D8;
}

.breadcrumbs a {
  color: #F4E8D8;
  transition: all 0.3s ease;
}

.breadcrumbs a:hover {
  color: #FFFFFF;
}

.page-hero h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.page-hero p {
  color: #F4E8D8;
  font-size: 18px;
}

/* ==========================================
   SECTIONS - PLAYFUL SPACING
   ========================================== */
section {
  margin-bottom: 80px;
  padding: 40px 20px;
  position: relative;
}

.section-subtitle {
  text-align: center;
  color: #5A6C7D;
  font-size: 18px;
  margin-bottom: 40px;
}

/* ==========================================
   CARDS - DYNAMIC & COLORFUL
   ========================================== */
.product-card,
.benefit-card,
.destination-card,
.testimonial-card,
.feature-card,
.blog-card,
.stat-card,
.region-card,
.trail-card,
.attraction-card,
.method-card,
.info-card,
.suggestion-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 3px solid transparent;
  position: relative;
  margin-bottom: 24px;
}

.product-card:hover,
.benefit-card:hover,
.destination-card:hover,
.feature-card:hover,
.blog-card:hover,
.region-card:hover,
.trail-card:hover,
.attraction-card:hover,
.method-card:hover,
.info-card:hover,
.suggestion-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 16px 40px rgba(200, 16, 46, 0.3);
  border-color: #C8102E;
}

.product-card img,
.benefit-card img,
.feature-card img,
.method-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.product-card:hover img,
.benefit-card:hover img,
.feature-card:hover img,
.method-card:hover img {
  transform: scale(1.2) rotate(15deg);
  animation: wiggle 0.5s ease;
}

.product-card h3,
.benefit-card h3,
.destination-card h3,
.feature-card h3,
.blog-card h3,
.region-card h3,
.trail-card h3,
.attraction-card h3,
.method-card h3,
.suggestion-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #C8102E;
}

.product-card p,
.benefit-card p,
.destination-card p,
.feature-card p,
.blog-card p,
.region-card p,
.trail-card p,
.attraction-card p,
.method-card p,
.suggestion-card p {
  color: #5A6C7D;
  margin-bottom: 16px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #1E5631;
  margin-top: 16px;
  display: block;
}

/* TESTIMONIAL CARDS - BRIGHT & READABLE */
.testimonial-card {
  background: linear-gradient(135deg, #F4E8D8 0%, #FFFFFF 100%);
  border-left: 5px solid #C8102E;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.testimonial-card p {
  font-size: 18px;
  font-style: italic;
  color: #2C3E50;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testimonial-author strong {
  color: #C8102E;
  font-size: 16px;
}

.testimonial-author span {
  color: #5A6C7D;
  font-size: 14px;
}

/* STAT CARDS */
.stat-card {
  text-align: center;
  background: linear-gradient(135deg, #C8102E 0%, #A00D25 100%);
  color: #FFFFFF;
  padding: 40px 32px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}

.stat-card p {
  color: #F4E8D8;
  font-size: 16px;
}

/* FEATURED CARD */
.featured-card {
  background: linear-gradient(135deg, #1E5631 0%, #C8102E 100%);
  padding: 48px;
  border-radius: 24px;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.featured-card::before {
  content: '⭐';
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 150px;
  opacity: 0.1;
  animation: pulse 3s ease-in-out infinite;
}

.featured-card h2 {
  color: #FFFFFF;
  font-size: 36px;
  margin-bottom: 20px;
}

.featured-card p {
  color: #F4E8D8;
  font-size: 18px;
}

.badge {
  display: inline-block;
  background: #C8102E;
  color: #FFFFFF;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  animation: pulse 2s ease-in-out infinite;
}

.category-badge {
  display: inline-block;
  background: #1E5631;
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* ==========================================
   GRID LAYOUTS - FLEXBOX ONLY
   ========================================== */
.products-grid,
.benefits-grid,
.destinations-grid,
.steps-grid,
.testimonials-grid,
.stats-grid,
.features-grid,
.info-grid,
.blog-grid,
.regions-grid,
.trails-grid,
.attractions-grid,
.methods-grid,
.suggestions-grid,
.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.products-grid > *,
.benefits-grid > *,
.features-grid > *,
.blog-grid > *,
.regions-grid > *,
.trails-grid > *,
.attractions-grid > *,
.methods-grid > *,
.suggestions-grid > * {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
}

.destinations-grid > *,
.stats-grid > *,
.info-grid > *,
.mission-grid > * {
  flex: 1 1 calc(50% - 32px);
  min-width: 250px;
}

.testimonials-grid > * {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
}

.steps-grid > * {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
}

/* ==========================================
   STEP CARDS - NUMBERED & PLAYFUL
   ========================================== */
.step {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #C8102E 0%, #A00D25 100%);
  color: #FFFFFF;
  font-size: 32px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(200, 16, 46, 0.3);
  transition: transform 0.3s ease;
}

.step:hover .step-number {
  transform: scale(1.2) rotate(360deg);
}

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

.step p {
  color: #5A6C7D;
  font-size: 15px;
}

/* ==========================================
   CONTENT SECTIONS
   ========================================== */
.story-content,
.legal-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.story-content p,
.legal-text p {
  margin-bottom: 24px;
  font-size: 17px;
}

.highlight {
  font-size: 22px;
  font-weight: 700;
  color: #C8102E;
  font-style: italic;
  padding: 24px;
  background: #F4E8D8;
  border-radius: 12px;
  border-left: 5px solid #C8102E;
  margin: 32px 0;
}

.values-list {
  background: #F4E8D8;
  padding: 32px;
  border-radius: 16px;
  margin-top: 32px;
}

.values-list h3 {
  margin-bottom: 20px;
  color: #1E5631;
}

.values-list ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.values-list li {
  flex: 1 1 calc(50% - 16px);
  min-width: 150px;
  padding: 12px 20px;
  background: #FFFFFF;
  border-radius: 25px;
  color: #1E5631;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.values-list li:hover {
  background: #C8102E;
  color: #FFFFFF;
  transform: translateY(-3px);
}

.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
  justify-content: center;
}

.expertise-badge {
  padding: 16px 32px;
  background: linear-gradient(135deg, #1E5631 0%, #C8102E 100%);
  color: #FFFFFF;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.expertise-badge:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 24px rgba(200, 16, 46, 0.4);
}

.initiatives-list {
  list-style: none;
  margin-top: 24px;
}

.initiatives-list li {
  padding: 16px 16px 16px 60px;
  margin-bottom: 16px;
  background: #FFFFFF;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.initiatives-list li::before {
  content: '✓';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: #1E5631;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.initiatives-list li:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 20px rgba(200, 16, 46, 0.2);
}

/* ==========================================
   ACCORDION - INTERACTIVE
   ========================================== */
.info-accordion,
.faq-list {
  max-width: 800px;
  margin: 32px auto;
}

.accordion-item,
.faq-item {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #C8102E;
  transition: all 0.3s ease;
}

.accordion-item:hover,
.faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 24px rgba(200, 16, 46, 0.2);
}

.accordion-item h3,
.faq-item h3 {
  color: #C8102E;
  font-size: 20px;
  margin-bottom: 12px;
}

.accordion-item p,
.faq-item p {
  color: #5A6C7D;
  line-height: 1.7;
}

/* ==========================================
   CONTACT PAGE ELEMENTS
   ========================================== */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.contact-details,
.contact-form-wrapper {
  flex: 1 1 calc(50% - 40px);
  min-width: 300px;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.info-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.2);
}

.info-block img {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.info-block h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.info-block p,
.info-block a {
  color: #5A6C7D;
  font-size: 15px;
}

.form-notice {
  background: #F4E8D8;
  padding: 24px;
  border-radius: 12px;
  border-left: 5px solid #C8102E;
}

.form-notice p {
  margin-bottom: 12px;
  color: #2C3E50;
}

.benefits-list {
  list-style: none;
  margin-top: 24px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  margin-bottom: 16px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.benefits-list li:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 20px rgba(30, 86, 49, 0.2);
}

.benefits-list img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.location-info {
  margin-top: 24px;
  padding: 20px;
  background: #F4E8D8;
  border-radius: 12px;
  color: #2C3E50;
}

/* ==========================================
   BLOG & ARTICLE META
   ========================================== */
.article-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: #5A6C7D;
  font-size: 14px;
  margin-top: 16px;
}

.article-meta span {
  padding: 6px 12px;
  background: #F4E8D8;
  border-radius: 15px;
}

/* ==========================================
   NEWSLETTER SECTION
   ========================================== */
.newsletter-section {
  background: linear-gradient(135deg, #1E5631 0%, #C8102E 100%);
  padding: 60px 20px;
  border-radius: 24px;
  text-align: center;
  color: #FFFFFF;
}

.newsletter-section h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.newsletter-section p {
  color: #F4E8D8;
  margin-bottom: 32px;
}

.newsletter-benefits ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.newsletter-benefits li {
  color: #F4E8D8;
  font-weight: 600;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
}

/* ==========================================
   THANK YOU PAGE
   ========================================== */
.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #F4E8D8 0%, #FFFFFF 100%);
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #1E5631 0%, #C8102E 100%);
  color: #FFFFFF;
  font-size: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 8px 32px rgba(200, 16, 46, 0.3);
  animation: bounceIn 0.8s ease-out;
}

.confirmation-text {
  font-size: 18px;
  color: #5A6C7D;
  margin: 24px 0;
}

/* ==========================================
   LEGAL CONTENT LAYOUT
   ========================================== */
.legal-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.legal-text {
  flex: 1 1 65%;
  min-width: 300px;
}

.legal-sidebar {
  flex: 1 1 30%;
  min-width: 250px;
}

.legal-sidebar {
  background: #F4E8D8;
  padding: 32px;
  border-radius: 16px;
  height: fit-content;
  position: sticky;
  top: 120px;
}

.legal-sidebar h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #1E5631;
}

.legal-sidebar ul {
  list-style: none;
}

.legal-sidebar li {
  margin-bottom: 12px;
}

.legal-sidebar a {
  color: #C8102E;
  font-weight: 600;
  transition: all 0.3s ease;
}

.legal-sidebar a:hover {
  color: #A00D25;
  padding-left: 10px;
}

.highlight-list {
  list-style: none;
  margin-bottom: 32px;
}

.highlight-list li {
  padding: 12px 16px;
  margin-bottom: 12px;
  background: #FFFFFF;
  border-radius: 8px;
  color: #1E5631;
  font-weight: 600;
  border-left: 4px solid #C8102E;
}

.legal-text h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #1E5631;
}

.legal-text ul {
  margin-left: 24px;
  margin-bottom: 24px;
}

.legal-text li {
  margin-bottom: 12px;
  color: #5A6C7D;
}

/* ==========================================
   FOOTER - PLAYFUL & COLORFUL
   ========================================== */
footer {
  background: linear-gradient(135deg, #1E5631 0%, #0F2E1A 100%);
  color: #F4E8D8;
  padding: 60px 20px 20px;
  margin-top: 80px;
  position: relative;
}

footer::before {
  content: '🏔️';
  position: absolute;
  top: -40px;
  left: 10%;
  font-size: 80px;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 2px solid rgba(244, 232, 216, 0.2);
}

.footer-column {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 250px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
}

.footer-column h4 {
  color: #FFFFFF;
  font-size: 20px;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.footer-column ul {
  list-style: none;
}

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

.footer-column a {
  color: #F4E8D8;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-column a:hover {
  color: #FFFFFF;
  transform: translateX(5px);
}

.footer-column p {
  color: #F4E8D8;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
}

.footer-bottom p {
  color: #F4E8D8;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  list-style: none;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #F4E8D8;
  font-size: 14px;
  transition: all 0.3s ease;
}

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

/* ==========================================
   COOKIE CONSENT BANNER - PLAYFUL
   ========================================== */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1E5631 0%, #C8102E 100%);
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#cookie-consent-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 60%;
  min-width: 300px;
}

.cookie-text p {
  color: #F4E8D8;
  font-size: 15px;
  margin-bottom: 0;
}

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

.cookie-btn {
  padding: 12px 28px;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#accept-all-cookies {
  background: #FFFFFF;
  color: #C8102E;
}

#accept-all-cookies:hover {
  background: #F4E8D8;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.3);
}

#reject-all-cookies {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

#reject-all-cookies:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

#cookie-settings {
  background: transparent;
  color: #F4E8D8;
  border: 2px solid #F4E8D8;
}

#cookie-settings:hover {
  background: rgba(244, 232, 216, 0.1);
  transform: translateY(-3px);
}

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

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

.cookie-modal-content {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 48px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: bounceIn 0.5s ease-out;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #C8102E;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-modal-content h2 {
  color: #1E5631;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #F4E8D8;
  border-radius: 12px;
}

.cookie-category h3 {
  color: #C8102E;
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.cookie-toggle {
  position: relative;
  width: 60px;
  height: 30px;
  background: #CCC;
  border-radius: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.cookie-toggle.active {
  background: #1E5631;
}

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

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

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

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

#save-cookie-preferences {
  flex: 1;
  padding: 14px 32px;
  background: linear-gradient(135deg, #C8102E 0%, #A00D25 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#save-cookie-preferences:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.4);
}

/* ==========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ========================================== */
@media (max-width: 768px) {
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop nav */
  .nav-menu {
    display: none;
  }
  
  /* Typography */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* Sections */
  section {
    margin-bottom: 60px;
    padding: 32px 16px;
  }
  
  .hero {
    padding: 60px 16px;
  }
  
  .page-hero {
    padding: 40px 16px;
  }
  
  /* Buttons */
  .btn {
    padding: 14px 32px;
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Trust badges */
  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Grids - Stack on mobile */
  .products-grid > *,
  .benefits-grid > *,
  .destinations-grid > *,
  .steps-grid > *,
  .testimonials-grid > *,
  .stats-grid > *,
  .features-grid > *,
  .info-grid > *,
  .blog-grid > *,
  .regions-grid > *,
  .trails-grid > *,
  .attractions-grid > *,
  .methods-grid > *,
  .suggestions-grid > *,
  .mission-grid > * {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-main {
    flex-direction: column;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Contact grid */
  .contact-grid {
    flex-direction: column;
  }
  
  .contact-details,
  .contact-form-wrapper {
    flex: 1 1 100%;
  }
  
  /* Legal content */
  .legal-content {
    flex-direction: column;
  }
  
  .legal-text,
  .legal-sidebar {
    flex: 1 1 100%;
  }
  
  .legal-sidebar {
    position: static;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 32px 24px;
  }
  
  /* Featured card */
  .featured-card {
    padding: 32px 24px;
  }
  
  .featured-card h2 {
    font-size: 28px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .products-grid > *,
  .benefits-grid > *,
  .features-grid > *,
  .blog-grid > *,
  .regions-grid > *,
  .trails-grid > *,
  .attractions-grid > *,
  .methods-grid > *,
  .suggestions-grid > * {
    flex: 1 1 calc(50% - 32px);
  }
  
  .steps-grid > * {
    flex: 1 1 calc(50% - 32px);
  }
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent-banner,
  #cookie-modal {
    display: none;
  }
  
  body {
    background: #FFFFFF;
  }
  
  a {
    color: #000000;
    text-decoration: underline;
  }
}

/* ACCESSIBILITY */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

*:focus {
  outline: 3px solid #C8102E;
  outline-offset: 3px;
}

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

/* SMOOTH SCROLLING */
html {
  scroll-padding-top: 100px;
}

/* LOADING ANIMATION */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.loading {
  animation: shimmer 2s infinite;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 1000px 100%;
}

/* END OF PLAYFUL DYNAMIC CSS */
