/* =================================================================
   Dusk Wanderlust - AURORA BOREALIS TOURS
   Playful & Dynamic Design System
   ================================================================= */

/* 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', sans-serif;
  line-height: 1.6;
  color: #2D3436;
  background: linear-gradient(135deg, #E8F5F7 0%, #FFF5E1 100%);
  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;
}

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

/* TYPOGRAPHY - PLAYFUL & DYNAMIC */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #1B4B5A;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #1B4B5A 0%, #2D7F6F 50%, #A8E6CF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
}

h2 {
  font-size: 36px;
  color: #1B4B5A;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, #FF6B6B, #FFD93D, #A8E6CF, #6BCF7F);
  border-radius: 2px;
  animation: rainbow 3s linear infinite;
}

h3 {
  font-size: 24px;
  color: #2D7F6F;
  font-weight: 700;
}

h4 {
  font-size: 18px;
  color: #1B4B5A;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

p {
  margin-bottom: 16px;
  color: #2D3436;
  font-size: 16px;
}

strong {
  font-weight: 700;
  color: #1B4B5A;
}

em {
  font-style: italic;
  color: #636E72;
}

/* ANIMATIONS - ENERGETIC & FUN */
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes rainbow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

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

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

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

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

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* HEADER - BRIGHT & PLAYFUL */
header {
  background: linear-gradient(135deg, #FFD93D 0%, #FF6B6B 50%, #A8E6CF 100%);
  box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
  animation: slideInUp 0.6s ease;
}

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

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

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

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.main-nav a:hover::before {
  width: 200px;
  height: 200px;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* MOBILE MENU - FUN & ANIMATED */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #FF6B6B, #FFD93D);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  color: #FFFFFF;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255, 107, 107, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #FFD93D 0%, #FF6B6B 50%, #A8E6CF 100%);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 80px 32px 32px;
  overflow-y: auto;
}

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

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

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

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #FFFFFF;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* BUTTONS - BRIGHT & ENERGETIC */
.btn,
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #FF6B6B, #FFD93D);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.6);
  animation: pulse 0.6s ease;
}

.btn-secondary {
  background: linear-gradient(135deg, #A8E6CF, #6BCF7F);
  color: #1B4B5A;
  box-shadow: 0 4px 16px rgba(168, 230, 207, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(168, 230, 207, 0.6);
  animation: pulse 0.6s ease;
}

.btn {
  background: linear-gradient(135deg, #1B4B5A, #2D7F6F);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(27, 75, 90, 0.4);
}

.btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(27, 75, 90, 0.6);
}

/* HERO SECTION - EXPLOSIVE & EXCITING */
.hero {
  background: linear-gradient(135deg, #1B4B5A 0%, #2D7F6F 50%, #A8E6CF 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  animation: slideInUp 0.8s ease;
}

.hero h1 {
  font-size: 56px;
  color: #FFFFFF;
  margin-bottom: 24px;
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.3);
  animation: bounce 2s ease infinite;
}

.hero-subtitle {
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 32px;
  font-weight: 400;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

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

.trust-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 20px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* PAGE HERO - COLORFUL & DYNAMIC */
.page-hero {
  background: linear-gradient(135deg, #FFD93D 0%, #FF6B6B 50%, #A8E6CF 100%);
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  text-align: center;
  animation: slideInUp 0.6s ease;
}

.page-hero h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.page-hero p {
  font-size: 18px;
  color: #FFFFFF;
  max-width: 700px;
  margin: 0 auto 24px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
  font-size: 14px;
  color: #FFFFFF;
}

.breadcrumb a {
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: underline;
}

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

/* SECTIONS - PLAYFUL SPACING */
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  animation: fadeIn 1s ease;
}

/* VALUE PROPOSITION - ENERGETIC GRID */
.value-proposition {
  background: linear-gradient(135deg, #FFF5E1 0%, #E8F5F7 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 16px;
}

.value-proposition > p {
  text-align: center;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #636E72;
}

.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.value-item {
  flex: 1 1 250px;
  max-width: 280px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FF6B6B, #FFD93D, #A8E6CF);
}

.value-item:hover {
  transform: translateY(-8px) rotate(2deg);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.value-item img {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.2));
}

.value-item h3 {
  margin-bottom: 12px;
  color: #1B4B5A;
}

.value-item p {
  color: #636E72;
  font-size: 15px;
  margin-bottom: 0;
}

/* SERVICE CARDS - VIBRANT & FUN */
.services-showcase {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.services-showcase h2 {
  text-align: center;
  margin-bottom: 16px;
}

.services-showcase > .container > p {
  text-align: center;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #636E72;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 320px;
  max-width: 380px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #FF6B6B, #FFD93D, #A8E6CF, #6BCF7F);
  animation: rainbow 3s linear infinite;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.service-card.featured {
  border: 4px solid #FFD93D;
  box-shadow: 0 8px 32px rgba(255, 217, 61, 0.4);
}

.service-card.featured::after {
  content: '⭐ POPULAR';
  position: absolute;
  top: 16px;
  right: -32px;
  background: linear-gradient(135deg, #FF6B6B, #FFD93D);
  color: #FFFFFF;
  padding: 4px 40px;
  font-size: 12px;
  font-weight: 700;
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
  font-size: 24px;
  color: #1B4B5A;
  margin-bottom: 8px;
}

.service-card .price {
  font-size: 28px;
  font-weight: 800;
  color: #FF6B6B;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.service-card p {
  color: #636E72;
  font-size: 15px;
  margin-bottom: 16px;
}

.service-card ul {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card ul li {
  padding-left: 24px;
  position: relative;
  color: #2D3436;
  font-size: 14px;
}

.service-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #6BCF7F;
  font-weight: 700;
  font-size: 16px;
}

.view-all {
  display: inline-block;
  margin: 32px auto 0;
  padding: 14px 32px;
  background: linear-gradient(135deg, #A8E6CF, #6BCF7F);
  color: #1B4B5A;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: 0 4px 16px rgba(168, 230, 207, 0.4);
  transition: all 0.3s ease;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.view-all:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(168, 230, 207, 0.6);
}

/* ABOUT PREVIEW - COLORFUL STATS */
.about-preview {
  background: linear-gradient(135deg, #E8F5F7 0%, #FFF5E1 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 20px;
  text-align: center;
}

.about-preview h2 {
  margin-bottom: 16px;
}

.about-preview > .container > p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 17px;
  color: #636E72;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.stat {
  flex: 1 1 200px;
  max-width: 250px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.stat:hover {
  transform: translateY(-8px) rotate(-2deg);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.stat strong {
  font-size: 42px;
  font-weight: 800;
  color: #FF6B6B;
  font-family: 'Montserrat', sans-serif;
  display: block;
}

.stat span {
  font-size: 14px;
  color: #636E72;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* TESTIMONIALS - BRIGHT & READABLE */
.testimonials {
  background: linear-gradient(135deg, #FFD93D 0%, #A8E6CF 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 20px;
}

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

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1 1 400px;
  max-width: 550px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: #FFD93D;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.testimonial-card p {
  font-size: 16px;
  color: #2D3436;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-card cite {
  font-size: 14px;
  font-weight: 700;
  color: #1B4B5A;
  font-style: normal;
  text-align: right;
}

.rating {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #1B4B5A;
  margin-bottom: 0;
}

/* CTA BANNER - EXPLOSIVE */
.cta-banner {
  background: linear-gradient(135deg, #FF6B6B 0%, #FFD93D 50%, #A8E6CF 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(255, 107, 107, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  animation: pulse 6s ease-in-out infinite;
}

.cta-banner > .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.cta-banner p {
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 24px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.urgency {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 20px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  animation: pulse 2s ease infinite;
}

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

/* TOURS & SERVICES PAGES */
.tours-list,
.workshop-details,
.experience-categories {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.tour-cards,
.format-cards,
.experience-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.tour-card,
.format-card,
.experience-card {
  flex: 1 1 350px;
  max-width: 420px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  margin-bottom: 20px;
}

.tour-card::before,
.experience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FF6B6B, #FFD93D, #A8E6CF);
}

.tour-card:hover,
.format-card:hover,
.experience-card:hover {
  transform: translateY(-12px) rotate(1deg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.duration,
.tagline {
  font-size: 14px;
  color: #636E72;
  font-weight: 600;
  margin-bottom: 8px;
}

.tour-includes,
.curriculum {
  list-style: none;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tour-includes li,
.curriculum li {
  padding-left: 24px;
  position: relative;
  color: #2D3436;
  font-size: 14px;
}

.tour-includes li::before,
.curriculum li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #6BCF7F;
  font-weight: 700;
  font-size: 16px;
}

.best-for {
  margin-top: 8px;
  padding: 12px;
  background: linear-gradient(135deg, #E8F5F7, #FFF5E1);
  border-radius: 8px;
  font-size: 14px;
}

/* CATEGORY GRID - PLAYFUL ICONS */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.category-card {
  flex: 1 1 240px;
  max-width: 280px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FF6B6B, #FFD93D);
}

.category-card:hover {
  transform: translateY(-8px) rotate(-2deg);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.category-card img {
  width: 64px;
  height: 64px;
  filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.2));
}

/* GUARANTEE SECTION */
.guarantee {
  background: linear-gradient(135deg, #E8F5F7 0%, #FFF5E1 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 20px;
}

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

.guarantee-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.guarantee-item {
  flex: 1 1 220px;
  max-width: 260px;
  background: #FFFFFF;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.guarantee-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.guarantee-item img {
  width: 48px;
  height: 48px;
}

/* FAQ SECTION */
.faq {
  padding: 40px 20px;
  margin-bottom: 60px;
}

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

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

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

.faq-item p {
  color: #636E72;
  margin-bottom: 0;
}

/* GALLERY & PHOTOS */
.gallery-intro,
.featured-photos,
.guest-showcase,
.aurora-types,
.photography-tips {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.photo-grid,
.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.photo-item,
.tip-item {
  flex: 1 1 280px;
  max-width: 380px;
  background: #FFFFFF;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.photo-item:hover,
.tip-item:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.aurora-forms {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.form-item {
  flex: 1 1 280px;
  background: #FFFFFF;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* CONTACT PAGE */
.contact-options,
.contact-form-section,
.booking-process,
.location-info {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.contact-method {
  flex: 1 1 280px;
  max-width: 350px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact-method:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.contact-method img {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
}

.contact-detail {
  font-size: 18px;
  font-weight: 700;
  color: #1B4B5A;
  margin-bottom: 8px;
}

.form-note {
  background: linear-gradient(135deg, #FFD93D, #A8E6CF);
  padding: 24px;
  border-radius: 12px;
  margin: 32px auto;
  max-width: 600px;
}

.form-note p {
  color: #1B4B5A;
  font-weight: 600;
  margin-bottom: 12px;
}

.form-note ul {
  list-style: none;
  margin: 16px 0;
}

.form-note ul li {
  padding-left: 24px;
  position: relative;
  color: #2D3436;
  margin-bottom: 8px;
}

.form-note ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #FF6B6B;
  font-weight: 700;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.step {
  flex: 1 1 200px;
  max-width: 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FF6B6B, #FFD93D);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.booking-note,
.availability-note {
  text-align: center;
  font-size: 14px;
  color: #636E72;
  margin-top: 24px;
  font-style: italic;
}

.travel-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.travel-method {
  flex: 1 1 300px;
  background: #FFFFFF;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* ABOUT PAGE */
.our-story,
.values,
.team,
.statistics {
  padding: 40px 20px;
  margin-bottom: 60px;
}

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

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

.team-member {
  flex: 1 1 280px;
  max-width: 350px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.team-member h3 {
  margin-bottom: 8px;
}

.team-member .title {
  font-size: 14px;
  color: #FF6B6B;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* LEGAL PAGES */
.legal-page {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
  margin-bottom: 16px;
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 12px;
}

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

.legal-content ul li {
  margin-bottom: 8px;
  color: #2D3436;
}

.last-updated {
  font-size: 14px;
  color: #636E72;
  font-style: italic;
  margin-bottom: 24px;
}

/* THANK YOU PAGE */
.thank-you-page {
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #6BCF7F, #A8E6CF);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(107, 207, 127, 0.4);
  animation: bounce 1s ease infinite;
}

.next-steps {
  list-style: decimal;
  text-align: left;
  margin: 24px auto;
  max-width: 500px;
}

.next-steps li {
  margin-bottom: 12px;
  padding-left: 8px;
  color: #2D3436;
}

.urgent-note {
  background: linear-gradient(135deg, #FFD93D, #FF6B6B);
  padding: 16px 24px;
  border-radius: 12px;
  margin-top: 24px;
}

.urgent-note strong {
  color: #FFFFFF;
}

.explore-resources {
  padding: 40px 20px;
  margin-bottom: 60px;
}

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

.resource-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* FOOTER - COLORFUL & FUN */
footer {
  background: linear-gradient(135deg, #1B4B5A 0%, #2D7F6F 100%);
  color: #FFFFFF;
  padding: 48px 20px 24px;
  margin-top: 60px;
}

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

.footer-info,
.footer-nav,
.footer-contact {
  flex: 1 1 250px;
}

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

.footer-info p {
  color: #E8F5F7;
  font-size: 14px;
}

.footer-nav h4,
.footer-contact h4 {
  color: #FFD93D;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-nav a {
  color: #E8F5F7;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-nav a:hover {
  color: #FFD93D;
  transform: translateX(4px);
}

.footer-contact p {
  color: #E8F5F7;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

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

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

.footer-bottom p {
  color: #E8F5F7;
  font-size: 13px;
  margin: 0;
}

/* COOKIE CONSENT BANNER - PLAYFUL */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1B4B5A 0%, #2D7F6F 100%);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.cookie-banner p {
  color: #FFFFFF;
  font-size: 14px;
  margin: 0;
  flex: 1 1 300px;
}

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

.cookie-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(135deg, #6BCF7F, #A8E6CF);
  color: #1B4B5A;
}

.cookie-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(107, 207, 127, 0.4);
}

.cookie-reject {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.3);
}

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

.cookie-settings:hover {
  background: #FFD93D;
  color: #1B4B5A;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  z-index: 2000;
  max-width: 500px;
  width: 90%;
  transition: transform 0.3s ease;
}

.cookie-modal.active {
  transform: translate(-50%, -50%) scale(1);
}

.cookie-modal h3 {
  margin-bottom: 24px;
  color: #1B4B5A;
}

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

.cookie-category h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #2D7F6F;
}

.cookie-category p {
  font-size: 13px;
  color: #636E72;
  margin-bottom: 8px;
}

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

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

.cookie-toggle label {
  font-size: 14px;
  color: #2D3436;
  font-weight: 600;
}

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

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .main-nav {
    display: none;
  }
  
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .value-grid,
  .service-cards,
  .stats-grid,
  .testimonial-cards,
  .category-grid,
  .guarantee-grid,
  .contact-grid,
  .tour-cards,
  .format-cards,
  .experience-cards,
  .photo-grid,
  .tips-grid,
  .values-grid,
  .team-grid,
  .resource-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .value-item,
  .service-card,
  .stat,
  .testimonial-card,
  .category-card,
  .guarantee-item,
  .contact-method,
  .tour-card,
  .format-card,
  .experience-card,
  .photo-item,
  .tip-item,
  .team-member,
  .resource-card {
    max-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  .legal-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .btn,
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .service-card,
  .tour-card,
  .experience-card {
    padding: 24px;
  }
  
  .cookie-modal {
    padding: 24px;
  }
}

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

.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

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