/* =================================================================
   OPAL MANSE NATURTOUREN - VIBRANT ENERGETIC DESIGN SYSTEM
   ================================================================= */

/* CSS RESET & 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: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* =================================================================
   VIBRANT ENERGETIC COLOR SYSTEM
   ================================================================= */
:root {
  --primary: #FF1744;
  --primary-dark: #D50000;
  --primary-light: #FF5252;
  --secondary: #00E676;
  --secondary-dark: #00C853;
  --accent: #FFEA00;
  --accent-dark: #FFD600;
  --electric-blue: #00B0FF;
  --electric-purple: #D500F9;
  --neon-orange: #FF6D00;
  --dark: #1a1a1a;
  --gray: #424242;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --success: #00E676;
  --warning: #FFEA00;
  --danger: #FF1744;
}

/* =================================================================
   TYPOGRAPHY - BOLD & ENERGETIC
   ================================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--electric-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite;
}

h2 {
  font-size: 36px;
  color: var(--primary);
}

h3 {
  font-size: 24px;
  color: var(--dark);
}

h4 {
  font-size: 20px;
}

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

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

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* =================================================================
   CONTAINER & LAYOUT SYSTEM (FLEXBOX ONLY)
   ================================================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 60px 20px;
  position: relative;
}

/* =================================================================
   HEADER & NAVIGATION
   ================================================================= */
header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--electric-purple) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(255, 23, 68, 0.3);
  animation: header-glow 2s ease-in-out infinite alternate;
}

@keyframes header-glow {
  from { box-shadow: 0 4px 20px rgba(255, 23, 68, 0.3); }
  to { box-shadow: 0 4px 30px rgba(255, 23, 68, 0.6); }
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.5));
  transition: transform 0.3s ease;
}

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

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

.main-nav a {
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.main-nav a:hover::before {
  width: 100%;
}

/* =================================================================
   MOBILE MENU SYSTEM
   ================================================================= */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: var(--primary);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 23, 68, 0.5);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg) scale(1.1);
  background: var(--primary-dark);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, var(--electric-purple) 100%);
  z-index: 3000;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

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

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

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: var(--accent);
}

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

.mobile-nav a {
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

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

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

/* =================================================================
   HERO SECTION - VIBRANT & ENERGETIC
   ================================================================= */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--electric-purple) 50%, var(--electric-blue) 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: hero-pulse 3s ease-in-out infinite;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 234, 0, 0.3) 0%, transparent 70%);
  animation: rotate-gradient 20s linear infinite;
}

@keyframes rotate-gradient {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.hero h1 {
  color: var(--white);
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  -webkit-text-fill-color: var(--white);
  animation: bounce-in 1s ease-out;
}

@keyframes bounce-in {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.hero-subtitle {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 32px;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.trust-badge {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =================================================================
   BUTTONS - ELECTRIC & DYNAMIC
   ================================================================= */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 14px;
  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.6s ease, height 0.6s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--neon-orange) 100%);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(255, 23, 68, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 23, 68, 0.6);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 3px solid var(--primary);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 23, 68, 0.4);
}

.btn-large {
  padding: 20px 48px;
  font-size: 18px;
  margin-top: 32px;
}

/* =================================================================
   CARDS - VIBRANT & DYNAMIC
   ================================================================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.service-cards,
.tour-cards,
.guide-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-card,
.tour-card,
.guide-card,
.card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(255, 23, 68, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  border: 3px solid transparent;
  margin-bottom: 30px;
}

.service-card::before,
.tour-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 234, 0, 0.3), transparent);
  transition: left 0.5s ease;
}

.service-card:hover::before,
.tour-card:hover::before {
  left: 100%;
}

.service-card:hover,
.tour-card:hover,
.guide-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 20px 60px rgba(255, 23, 68, 0.3);
  border-color: var(--primary);
}

.service-card h3,
.tour-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 22px;
}

.service-meta,
.tour-details {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 20px 0;
  padding: 15px;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--accent) 100%);
  border-radius: 10px;
  flex-wrap: wrap;
}

.service-meta span,
.tour-details span {
  font-weight: 700;
  color: var(--dark);
  font-size: 14px;
}

.price {
  color: var(--primary);
  font-size: 20px;
  font-weight: 900;
}

/* =================================================================
   VALUE PROPOSITION & FEATURES - FLEXBOX LAYOUT
   ================================================================= */
.value-proposition,
.services-preview,
.how-it-works {
  padding: 80px 20px;
  background: var(--light-gray);
  position: relative;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 40px;
}

.three-column,
.content-grid,
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.column,
.feature-item {
  flex: 1 1 calc(33.333% - 27px);
  min-width: 250px;
  text-align: center;
  padding: 30px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.column:hover,
.feature-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 50px rgba(255, 23, 68, 0.2);
}

.column img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 10px rgba(255, 23, 68, 0.3));
}

.column h3 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 16px;
}

/* =================================================================
   STEPS & TIMELINE - FLEXBOX
   ================================================================= */
.steps,
.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-top: 40px;
}

