/* CSS RESET AND 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, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

/* MODERN BOLD DESIGN STYLE - TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h1 {
  font-size: 48px;
  margin-bottom: 32px;
}

h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

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

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

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

ul {
  list-style: none;
}

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

/* MODERN BOLD DESIGN - HEADER */
header {
  background: #000000;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 4px solid #2D5C3F;
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.main-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 12px 0;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #2D5C3F;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #2D5C3F;
}

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

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 200;
  background: #2D5C3F;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border-radius: 0;
}

.mobile-menu-toggle:hover {
  background: #1a3d2a;
  transform: scale(1.1);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #000000;
  z-index: 150;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
  border-left: 4px solid #2D5C3F;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #2D5C3F;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.mobile-menu-close:hover {
  background: #1a3d2a;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 20px 24px;
  background: rgba(45, 92, 63, 0.1);
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-nav a::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: #2D5C3F;
  transition: left 0.3s ease;
  z-index: -1;
}

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

.mobile-nav a:hover {
  border-left-color: #8B6F47;
  transform: translateX(8px);
}

/* MODERN BOLD DESIGN - HERO SECTION */
.hero {
  background: linear-gradient(135deg, #000000 0%, #2D5C3F 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 8px solid #8B6F47;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(139, 111, 71, 0.1);
  transform: rotate(45deg);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: #ffffff;
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 24px;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  color: #E8D5B7;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  max-width: 700px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.trust-indicators {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #2D5C3F;
}

/* MODERN BOLD DESIGN - BUTTONS */
.btn {
  display: inline-block;
  padding: 18px 40px;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #000000;
  transition: left 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn-primary {
  background: #2D5C3F;
  color: #ffffff;
  border-color: #2D5C3F;
}

.btn-primary:hover {
  color: #2D5C3F;
  background: transparent;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(45, 92, 63, 0.4);
}

.btn-secondary {
  background: #8B6F47;
  color: #ffffff;
  border-color: #8B6F47;
}

.btn-secondary:hover {
  color: #8B6F47;
  background: transparent;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(139, 111, 71, 0.4);
}

.btn-outline {
  background: transparent;
  color: #2D5C3F;
  border: 3px solid #2D5C3F;
}

.btn-outline:hover {
  background: #2D5C3F;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(45, 92, 63, 0.4);
}

/* SECTION SPACING */
section {
  padding: 80px 0;
  position: relative;
}

.section-subtitle {
  font-size: 18px;
  color: #666666;
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

/* MODERN BOLD DESIGN - CARDS */
.destinations-grid,
.services-grid,
.benefits-grid,
.testimonials-grid,
.regions-grid,
.mission-grid,
.team-grid,
.stats-grid,
.seasons-grid,
.info-grid,
.tips-grid,
.packing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.destination-card,
.service-card,
.benefit-card,
.region-card,
.mission-card,
.team-card,
.stat-card,
.season-card,
.info-card,
.tip-card,
.packing-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #ffffff;
  border: 4px solid #000000;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 8px 8px 0 #2D5C3F;
}

.destination-card:hover,
.service-card:hover,
.benefit-card:hover,
.region-card:hover,
.mission-card:hover,
.team-card:hover,
.info-card:hover,
.tip-card:hover,
.packing-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 #8B6F47;
}

.destination-card h3,
.service-card h3,
.benefit-card h3,
.region-card h3,
.mission-card h3,
.team-card h3,
.stat-card h3,
.season-card h3,
.info-card h3,
.tip-card h3,
.packing-card h3 {
  color: #000000;
  margin-bottom: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card ul {
  margin: 20px 0;
  padding-left: 0;
}

.service-card li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-weight: 600;
}

.service-card li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: #2D5C3F;
  font-size: 12px;
}

