/* ========================================
   DYNAMIC PEAK - VIBRANT ENERGETIC DESIGN
   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-color: #ffffff;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* ========================================
   VIBRANT ENERGETIC COLOR PALETTE
   ======================================== */

:root {
  --primary: #D84315;
  --primary-dark: #C23000;
  --primary-light: #FF6F43;
  --secondary: #1B5E20;
  --secondary-light: #4CAF50;
  --accent: #FFF3E0;
  --accent-dark: #FFE0B2;
  --electric-blue: #0D47A1;
  --electric-purple: #6A1B9A;
  --electric-yellow: #FFD600;
  --electric-pink: #E91E63;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --gray-light: #f5f5f5;
  --gray-medium: #e0e0e0;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* ========================================
   TYPOGRAPHY - BOLD & DYNAMIC
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--electric-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 40px;
  margin-bottom: 24px;
  color: var(--primary);
}

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

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

p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #333;
}

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

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

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

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

/* ========================================
   HEADER & NAVIGATION - ELECTRIC ENERGY
   ======================================== */

header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(216, 67, 21, 0.3);
  border-bottom: 4px solid var(--electric-yellow);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

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

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

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

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--electric-yellow);
  transition: left 0.3s ease;
  z-index: -1;
}

.main-nav a:hover::before {
  left: 0;
}

.main-nav a:hover {
  color: var(--primary-dark);
  transform: translateY(-3px);
}

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

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, var(--primary) 0%, var(--electric-purple) 100%);
  color: var(--text-light);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-hover);
  transition: all 0.3s ease;
  font-weight: bold;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 8px 30px rgba(216, 67, 21, 0.4);
}

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

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

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

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

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

.mobile-nav a {
  color: var(--text-light);
  font-size: 20px;
  font-weight: 700;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-nav a:hover {
  background: var(--text-light);
  color: var(--primary);
  transform: translateX(10px);
  border-color: var(--electric-yellow);
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ========================================
   BUTTONS - HIGH ENERGY CTAs
   ======================================== */

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.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;
  z-index: -1;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--electric-purple) 100%);
  color: var(--text-light);
  box-shadow: 0 6px 25px rgba(216, 67, 21, 0.4);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 35px rgba(216, 67, 21, 0.6);
}

.btn-secondary {
  background: var(--text-light);
  color: var(--primary);
  border: 3px solid var(--primary);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--text-light);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 35px rgba(216, 67, 21, 0.4);
}

/* ========================================
   HERO SECTION - EXPLOSIVE ENERGY
   ======================================== */

.hero {
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--electric-purple) 50%, var(--primary) 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

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

.hero h1 {
  color: var(--text-light);
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
  animation: slideInDown 0.8s ease;
  background: linear-gradient(135deg, var(--text-light) 0%, var(--electric-yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hero-subheadline {
  font-size: 22px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  animation: slideInUp 0.8s ease 0.2s both;
}

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

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeIn 0.8s ease 0.4s both;
}

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

.trust-badge {
  font-size: 16px;
  color: var(--electric-yellow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: fadeIn 0.8s ease 0.6s both;
}

/* ========================================
   HERO SECONDARY - VIBRANT PAGES
   ======================================== */

.hero-secondary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--electric-purple) 100%);
  padding: 80px 20px 60px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero-secondary::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--electric-yellow) 0%, var(--electric-pink) 50%, var(--electric-blue) 100%);
}

.hero-secondary h1 {
  color: var(--text-light);
  font-size: 48px;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
}

.hero-secondary p {
  color: var(--text-light);
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-bottom: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: var(--electric-yellow);
  transition: all 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--text-light);
  text-decoration: underline;
}

/* ========================================
   CARD LAYOUTS - DYNAMIC FLEXBOX
   ======================================== */

.benefits-grid,
.services-grid,
.steps-grid,
.testimonials-grid,
.destinations-grid,
.included-grid,
.contact-grid,
.values-grid,
.team-grid,
.categories-grid,
.seasons-grid,
.tips-grid,
.moments-grid,
.trust-grid,
.suggestions-grid,
.tour-buttons-grid,
.initiatives-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
  justify-content: center;
}