.step,
.timeline-item {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  padding: 30px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.step:hover,
.timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 230, 118, 0.2);
}

.step-number,
.year {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--electric-blue) 100%);
  color: var(--white);
  font-weight: 900;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 5px 20px rgba(0, 230, 118, 0.4);
}

.step h3,
.timeline-item h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

/* =================================================================
   TESTIMONIALS - HIGH CONTRAST FOR READABILITY
   ================================================================= */
.testimonials {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--electric-purple) 0%, var(--primary) 100%);
  color: var(--white);
}

.testimonials h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 60px;
  -webkit-text-fill-color: var(--white);
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  background: var(--white);
  color: var(--dark);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  flex: 1 1 calc(50% - 15px);
  min-width: 300px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border-left: 5px solid var(--accent);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 80px;
  color: var(--accent);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--dark);
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

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

.testimonial-author strong {
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
}

.testimonial-author span {
  color: var(--gray);
  font-size: 14px;
}

.author {
  color: var(--gray);
  font-weight: 700;
  font-size: 14px;
}

/* =================================================================
   CTA BANNER - ELECTRIC & BOLD
   ================================================================= */
.cta-banner {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--neon-orange) 0%, var(--primary) 100%);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,234,0,0.1)"/></svg>');
  animation: float-pattern 20s linear infinite;
}

@keyframes float-pattern {
  from { transform: translateY(0); }
  to { transform: translateY(-100px); }
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 24px;
  -webkit-text-fill-color: var(--white);
}

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

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =================================================================
   PAGE HERO - SECTION HEADERS
   ================================================================= */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--electric-purple) 100%);
  padding: 80px 20px;
  text-align: center;
  color: var(--white);
  margin-bottom: 60px;
}

.page-hero h1 {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 20px;
  color: var(--white);
  opacity: 0.95;
}

/* =================================================================
   SECTION STYLES
   ================================================================= */
.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.tagline {
  color: var(--secondary);
  font-weight: 700;
  font-style: italic;
  margin-bottom: 16px;
}

/* =================================================================
   LISTS & HIGHLIGHTS
   ================================================================= */
ul.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

ul.highlights li {
  background: var(--light-gray);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  border: 2px solid var(--accent);
  transition: all 0.3s ease;
}

ul.highlights li:hover {
  background: var(--accent);
  transform: scale(1.05);
}

/* =================================================================
   FAQ SECTION
   ================================================================= */
.faq {
  padding: 60px 20px;
  background: var(--light-gray);
}

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

.faq-item {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--primary);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 40px rgba(255, 23, 68, 0.2);
}

.faq-item h3 {
  color: var(--primary);
  margin-bottom: 16px;
}

/* =================================================================
   GALLERY & VISUAL SECTIONS
   ================================================================= */
.moments-grid,
.seasons-grid,
.species-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.moment-card,
.season-card,
.species-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.moment-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.2) 0%, transparent 70%);
  transition: all 0.5s ease;
  transform: scale(0);
}

.moment-card:hover::before {
  transform: scale(1);
}

.moment-card:hover,
.season-card:hover,
.species-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 230, 118, 0.3);
}

.tour-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 16px;
}

/* =================================================================
   FORMS - VIBRANT & INTERACTIVE
   ================================================================= */
.contact-form,
.booking-form,
.participant-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

label {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 16px;
  border: 3px solid var(--light-gray);
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--white);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 23, 68, 0.1);
  transform: translateY(-2px);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* =================================================================
   BOOKING SPECIFIC STYLES
   ================================================================= */
.booking-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.form-section {
  flex: 1 1 600px;
}

.booking-summary {
  flex: 1 1 300px;
  background: var(--light-gray);
  padding: 30px;
  border-radius: 15px;
  position: sticky;
  top: 100px;
  height: fit-content;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.summary-details {
  margin: 20px 0;
  padding: 20px;
  background: var(--white);
  border-radius: 10px;
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray);
}

.badge img {
  width: 24px;
  height: 24px;
}

/* =================================================================
   CONTACT PAGE STYLES
   ================================================================= */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-top: 40px;
}

.contact-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(255, 23, 68, 0.2);
}

.contact-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 10px rgba(255, 23, 68, 0.3));
}

.contact-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
}

.hours,
.response {
  color: var(--gray);
  font-size: 14px;
  margin-top: 10px;
}

/* =================================================================
   GUIDES PAGE STYLES
   ================================================================= */
.guide-card {
  flex: 1 1 calc(50% - 15px);
  min-width: 300px;
}

.guide-title {
  color: var(--secondary);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}

.specialization {
  color: var(--gray);
  font-style: italic;
  margin-bottom: 16px;
}

.qualifications {
  font-size: 14px;
  color: var(--gray);
  margin: 16px 0;
  padding: 15px;
  background: var(--light-gray);
  border-radius: 10px;
  border-left: 3px solid var(--accent);
}