.price {
  font-size: 32px;
  font-weight: 900;
  color: #2D5C3F;
  margin: 20px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.role {
  color: #8B6F47;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

/* STAT CARDS */
.stat-card {
  text-align: center;
  background: #000000;
  color: #ffffff;
  border-color: #2D5C3F;
}

.stat-card h3 {
  font-size: 56px;
  color: #2D5C3F;
  margin-bottom: 8px;
}

.stat-card p {
  color: #E8D5B7;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* MODERN BOLD DESIGN - TESTIMONIALS */
.testimonials {
  background: #E8D5B7;
  border-top: 8px solid #000000;
  border-bottom: 8px solid #000000;
}

.testimonial-card {
  background: #ffffff;
  padding: 40px;
  border: 4px solid #000000;
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  box-shadow: 8px 8px 0 #2D5C3F;
}

.testimonial-card p {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 20px;
  color: #1a1a1a;
  line-height: 1.8;
}

.customer-name {
  font-weight: 900;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
}

/* VALUE PROPS */
.value-props {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.value-prop {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  padding: 32px;
  background: #000000;
  color: #ffffff;
  border: 4px solid #2D5C3F;
}

.value-prop h3 {
  color: #2D5C3F;
  margin-bottom: 16px;
}

.value-prop p {
  color: #E8D5B7;
}

/* INTRODUCTION SECTION */
.introduction {
  background: #f8f8f8;
}

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

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

/* FEATURED DESTINATIONS */
.featured-destinations {
  background: #ffffff;
}

.featured-destinations h2 {
  text-align: center;
  margin-bottom: 48px;
}

/* SERVICES SECTION */
.services {
  background: #000000;
  color: #ffffff;
}

.services h2 {
  color: #ffffff;
  text-align: center;
}

.services .section-subtitle {
  color: #E8D5B7;
}

/* BENEFITS SECTION */
.benefits {
  background: #E8D5B7;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 48px;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #2D5C3F 0%, #000000 100%);
  padding: 80px 0;
  text-align: center;
  border-top: 8px solid #8B6F47;
  border-bottom: 8px solid #8B6F47;
}

.cta-content h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-content p {
  color: #E8D5B7;
  font-size: 18px;
  margin-bottom: 32px;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #000000 0%, #2D5C3F 100%);
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 8px solid #8B6F47;
}

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

.page-hero .hero-subtitle {
  color: #E8D5B7;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.last-updated {
  color: #E8D5B7;
  font-size: 14px;
  font-weight: 600;
}

/* STORY SECTION */
.story {
  background: #ffffff;
}

/* MISSION VISION */
.mission-vision {
  background: #f8f8f8;
}

.mission-vision h2 {
  text-align: center;
  margin-bottom: 48px;
}

/* TEAM SECTION */
.team {
  background: #ffffff;
}

.team h2 {
  text-align: center;
  margin-bottom: 48px;
}

/* EXPERTISE */
.expertise {
  background: #000000;
  color: #ffffff;
}

.expertise h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 48px;
}

/* REGIONS */
.regions {
  background: #ffffff;
}

.regions h2 {
  text-align: center;
  margin-bottom: 48px;
}

/* DESTINATIONS */
.destinations {
  background: #f8f8f8;
}

.destinations h2 {
  text-align: center;
  margin-bottom: 48px;
}

/* TRAVEL TIPS */
.travel-tips {
  background: #E8D5B7;
  padding: 60px 0;
  text-align: center;
}

.travel-tips h2 {
  margin-bottom: 20px;
}

/* SERVICES INTRO */
.services-intro {
  background: #ffffff;
  text-align: center;
}

.services-intro h2 {
  margin-bottom: 24px;
}

/* SERVICES DETAILED */
.services-detailed {
  background: #f8f8f8;
}

/* INCLUSIONS */
.inclusions {
  background: #ffffff;
}

.inclusions h2 {
  text-align: center;
  margin-bottom: 48px;
}

.inclusions-grid {
  display: flex;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.inclusion-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background: #ffffff;
  border: 4px solid #000000;
  padding: 32px;
  box-shadow: 8px 8px 0 #2D5C3F;
}

.inclusion-card h3 {
  margin-bottom: 20px;
  font-size: 24px;
}

.inclusion-card ul {
  padding-left: 0;
}

.inclusion-card li {
  padding: 12px 0;
  border-bottom: 2px solid #E8D5B7;
  font-weight: 600;
}

.inclusion-card li:last-child {
  border-bottom: none;
}

/* SEASONAL GUIDE */
.seasonal-guide {
  background: #ffffff;
}

.seasonal-guide h2 {
  text-align: center;
  margin-bottom: 48px;
}

/* PRACTICAL INFO */
.practical-info {
  background: #f8f8f8;
}

.practical-info h2 {
  text-align: center;
  margin-bottom: 48px;
}

/* INSIDER TIPS */
.insider-tips {
  background: #E8D5B7;
}

.insider-tips h2 {
  text-align: center;
  margin-bottom: 48px;
}

/* PACKING LIST */
.packing-list {
  background: #ffffff;
}

.packing-list h2 {
  text-align: center;
  margin-bottom: 48px;
}

.packing-card ul {
  padding-left: 0;
}

.packing-card li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-weight: 600;
}

.packing-card li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: #2D5C3F;
  font-size: 12px;
}

/* SAFETY */
.safety {
  background: #f8f8f8;
  text-align: center;
}

.safety h2 {
  margin-bottom: 24px;
}

.safety-tips {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: left;
  background: #ffffff;
  padding: 40px;
  border: 4px solid #000000;
  box-shadow: 8px 8px 0 #2D5C3F;
}

.safety-tips ul {
  padding-left: 0;
}

.safety-tips li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-weight: 600;
  border-bottom: 2px solid #E8D5B7;
}