/* ========================================
   BENEFIT CARDS - EXPLOSIVE ICONS
   ======================================== */

.benefit-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--text-light) 100%);
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--electric-yellow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-item:hover::before {
  opacity: 0.2;
}

.benefit-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.benefit-item img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  filter: drop-shadow(3px 3px 8px rgba(216, 67, 21, 0.3));
  transition: transform 0.3s ease;
}

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

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

/* ========================================
   SERVICE CARDS - VIBRANT OFFERINGS
   ======================================== */

.service-card,
.tour-card,
.destination-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 300px;
  background: var(--text-light);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border: 3px solid var(--gray-medium);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.service-card::before,
.tour-card::before,
.destination-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--electric-yellow) 0%, var(--electric-pink) 50%, var(--electric-blue) 100%);
  transition: left 0.4s ease;
}

.service-card:hover::before,
.tour-card:hover::before,
.destination-card:hover::before {
  left: 0;
}

.service-card:hover,
.tour-card:hover,
.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

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

.service-card p,
.tour-card p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #333;
}

.price {
  font-size: 28px;
  font-weight: 800;
  color: var(--secondary);
  margin: 20px 0;
  display: block;
}

.tour-details {
  background: var(--accent);
  padding: 20px;
  border-radius: 12px;
  margin: 20px 0;
  border-left: 4px solid var(--primary);
}

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

/* ========================================
   TESTIMONIALS - AUTHENTIC VOICES
   ======================================== */

.testimonials {
  background: var(--accent);
  padding: 80px 20px;
  margin-bottom: 60px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: var(--text-light);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border-left: 6px solid var(--electric-yellow);
  position: relative;
  margin-bottom: 24px;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.quote {
  font-size: 18px;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-dark);
  position: relative;
  padding-left: 30px;
}

.quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 60px;
  color: var(--primary);
  font-family: Georgia, serif;
  line-height: 1;
}

.author {
  font-weight: 700;
  color: var(--primary);
  font-size: 16px;
  margin-bottom: 8px;
}

.rating {
  color: var(--electric-yellow);
  font-size: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* ========================================
   STEP PROCESS - DYNAMIC JOURNEY
   ======================================== */

.step-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  text-align: center;
  padding: 32px 24px;
  background: var(--text-light);
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border: 3px solid transparent;
  position: relative;
  margin-bottom: 24px;
}

.step-item::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -40px;
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--electric-purple) 100%);
  transform: translateY(-50%);
}

.step-item:last-child::after {
  display: none;
}

.step-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.step-item img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  filter: drop-shadow(3px 3px 8px rgba(216, 67, 21, 0.3));
}

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

.step-item p {
  font-size: 16px;
  color: #555;
}

/* ========================================
   CTA SECTIONS - HIGH ENERGY CONVERSION
   ======================================== */

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

.cta-final,
.custom-tour-cta,
.cta-join,
.custom-destination-cta,
.cta-experience {
  background: linear-gradient(135deg, var(--primary) 0%, var(--electric-purple) 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 30px;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-final::before,
.custom-tour-cta::before,
.cta-join::before,
.custom-destination-cta::before,
.cta-experience::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 214, 0, 0.3) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

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

.cta-final h2,
.custom-tour-cta h2,
.cta-join h2,
.custom-destination-cta h2,
.cta-experience h2 {
  color: var(--text-light);
  font-size: 42px;
  margin-bottom: 20px;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.cta-final p,
.custom-tour-cta p,
.cta-join p,
.custom-destination-cta p,
.cta-experience p {
  color: var(--text-light);
  font-size: 20px;
  margin-bottom: 32px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.contact-info {
  font-size: 18px;
  font-weight: 700;
  color: var(--electric-yellow);
  margin-top: 24px;
}

/* ========================================
   PRICE GUARANTEE - TRUST BUILDER
   ======================================== */

.price-guarantee {
  background: var(--accent);
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 60px 0;
}

.price-guarantee h2 {
  color: var(--primary);
  margin-bottom: 16px;
}

.included-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
}

.included-item img {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  filter: drop-shadow(2px 2px 6px rgba(216, 67, 21, 0.3));
}

.included-item p {
  font-weight: 700;
  color: var(--primary);
  font-size: 16px;
}

.guarantee-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary);
  margin-top: 32px;
  padding: 16px;
  background: var(--text-light);
  border-radius: 12px;
  display: inline-block;
}