.quote {
  font-style: italic;
  color: var(--primary);
  font-weight: 600;
  margin-top: 16px;
  padding: 15px;
  background: var(--light-gray);
  border-radius: 10px;
  border-left: 3px solid var(--primary);
}

.qual-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-top: 40px;
}

.qual-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.qual-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 230, 118, 0.2);
}

.qual-card img {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
}

/* =================================================================
   VALUES & STATISTICS
   ================================================================= */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.value-card {
  flex: 1 1 calc(25% - 23px);
  min-width: 200px;
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.value-card:hover {
  transform: translateY(-10px) rotate(-2deg);
  box-shadow: 0 15px 50px rgba(0, 176, 255, 0.2);
}

.value-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-around;
  margin-top: 40px;
}

.stat {
  flex: 1 1 200px;
  text-align: center;
  padding: 30px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 50px rgba(255, 234, 0, 0.3);
}

.stat .number {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat .label {
  display: block;
  font-size: 14px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =================================================================
   THANK YOU PAGE
   ================================================================= */
.thank-you-hero {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--electric-blue) 100%);
  text-align: center;
  color: var(--white);
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.checkmark {
  width: 100px;
  height: 100px;
  background: var(--white);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 900;
  margin: 0 auto 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: checkmark-pop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes checkmark-pop {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.thank-you-hero h1 {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}

.subtitle {
  font-size: 20px;
  margin-bottom: 16px;
}

.explore-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-top: 40px;
}

.explore-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.explore-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 176, 255, 0.2);
}

/* =================================================================
   LEGAL PAGES
   ================================================================= */
.legal-hero {
  background: linear-gradient(135deg, var(--gray) 0%, var(--dark) 100%);
  padding: 60px 20px;
  text-align: center;
  color: var(--white);
}

.legal-hero h1 {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  font-size: 36px;
}

.legal-content {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--primary);
}

.legal-content h3 {
  margin-top: 30px;
  margin-bottom: 16px;
  color: var(--secondary);
}

.legal-content ul {
  list-style: disc;
  margin-left: 30px;
  margin-bottom: 20px;
}

.legal-content ul li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--primary-dark);
}

/* =================================================================
   FOOTER
   ================================================================= */
footer {
  background: linear-gradient(135deg, var(--dark) 0%, var(--gray) 100%);
  color: var(--white);
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

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

.footer-section h4 {
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 18px;
  text-transform: uppercase;
}

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

.footer-nav a {
  color: var(--white);
  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: var(--accent);
  padding-left: 20px;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* =================================================================
   COOKIE CONSENT BANNER
   ================================================================= */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 20px;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

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

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

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

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

.cookie-buttons .btn {
  padding: 12px 24px;
  font-size: 13px;
}

/* =================================================================
   COOKIE SETTINGS MODAL
   ================================================================= */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-category {
  padding: 20px;
  background: var(--light-gray);
  border-radius: 10px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-category h4 {
  margin: 0;
  color: var(--primary);
}

.cookie-toggle {
  position: relative;
  width: 60px;
  height: 30px;
  background: var(--gray);
  border-radius: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: var(--secondary);
}

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

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

/* =================================================================
   RESPONSIVE DESIGN
   ================================================================= */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  
  .hero h1 { font-size: 44px; }
  
  .column,
  .feature-item,
  .step {
    flex: 1 1 calc(50% - 20px);
  }
  
  .value-card {
    flex: 1 1 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 18px; }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .section {
    padding: 40px 20px;
    margin-bottom: 40px;
  }
  
  .column,
  .feature-item,
  .step,
  .timeline-item,
  .service-card,
  .tour-card,
  .guide-card,
  .testimonial-card,
  .moment-card,
  .season-card,
  .species-card,
  .value-card,
  .qual-card,
  .contact-card,
  .explore-card {
    flex: 1 1 100%;
  }
  
  .three-column,
  .content-grid,
  .steps,
  .timeline,
  .testimonial-grid,
  .moments-grid,
  .seasons-grid,
  .species-grid,
  .values-grid,
  .qual-grid,
  .contact-grid,
  .explore-grid {
    flex-direction: column;
  }
  
  .booking-content {
    flex-direction: column;
  }
  
  .booking-summary {
    position: static;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  .footer-content {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero h1 { font-size: 28px; }
  
  .btn {
    padding: 14px 24px;
    font-size: 13px;
  }
  
  .mobile-menu {
    width: 90%;
  }
  
  .service-meta,
  .tour-details {
    flex-direction: column;
    gap: 10px;
  }
}

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

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

.note {
  font-size: 14px;
  color: var(--gray);
  font-style: italic;
}

/* =================================================================
   ANIMATIONS & TRANSITIONS
   ================================================================= */
@keyframes fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

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

/* =================================================================
   PRINT STYLES
   ================================================================= */
@media print {
  header,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  footer {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}

/* =================================================================
   ACCESSIBILITY IMPROVEMENTS
   ================================================================= */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.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;
}
section {
  padding: 10px 0;
}
/* =================================================================
   END OF VIBRANT ENERGETIC DESIGN SYSTEM
   ================================================================= */