.safety-tips li:last-child {
  border-bottom: none;
}

.safety-tips li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: #2D5C3F;
  font-size: 16px;
}

/* GALLERY INTRO */
.gallery-intro {
  background: #ffffff;
  text-align: center;
}

.gallery-intro h2 {
  margin-bottom: 24px;
}

/* GALLERY CATEGORIES */
.gallery-categories {
  background: #f8f8f8;
  padding: 40px 0;
}

.categories-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.category-btn {
  padding: 16px 32px;
  background: #ffffff;
  border: 3px solid #000000;
  color: #000000;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.category-btn:hover,
.category-btn.active {
  background: #2D5C3F;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(45, 92, 63, 0.4);
}

/* GUEST STORIES */
.guest-stories {
  background: #ffffff;
}

.guest-stories h2 {
  text-align: center;
  margin-bottom: 48px;
}

.stories-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.story-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background: #E8D5B7;
  padding: 40px;
  border: 4px solid #000000;
  box-shadow: 8px 8px 0 #2D5C3F;
}

.story-card h3 {
  margin-bottom: 20px;
  color: #000000;
}

.story-card p {
  color: #1a1a1a;
  line-height: 1.8;
}

.author {
  font-weight: 900;
  color: #000000;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1.5px;
  margin-top: 20px;
}

/* FEATURED DESTINATIONS HIGHLIGHT */
.featured-destinations {
  background: #f8f8f8;
}

.featured-destinations h2 {
  text-align: center;
  margin-bottom: 48px;
}

