/* ===================================
   LUMINARY CRYPT - PLAYFUL DYNAMIC STYLE
   Mysterious Adventure Expeditions
   Design Style: Playful & Dynamic
   =================================== */

/* CSS RESET & NORMALIZE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Lato', 'Arial', sans-serif;
  line-height: 1.6;
  color: #1A1A2E;
  background: linear-gradient(135deg, #FFEAA7 0%, #FFF8E7 50%, #FFDAB9 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;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

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

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Cinzel', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1A1A2E;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  animation: bounce 2s ease-in-out infinite;
}

h2 {
  font-size: 36px;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FF6B9D, #FFA500, #FF6B9D);
  border-radius: 4px;
  animation: shimmer 2s ease-in-out infinite;
}

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

h4 {
  font-size: 18px;
}

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

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

@keyframes shimmer {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(1.1); }
}

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

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

@keyframes slideIn {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

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

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

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FF6B9D, #FFA500);
  color: white;
  font-size: 24px;
  border-radius: 50%;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s ease-in-out infinite;
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg) scale(1.1);
  background: linear-gradient(135deg, #FFA500, #FF6B9D);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #FF6B9D, #FFA500);
  z-index: 1001;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 80px 30px 30px;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
}

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

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

.mobile-menu-close:hover {
  background: white;
  color: #FF6B9D;
  transform: rotate(180deg);
}

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

.mobile-nav a {
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.mobile-nav a:hover {
  background: white;
  color: #FF6B9D;
  transform: translateX(10px);
  border-color: #FFA500;
}

/* HEADER */
header {
  background: linear-gradient(135deg, #FF6B9D, #FFA500, #FFD700);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(255, 107, 157, 0.3);
  animation: slideIn 0.6s ease-out;
}

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

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

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

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

.main-nav a {
  color: white;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 15px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

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

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

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

.cta-button {
  background: white;
  color: #FF6B9D;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.cta-button:hover {
  background: #FFD700;
  color: #1A1A2E;
  transform: scale(1.1) rotate(-2deg);
  border-color: white;
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #667EEA 0%, #764BA2 50%, #F093FB 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 50px 50px;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.hero::before {
  content: '✨';
  position: absolute;
  font-size: 80px;
  top: 20px;
  left: 10%;
  animation: float 3s ease-in-out infinite;
  opacity: 0.6;
}

.hero::after {
  content: '🔮';
  position: absolute;
  font-size: 60px;
  bottom: 30px;
  right: 15%;
  animation: float 4s ease-in-out infinite;
  opacity: 0.6;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  animation: fadeIn 1s ease-out;
}

.hero-content h1 {
  color: white;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

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

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

.cta-primary, .cta-secondary {
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 3px solid white;
}

.cta-primary {
  background: #FFA500;
  color: white;
  box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

.cta-primary:hover {
  background: #FFD700;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
}

.cta-secondary {
  background: transparent;
  color: white;
}

.cta-secondary:hover {
  background: white;
  color: #667EEA;
  transform: translateY(-5px) scale(1.05);
}

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

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

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.content-wrapper h2 {
  margin-bottom: 30px;
}

.content-wrapper p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* INTRODUCTION */
.introduction {
  background: linear-gradient(135deg, #FFEAA7, #FFF8E7);
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px rgba(255, 165, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.introduction::before {
  content: '🗺️';
  position: absolute;
  font-size: 100px;
  top: -20px;
  right: -20px;
  opacity: 0.3;
  animation: wiggle 3s ease-in-out infinite;
}

/* SERVICES GRID */
.services-highlight, .services-grid-section, .services-showcase {
  padding: 60px 20px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.service-card {
  background: white;
  border-radius: 25px;
  padding: 30px;
  flex: 1 1 300px;
  max-width: 350px;
  box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
  transition: all 0.3s ease;
  position: relative;
  border: 4px solid transparent;
  margin-bottom: 20px;
}

.service-card::before {
  content: '⭐';
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 40px;
  opacity: 0;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
  border-color: #FFA500;
}

.service-card:hover::before {
  opacity: 1;
  animation: wiggle 0.5s ease;
}

.service-card h3 {
  color: #FF6B9D;
  margin-bottom: 16px;
  font-size: 22px;
}

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

.price {
  font-size: 28px;
  font-weight: 700;
  color: #FFA500;
  margin: 20px 0;
  font-family: 'Cinzel', serif;
}

.btn-explore, .btn-reserve {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B9D, #FFA500);
  color: white;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 700;
  margin-top: 16px;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.btn-explore:hover, .btn-reserve:hover {
  background: linear-gradient(135deg, #FFA500, #FF6B9D);
  transform: scale(1.1);
  border-color: #FFD700;
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.5);
}

/* VALUE PROPOSITIONS */
.value-propositions {
  background: linear-gradient(135deg, #FFD3A5, #FD6585);
  padding: 60px 20px;
  border-radius: 30px;
  margin-bottom: 60px;
}

.value-propositions h2 {
  color: white;
  text-align: center;
  margin-bottom: 50px;
}

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

.benefit-item {
  background: white;
  border-radius: 20px;
  padding: 30px;
  flex: 1 1 220px;
  max-width: 250px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(253, 101, 133, 0.3);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.benefit-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 35px rgba(253, 101, 133, 0.5);
}

.benefit-item img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 8px rgba(255, 107, 157, 0.3));
  transition: all 0.3s ease;
}

.benefit-item:hover img {
  transform: rotate(360deg) scale(1.2);
}

.benefit-item h3 {
  color: #FF6B9D;
  font-size: 20px;
  margin-bottom: 12px;
}

.benefit-item p {
  color: #1A1A2E;
  font-size: 14px;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, #A8E6CF, #FFD3A5);
  padding: 60px 20px;
  border-radius: 30px;
  margin-bottom: 60px;
}

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

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

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  flex: 1 1 400px;
  max-width: 500px;
  box-shadow: 0 8px 25px rgba(168, 230, 207, 0.4);
  position: relative;
  border-left: 6px solid #FF6B9D;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

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

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(168, 230, 207, 0.6);
  border-left-width: 10px;
}

.testimonial-card p {
  color: #1A1A2E;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  color: #667EEA;
  font-weight: 700;
  font-style: italic;
  margin-top: 16px;
  font-size: 14px;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #667EEA, #764BA2);
  padding: 80px 40px;
  border-radius: 30px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '🚀';
  position: absolute;
  font-size: 80px;
  top: 20px;
  left: 5%;
  opacity: 0.4;
  animation: float 3s ease-in-out infinite;
}

.cta-section::after {
  content: '🎯';
  position: absolute;
  font-size: 80px;
  bottom: 20px;
  right: 5%;
  opacity: 0.4;
  animation: float 4s ease-in-out infinite;
}

.cta-section h2 {
  color: white;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.cta-section h2::after {
  background: white;
}

.cta-section p {
  color: white;
  font-size: 18px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.cta-section .cta-button {
  background: #FFA500;
  color: white;
  padding: 16px 40px;
  font-size: 18px;
  position: relative;
  z-index: 2;
}

.cta-section .cta-button:hover {
  background: #FFD700;
  color: #1A1A2E;
}

/* EXPEDITION DETAILS */
.expedition-details {
  background: linear-gradient(135deg, #FFF8E7, #FFE4E1);
  padding: 60px 20px;
  border-radius: 30px;
  margin-bottom: 60px;
}

.details-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  flex: 1 1 200px;
  max-width: 220px;
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(255, 165, 0, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.detail-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 165, 0, 0.4);
}

.detail-item img {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 4px 8px rgba(255, 107, 157, 0.3));
  transition: all 0.3s ease;
}

.detail-item:hover img {
  transform: scale(1.2) rotate(15deg);
}

.detail-item p {
  color: #1A1A2E;
  font-weight: 600;
  font-size: 15px;
}

/* BOOKING PROCESS */
.booking-process {
  padding: 60px 20px;
}

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

.step {
  background: linear-gradient(135deg, #A8E6CF, #FFD3A5);
  border-radius: 20px;
  padding: 30px;
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(168, 230, 207, 0.3);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.step::before {
  content: '➡️';
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 40px;
  opacity: 0;
  transition: all 0.3s ease;
}

.step:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(168, 230, 207, 0.5);
}

.step:hover::before {
  opacity: 1;
  animation: pulse 1s ease-in-out infinite;
}

.step h3 {
  color: #667EEA;
  margin-bottom: 16px;
  font-size: 22px;
}

.step p {
  color: #1A1A2E;
  font-size: 15px;
}

/* MYSTERY THEMES */
.mystery-themes {
  padding: 60px 20px;
}

.themes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.theme-card {
  background: linear-gradient(135deg, #FFD3A5, #FD6585);
  border-radius: 20px;
  padding: 30px;
  flex: 1 1 260px;
  max-width: 300px;
  box-shadow: 0 8px 25px rgba(253, 101, 133, 0.3);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.theme-card::before {
  content: '🔍';
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 50px;
  opacity: 0;
  transition: all 0.3s ease;
}

.theme-card:hover {
  transform: translateY(-10px) rotate(-2deg);
  box-shadow: 0 15px 40px rgba(253, 101, 133, 0.5);
}

.theme-card:hover::before {
  opacity: 1;
  animation: wiggle 0.5s ease;
}

.theme-card h3 {
  color: white;
  margin-bottom: 16px;
  font-size: 20px;
}

.theme-card p {
  color: white;
  font-size: 15px;
}

/* BRAND STORY & PHILOSOPHY */
.brand-story, .philosophy {
  background: white;
  padding: 60px 40px;
  border-radius: 30px;
  margin-bottom: 60px;
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
}

.values-list {
  list-style: none;
  margin-top: 30px;
}

.values-list li {
  padding: 15px 15px 15px 50px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #FFEAA7, #FFF8E7);
  border-radius: 15px;
  position: relative;
  font-size: 16px;
  color: #1A1A2E;
  transition: all 0.3s ease;
}

.values-list li::before {
  content: '✓';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background: #FFA500;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.values-list li:hover {
  transform: translateX(10px);
  background: linear-gradient(135deg, #FFD3A5, #FD6585);
  color: white;
}

/* COMMITMENT */
.commitment {
  padding: 60px 20px;
}

.commitment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.commitment-item {
  background: white;
  border-radius: 20px;
  padding: 30px;
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.2);
  transition: all 0.3s ease;
  border-top: 6px solid #FF6B9D;
  margin-bottom: 20px;
}

.commitment-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
  border-top-width: 10px;
}

.commitment-item h3 {
  color: #FF6B9D;
  margin-bottom: 16px;
  font-size: 20px;
}

.commitment-item p {
  color: #1A1A2E;
  font-size: 15px;
}

/* GALLERY SECTIONS */
.expedition-stories {
  padding: 60px 20px;
}

.stories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.story-card {
  background: linear-gradient(135deg, #667EEA, #764BA2);
  border-radius: 20px;
  padding: 30px;
  flex: 1 1 320px;
  max-width: 380px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.story-card:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.story-card h3 {
  color: white;
  margin-bottom: 16px;
  font-size: 22px;
}

.story-card p {
  color: white;
  font-size: 15px;
  margin-bottom: 12px;
}

.story-meta {
  color: #FFD700;
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  margin-top: 20px;
}

.destinations-featured {
  background: linear-gradient(135deg, #A8E6CF, #FFD3A5);
  padding: 60px 20px;
  border-radius: 30px;
  margin-bottom: 60px;
}

.destinations-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 40px;
}

.destination-item {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(168, 230, 207, 0.3);
  transition: all 0.3s ease;
  border-left: 6px solid #FFA500;
}

.destination-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(168, 230, 207, 0.5);
  border-left-width: 10px;
}

.destination-item h3 {
  color: #667EEA;
  margin-bottom: 12px;
  font-size: 22px;
}

.destination-item p {
  color: #1A1A2E;
  font-size: 15px;
}

.client-experiences {
  padding: 60px 20px;
}

/* CONTACT PAGE */
.contact-section {
  padding: 60px 20px;
}

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

.contact-form-wrapper, .contact-info-wrapper {
  flex: 1 1 450px;
  max-width: 550px;
}

.contact-form-wrapper h2, .contact-info-wrapper h2 {
  color: #FF6B9D;
  margin-bottom: 30px;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
}

.form-note {
  background: linear-gradient(135deg, #FFEAA7, #FFF8E7);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 30px;
  border-left: 5px solid #FFA500;
}

.form-note p {
  color: #1A1A2E;
  font-size: 15px;
  margin: 0;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 700;
  color: #1A1A2E;
  font-size: 15px;
}

.form-input {
  padding: 12px 16px;
  border: 3px solid #FFD3A5;
  border-radius: 15px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
}

.form-input:focus {
  outline: none;
  border-color: #FF6B9D;
  box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.2);
  transform: scale(1.02);
}

.form-input::placeholder {
  color: #C5A572;
}

select.form-input {
  cursor: pointer;
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 14px;
}

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

.checkbox-group a {
  color: #667EEA;
  text-decoration: underline;
  font-weight: 600;
}

.checkbox-group a:hover {
  color: #FF6B9D;
}

.btn-submit {
  background: linear-gradient(135deg, #FF6B9D, #FFA500);
  color: white;
  padding: 16px 32px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  margin-top: 10px;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #FFA500, #FF6B9D);
  transform: scale(1.05);
  border-color: #FFD700;
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.5);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(255, 165, 0, 0.2);
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(255, 165, 0, 0.4);
}

.info-item img {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 4px 8px rgba(255, 107, 157, 0.3));
  flex-shrink: 0;
}

.info-item h3 {
  color: #FF6B9D;
  font-size: 18px;
  margin-bottom: 8px;
}

.info-item p {
  color: #1A1A2E;
  font-size: 15px;
  margin: 0;
}

.visit-note {
  background: linear-gradient(135deg, #667EEA, #764BA2);
  padding: 30px;
  border-radius: 20px;
  margin-top: 30px;
}

.visit-note h3 {
  color: white;
  margin-bottom: 12px;
  font-size: 20px;
}

.visit-note p {
  color: white;
  font-size: 15px;
  margin: 0;
}

/* LEGAL PAGES */
.legal-hero {
  background: linear-gradient(135deg, #667EEA, #764BA2);
  padding: 60px 40px;
  text-align: center;
  border-radius: 0 0 30px 30px;
  margin-bottom: 60px;
}

.legal-hero h1 {
  color: white;
  margin-bottom: 16px;
}

.legal-hero .subtitle, .legal-hero .update-date {
  color: white;
  font-size: 16px;
  margin: 0;
}

.legal-content {
  padding: 40px 20px;
}

.legal-content .content-wrapper {
  max-width: 900px;
  text-align: left;
}

.legal-content h2 {
  color: #FF6B9D;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
}

.legal-content h3 {
  color: #667EEA;
  margin-top: 30px;
  margin-bottom: 16px;
  font-size: 22px;
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

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

.legal-content ul li {
  margin-bottom: 10px;
  color: #1A1A2E;
  line-height: 1.6;
}

.legal-content a {
  color: #667EEA;
  text-decoration: underline;
  font-weight: 600;
}

.legal-content a:hover {
  color: #FF6B9D;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #A8E6CF, #FFD3A5);
  padding: 80px 40px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 60px;
}

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

.success-icon {
  margin-bottom: 30px;
  animation: pulse 2s ease-in-out infinite;
}

.success-icon img {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.thank-you-content h1 {
  color: #667EEA;
  margin-bottom: 24px;
}

.confirmation-message {
  font-size: 18px;
  color: #1A1A2E;
  margin-bottom: 30px;
}

.btn-home {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B9D, #FFA500);
  color: white;
  padding: 16px 40px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.btn-home:hover {
  background: linear-gradient(135deg, #FFA500, #FF6B9D);
  transform: scale(1.1);
  border-color: #FFD700;
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.5);
}

.next-steps, .meanwhile, .recommended-expeditions {
  padding: 60px 20px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.step-item {
  background: white;
  border-radius: 20px;
  padding: 30px;
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.step-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
}

.step-item h3 {
  color: #FF6B9D;
  margin-bottom: 12px;
  font-size: 20px;
}

.step-item p {
  color: #1A1A2E;
  font-size: 15px;
}

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

.explore-link {
  background: linear-gradient(135deg, #667EEA, #764BA2);
  color: white;
  padding: 16px 32px;
  border-radius: 25px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.explore-link:hover {
  background: linear-gradient(135deg, #764BA2, #667EEA);
  transform: scale(1.1);
  border-color: #FFD700;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

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

.cta-button-secondary {
  background: transparent;
  color: white;
  padding: 16px 32px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 18px;
  border: 3px solid white;
  transition: all 0.3s ease;
}

.cta-button-secondary:hover {
  background: white;
  color: #667EEA;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #1A1A2E, #2D2D44);
  color: white;
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-radius: 30px 30px 0 0;
}

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

.footer-section {
  flex: 1 1 200px;
  max-width: 280px;
}

.footer-section h4 {
  color: #FFA500;
  margin-bottom: 20px;
  font-size: 18px;
  font-family: 'Cinzel', serif;
}

.footer-section p {
  color: #E8DCC4;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.footer-section nav a {
  color: #E8DCC4;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.footer-section nav a:hover {
  color: #FFA500;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid rgba(232, 220, 196, 0.3);
}

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #FF6B9D, #FFA500);
  padding: 25px 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 -4px 20px rgba(255, 107, 157, 0.4);
}

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

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

.cookie-banner-text {
  flex: 1 1 400px;
  color: white;
  font-size: 15px;
}

.cookie-banner-text a {
  color: #FFD700;
  text-decoration: underline;
  font-weight: 700;
}

.cookie-banner-text a:hover {
  color: white;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.cookie-accept {
  background: white;
  color: #FF6B9D;
}

.cookie-accept:hover {
  background: #FFD700;
  color: #1A1A2E;
  transform: scale(1.1);
  border-color: white;
}

.cookie-reject {
  background: transparent;
  color: white;
  border-color: white;
}

.cookie-reject:hover {
  background: white;
  color: #FF6B9D;
  transform: scale(1.1);
}

.cookie-settings {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.cookie-settings:hover {
  background: white;
  color: #FF6B9D;
  transform: scale(1.1);
}

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

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

.cookie-modal-content {
  background: white;
  border-radius: 30px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 50px rgba(255, 107, 157, 0.5);
  animation: fadeIn 0.4s ease-out;
}

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

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

.cookie-modal h2 {
  color: #FF6B9D;
  margin-bottom: 30px;
}

.cookie-category {
  background: #FFF8E7;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  border-left: 5px solid #FFA500;
}

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

.cookie-category h3 {
  color: #1A1A2E;
  font-size: 18px;
  margin: 0;
}

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

.cookie-toggle.active {
  background: #4CAF50;
}

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

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

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

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

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

.cookie-save {
  background: linear-gradient(135deg, #FF6B9D, #FFA500);
  color: white;
  padding: 14px 32px;
  border-radius: 25px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.cookie-save:hover {
  background: linear-gradient(135deg, #FFA500, #FF6B9D);
  transform: scale(1.1);
  border-color: #FFD700;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  h3 { font-size: 22px; }
  
  .main-nav { gap: 20px; }
  
  .services-grid {
    gap: 25px;
  }
  
  .service-card {
    flex: 1 1 280px;
  }
}

@media (max-width: 768px) {
  /* MOBILE MENU ACTIVATION */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .main-nav {
    display: none;
  }
  
  .header-content .cta-button {
    display: none;
  }
  
  /* TYPOGRAPHY */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  p { font-size: 15px; }
  
  /* HERO */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-content h1 {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-primary, .cta-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  
  /* SECTIONS */
  section {
    padding: 30px 15px;
    margin-bottom: 40px;
  }
  
  /* GRIDS */
  .services-grid,
  .benefits-grid,
  .testimonials-grid,
  .details-list,
  .process-steps,
  .themes-grid,
  .commitment-grid,
  .stories-grid,
  .steps-grid,
  .links-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .service-card,
  .benefit-item,
  .testimonial-card,
  .detail-item,
  .step,
  .theme-card,
  .commitment-item,
  .story-card,
  .step-item {
    max-width: 100%;
    width: 100%;
  }
  
  /* CONTACT */
  .contact-grid {
    flex-direction: column;
  }
  
  .contact-form-wrapper,
  .contact-info-wrapper {
    max-width: 100%;
    width: 100%;
  }
  
  .contact-form {
    padding: 25px;
  }
  
  /* FOOTER */
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-section {
    max-width: 100%;
    width: 100%;
  }
  
  /* COOKIE BANNER */
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-text {
    flex: 1 1 100%;
  }
  
  .cookie-banner-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1 1 auto;
  }
  
  /* COOKIE MODAL */
  .cookie-modal-content {
    padding: 30px 20px;
  }
  
  .cookie-category-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .logo img {
    height: 50px;
  }
  
  .mobile-menu {
    width: 100%;
  }
  
  .price {
    font-size: 24px;
  }
  
  .cta-primary, .cta-secondary,
  .btn-explore, .btn-reserve,
  .cta-button, .btn-submit,
  .explore-link {
    padding: 14px 24px;
    font-size: 16px;
  }
  
  .cookie-modal-content {
    padding: 25px 15px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-save {
    width: 100%;
  }
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* FOCUS STYLES */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid #FFA500;
  outline-offset: 3px;
}

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