/* ========================================
   FOOTER - VIBRANT FOUNDATION
   ======================================== */

footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, #2a2a2a 100%);
  color: var(--text-light);
  padding: 60px 20px 32px;
  margin-top: 80px;
  border-top: 6px solid var(--primary);
}

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

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

.footer-logo {
  width: 180px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
  color: var(--electric-yellow);
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  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;
  color: var(--electric-yellow);
}

.footer-nav a:hover {
  color: var(--electric-yellow);
  padding-left: 20px;
}

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

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

/* ========================================
   CONTACT PAGE - VIBRANT FORMS
   ======================================== */

.contact-option {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  text-align: center;
  padding: 32px 24px;
  background: var(--text-light);
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border: 3px solid transparent;
}

.contact-option:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.contact-option img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  filter: drop-shadow(3px 3px 8px rgba(216, 67, 21, 0.3));
}

.contact-option h3 {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 16px;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.form-field {
  margin-bottom: 24px;
  text-align: left;
}

.form-field label {
  display: block;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 16px;
}

.input-placeholder {
  background: var(--gray-light);
  border: 3px solid var(--gray-medium);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 16px;
  color: #999;
  transition: all 0.3s ease;
}

.input-placeholder:hover {
  border-color: var(--primary);
  background: var(--text-light);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--primary);
}

/* ========================================
   TOUR BUTTONS - QUICK SELECTION
   ======================================== */

.tour-btn {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  padding: 24px 32px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--text-light) 100%);
  border: 3px solid var(--primary);
  border-radius: 16px;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: var(--shadow);
}

.tour-btn:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--electric-purple) 100%);
  color: var(--text-light);
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

/* ========================================
   FAQ SECTION - CLEAR ANSWERS
   ======================================== */

.faq-item {
  background: var(--text-light);
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
  border-left: 6px solid var(--primary);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateX(10px);
}

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

.faq-item p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* ========================================
   LEGAL PAGES - CLEAN STRUCTURE
   ======================================== */

.legal-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 20px 60px;
  text-align: center;
  margin-bottom: 60px;
}

.legal-hero h1 {
  color: var(--text-light);
  font-size: 48px;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
}

.legal-hero p {
  color: var(--text-light);
  font-size: 18px;
}

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

.legal-section {
  background: var(--text-light);
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
  border-left: 6px solid var(--secondary);
}

.legal-section h2 {
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 16px;
}

.legal-section p,
.legal-section ul {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

.legal-section ul {
  padding-left: 20px;
}

.legal-section li {
  list-style: disc;
  margin-bottom: 8px;
}

.guarantees-list {
  background: var(--accent);
  padding: 32px;
  border-radius: 16px;
  margin: 32px 0;
}

.guarantees-list li {
  padding: 16px;
  border-bottom: 2px solid var(--gray-medium);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding-left: 40px;
}

.guarantees-list li::before {
  content: '✓';
  position: absolute;
  left: 10px;
  color: var(--secondary);
  font-weight: bold;
  font-size: 24px;
}

.guarantees-list li:last-child {
  border-bottom: none;
}

/* ========================================
   THANK YOU PAGE - SUCCESS CELEBRATION
   ======================================== */

.thank-you-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  padding: 100px 20px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.thank-you-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="50">🎉</text></svg>');
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: var(--secondary);
  margin: 0 auto 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: scaleIn 0.6s ease;
}

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

.thank-you-hero h1 {
  color: var(--text-light);
  font-size: 52px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
}