.destinations-highlight {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.destination-highlight {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #000000;
  color: #ffffff;
  padding: 40px;
  border: 4px solid #2D5C3F;
  transition: all 0.3s ease;
}

.destination-highlight:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.destination-highlight h3 {
  color: #2D5C3F;
  margin-bottom: 16px;
}

.destination-highlight p {
  color: #E8D5B7;
}

/* INSTAGRAM SECTION */
.instagram-section {
  background: linear-gradient(135deg, #2D5C3F 0%, #000000 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.instagram-section h2 {
  color: #ffffff;
  margin-bottom: 24px;
}

.instagram-handle {
  font-size: 32px;
  font-weight: 900;
  color: #E8D5B7;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.instagram-section p {
  color: #E8D5B7;
  font-size: 18px;
}

/* CONTACT INFO */
.contact-info {
  background: #ffffff;
}

.contact-info h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.contact-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  background: #E8D5B7;
  padding: 40px;
  text-align: center;
  border: 4px solid #000000;
  box-shadow: 8px 8px 0 #2D5C3F;
}

.contact-card h3 {
  color: #000000;
  margin-bottom: 20px;
}

.contact-card p {
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-note {
  color: #8B6F47;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CONTACT FORM SECTION */
.contact-form-section {
  background: #f8f8f8;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.contact-form-section > .container > p {
  text-align: center;
  color: #666666;
  margin-bottom: 48px;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 48px;
  border: 4px solid #000000;
  box-shadow: 8px 8px 0 #2D5C3F;
}

.form-note {
  background: #E8D5B7;
  padding: 24px;
  margin-bottom: 32px;
  border-left: 4px solid #2D5C3F;
}

.form-note p {
  margin-bottom: 12px;
}

.form-note p:last-child {
  margin-bottom: 0;
}

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

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

.field-group label {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  color: #000000;
}

.form-input {
  padding: 16px;
  border: 3px solid #000000;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
  background: #ffffff;
}

.form-input:focus {
  outline: none;
  border-color: #2D5C3F;
  box-shadow: 0 0 0 3px rgba(45, 92, 63, 0.2);
}

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

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

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

.checkbox-label a {
  color: #2D5C3F;
  text-decoration: underline;
}

/* OFFICE INFO */
.office-info {
  background: #ffffff;
}

.office-info h2 {
  text-align: center;
  margin-bottom: 24px;
}

.office-info > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.directions {
  max-width: 700px;
  margin: 0 auto;
  background: #E8D5B7;
  padding: 32px;
  border: 4px solid #000000;
  box-shadow: 8px 8px 0 #2D5C3F;
}

.directions h3 {
  margin-bottom: 20px;
}

.directions ul {
  padding-left: 0;
}

.directions li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-weight: 600;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

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

.directions li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #2D5C3F;
  font-size: 20px;
  font-weight: 900;
}

/* FAQ QUICK */
.faq-quick {
  background: #f8f8f8;
}

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

.faq-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.faq-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border: 4px solid #000000;
  box-shadow: 8px 8px 0 #2D5C3F;
}

.faq-item h3 {
  color: #2D5C3F;
  margin-bottom: 16px;
}

/* LEGAL CONTENT */
.legal-content {
  background: #ffffff;
}

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

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

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

.legal-content ul {
  padding-left: 0;
  margin: 20px 0;
}

.legal-content li {
  padding: 12px 0 12px 32px;
  position: relative;
  border-bottom: 1px solid #E8D5B7;
}

.legal-content li:last-child {
  border-bottom: none;
}

.legal-content li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: #2D5C3F;
  font-size: 12px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #2D5C3F 0%, #000000 100%);
  padding: 100px 0;
  text-align: center;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background: #8B6F47;
  color: #ffffff;
  font-size: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  border: 4px solid #ffffff;
  font-weight: 900;
}

.thank-you-hero h1 {
  color: #ffffff;
  margin-bottom: 24px;
}

.confirmation-message {
  color: #E8D5B7;
  font-size: 20px;
  font-weight: 600;
}

/* NEXT STEPS */
.next-steps {
  background: #ffffff;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 48px;
}

.steps-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.step-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  background: #E8D5B7;
  padding: 40px;
  text-align: center;
  border: 4px solid #000000;
  box-shadow: 8px 8px 0 #2D5C3F;
}

.step-card h3 {
  color: #2D5C3F;
  margin-bottom: 16px;
}

/* MEANWHILE */
.meanwhile {
  background: #f8f8f8;
}

.meanwhile h2 {
  text-align: center;
  margin-bottom: 48px;
}

.suggestions-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.suggestion-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 350px;
  background: #ffffff;
  padding: 40px;
  text-align: center;
  border: 4px solid #000000;
  box-shadow: 8px 8px 0 #2D5C3F;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.suggestion-card h3 {
  margin-bottom: 16px;
}

/* CONTACT ALTERNATIVE */
.contact-alternative {
  background: #000000;
  color: #ffffff;
  text-align: center;
  padding: 60px 0;
}

.contact-alternative h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.contact-alternative > .container > p {
  color: #E8D5B7;
  margin-bottom: 32px;
}

.contact-alternative .contact-info {
  max-width: 600px;
  margin: 0 auto;
}

.contact-alternative .contact-info p {
  color: #E8D5B7;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* FOOTER */
footer {
  background: #000000;
  color: #ffffff;
  padding: 60px 0 20px;
  border-top: 8px solid #2D5C3F;
}

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

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

.footer-section h3 {
  color: #2D5C3F;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-section p {
  color: #E8D5B7;
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-nav a {
  color: #E8D5B7;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 2px solid rgba(45, 92, 63, 0.3);
}

.footer-bottom p {
  color: #E8D5B7;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000000;
  border-top: 4px solid #2D5C3F;
  padding: 24px;
  z-index: 1000;
  display: none;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
}

.cookie-consent.show {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.cookie-text {
  flex: 1 1 auto;
  color: #E8D5B7;
  font-size: 14px;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.cookie-accept {
  background: #2D5C3F;
  color: #ffffff;
  border-color: #2D5C3F;
}

.cookie-accept:hover {
  background: #1a3d2a;
  transform: translateY(-2px);
}

.cookie-reject {
  background: transparent;
  color: #E8D5B7;
  border: 3px solid #8B6F47;
}

.cookie-reject:hover {
  background: #8B6F47;
  color: #ffffff;
}

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

.cookie-settings:hover {
  background: #2D5C3F;
  color: #ffffff;
}

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

.cookie-modal.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

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

.cookie-modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 48px;
  border: 4px solid #000000;
  box-shadow: 0 0 60px rgba(45, 92, 63, 0.5);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #2D5C3F;
  color: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-modal h2 {
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f8f8f8;
  border-left: 4px solid #2D5C3F;
}

.cookie-category h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cookie-category p {
  font-size: 14px;
  color: #666666;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: #cccccc;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #2D5C3F;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  transition: transform 0.3s ease;
}

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

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
  
  .destination-card,
  .service-card,
  .benefit-card,
  .region-card,
  .mission-card,
  .team-card,
  .season-card,
  .info-card,
  .tip-card,
  .packing-card {
    flex: 1 1 calc(50% - 16px);
  }
  
  .value-prop {
    flex: 1 1 calc(50% - 16px);
  }
}

@media (max-width: 768px) {
  /* MOBILE HEADER */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* TYPOGRAPHY */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* SECTIONS */
  section {
    padding: 60px 0;
  }
  
  .hero {
    padding: 80px 0 60px;
  }
  
  .page-hero {
    padding: 60px 0 40px;
  }
  
  /* CARDS */
  .destination-card,
  .service-card,
  .benefit-card,
  .region-card,
  .mission-card,
  .team-card,
  .stat-card,
  .season-card,
  .info-card,
  .tip-card,
  .packing-card,
  .testimonial-card,
  .value-prop,
  .story-card,
  .destination-highlight,
  .contact-card,
  .inclusion-card,
  .faq-item,
  .step-card,
  .suggestion-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* BUTTONS */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* TRUST INDICATORS */
  .trust-indicators {
    flex-direction: column;
  }
  
  .trust-item {
    text-align: center;
  }
  
  /* FOOTER */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* COOKIE CONSENT */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* FORMS */
  .form-container {
    padding: 32px 24px;
  }
  
  /* MODAL */
  .cookie-modal-content {
    padding: 32px 24px;
  }
  
  /* CONTACT GRID */
  .contact-grid {
    flex-direction: column;
  }
  
  .contact-card {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .price {
    font-size: 24px;
  }
  
  .instagram-handle {
    font-size: 24px;
  }
  
  section {
    padding: 40px 0;
  }
  
  .destination-card,
  .service-card,
  .benefit-card,
  .testimonial-card {
    padding: 24px;
  }
  
  .form-container {
    padding: 24px 16px;
  }
  
  .categories-nav {
    flex-direction: column;
  }
  
  .category-btn {
    width: 100%;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .cta-banner,
  .hero-cta,
  .btn {
    display: none !important;
  }
  
  header {
    position: static;
    box-shadow: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  h1 {
    font-size: 24pt;
  }
  
  h2 {
    font-size: 18pt;
  }
  
  h3 {
    font-size: 14pt;
  }
}