.subheadline {
  font-size: 22px;
  color: var(--text-light);
  font-weight: 600;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* ========================================
   TEAM & STORY - PERSONAL TOUCH
   ======================================== */

.team-member,
.team-contact {
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  background: var(--text-light);
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border: 3px solid transparent;
}

.team-member:hover,
.team-contact:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--electric-yellow);
}

.team-member h3,
.team-contact h3 {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 8px;
}

.role {
  color: var(--secondary);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-member p,
.team-contact p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* ========================================
   CONTENT SECTIONS - FLEXIBLE LAYOUTS
   ======================================== */

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

.content-item {
  flex: 1 1 calc(50% - 40px);
  min-width: 300px;
  background: var(--accent);
  padding: 40px;
  border-radius: 20px;
  border-left: 6px solid var(--primary);
}

.content-item h2 {
  color: var(--primary);
  font-size: 32px;
  margin-bottom: 20px;
}

.content-item p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-dark);
}

/* ========================================
   VALUE ITEMS - CORE PRINCIPLES
   ======================================== */

.value-item,
.initiative-item,
.moment-item,
.tip-item,
.season-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: var(--text-light);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border: 3px solid transparent;
  margin-bottom: 24px;
}

.value-item:hover,
.initiative-item:hover,
.moment-item:hover,
.tip-item:hover,
.season-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary);
}

.value-item h3,
.initiative-item h3,
.moment-item h3,
.tip-item h3,
.season-item h3 {
  color: var(--secondary);
  font-size: 24px;
  margin-bottom: 16px;
}

.value-item p,
.initiative-item p,
.moment-item p,
.tip-item p,
.season-item p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* ========================================
   STORY & MILESTONES - JOURNEY TIMELINE
   ======================================== */

.story {
  padding: 60px 20px;
}

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

.milestone {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--electric-purple) 100%);
  color: var(--text-light);
  border-radius: 16px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.milestone:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: var(--shadow-hover);
}

/* ========================================
   CATEGORY CARDS - EXPERIENCE TYPES
   ======================================== */

.category-card,
.suggestion-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 300px;
  background: var(--text-light);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border-top: 6px solid var(--electric-yellow);
  margin-bottom: 24px;
}

.category-card:hover,
.suggestion-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.category-card h3,
.suggestion-item h3 {
  color: var(--primary);
  font-size: 26px;
  margin-bottom: 16px;
}

.category-card p,
.suggestion-item p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

.example {
  font-style: italic;
  color: var(--secondary);
  background: var(--accent);
  padding: 16px;
  border-radius: 12px;
  border-left: 4px solid var(--secondary);
  margin-top: 16px;
  font-size: 15px;
}

/* ========================================
   TRUST INDICATORS - CONFIDENCE BUILDERS
   ======================================== */

.trust-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 24px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--text-light) 100%);
  border: 3px solid var(--secondary);
  border-radius: 16px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--secondary);
  transition: all 0.3s ease;
}

.trust-item:hover {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  color: var(--text-light);
  transform: scale(1.05);
}

/* ========================================
   OFFICE & CONTACT DETAILS
   ======================================== */

.office-details {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.office-info {
  flex: 1 1 100%;
  background: var(--accent);
  padding: 40px;
  border-radius: 20px;
  border-left: 6px solid var(--primary);
}

.office-info h3 {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 16px;
  margin-top: 24px;
}

.office-info h3:first-child {
  margin-top: 0;
}

.office-info p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-dark);
}

/* ========================================
   COOKIE CONSENT BANNER - COMPLIANCE
   ======================================== */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--text-dark) 0%, #2a2a2a 100%);
  color: var(--text-light);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 4px solid var(--electric-yellow);
}

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

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

.cookie-text {
  flex: 1 1 60%;
  min-width: 300px;
}

.cookie-text p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

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

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

.cookie-accept {
  background: var(--secondary);
  color: var(--text-light);
}

.cookie-accept:hover {
  background: var(--secondary-light);
  transform: translateY(-3px);
}

.cookie-decline {
  background: var(--gray-medium);
  color: var(--text-dark);
}

.cookie-decline:hover {
  background: var(--gray-light);
}

.cookie-settings {
  background: transparent;
  color: var(--electric-yellow);
  border: 2px solid var(--electric-yellow);
}

.cookie-settings:hover {
  background: var(--electric-yellow);
  color: var(--text-dark);
}

/* Cookie Modal */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.cookie-modal-content {
  background: var(--text-light);
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

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

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

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

.cookie-category {
  padding: 20px;
  background: var(--gray-light);
  border-radius: 12px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  color: var(--text-dark);
  font-size: 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background: var(--gray-medium);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

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

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

.cookie-toggle.active::after {
  left: 27px;
}

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

.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   SECTION BACKGROUNDS - ALTERNATING ENERGY
   ======================================== */

.value-proposition,
.how-it-works,
.featured-destinations,
.seasonal-recommendations,
.experience-categories,
.what-to-expect,
.booking-confidence,
.while-you-wait,
.next-steps {
  background: var(--gray-light);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.services-preview,
.tours-detailed,
.destinations-grid,
.authentic-moments,
.travel-tips,
.team,
.sustainability,
.contact-options,
.quick-tour-selector,
.office-visit,
.faq-contact,
.team-contacts,
.urgent-contact,
.trust-indicators,
.testimonial-single,
.mission-vision,
.values {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.section-subheadline,
.tagline {
  font-size: 20px;
  color: #666;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }
  p { font-size: 16px; }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subheadline {
    font-size: 18px;
  }
  
  .hero-secondary h1 {
    font-size: 36px;
  }
  
  .hero-secondary p {
    font-size: 18px;
  }
  
  .benefit-item,
  .service-card,
  .tour-card,
  .destination-card,
  .step-item,
  .testimonial-card,
  .contact-option,
  .team-member,
  .team-contact,
  .value-item,
  .category-card,
  .suggestion-item,
  .initiative-item,
  .moment-item,
  .tip-item,
  .season-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .content-item {
    flex: 1 1 100%;
  }
  
  .milestone {
    flex: 1 1 calc(50% - 24px);
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .btn {
    padding: 14px 32px;
    font-size: 16px;
  }
  
  .cta-buttons,
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn,
  .hero-cta .btn {
    width: 100%;
  }
  
  .step-item::after {
    display: none;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .section {
    padding: 40px 16px;
  }
  
  .benefit-item,
  .service-card,
  .tour-card,
  .destination-card {
    padding: 24px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .milestone {
    flex: 1 1 100%;
  }
}

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

@media (prefers-reduced-motion: no-preference) {
  .benefit-item,
  .service-card,
  .tour-card,
  .destination-card,
  .step-item,
  .testimonial-card,
  .value-item,
  .team-member {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
  }
  
  .benefit-item:nth-child(1),
  .service-card:nth-child(1),
  .step-item:nth-child(1) { animation-delay: 0.1s; }
  
  .benefit-item:nth-child(2),
  .service-card:nth-child(2),
  .step-item:nth-child(2) { animation-delay: 0.2s; }
  
  .benefit-item:nth-child(3),
  .service-card:nth-child(3),
  .step-item:nth-child(3) { animation-delay: 0.3s; }
  
  .benefit-item:nth-child(4),
  .service-card:nth-child(4),
  .step-item:nth-child(4) { animation-delay: 0.4s; }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* ========================================
   ACCESSIBILITY IMPROVEMENTS
   ======================================== */

*:focus-visible {
  outline: 3px solid var(--electric-yellow);
  outline-offset: 3px;
}

.btn:focus-visible,
a:focus-visible {
  outline: 3px solid var(--electric-yellow);
  outline-offset: 3px;
}

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .hero-cta,
  .cta-buttons,
  footer {
    display: none;
  }
  
  body {
    font-size: 12pt;
    color: #000;
  }
  
  h1 { font-size: 24pt; }
  h2 { font-size: 20pt; }
  h3 { font-size: 16pt; }
  
  .container {
    max-width: 100%;
  }
}

/* ========================================
   END OF DYNAMIC PEAK CSS
   ======================================== */