/***************************************************
 * TABLE OF CONTENTS
 * 1. Variables & Reset
 * 2. Typography
 * 3. Layout Components
 * 4. Header & Navigation
 * 5. Language & Currency Switchers
 * 6. Hero Sections & Breadcrumbs
 * 7. Search & Filters
 * 8. Destination Cards & Content
 * 9. Modal Design
 * 10. Quote Section
 * 11. Planning Section
 * 12. Terms of Service/Privacy
 * 13. About us
 * 14. FAQ 
 * 15. Partnership
 * 16. Contact
 * 17. Plan your trip
 * 18. Destinations
 * 19. Home
 * 20. Footer
 * 21. Utilities
 * 22. Media Queries
 ***************************************************/

/***************************************************
 * 1. VARIABLES & RESET
 ***************************************************/
 :root {
  /* Color palette */
  --primary: #57654c;
  --primary-dark: #4a5641;
  --primary-light: #6a7860;
  --secondary: #f7f4ea;
  --bg-light: #faf9f5;
  --bg-cream: #f2ede7;
  --bg-beige: #e3dacb;
  --text: #333333;
  --text-light: #57654c;
  --light: #f7f4ea;
  --accent: #c8933a;
  --accent-light: #e6c285;
  --slider-inactive: #d1d1d1;
  --highlight-bg: #f7f9ee;
  
  /* Shadows */
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 8px 20px rgba(0, 0, 0, 0.1);
  --shadow-dark: 0 15px 30px rgba(0, 0, 0, 0.15);
  
  /* Typography */
  --font-primary: 'Ubuntu', sans-serif;
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-xs: 0.75rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 5rem;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 50%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-primary);
}

body {
  background: var(--bg-light);
  color: var(--text);
  line-height: 1.6;
  position: relative;
  margin: 0;
  padding: 0;
}

/***************************************************
 * 2. TYPOGRAPHY
 ***************************************************/
h1, h2, h3, h4 {
  font-family: var(--font-primary);
  line-height: 1.3;
  color: var(--primary);
}

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

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

.section-title {
  text-align: center;
  font-size: var(--font-size-4xl);
  margin-bottom: 1rem;
  color: var(--primary);
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--text);
  font-size: var(--font-size-lg);
}

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

* {
  box-sizing: inherit;
}

/***************************************************
 * 3. LAYOUT COMPONENTS
 ***************************************************/
.section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(to right, var(--primary-light), var(--accent), var(--primary-light));
}

.section.alternate {
  padding: 5rem 0;
  background-color: var(--bg-cream);
  position: relative;
  overflow: hidden;
}

.section.alternate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(to right, var(--primary-light), var(--accent), var(--primary-light));
}

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

.terms-layout {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 2rem;
  align-items: start;
}

.privacy-layout {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 2rem 0;
}

/* Text Block */
.text-block {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.text-block h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.text-block p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.text-block ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.text-block ul li {
  margin-bottom: 0.5rem;
}

/* Legal Identity Box */
.legal-identity {
  background: var(--bg-cream);
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 800px;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--bg-beige);
}

.legal-identity h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.legal-identity p {
  margin-bottom: 0.5rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-item {
  background: var(--light);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border: 1px solid var(--bg-beige);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
}

.feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.feature-item p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Example Box */
.example-box {
  background: var(--bg-cream);
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 800px;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--bg-beige);
}

.example-box h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.example-box h4 {
  margin-bottom: 12px; 
}

.example-box p {
  margin-bottom: 0.5rem;
  font-style: italic;
}

/***************************************************
 * 4. HEADER & NAVIGATION
 ***************************************************/
 header {
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-height: 80px;
  display: flex;
  align-items: center;
  padding: 0.6rem 0;
}

/* Show hamburger icon */
.hamburger {
  display: none;
  font-size: 1.5rem;
  color: var(--secondary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: transform 0.3s ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3%;
  position: relative;
}

/* Navigation Sections */
.nav-section-left, .nav-section-right {
  display: flex;
  align-items: center;
  width: 40%;
}

.nav-section-left {
  justify-content: flex-end;
  padding-right: 2rem;
}

.nav-section-right {
  justify-content: flex-start;
  padding-left: 2rem;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1.5rem;
}

.nav-list li a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-list li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -5px;
  left: 0;
  background-color: var(--secondary);
  transition: width 0.3s ease;
  border-radius: 3px;
}

.nav-list li a:hover, 
.nav-list li a.active {
  color: #ffffff;
  transform: translateY(-2px);
}

.nav-list li a:hover::after, 
.nav-list li a.active::after {
  width: 100%;
}

/* CTA Button - Restored Background */
.nav-cta {
  background-color: var(--secondary);
  color: var(--primary) !important;
  padding: 0.7rem 1.2rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  transition: all 0.3s !important;
  border: 2px solid var(--secondary) !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
  font-size: 0.95rem !important;
  white-space: nowrap;
  display: inline-block !important;
}

.nav-cta:hover {
  background-color: transparent !important;
  color: var(--secondary) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Logo and Switchers Container */
.logo-switchers-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 20%;
}

/* Logo Container */
.logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.logo {
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-text {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--secondary);
  margin: 0;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: 1px;
}

.logo-subtext {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 300;
  margin-top: 0.2rem;
  letter-spacing: 1px;
  margin-left: auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  text-align: right;
}

/* Center-aligned switchers container */
.center-switchers-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

/***************************************************
 * 5. LANGUAGE & CURRENCY SWITCHERS
 ***************************************************/
/* Header switchers */
.switcher-item {
  position: relative;
  width: 100%;
}

.switcher-dropdown {
  position: relative;
  user-select: none;
}

.switcher-button {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--secondary);
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s;
  white-space: nowrap;
  width: 100%;
}

/* Transparent switcher buttons */
.switcher-button.transparent {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  color: var(--secondary);
  padding: 0.4rem 0.6rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  width: auto;
}

.switcher-button:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.switcher-button.transparent:hover {
  background-color: transparent;
  transform: translateY(-2px);
}

.switcher-button i {
  font-size: 0.9rem;
  margin-right: 0.6rem;
}

.switcher-button i:last-child {
  margin-right: 0;
  margin-left: 0.6rem;
  font-size: 0.7rem;
  transition: transform 0.3s;
}

.switcher-button.active i:last-child {
  transform: rotate(180deg);
}

.current-currency,
.current-language {
  font-weight: 700;
}

.switcher-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 250px;
  max-height: 0;
  overflow: hidden;
  background-color: var(--primary);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 100;
  visibility: hidden;
  border: 1px solid var(--primary-dark);
}

/* Adjust dropdown position for centered layout */
.center-switchers-container .switcher-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  right: auto;
  width: 250px;
  transform: translateX(-50%) translateY(-10px);
}

.center-switchers-container .switcher-menu.active {
  transform: translateX(-50%) translateY(0);
}

.switcher-menu.active {
  max-height: 350px;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.switcher-search {
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  background-color: var(--primary-dark);
}

.switcher-search-input {
  width: 100%;
  padding: 10px 10px 10px 34px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  font-size: 0.95rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--secondary);
}

.switcher-search-input::placeholder {
  color: rgba(247, 244, 234, 0.7);
}

.switcher-search-input:focus {
  outline: none;
  border-color: var(--secondary);
  background-color: rgba(255, 255, 255, 0.15);
}

.switcher-search i {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary);
  font-size: 0.9rem;
}

/* Fixed options styling for readability */
.switcher-options {
  max-height: 250px;
  overflow-y: auto;
  padding: 8px 0;
  background-color: var(--secondary);
}

/* Menu options styling */
.switcher-menu .switcher-option {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--primary);
  text-decoration: none;
  background-color: var(--secondary);
  font-weight: 500;
}

.switcher-menu .switcher-option:hover {
  background-color: var(--bg-beige);
  color: var(--primary);
}

.switcher-menu .switcher-option.active {
  background-color: var(--primary);
  color: var(--bg-cream);
  font-weight: 700;
}

/* Ensure the language name text follows the color scheme */
.switcher-option .lang-name {
  color: inherit;
}

/* Fix for nested elements inside options to inherit colors */
.switcher-option * {
  color: inherit;
}

.lang-name {
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}

/* Footer switchers */
.footer-switchers {
  flex: 1;
  min-width: auto;
  max-width: 220px;
}

.footer-preferences {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-switcher {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  transform-origin: bottom center;
}

.footer-switcher-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary);
  font-size: 0.9rem;
}

.footer-switcher-label i {
  font-size: 0.9rem;
  color: var(--accent-light);
}

.footer-select {
  background-color: rgba(247, 244, 234, 0.15);
  border: 1px solid rgba(247, 244, 234, 0.3);
  color: var(--light);
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f7f4ea' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.footer-select:focus {
  outline: none;
  border-color: var(--accent-light);
}

.footer-select:hover {
  background-color: rgba(247, 244, 234, 0.2);
}

/* Style for dropdown options with height constraints */
.footer-select option {
  background-color: var(--primary-dark);
  color: var(--light);
  padding: 4px;
  max-height: 300px;
  overflow-y: auto;
  white-space: normal;
}

/* Custom select styling to limit dropdown height */
#footer-currency-select {
  position: relative;
}

/* Create a container with set height and overflow for dropdown */
#footer-currency-select option {
  max-height: 200px;
}

/* For webkit browsers */
#footer-currency-select::-webkit-scrollbar {
  width: 6px;
}

#footer-currency-select::-webkit-scrollbar-thumb {
  background-color: var(--accent-light);
  border-radius: 3px;
}

#footer-currency-select::-webkit-scrollbar-track {
  background: var(--primary-dark);
}

/***************************************************
 * 6. HERO SECTIONS & BREADCRUMBS
 ***************************************************/
 /* Destination Hero sections */
.main-hero {
  height: 100%;
  min-height: 80vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--secondary);
  text-align: center;
  padding: 2rem;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(87, 101, 76, 0.7), rgba(87, 101, 76, 0.85));
}

.slide.active {
  opacity: 1;
}

.main-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  color: var(--secondary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.main-hero p {
  font-size: 1.3rem;
  max-width: 800px;
  margin-bottom: 2rem;
  color: var(--light);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Destination Hero sections */
.destinations-hero {
  background: linear-gradient(to bottom, rgba(87, 101, 76, 0.7), rgba(87, 101, 76, 0.85)), 
              url('/assets/images/base/destinations1.jpg') center/cover no-repeat;
  height: 100%;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--secondary);
  text-align: center;
  padding: 2rem;
}

.destinations-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  color: var(--secondary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.destinations-hero p {
  font-size: 1.3rem;
  max-width: 800px;
  margin-bottom: 2rem;
  color: var(--light);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Africa Hero sections */
.africa-hero {
  background: linear-gradient(to bottom, rgba(87, 101, 76, 0.7), rgba(87, 101, 76, 0.85)), 
              url('/assets/images/africa/base/base1.jpg') center/cover no-repeat;
  height: 100%;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--secondary);
  text-align: center;
  padding: 2rem;
}

.africa-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  color: var(--secondary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.africa-hero h1 i {
  margin-right: 0.5rem;
  animation: pulse 3s infinite;
}

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

.africa-hero p {
  font-size: 1.3rem;
  max-width: 800px;
  margin-bottom: 2rem;
  color: var(--light);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Americas Hero sections */
.americas-hero {
  background: linear-gradient(to bottom, rgba(87, 101, 76, 0.7), rgba(87, 101, 76, 0.85)), 
              url('/assets/images/americas/base/base1.jpg') center/cover no-repeat;
  height: 100%;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--secondary);
  text-align: center;
  padding: 2rem;
}

.americas-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  color: var(--secondary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.americas-hero p {
  font-size: 1.3rem;
  max-width: 800px;
  margin-bottom: 2rem;
  color: var(--light);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Asia Hero sections */
.asia-hero {
  background: linear-gradient(to bottom, rgba(87, 101, 76, 0.7), rgba(87, 101, 76, 0.85)), 
              url('/assets/images/asia/base/base1.jpg') center/cover no-repeat;
  height: 100%;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--secondary);
  text-align: center;
  padding: 2rem;
}

.asia-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  color: var(--secondary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.asia-hero p {
  font-size: 1.3rem;
  max-width: 800px;
  margin-bottom: 2rem;
  color: var(--light);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Europe Hero sections */
.europe-hero {
  background: linear-gradient(to bottom, rgba(87, 101, 76, 0.7), rgba(87, 101, 76, 0.85)), 
              url('/assets/images/europe/base/base1.jpg') center/cover no-repeat;
  height: 100%;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--secondary);
  text-align: center;
  padding: 2rem;
}

.europe-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  color: var(--secondary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.europe-hero p {
  font-size: 1.3rem;
  max-width: 800px;
  margin-bottom: 2rem;
  color: var(--light);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Oceania Hero sections */
.oceania-hero {
  background: linear-gradient(to bottom, rgba(87, 101, 76, 0.7), rgba(87, 101, 76, 0.85)), 
              url('/assets/images/oceania/base/base1.jpg') center/cover no-repeat;
  height: 100%;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--secondary);
  text-align: center;
  padding: 2rem;
}

.oceania-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  color: var(--secondary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.oceania-hero p {
  font-size: 1.3rem;
  max-width: 800px;
  margin-bottom: 2rem;
  color: var(--light);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* destination cta Hero sections */
.hero-cta {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--primary);
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s;
  border: 2px solid var(--secondary);
}

.hero-cta:hover {
  background-color: transparent;
  color: var(--secondary);
  transform: translateY(-3px);
}

/* Terms Hero Section */
.terms-hero {
  background: linear-gradient(to bottom, rgba(87, 101, 76, 0.8), rgba(87, 101, 76, 0.9)), 
    url('/assets/images/base/terms.jpg') center/cover no-repeat;
    height: 100%;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--secondary);
    text-align: center;
    padding: 2rem;
  }

.terms-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  color: var(--secondary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.terms-hero p {
  font-size: 1.3rem;
  max-width: 800px;
  margin-bottom: 2rem;
  color: var(--light);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Privacy Hero Section */
.privacy-hero {
  background: linear-gradient(to bottom, rgba(87, 101, 76, 0.8), rgba(87, 101, 76, 0.9)), 
    url('/assets/images/base/privacy.jpg') center/cover no-repeat;
    height: 100%;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--secondary);
    text-align: center;
    padding: 2rem;
  }

.privacy-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  color: var(--secondary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.privacy-hero p {
  font-size: 1.3rem;
  max-width: 800px;
  margin-bottom: 2rem;
  color: var(--light);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* FAQ Hero Section */
.faq-hero {
  background: linear-gradient(to bottom, rgba(87, 101, 76, 0.8), rgba(87, 101, 76, 0.9)),
    url('/assets/images/base/faq1.jpg') center/cover no-repeat;
    height: 100%;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--secondary);
    text-align: center;
    padding: 2rem;
  }

.faq-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  color: var(--secondary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.faq-hero p {
  font-size: 1.3rem;
  max-width: 800px;
  margin-bottom: 2rem;
  color: var(--light);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* About Hero Section */
.about-hero {
  background: linear-gradient(to bottom, rgba(87, 101, 76, 0.8), rgba(87, 101, 76, 0.9)), 
    url('/assets/images/base/about1.jpg') center/cover no-repeat;
    height: 100%;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--secondary);
    text-align: center;
    padding: 2rem;
  }

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  color: var(--secondary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.about-hero p {
  font-size: 1.3rem;
  max-width: 800px;
  margin-bottom: 2rem;
  color: var(--light);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Partnership Hero Section */
.partnership-hero {
  background: linear-gradient(to bottom, rgba(87, 101, 76, 0.8), rgba(87, 101, 76, 0.9)),
    url('/assets/images/base/partnership1.jpeg') center/cover no-repeat;
    height: 100%;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--secondary);
    text-align: center;
    padding: 2rem;
  }

.partnership-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  color: var(--secondary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.partnership-hero p {
  font-size: 1.3rem;
  max-width: 800px;
  margin-bottom: 2rem;
  color: var(--light);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Contact Hero Section */
.contact-hero {
  background: linear-gradient(to bottom, rgba(87, 101, 76, 0.8), rgba(87, 101, 76, 0.9)), url('/assets/images/base/contact1.jpeg') center/cover no-repeat;
  height: 100%;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--secondary);
  text-align: center;
  padding: 2rem;
}

.contact-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  color: var(--secondary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-hero p {
  font-size: 1.3rem;
  max-width: 800px;
  margin-bottom: 2rem;
  color: var(--light);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Custom Trip Hero Section */
.trip-hero {
  background: linear-gradient(to bottom, rgba(87, 101, 76, 0.8), rgba(87, 101, 76, 0.9)), url('/assets/images/base/trip.jpeg') center/cover no-repeat;
  height: 100%;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--secondary);
  text-align: center;
  padding: 2rem;
}

.trip-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  color: var(--secondary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.trip-hero p {
  font-size: 1.3rem;
  max-width: 800px;
  margin-bottom: 2rem;
  color: var(--light);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Breadcrumbs */
.breadcrumbs {
  background: var(--bg-cream);
  padding: 1rem 5%;
  border-bottom: 1px solid var(--bg-beige);
}

.breadcrumbs-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.breadcrumbs a {
  color: var(--primary);
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

.breadcrumbs span {
  margin: 0 0.5rem;
  color: var(--text);
  font-size: 0.9rem;
}

.breadcrumbs .current {
  color: var(--text);
  font-weight: 500;
}

/***************************************************
 * 7. SEARCH & FILTERS
 ***************************************************/
.search-container {
  background-color: var(--bg-cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-light);
  padding: 2rem;
  margin-bottom: 3rem;
  border: 1px solid var(--bg-beige);
}

.search-header {
  margin-bottom: 1.8rem;
  text-align: center;
}

.search-header h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
  position: relative;
  display: inline-block;
}

.search-header h3:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--primary-light);
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

.search-header p {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.search-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.search-box {
  flex: 2;
  position: relative;
  min-width: 280px;
}

.search-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 1px solid var(--bg-beige);
  border-radius: 6px;
  font-size: 1rem;
  background-color: var(--light);
  transition: all 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(87, 101, 76, 0.1);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 1.2rem;
  pointer-events: none;
}

.sort-box {
  flex: 1;
  min-width: 200px;
}

.sort-box select {
  width: 100%;
  padding: 1rem 1rem;
  border: 1px solid var(--bg-beige);
  border-radius: 6px;
  font-size: 1rem;
  background-color: var(--light);
  transition: all 0.3s;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2357654c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.sort-box select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(87, 101, 76, 0.1);
}

.filter-section {
  margin-bottom: 1.5rem;
  background-color: var(--light);
  border-radius: 8px;
  padding: 1.2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--bg-beige);
}

.filter-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--bg-beige);
  padding-bottom: 0.8rem;
}

.region-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.region-tab {
  background-color: var(--bg-light);
  border: 1px solid var(--bg-beige);
  border-radius: 50px;
  padding: 0.7rem 1.3rem;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.region-tab.active {
  background-color: var(--primary);
  color: var(--light);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.region-tab:hover:not(.active) {
  background-color: var(--bg-beige);
  transform: translateY(-2px);
}

.price-range-container {
  padding: 0 0.8rem;
  margin: 1.2rem 0;
  position: relative;
  min-height: 70px; /* Ensure enough space for all elements */
}

.slider-container {
  width: 100%;
  position: relative;
  margin-bottom: 0.4rem;
  height: 8px;
  order: 1;
}

.slider-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  border-radius: 4px;
  background-color: var(--slider-inactive);
  transition: background-color 0.2s ease;
}

.slider-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 8px;
  border-radius: 4px;
  background-color: var(--primary);
  width: 50%;
  pointer-events: none;
  will-change: width;
  transition: width 0.1s ease, background-color 0.2s ease;
}

.price-range-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: transparent;
  outline: none;
  position: relative;
  z-index: 2;
  margin: 0;
  cursor: pointer;
}

.price-range-slider:hover ~ .slider-progress {
  background-color: var(--primary-dark);
}

.price-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--light);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  margin-top: 0;
  transform: translateY(-10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.price-range-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--light);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transform: translateY(-50%);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.price-range-slider:hover::-webkit-slider-thumb {
  transform: translateY(-10px) scale(1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  background-color: var(--primary-dark);
}

.price-range-slider:hover::-moz-range-thumb {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  background-color: var(--primary-dark);
}

.price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.3rem;
  order: 2;
  width: 100%;
  position: relative;
}

.price-labels span {
  background: var(--highlight-bg);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(106, 120, 96, 0.1);
  position: relative;
  transition: all 0.2s ease;
}

.price-value {
  position: absolute;
  left: 50%;
  top: 20px; /* Position below the slider and labels */
  transform: translateX(-50%);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.4rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  text-align: center;
  background: var(--highlight-bg);
  padding: 0.4rem 1rem;
  border-radius: 25px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(106, 120, 96, 0.1);
  z-index: 2;
  transition: transform 0.3s, color 0.3s;
}

.price-value:hover {
  transform: translateX(-50%) translateY(-2px);
  color: var(--primary-dark);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  background-color: var(--bg-cream);
}

.price-value .per-person {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-light);
  margin-top: 0.1rem;
  text-shadow: none;
  text-align: center;
  transition: color 0.2s;
}  

.price-value:hover::after {
  color: var(--primary);
}

.filter-actions {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.apply-filters {
  background-color: var(--primary);
  color: var(--light);
  border: none;
  border-radius: 6px;
  padding: 1rem 2.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.apply-filters:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.reset-filters {
  background-color: transparent;
  color: var(--primary);
  border: none;
  cursor: pointer;
  margin-left: 1.5rem;
  padding: 0 1rem;
  font-size: 1rem;
  transition: all 0.3s;
  align-self: center;
}

.reset-filters:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Currency selector for price display */
.currency-selector-container {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-top: 1rem;
}

.currency-selector {
  padding: 0.5rem;
  border: 1px solid var(--bg-beige);
  border-radius: 4px;
  background-color: var(--light);
  margin-left: 0.5rem;
  font-size: 0.9rem;
}

.currency-selector:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(87, 101, 76, 0.1);
}

/***************************************************
 * 8. DESTINATION CARDS & CONTENT
 ***************************************************/
.region-header {
  margin: 3rem 0 2rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--primary-light);
  scroll-margin-top: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.region-header h3 {
  font-size: 2.2rem;
  color: var(--primary);
  position: relative;
  padding-left: 1rem;
}

.region-header h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 4px;
  background-color: var(--accent);
  border-radius: 2px;
}

.region-count {
  background-color: var(--primary-light);
  color: var(--light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.destinations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.destination-card {
  background: var(--light);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  overflow: hidden;
  border: 1px solid rgba(227, 218, 203, 0.5);
  height: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 625px;
  width: 100%; 
}

.destination-card:hover {
  transform: translateY(-15px) rotate3d(1, 1, 0, 2deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-light);
}

.destination-card:hover .ideal-box {
  background-color: var(--bg-beige);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.destination-card:hover .key-detail {
  background-color: var(--bg-beige);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.destination-card:hover .highlight-item {
  background-color: var(--bg-beige);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.destination-card:hover .quick-fact {
  background-color: var(--bg-cream);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.country-label {
  position: absolute;
  left: 0;
  top: 25px;
  background-color: var(--primary-dark);
  color: var(--light);
  padding: 0.6rem 1.2rem 0.6rem 0.8rem;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 5;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.country-label img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--light);
}

.card-image {
  height: auto; /* Changed from fixed 360px */
  min-height: 200px; /* Added minimum height */
  max-height: 360px; /* Keep the maximum height */
  overflow: hidden;
  position: relative;
  width: 100%;
  border-radius: 8px 8px 0 0;
  aspect-ratio: 16/9; /* Added for consistent proportions */
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.2, 0, 0.2, 1);
  backface-visibility: hidden;
  transform: translateZ(0);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  will-change: transform;
  content-visibility: auto;
  cursor: pointer;
}

.destination-card:hover .card-image img {
  transform: scale(1.07);
}

/* ENHANCED PRICE TAG - Bigger and more appealing */
.price-tag {
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--light);
  padding: 0.8rem 1.5rem 0.8rem 1.2rem;
  font-size: clamp(1.1rem, 2vw, 1.4rem); /* Responsive font size */
  border-top-right-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 2;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover .price-tag {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Make "From" and price bold with light color */
.price-tag .price-display {
  font-weight: 700;
  color: var(--light);
}

.price-tag span:last-child {
  font-size: 0.9rem;
  font-weight: normal;
  opacity: 0.9;
  display: block;
  margin-top: 0.1rem;
}

.card-content {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
  position: relative;
}

.card-title {
  border-bottom: 2px solid var(--bg-beige);
  padding-bottom: 0.8rem;
  position: relative;
}

.card-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-image: linear-gradient(to right, var(--primary-light), var(--accent), var(--primary-light));
  transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.card-title h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem); /* Responsive font size */
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.destination-card:hover .card-title::after {
  width: 100%;
}

.destination-card:hover .card-title h2 {
  color: var(--accent);
}

.card-subtitle {
  font-size: 0.95rem;
  color: var(--primary-light);
  font-weight: 500;
}

.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.quick-fact {
  display: flex;
  align-items: center;
  background-color: var(--highlight-bg);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-dark);
  gap: 0.4rem;
  transition: all 0.2s;
  border: 1px solid rgba(106, 120, 96, 0.1);
}

.quick-fact:hover {
  background-color: var(--bg-cream);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.quick-fact i {
  color: var(--primary);
  font-size: 0.8rem;
}

.key-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.key-detail {
  display: flex;
  align-items: center;
  background-color: var(--bg-light);
  border: 1px solid var(--bg-beige);
  padding: 0.5rem 0.6rem;
  border-radius: 6px;
  font-size: 0.85rem;
  gap: 0.4rem;
  transition: all 0.2s;
  height: 40px;
  overflow: hidden;
}

.key-detail i {
  color: var(--primary);
  font-size: 0.9rem;
  min-width: 18px;
  text-align: center;
}

.key-detail strong {
  color: var(--primary-dark);
  font-weight: 600;
  margin-right: 4px;
  white-space: nowrap;
}

.key-detail span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.key-detail:hover {
  background-color: var(--bg-cream);
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.card-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 0.5rem;
  min-height: 160px;
}

.card-text strong {
  color: var(--primary-dark);
}

.highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background-color: var(--bg-light);
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  transition: all 0.3s;
  font-size: 0.8rem;
  height: 60px;
}

.highlight-item:hover {
  background-color: var(--bg-cream);
  transform: translateY(-2px) translateX(2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  border-color: var(--bg-beige);
}

.highlight-icon {
  color: var(--primary);
  font-size: 0.85rem;
  margin-top: 0.1rem;
}

.highlight-text {
  line-height: 1.4;
}

.ideal-box {
  background-color: var(--bg-cream);
  border-radius: 8px;
  padding: 0.8rem;
  margin-top: 0.2rem;
  height: 120px; 
  display: flex;
  flex-direction: column;
  overflow: hidden; 
}

.ideal-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.ideal-header i {
  color: var(--primary);
  animation: bounce 2s infinite;
}

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

.ideal-header h5 {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 700;
}

.ideal-for {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.ideal-tag {
  font-size: 0.75rem;
  background-color: var(--primary-light);
  color: var(--light);
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  white-space: nowrap;
  transition: all 0.3s;
  font-weight: 500;
}

.ideal-tag:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
}

.card-footer {
  margin-top: 0.8rem;
  border-top: 1px solid var(--bg-beige);
  padding-top: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Added to allow wrapping on small screens */
  gap: 0.5rem; /* Added gap for wrapped items */
}

.perks {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap; 
  width: 100%;
}

.perk {
  font-size: 0.8rem;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 600;
}

.perk i {
  color: var(--primary);
}

.view-details {
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  color: var(--light);
  padding: 0.7rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.view-details i {
  margin-left: 0.5rem;
  transition: transform 0.3s;
}

.view-details:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.view-details:hover i {
  transform: translateX(4px);
}

/* Featured Badge Styling */
.featured-badge {
  position: absolute;
  top: 30px;
  right: 0;
  padding: 0.6rem 1.2rem 0.6rem 0.8rem;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  font-weight: 700;
  font-size: 0.8rem;
  z-index: 5;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.badge-most-popular {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--bg-cream);
}

.badge-most-popular i {
  color: var(--bg-cream);
}

.badge-best-value {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--bg-cream);
}

.badge-best-value i {
  color: var(--bg-cream);
}

/***************************************************
 * 9. MODAL DESIGN
 ***************************************************/
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(5px);
  will-change: opacity;
  overflow-y: auto;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  position: relative;
  background-color: var(--light);
  width: 95%;
  height: auto;
  max-width: 1200px;
  max-height: 90vh;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s ease;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  will-change: transform, opacity;
  display: flex;
  flex-direction: column;
  margin: auto;
}

.modal-overlay.active .modal-content {
  opacity: 1;
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(0, 0, 0, 0.6);
  color: var(--light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.modal-close:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: rotate(90deg);
}

.modal-header {
  position: relative;
  height: min(450px, 45vh);
  display: flex;
  align-items: flex-end;
  background-color: var(--primary);
  flex-shrink: 0;
}

.modal-header-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.7);
}

.modal-header-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  max-width: 70%;
}

.header-country-flag {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--light);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  background-color: var(--primary-dark);
}

.header-country-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-country-name {
  background-color: rgba(247, 244, 234, 0.9);
  color: var(--primary-dark);
  padding: 0.4rem 0.8rem;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ENHANCED MODAL PRICE - Consistent with card price styling */
.modal-price {
  position: absolute;
  top: 12px; 
  right: 0;
  z-index: 5;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--light);
  padding: 0.8rem 1.5rem;
  font-size: 1.4rem;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Make "From" and price bold with light color in modal */
.modal-price .price-display {
  font-weight: 700;
  color: var(--light);
}

.modal-price span:last-child {
  font-size: 0.9rem;
  font-weight: normal;
  opacity: 0.95;
  display: block;
  margin-top: 0.1rem;
}

.modal-title-container {
  position: relative;
  z-index: 5;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5) 80%, transparent);
  padding: 1.2rem 1.5rem 1rem;
  width: 100%;
}

.modal-title {
  font-size: clamp(1.4rem, 5vw, 2.5rem);
  margin-bottom: 0.3rem;
  color: var(--light);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  font-weight: 700;
  line-height: 1.2;
}

.modal-subtitle {
  font-size: clamp(0.85rem, 3vw, 1.1rem);
  color: rgba(247, 244, 234, 0.95);
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  margin-bottom: 0.6rem;
}

.modal-badges {
  margin-top: 0.4rem;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.modal-badge {
  background-color: rgba(247, 244, 234, 0.25);
  color: var(--light);
  border-radius: 20px;
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.modal-badge i {
  font-size: 0.7rem;
}

.modal-body {
  flex: 1;
  overflow-y: auto;
  background-color: var(--light);
  max-height: calc(90vh - min(450px, 45vh));
}

.modal-body-container {
  display: flex;
  flex-direction: column;
}

.modal-key-facts {
  background-color: var(--highlight-bg);
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid var(--bg-beige);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.8rem;
  max-width: 1200px;
  margin: 0 auto;
}

.fact-item {
  display: flex;
  align-items: center; /* Centers items vertically */
  justify-content: center; /* Centers items horizontally */
  gap: 0.6rem;
}

.fact-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background-color: var(--bg-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
}

.fact-content span {
  display: block;
}

.fact-label {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-bottom: 0.1rem;
}

.fact-value {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
}

.modal-main-content {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
  gap: 1.5rem;
  padding: 1.2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.modal-left-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}

.modal-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-section-title {
  font-size: 1.3rem;
  color: var(--primary);
  position: relative;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--bg-beige);
  font-weight: 700;
}

.modal-description p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.modal-description p:last-child {
  margin-bottom: 0;
}

.modal-description strong {
  color: var(--primary-dark);
  font-weight: 700;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

.experience-card {
  background-color: var(--highlight-bg);
  border: 1px solid rgba(106, 120, 96, 0.15);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-light);
}

.experience-icon {
  font-size: 1.5rem;
  color: var(--primary);
}

.experience-title {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.experience-text {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.8;
}

.experience-text strong {
  color: var(--primary-dark);
  font-weight: 700;
}

.modal-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-width: 300px;
}

.modal-main-content, .modal-sidebar {
  display: inline-flex; /* Makes them display inline */
}

.sidebar-section {
  background-color: var(--highlight-bg);
  border-radius: 12px;
  border: 1px solid rgba(106, 120, 96, 0.15);
  overflow: hidden;
}

.sidebar-header {
  background-color: var(--primary-light);
  color: var(--light);
  padding: 0.7rem 1rem;
  font-size: 1rem;
  font-weight: 600;
}

.sidebar-content {
  padding: 1rem;
}

.sidebar-title {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
  text-align: center;
  position: relative;
  font-weight: 700;
}

.sidebar-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: var(--primary-light);
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trip-tag {
  background-color: var(--primary-light);
  color: var(--light);
  padding: 0.3rem 0.7rem;
  border-radius: 30px;
  font-size: 0.8rem;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 500;
}

.trip-tag:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: var(--primary);
}

.trip-tag i {
  font-size: 0.8rem;
}

.season-chart {
  margin-top: 1rem;
}

.months-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
  margin-bottom: 0.5rem;
}

.month-cell {
  text-align: center;
}

.month-name {
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.month-bar {
  height: 8px;
  background-color: var(--bg-beige);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.month-value {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--primary);
  border-radius: 4px;
}

.season-info {
  text-align: center;
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.5;
  padding: 0.5rem;
  background-color: var(--bg-beige);
  border-radius: 6px;
}

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

.unique-experiences-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.unique-experience-item {
  background-color: var(--light);
  border-radius: 8px;
  padding: 0.7rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  display: flex;
  gap: 0.6rem;
  transition: all 0.3s;
  border: 1px solid rgba(106, 120, 96, 0.1);
}

.unique-experience-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.unique-experience-item i {
  color: var(--primary);
  font-size: 0.85rem;
  margin-top: 0.2rem;
}

.unique-experience-item p {
  font-size: 0.85rem;
  line-height: 1.5;
}

.unique-experience-item strong {
  color: var(--primary-dark);
  font-weight: 700;
}

.cta-section {
  background-color: var(--highlight-bg);
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(106, 120, 96, 0.15);
}

.cta-title {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 700;
}

.cta-text {
  font-size: 0.85rem;
  color: var(--text);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.cta-button {
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  color: var(--light);
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}
.modal-header-image {
  cursor: pointer;
  transition: opacity 0.3s;
}

.modal-header-image:hover {
  opacity: 0.9;
}

/* Lightbox styles */
.image-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.image-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 2001;
  transition: all 0.3s;
}

.lightbox-close:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: rotate(90deg);
}

.lightbox-image {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: all 0.5s;
}

.image-lightbox.active .lightbox-image {
  transform: scale(1);
}

/***************************************************
 * 10. QUOTE SECTION
 ***************************************************/
 /* Africa quote sections */
.quote-section {
  padding: 15rem 5%;
  background: linear-gradient(to right, var(--primary-dark), var(--primary));
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/images/africa/base/base2.jpeg') center/cover no-repeat;
  opacity: 0.2;
  z-index: 0;
}

.quote-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--light);
}

.quote-marks {
  font-family: var(--font-primary);
  font-size: 8rem;
  line-height: 1;
  color: rgba(247, 244, 234, 0.2);
  display: block;
  margin-bottom: -2rem;
}

.quote-text {
  font-size: 1.8rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.quote-attribution {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote-author {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.quote-role {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 0.3rem;
}

.quote-date {
  font-size: 0.9rem;
  opacity: 0.8;
}

 /* Americas quote sections */
 .quote-americas-section {
  padding: 15rem 5%;
  background: linear-gradient(to right, var(--primary-dark), var(--primary));
  position: relative;
  overflow: hidden;
}

.quote-americas-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/images/americas/base/base2.jpg') center/cover no-repeat;
  opacity: 0.2;
  z-index: 0;
}

.quote-americas-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--light);
}

.quote-americas-marks {
  font-family: var(--font-primary);
  font-size: 8rem;
  line-height: 1;
  color: rgba(247, 244, 234, 0.2);
  display: block;
  margin-bottom: -2rem;
}

.quote-americas-text {
  font-size: 1.8rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.quote-americas-attribution {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote-americas-author {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.quote-americas-role {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 0.3rem;
}

.quote-americas-date {
  font-size: 0.9rem;
  opacity: 0.8;
}

 /* Asia quote sections */
 .quote-asia-section {
  padding: 15rem 5%;
  background: linear-gradient(to right, var(--primary-dark), var(--primary));
  position: relative;
  overflow: hidden;
}

.quote-asia-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/images/asia/base/base2.jpg') center/cover no-repeat;
  opacity: 0.2;
  z-index: 0;
}

.quote-asia-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--light);
}

.quote-asia-marks {
  font-family: var(--font-primary);
  font-size: 8rem;
  line-height: 1;
  color: rgba(247, 244, 234, 0.2);
  display: block;
  margin-bottom: -2rem;
}

.quote-asia-text {
  font-size: 1.8rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.quote-asia-attribution {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote-asia-author {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.quote-asia-role {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 0.3rem;
}

.quote-asia-date {
  font-size: 0.9rem;
  opacity: 0.8;
}

 /* Europe quote sections */
 .quote-europe-section {
  padding: 15rem 5%;
  background: linear-gradient(to right, var(--primary-dark), var(--primary));
  position: relative;
  overflow: hidden;
}

.quote-europe-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/images/europe/base/base2.jpg') center/cover no-repeat;
  opacity: 0.2;
  z-index: 0;
}

.quote-europe-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--light);
}

.quote-europe-marks {
  font-family: var(--font-primary);
  font-size: 8rem;
  line-height: 1;
  color: rgba(247, 244, 234, 0.2);
  display: block;
  margin-bottom: -2rem;
}

.quote-europe-text {
  font-size: 1.8rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.quote-europe-attribution {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote-europe-author {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.quote-europe-role {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 0.3rem;
}

.quote-europe-date {
  font-size: 0.9rem;
  opacity: 0.8;
}

 /* Oceania quote sections */
 .quote-oceania-section {
  padding: 15rem 5%;
  background: linear-gradient(to right, var(--primary-dark), var(--primary));
  position: relative;
  overflow: hidden;
}

.quote-oceania-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/images/oceania/base/base2.jpg') center/cover no-repeat;
  opacity: 0.2;
  z-index: 0;
}

.quote-oceania-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--light);
}

.quote-oceania-marks {
  font-family: var(--font-primary);
  font-size: 8rem;
  line-height: 1;
  color: rgba(247, 244, 234, 0.2);
  display: block;
  margin-bottom: -2rem;
}

.quote-oceania-text {
  font-size: 1.8rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.quote-oceania-attribution {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote-oceania-author {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.quote-oceania-role {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 0.3rem;
}

.quote-oceania-date {
  font-size: 0.9rem;
  opacity: 0.8;
}

/***************************************************
 * 11. PLANNING SECTION
 ***************************************************/
 .planning-container {
  background-color: var(--light);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--bg-beige);
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  overflow: hidden;
  position: relative;
}

.planning-container::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background-color: var(--bg-cream);
  border-radius: 0 0 0 100%;
  z-index: 0;
  opacity: 0.7;
}

.planning-content {
  flex: 1;
  min-width: 300px;
  position: relative;
  z-index: 1;
}

.planning-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  color: var(--primary);
}

.planning-content p {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.planning-content ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.planning-content ul li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.planning-content ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary);
}

.planning-visual {
  flex: 1;
  min-width: 280px;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.planning-image {
  width: 100%;
  height: 320px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 0.5rem;
}

.planning-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.planning-image:hover img {
  transform: scale(1.05);
}

.plan-trip-btn {
  display: block;
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  color: var(--light);
  padding: 1rem 1.5rem;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s;
  border: none;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.plan-trip-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

/***************************************************
* 12. TERMS OF SERVICE
***************************************************/
.terms-container {
  background-color: var(--light);
  border-radius: 10px;
  box-shadow: var(--shadow-light);
  padding: 3rem;
  margin-bottom: 3rem;
  border: 1px solid var(--bg-beige);
}

.terms-header {
  margin-bottom: 2rem;
  text-align: center;
}

.terms-header h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.terms-header p {
  font-size: 1rem;
  color: var(--text-light);
}

.terms-content h3 {
  font-size: 1.4rem;
  margin: 2.5rem 0 1rem;
  color: var(--primary);
  border-bottom: 1px solid var(--bg-beige);
  padding-bottom: 0.5rem;
}

.terms-content h3:first-child {
  margin-top: 0;
}

.terms-content h4 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.8rem;
  color: var(--primary);
}

.terms-content p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

.terms-content ul, 
.terms-content ol {
  margin: 0 0 1.5rem 1.5rem;
}

.terms-content li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.terms-content a {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.3s;
}

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

.highlight-box {
  background-color: var(--bg-cream);
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 6px 6px 0;
}

.highlight-box p:last-child {
  margin-bottom: 0;
}

.updated-date {
  text-align: right;
  font-style: italic;
  color: var(--text-light);
  margin-top: 3rem;
  font-size: 0.9rem;
}

.scrollable-table-container {
  overflow-x: auto;
  margin: 1.5rem 0;
}

.terms-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.terms-table th,
.terms-table td {
  padding: 0.8rem;
  border: 1px solid var(--bg-beige);
  text-align: left;
}

.terms-table th {
  background-color: var(--bg-cream);
  color: var(--primary);
  font-weight: 500;
}

.terms-table tr:nth-child(even) {
  background-color: var(--bg-light);
}

/* Table of Contents */
.toc-container {
  position: sticky;
  top: 100px;
  background-color: var(--light);
  border-radius: 10px;
  box-shadow: var(--shadow-light);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid var(--bg-beige);
  max-height: calc(100vh - 150px);
  overflow-y: auto;
}

.toc-title {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--primary);
  text-align: center;
}

.toc-list {
  list-style: none;
  padding: 0;
}

.toc-list li {
  margin-bottom: 0.8rem;
  border-bottom: 1px solid var(--bg-cream);
  padding-bottom: 0.8rem;
}

.toc-list li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.toc-list a {
  color: var(--text);
  transition: color 0.3s;
  font-size: 0.95rem;
  display: block;
}

.toc-list a:hover {
  color: var(--primary);
}

.toc-list .toc-sub {
  padding-left: 1rem;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  border-left: 2px solid var(--bg-beige);
}

.toc-list .toc-sub a {
  color: var(--text-light);
}

/* Privacy Policy Styles */
.privacy-container {
  background-color: var(--light);
  border-radius: 10px;
  box-shadow: var(--shadow-light);
  padding: 3rem;
  margin-bottom: 3rem;
  border: 1px solid var(--bg-beige);
}

.privacy-header {
  margin-bottom: 2rem;
  text-align: center;
}

.privacy-header h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.privacy-header p {
  font-size: 1rem;
  color: var(--text-light);
}

.privacy-content h3 {
  font-size: 1.4rem;
  margin: 2.5rem 0 1rem;
  color: var(--primary);
  border-bottom: 1px solid var(--bg-beige);
  padding-bottom: 0.5rem;
}

.privacy-content h3:first-child {
  margin-top: 0;
}

.privacy-content h4 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.8rem;
  color: var(--primary);
}

.privacy-content p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

.privacy-content ul, 
.privacy-content ol {
  margin: 0 0 1.5rem 1.5rem;
}

.privacy-content li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.privacy-content a {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.3s;
}

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

.privacy-content .highlight-box {
  background-color: var(--bg-cream);
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 6px 6px 0;
}

.privacy-content .highlight-box p:last-child {
  margin-bottom: 0;
}

.updated-date {
  text-align: right;
  font-style: italic;
  color: var(--text-light);
  margin-top: 3rem;
  font-size: 0.9rem;
}

/***************************************************
* 13. ABOUT PAGE SECTIONS
***************************************************/

/* How It Works Section */
.steps-container {
  max-width: 900px;
  margin: 3rem auto;
}

.process-timeline {
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: var(--primary-light);
  opacity: 0.3;
}

.step-item {
  position: relative;
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-left: 50px;
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateX(5px);
}

.step-number {
  position: absolute;
  left: 0;
  background: var(--primary);
  color: var(--secondary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  z-index: 1;
  box-shadow: var(--shadow-light);
}

.step-content {
  background-color: var(--light);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--bg-beige);
  flex: 1;
}

.step-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--primary);
  position: relative;
  padding-bottom: 0.5rem;
}

.step-content h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.step-content p {
  font-size: 1rem;
  line-height: 1.7;
}

.step-content ul {
  margin-top: 1rem;
  padding-left: 1.5rem;
}

.step-content ul li {
  margin-bottom: 0.5rem;
}

/* Sustainability Sections */
.sustainability-section {
  margin-bottom: 3rem;
}

.sustainability-section h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  text-align: center;
  position: relative;
  padding-bottom: 0.8rem;
}

.sustainability-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-light);
}

.sustainability-section p {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  text-align: center;
  font-size: 1.05rem;
}

.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.sustainability-card {
  background: var(--light);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid var(--bg-beige);
  transition: all 0.3s;
  height: 100%;
}

.sustainability-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.sustainability-card h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary);
  position: relative;
  padding-bottom: 0.5rem;
}

.sustainability-card h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary);
}

.sustainability-card p {
  font-size: 0.95rem;
  width: 100%; 
  display: block; 
  margin-bottom: 0.5rem;
  margin-left: 0; 
  margin-right: 0; 
  text-align: left;
}

.benefits-container {
  margin-top: 1.5rem;
}

.benefits-container h5 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  color: var(--primary);
}

.benefits-container ul {
  list-style: none;
  padding-left: 0;
}

.benefits-container ul li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.benefits-container ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* Sustainable Travel Integration */
.sustainable-integration {
  background: var(--light);
  border-radius: 8px;
  padding: 2rem;
  margin: 3rem auto;
  max-width: 900px;
  box-shadow: var(--shadow);
  border: 1px solid var(--bg-beige);
}

.sustainable-integration h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary);
  font-size: 1.6rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.sustainable-integration h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-light);
}

.sustainable-integration p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.sustainable-examples {
  background: var(--bg-cream);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.sustainable-examples ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.sustainable-examples ul li {
  margin-bottom: 0.8rem;
}

.benefits-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.benefits-column {
  background: var(--bg-cream);
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid var(--bg-beige);
}

.benefits-column h4 {
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.benefits-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.benefits-column ul {
  list-style: none;
  padding-left: 0;
}

.benefits-column ul li {
  margin-bottom: 0.7rem;
  padding-left: 1.5rem;
  position: relative;
}

.benefits-column ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* We Don't Fake It Section */
.no-fake-section {
  background-color: var(--light);
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid var(--bg-beige);
  padding: 2.5rem;
  margin: 3rem auto;
  max-width: 900px;
}

.no-fake-header {
  text-align: center;
  margin-bottom: 2rem;
}

.no-fake-header h3 {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.8rem;
  display: inline-block;
}

.no-fake-header h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-light);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.principle-item {
  background-color: var(--bg-cream);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--bg-beige);
  display: flex;
  align-items: flex-start;
}

.principle-item i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-right: 0.8rem;
  margin-top: 0.2rem;
}

.principle-item p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

.eliminated-list {
  margin: 2rem 0;
}

.eliminated-list h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.eliminated-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.eliminated-item {
  display: flex;
  align-items: center;
  background-color: var(--bg-cream);
  padding: 0.8rem 1rem;
  border-radius: 6px;
  border: 1px solid var(--bg-beige);
}

.eliminated-item i {
  color: var(--primary);
  margin-right: 0.8rem;
}

.eliminated-item p {
  margin: 0;
  font-size: 0.95rem;
}

.why-matters {
  background-color: var(--bg-cream);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.why-matters h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.why-matters ul {
  padding-left: 1.5rem;
  margin-top: 1rem;
}

.why-matters ul li {
  margin-bottom: 0.8rem;
}

.final-points {
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
}

.final-points p {
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
}

/* Measurable Impact Section */
.impact-section {
  padding: 3rem;
  background-color: var(--light);
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid var(--bg-beige);
  margin: 2rem auto;
  max-width: 800px;
}

.impact-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.impact-header h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.8rem;
  display: inline-block;
}

.impact-header h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary);
}

.impact-description {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.donation-example {
  background-color: var(--bg-cream);
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem auto;
  text-align: center;
  border: 1px solid var(--bg-beige);
  max-width: 500px;
}

.donation-example h4 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.donation-amount {
  font-size: 1.8rem;
  color: var(--primary);
  margin: 1.5rem 0;
  font-weight: 700;
}

.donation-amount span {
  font-size: 1.2rem;
  color: var(--text);
  font-weight: normal;
}

.donation-steps {
  margin-top: 2rem;
  text-align: left;
}

.donation-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.donation-step i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-right: 1rem;
  margin-top: 0.2rem;
}

.donation-step p {
  margin: 0;
  font-size: 1rem;
}

.impact-footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--primary-dark);
}

/* Transparent Pricing Section */
.pricing-container {
  max-width: 900px;
  margin: 3rem auto;
  background-color: var(--light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--bg-beige);
}

.pricing-header {
  background-color: var(--primary);
  color: var(--secondary);
  padding: 2rem;
  text-align: center;
  position: relative;
}

.pricing-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/base/about2.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.pricing-header-content {
  position: relative;
  z-index: 1;
}

.pricing-header h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.pricing-header p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

.pricing-body {
  padding: 2.5rem;
}

.pricing-intro {
  margin-bottom: 2rem;
  text-align: center;
}

.pricing-intro p {
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.pricing-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
}

.pricing-feature {
  background-color: var(--bg-cream);
  border-radius: 10px;
  padding: 1.8rem;
  border: 1px solid var(--bg-beige);
  transition: all 0.3s;
}

.pricing-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.pricing-feature-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.pricing-feature-icon {
  background-color: var(--primary);
  color: var(--secondary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.pricing-feature-title {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.pricing-feature-subtitle {
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.8;
}

.pricing-feature ul {
  margin-top: 1rem;
  padding-left: 0;
  list-style: none;
}

.pricing-feature ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
}

.pricing-feature ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.pricing-conclusion {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: var(--bg-cream);
  border-radius: 8px;
  border: 1px solid var(--bg-beige);
}

.pricing-conclusion p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary-dark);
}

/* CTA Section */
.about-section {
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  color: var(--secondary);
  text-align: center;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin: 0; 
  box-shadow: none;
  border: none;
}

.about-section-wrapper {
  background-color: var(--bg-cream); 
  padding: 3rem 0; 
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/images/base/about2.jpg') center/cover no-repeat;
  opacity: 0.1;
  z-index: 0;
  animation: subtlePulse 20s infinite alternate;
}

.about-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.about-section p {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.about-buttons {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/***************************************************
 * 14. FAQ
 ***************************************************/
/* FAQ Navigation */
.faq-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.faq-nav-item {
  background-color: var(--light);
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-md);
  color: var(--primary);
  font-weight: 500;
  transition: all 0.3s;
  border: 1px solid var(--bg-beige);
  cursor: pointer;
  box-shadow: var(--shadow-light);
}

.faq-nav-item:hover, .faq-nav-item.active {
  background-color: var(--primary);
  color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* FAQ Categories */
.faq-category {
  margin-bottom: 4rem;
}

.faq-category-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--primary);
  position: relative;
  padding-bottom: 0.8rem;
  display: inline-block;
}

.faq-category-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-light);
}

/* FAQ Items */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  background-color: var(--light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--bg-beige);
  transition: all 0.3s;
}

.faq-item:hover {
  box-shadow: var(--shadow);
}

.faq-question {
  padding: 1.5rem;
  background-color: var(--light);
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: var(--bg-cream);
}

.faq-question i {
  transition: transform 0.3s;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  border-top: 0px solid var(--bg-beige);
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 1000px;
  border-top: 1px solid var(--bg-beige);
}

.faq-answer p {
  margin-bottom: 1rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.faq-answer ul li {
  margin-bottom: 0.5rem;
}

.faq-answer a {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.3s;
}

.faq-answer a:hover {
  color: var(--primary-dark);
}

/* Search FAQ Section */
.faq-search-container {
  max-width: 600px;
  margin: 0 auto 4rem;
}

.faq-search-form {
  display: flex;
  gap: 0.5rem;
}

.faq-search-input {
  flex: 1;
  padding: 1rem;
  border: 1px solid var(--bg-beige);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: all 0.3s;
  background-color: var(--secondary);
}

.faq-search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(87, 101, 76, 0.1);
}

.faq-search-button {
  background-color: var(--primary);
  color: var(--secondary);
  border: none;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: var(--shadow-light);
}

.faq-search-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* CTA Section */
.faq-section {
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  color: var(--secondary);
  text-align: center;
  padding: 3rem 2rem; 
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin: 3rem 0; 
  box-shadow: var(--shadow-light); 
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/images/base/faq2.jpg') center/cover no-repeat;
  opacity: 0.1; 
  z-index: 0;
  animation: subtlePulse 20s infinite alternate; 
}

@keyframes subtlePulse {
  0% {
    opacity: 0.08;
    transform: scale(1);
  }
  100% {
    opacity: 0.12;
    transform: scale(1.03); 
  }
}

.faq-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem; 
}

.faq-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.faq-section p {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.faq-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.faq-container {
  max-width: 800px;
  margin: 3rem auto;
}

.faq-button {
  display: block;
  margin: 2rem auto 0;
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s;
  text-align: center;
  width: fit-content;
}

.faq-button:hover {
  background-color: var(--primary);
  color: var(--secondary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  box-shadow: var(--shadow);
  min-width: 180px;
}

.btn i {
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--secondary);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--secondary);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.btn-outline:hover {
  background-color: var(--secondary);
  color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/***************************************************
 * 15. Partnership
 ***************************************************/
/* Partnership Content Sections */
.about-partnership {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}

.about-partnership-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-partnership-content h3 {
  font-size: 1.8rem;
  color: var(--primary);
}

.about-partnership-content p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-partnership-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-height: 450px;
  display: flex;
  align-items: center;
}

.about-partnership-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0, 0.2, 1);
  backface-visibility: hidden;
  transform: translateZ(0);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  will-change: transform;
  cursor: pointer;
}

/* Process Steps Section */
.process-container {
  margin: 3rem 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.process-step {
  background-color: var(--light);
  border-radius: 12px;
  padding: 2.5rem 3rem;  
  box-shadow: var(--shadow-light);
  border: 1px solid var(--bg-beige);
  transition: all 0.3s;
  position: relative;
  min-height: 450px; 
  display: flex;
  flex-direction: column;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}

.step-number {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60px; 
  height: 60px;
  background-color: var(--primary);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem; 
  font-weight: 700;
  z-index: 1;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.process-step h3 {
  font-size: 1.5rem; 
  margin-bottom: 1.5rem;
  padding-top: 0.5rem;
  color: var(--primary);
  border-bottom: 2px solid var(--bg-beige);
  padding-bottom: 1rem;
}

.process-step p {
  font-size: 1.05rem; 
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.process-step ul {
  margin-bottom: 2rem;
}

.process-step li {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.8rem;
}

.process-step li::before {
  content: '\f00c';  
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary);
}

.step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 1;
}

/* Commission Section */
.commission-container {
  background-color: var(--light);
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--bg-beige);
  margin: 3rem 0;
}

.commission-header {
  text-align: center;
  margin-bottom: 2rem;
}

.commission-header h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.commission-header p {
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
}

.commission-breakdown {
  background-color: var(--bg-cream);
  border-radius: 6px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.commission-breakdown h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.commission-breakdown ul {
  list-style-type: none;
  margin-left: 1rem;
}

.commission-breakdown li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.commission-breakdown li::before {
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* Benefits Section */
.benefits-container {
  margin: 3rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background-color: var(--light);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--bg-beige);
  transition: all 0.3s;
  height: 100%;
}

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

.benefit-icon {
  width: 70px;
  height: 70px;
  background-color: var(--bg-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--primary);
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.benefit-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* AMS Section */
.ams-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}

.ams-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ams-content h3 {
  font-size: 1.8rem;
  color: var(--primary);
}

.ams-content p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.ams-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-height: 450px;
  display: flex;
  align-items: center;
}

.ams-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0, 0.2, 1);
  backface-visibility: hidden;
  transform: translateZ(0);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  will-change: transform;
  cursor: pointer;
}

.ams-features {
  margin-top: 1rem;
}

.ams-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.ams-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--bg-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--primary);
}

.ams-feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--primary);
}

.ams-feature-text p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Contact Form Section */
.contact-form-container {
  background-color: var(--light);
  border-radius: 10px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--bg-beige);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-form-header h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-form-header p {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--primary);
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--bg-beige);
  border-radius: 4px;
  background-color: var(--bg-light);
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  overflow-y: hidden;
}

.form-control:focus {
  border-color: var(--primary-light);
  outline: none;
  box-shadow: 0 0 0 3px rgba(87, 101, 76, 0.1);
}

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

.form-submit {
  background-color: var(--primary);
  color: var(--secondary);
  border: none;
  border-radius: 4px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
  display: block;
  margin: 0 auto;
  width: fit-content;
}

.form-submit:hover {
  background-color: var(--primary-dark);
}

.form-notification {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  opacity: 1;
}

.form-notification i {
  font-size: 1.5rem;
  margin-right: 1rem;
}

.form-notification.success {
  background-color: var(--highlight-bg);
  border-left: 4px solid var(--primary);
  color: var(--primary);
}

.form-notification.error {
  background-color: var(--highlight-bg);
  border-left: 4px solid var(--primary);
  color: #c74843;
}

/***************************************************
* 16. CONTACT
***************************************************/
/* Contact Info */
.contact-info-container {
  background-color: var(--primary);
  color: var(--secondary);
  border-radius: 10px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
}

.contact-info-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/base/contact2.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.07;
  z-index: 0;
}

.contact-form-container,
.contact-info-container {
  box-sizing: border-box;
  width: 100%;
}

.contact-info-content {
  position: relative;
  z-index: 1;
}

.contact-info-header {
  margin-bottom: 2rem;
}

.contact-info-header h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: var(--secondary);
}

.contact-info-header p {
  opacity: 0.9;
}

.contact-details {
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(247, 244, 234, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-text {
  flex: 1;
}

.contact-text h4 {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.contact-text p {
  opacity: 0.9;
  font-size: 0.95rem;
}

.contact-social {
  margin-top: 2rem;
}

.contact-social h4 {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(247, 244, 234, 0.1);
  border-radius: 50%;
  color: var(--secondary);
  transition: all 0.3s;
}

.social-link:hover {
  background-color: var(--secondary);
  color: var(--primary);
  transform: translateY(-3px);
}

/* Map Section */
.map-container {
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 3rem 0;
  border: 1px solid var(--bg-beige);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/***************************************************
* 17. PLAN YOUR TRIP
***************************************************/
/* Custom Trip Form Style */
.trip-form-container {
  background-color: var(--light);
  border-radius: 10px;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem;
  border: 1px solid var(--bg-beige);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.form-header p {
  color: var(--text);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}
  
.form-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--bg-beige);
}

.form-section:last-child {
  border-bottom: none;
  margin-bottom: 1.5rem;
  padding-bottom: 0;
}

.form-section-title {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.form-section-title i {
  color: var(--primary);
  font-size: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--primary);
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--bg-beige);
  border-radius: 4px;
  background-color: var(--bg-light);
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
  border-color: var(--primary-light);
  outline: none;
  box-shadow: 0 0 0 3px rgba(87, 101, 76, 0.1);
}

select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2357654c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

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

.checkbox-group {
  margin-bottom: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0.5rem;
}

.checkbox-label input[type="checkbox"] {
  margin-right: 0.5rem;
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.radio-label input[type="radio"] {
  margin-right: 0.5rem;
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.privacy-notice {
  background-color: var(--bg-cream);
  border-radius: 6px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--bg-beige);
}

.privacy-notice h4 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.privacy-notice h4 i {
  color: var(--primary);
}

.privacy-notice p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.form-footer {
  text-align: center;
}

.btn-submit {
  background-color: var(--primary);
  color: var(--secondary);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-submit:hover {
  background-color: var(--primary-dark);
}

/***************************************************
 * 18. DESTINATIONS
 ***************************************************/
/* Global Destinations Intro Section */
.global-destinations-intro {
  padding: 4rem 5%;
  text-align: center;
  margin-bottom: 3rem;
}

.global-title {
  font-size: var(--font-size-4xl);
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.global-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 10%;
  width: 80%;
  height: 3px;
  background: linear-gradient(to right, var(--primary-light), var(--accent), var(--primary-light));
  border-radius: 2px;
}

.global-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.continents-title {
  font-size: var(--font-size-4xl);
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.continents-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Continents Tabs Styling */
.continents-tabs-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.continents-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 800px;
}

.continent-tab {
  padding: 12px 20px;
  background-color: var(--bg-cream);
  border: 1px solid var(--bg-beige);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  text-align: center;
  border: 1px solid #e0e0e0;
}

.continent-tab:hover {
  background-color: var(--bg-beige);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Region Intro Section */
.region-intro {
  text-align: center;
  padding: 0rem 5% 2rem;
  margin-top: -2rem;
}

.region-main-title {
  font-size: var(--font-size-4xl);
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.region-main-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 25%;
  width: 50%;
  height: 3px;
  background: linear-gradient(to right, var(--primary-light), var(--accent), var(--primary-light));
  border-radius: 2px;
}

.region-main-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

.region-secondary-title {
  font-size: var(--font-size-4xl);
  color: var(--primary-dark);
  margin-bottom: 0.8rem;
}

.region-secondary-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* New Africa Hero Section */
.new-africa-hero {
  position: relative;
  height: 100%;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--secondary);
  text-align: center;
  overflow: hidden;
  background: linear-gradient(to right, var(--primary-dark), var(--primary));
  padding: 0;
  margin: 0;  
}

.new-africa-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/images/africa/base/base1.jpg') center/cover no-repeat;
  opacity: 0.2;
  z-index: 0;
}

/* New Americas Hero Section */
.new-americas-hero {
  position: relative;
  height: 100%;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--secondary);
  text-align: center;
  overflow: hidden;
  background: linear-gradient(to right, var(--primary-dark), var(--primary));
  padding: 0;
  margin: 0;  
}

.new-americas-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/images/americas/base/base1.jpg') center/cover no-repeat;
  opacity: 0.2;
  z-index: 0;
}

/* New Asia Hero Section */
.new-asia-hero {
  position: relative;
  height: 100%;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--secondary);
  text-align: center;
  overflow: hidden;
  background: linear-gradient(to right, var(--primary-dark), var(--primary));
  padding: 0;
  margin: 0;  
}

.new-asia-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/images/asia/base/base1.jpg') center/cover no-repeat;
  opacity: 0.2;
  z-index: 0;
}

/* New Europe Hero Section */
.new-europe-hero {
  position: relative;
  height: 100%;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--secondary);
  text-align: center;
  overflow: hidden;
  background: linear-gradient(to right, var(--primary-dark), var(--primary));
  padding: 0;
  margin: 0;  
}

.new-europe-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/images/europe/base/base1.jpg') center/cover no-repeat;
  opacity: 0.2;
  z-index: 0;
}

/* New Oceania Hero Section */
.new-oceania-hero {
  position: relative;
  height: 100%;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--secondary);
  text-align: center;
  overflow: hidden;
  background: linear-gradient(to right, var(--primary-dark), var(--primary));
  padding: 0;
  margin: 0;  
}

.new-oceania-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/images/oceania/base/base1.jpg') center/cover no-repeat;
  opacity: 0.2;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 900px;
  transition: transform 0.5s ease;
}

.hero-content:hover {
  transform: translateY(-10px);
}

.continent-icon {
  font-size: 4rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

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

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  color: var(--secondary);
}

.hero-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 20%;
  width: 60%;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hero-description {
  font-size: 1.5rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* New Hero Cta Section */
.new-africa-hero .hero-cta {
  display: inline-flex;
  align-items: center;
  background-color: var(--secondary);
  color: var(--primary);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.4s;
  border: 2px solid var(--secondary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.new-africa-hero .hero-cta:hover {
  background-color: transparent;
  color: var(--secondary);
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.new-americas-hero .hero-cta {
  display: inline-flex;
  align-items: center;
  background-color: var(--secondary);
  color: var(--primary);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.4s;
  border: 2px solid var(--secondary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.new-americas-hero .hero-cta:hover {
  background-color: transparent;
  color: var(--secondary);
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.new-asia-hero .hero-cta {
  display: inline-flex;
  align-items: center;
  background-color: var(--secondary);
  color: var(--primary);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.4s;
  border: 2px solid var(--secondary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.new-asia-hero .hero-cta:hover {
  background-color: transparent;
  color: var(--secondary);
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.new-europe-hero .hero-cta {
  display: inline-flex;
  align-items: center;
  background-color: var(--secondary);
  color: var(--primary);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.4s;
  border: 2px solid var(--secondary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.new-europe-hero .hero-cta:hover {
  background-color: transparent;
  color: var(--secondary);
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.new-oceania-hero .hero-cta {
  display: inline-flex;
  align-items: center;
  background-color: var(--secondary);
  color: var(--primary);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.4s;
  border: 2px solid var(--secondary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.new-oceania-hero .hero-cta:hover {
  background-color: transparent;
  color: var(--secondary);
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.hero-cta i {
  margin-left: 0.8rem;
  transition: transform 0.3s;
}

.hero-cta:hover i {
  transform: translateX(5px);
}

.hero-features {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

.feature:hover {
  transform: translateY(-8px);
}

.feature i {
  font-size: 2.5rem;
  color: var(--secondary);
  transition: all 0.3s;
}

.feature:hover i {
  transform: scale(1.2);
}

.feature span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary);
}

/* CTA Section */
.destinations-section {
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  color: var(--secondary);
  text-align: center;
  padding: 3rem 2rem; 
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin: 3rem 0; 
  box-shadow: var(--shadow-light); 
}

.destinations-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/images/base/destinations2.avif') center/cover no-repeat;
  opacity: 0.1; 
  z-index: 0;
  animation: subtlePulse 20s infinite alternate; 
}
.destinations-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem; 
}

.destinations-section h2 {
  font-size: var(--font-size-4xl);
  margin-bottom: 1.5rem;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.destinations-section p {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-size: var(--font-size-lg);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.destinations-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.destinations-container {
  max-width: 800px;
  margin: 3rem auto;
}

.destinations-button {
  display: block;
  margin: 2rem auto 0;
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s;
  text-align: center;
  width: fit-content;
}

.destinations-button:hover {
  background-color: var(--primary);
  color: var(--secondary);
}

/***************************************************
 * 19. HOME
 ***************************************************/
/* Card Styles */
.card {
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
  overflow: hidden;
  border: 1px solid rgba(227, 218, 203, 0.5);
  height: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 575px;
}

.card-badge {
  position: absolute;
  top: 25px;
  right: 0;
  padding: 0.6rem 1.2rem 0.6rem 0.8rem;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--bg-cream);
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  font-weight: 700;
  z-index: 5;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: all 0.3s ease;
}

.card:hover .card-badge {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.card:hover {
  transform: translateY(-15px) rotate3d(1, 1, 0, 2deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-light);
}

.card:hover .card-details {
  background: var(--bg-beige);
}

.card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center; 
  transition: transform 0.7s cubic-bezier(0.2, 0, 0.2, 1);
  backface-visibility: hidden;
  transform: translateZ(0);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  will-change: transform;
  cursor: pointer;
  content-visibility: auto; 
}

.card:hover img {
  transform: scale(1.07);
}

.card-content {
  padding: 1.8rem;
}

.card h3 {
  border-bottom: 2px solid var(--bg-beige);
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 0.8rem; 
}

.card h3:after {
  content: '';
  position: absolute;
  bottom: -2px; 
  left: 0;
  width: 0;
  height: 2px; 
  background-image: linear-gradient(to right, var(--primary-light), var(--accent), var(--primary-light));
  transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  margin-top: 0; 
}

.card:hover h3:after {
  width: 100%; 
}

.card-description {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--text);
  font-size: 1.05rem;
}

.card-details {
  background: var(--bg-cream);
  padding: 1.2rem;
  min-height: 400px;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-light);
}

.detail-item {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--bg-beige);
  position: relative;
}

.detail-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.detail-item:last-child:after {
  bottom: -2px;
}

.detail-item:after {
  content: '';
  position: absolute;
  bottom: -1px; 
  left: 0;
  width: 0;
  height: 2px;
  background-image: linear-gradient(to right, var(--primary-light), var(--accent), var(--primary-light));
  transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.card:hover .detail-item:after {
  width: 100%;
}

.detail-item h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  font-weight: 600;
}

.detail-item h4 i {
  margin-right: 8px;
  color: var(--primary);
}

.detail-item p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

.overview-link {
  display: inline-block;
  background: var(--primary);
  color: var(--bg-cream);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s;
  margin-top: 1rem;
  text-align: center;
}

.overview-link:hover {
  background: var(--primary-dark);
  transform: translateX(5px);
}

.overview-link i {
  margin-left: 8px;
  transition: all 0.3s;
}

.overview-link:hover i {
  transform: translateX(5px);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: var(--font-size-4xl);
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: var(--font-size-lg);
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--text);
}

.approach-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.approach-card {
  background-color: var(--bg-cream);
  width: 360px;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid var(--bg-beige);
}

.approach-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
  background-color: var(--secondary);
}

.approach-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.approach-card h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.approach-card p {
  font-size: 1.05rem;
  line-height: 1.6;
}

/* CTA Section */
.home-section {
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  color: var(--secondary);
  text-align: center;
  padding: 3rem 2rem; 
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin: 3rem 0; 
  box-shadow: var(--shadow-light); 
}

.home-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/images/base/home2.jpg') center/cover no-repeat;
  opacity: 0.1; 
  z-index: 0;
  animation: subtlePulse 20s infinite alternate; 
}

.home-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem; 
}

.home-section h2 {
  font-size: var(--font-size-4xl);
  margin-bottom: 1.5rem;
  color: var(--secondary);
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.home-section p {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-size: var(--font-size-lg);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.home-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.home-container {
  max-width: 800px;
  margin: 3rem auto;
}

.home-button {
  display: block;
  margin: 2rem auto 0;
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s;
  text-align: center;
  width: fit-content;
}

.home-button:hover {
  background-color: var(--primary);
  color: var(--secondary);
}

/* Destinations Preview Section Styles */
.destinations-preview {
  padding: 5rem 0;
  background-color: var(--bg-cream);
  position: relative;
  overflow: hidden;
}

.destinations-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(to right, var(--primary-light), var(--accent), var(--primary-light));
}

.destinations-preview .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.destinations-preview .section-header h2 {
  font-size: var(--font-size-4xl);
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.destinations-preview .section-header h2::after {
  content: '';
  display: block;
  width: 70%;
  height: 3px;
  background-image: linear-gradient(to right, var(--primary-light), var(--accent), var(--primary-light));
  margin: 0.8rem auto 0;
  transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.destinations-preview .section-header p {
  font-size: var(--font-size-lg);
  color: var(--text);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* Destinations Carousel */
.destinations-carousel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.featured-destination {
  width: 360px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(227, 218, 203, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: var(--light);
}

.destination-image {
  height: 360px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.7s cubic-bezier(0.2, 0, 0.2, 1);
  backface-visibility: hidden;
  transform: translateZ(0);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  will-change: transform;
  content-visibility: auto; 
  cursor: pointer;
}

.featured-destination:hover .destination-image {
  transform: scale(1.07);
}

.destination-badge {
  position: absolute;
  top: 25px;
  right: 0;
  padding: 0.6rem 1.2rem 0.6rem 0.8rem;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--bg-cream);
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  font-weight: 700;
  z-index: 5;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: all 0.3s ease;
}

.featured-destination:hover .destination-badge {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.featured-destination:hover {
  transform: translateY(-15px) rotate3d(1, 1, 0, 2deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-light);
}

.destination-badge i {
  color: var(--bg-cream);
}

.destination-info {
  padding: 1.8rem;
}

.destination-info h3 {
  font-size: 1.5rem;
  border-bottom: 2px solid var(--bg-beige);
  position: relative;
  padding-bottom: 0.8rem;
  color: var(--primary-dark);
}

.destination-info h3:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-image: linear-gradient(to right, var(--primary-light), var(--accent), var(--primary-light));
  transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.featured-destination:hover h3:after {
  width: 100%;
}

.destination-info p {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.destination-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  border-radius: 8px;
}

.destination-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
}

.destination-meta i {
  color: var(--primary);
}

/* Explore More Section */
.explore-more {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 1rem;
}

.explore-more p {
  font-size: var(--font-size-lg);
  color: var(--text);
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.btn-home {
  display: inline-block;
  background: var(--primary);
  color: var(--bg-cream);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s;
  text-decoration: none;
  margin: 0 auto 3rem;
}

.btn-home:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.btn-home i {
  transition: all 0.3s;
}

.btn-home:hover i {
  transform: translateX(5px);
}

/* About Preview Section */
.about-preview-wrapper {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.about-preview-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(to right, var(--primary-light), var(--accent), var(--primary-light));
}

.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
}

.about-preview-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-preview-card {
  background: var(--light);
  border-radius: 14px;
  width: 100%;
  max-width: 800px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
  overflow: hidden;
  border: 1px solid rgba(227, 218, 203, 0.5);
}

.about-preview-image-wrapper {
  position: relative;
  overflow: hidden;
}

.about-preview-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0, 0.2, 1);
  backface-visibility: hidden;
  transform: translateZ(0);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  will-change: transform;
  cursor: pointer;
}

.about-preview-card:hover .about-preview-image {
  transform: scale(1.07);
}

.about-preview-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
}

.about-preview-tagline {
  color: var(--bg-cream);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.about-preview-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 1.5rem;
  background-color: var(--light);
}

.about-preview-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--bg-cream);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  font-size: 0.9rem;
  transition: all 0.3s;
  border: 1px solid var(--bg-beige);
}

.about-preview-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  background-color: var(--primary);
  color: var(--bg-cream);
  border-color: var(--primary);
}

.about-preview-badge i {
  color: var(--primary);
}

.about-preview-badge:hover i {
  color: var(--bg-cream);
}

.about-preview-card:hover {
  transform: translateY(-15px) rotate3d(1, 1, 0, 2deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-light);
}

.about-preview-content {
  padding: 2rem;
}

.about-preview-title {
  font-size: var(--font-size-4xl);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.about-preview-title::after {
  content: '';
  display: block;
  width: 70%;
  height: 3px;
  background-image: linear-gradient(to right, var(--primary-light), var(--accent), var(--primary-light));
  margin: 0.8rem 0 0;
  transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.about-preview-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text);
  margin-bottom: 2rem;
}

.about-preview-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--text);
}

.about-preview-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.about-preview-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  border-radius: 8px;
  background-color: var(--bg-cream);
  transition: all 0.3s;
  border: 1px solid var(--bg-beige);
}

.about-preview-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-light);
}

.about-preview-feature-icon {
  background-color: rgba(76, 175, 80, 0.1);
  color: var(--primary);
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.about-preview-feature:hover .about-preview-feature-icon {
  background-color: var(--primary);
  color: var(--bg-cream);
  transform: rotateY(180deg);
}

.about-preview-feature-icon i {
  font-size: 1.2rem;
  transition: all 0.3s;
}

.about-preview-feature:hover .about-preview-feature-icon i {
  transform: rotateY(180deg);
}

.about-preview-feature-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
  position: relative;
  padding-bottom: 0.5rem;
}

.about-preview-feature-text h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-image: linear-gradient(to right, var(--primary-light), var(--accent), var(--primary-light));
  transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.about-preview-feature:hover .about-preview-feature-text h3::after {
  width: 100%;
}

.about-preview-feature-text p {
  font-size: 0.95rem;
  color: var(--text);
  margin: 0;
  line-height: 1.5;
}

.about-preview-cta-container {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  width: 100%;
}

.about-preview-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--primary);
  color: var(--bg-cream);
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(76, 175, 80, 0.25);
}

.about-preview-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(76, 175, 80, 0.35);
}

.about-preview-cta-text {
  position: relative;
  z-index: 1;
}

.about-preview-cta i {
  transition: all 0.3s;
}

.about-preview-cta:hover i {
  transform: translateX(5px);
}
  
/***************************************************
 * 20. FOOTER
 ***************************************************/
 footer {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--secondary);
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/base/footer.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.07;
  z-index: 0;
}

.footer-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  padding: 2.5rem 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2.5rem;
  border-bottom: 2px solid rgba(247, 244, 234, 0.15);
  flex-wrap: wrap;
}

.footer-logo {
  flex: 0 0 auto;
  min-width: 150px;
  margin-right: 1rem;
}

.footer-logo-image {
  display: none;
}

.footer-logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-text {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--secondary);
  line-height: 1;
  margin: 0;
  text-transform: none;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-logo-subtext {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 300;
  margin-top: 0.2rem;
  text-transform: none;
  letter-spacing: 1px;
  margin-left: auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-about {
  flex: 1;
  min-width: 200px;
  max-width: 350px;
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--secondary);
  opacity: 0.95;
}

.footer-about p strong {
  font-weight: 700;
  color: var(--light);
}

.footer-links-container {
  display: flex;
  gap: 2.5rem;
  flex: 2;
  min-width: 250px;
}

.footer-links-column {
  flex: 1;
}

.footer-column-title {
  color: var(--light);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}

.footer-column-title::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--accent-light);
  bottom: -8px;
  left: 0;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
}

.footer-links li a {
  color: var(--secondary);
  opacity: 0.9;
  font-size: 0.95rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links li a:hover {
  opacity: 1;
  color: var(--light);
  transform: translateX(5px);
}

.footer-links li a i {
  font-size: 0.7rem;
  color: var(--accent-light);
}

.footer-links li a.active {
  color: var(--light);
  font-weight: 700;
  opacity: 1;
}

.footer-links li a.active i {
  color: var(--accent-light);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 0.7rem;
}

.footer-social-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
}

.footer-social a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(247, 244, 234, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 1.2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.footer-social a:hover {
  background-color: var(--secondary);
  color: var(--primary-dark);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.footer-email {
  text-align: center;
}

.footer-email a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.footer-email a:before {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 0.7rem;
  color: var(--accent-light);
}

.footer-email a.active {
  color: var(--light);
  font-weight: 700;
  opacity: 1;
}

.footer-email a.active:before {
  color: var(--accent-light);
}

.footer-email a:hover {
  opacity: 1;
  color: var(--light);
  transform: translateX(5px);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.25);
  padding: 1.2rem 5%;
  text-align: center;
  width: 100vw;
  box-sizing: border-box;
  max-width: none;
  margin-left: calc(-50vw + 50%);
  position: relative;
  left: 0;
  right: 0;
}

.footer-bottom p {
  margin: 0 auto;
  font-size: 0.9rem;
  opacity: 0.95;
}

.footer-bottom a {
  color: var(--accent-light);
  transition: all 0.3s;
}

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

/***************************************************
 * 21. UTILITIES
 ***************************************************/
/* For webkit browsers (Chrome, Safari, newer Edge) */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--accent-light);
  border-radius: 3px;
}

::-webkit-scrollbar-track {
  background: var(--primary-dark);
}

/* For Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--accent-light) var(--primary-dark);
}

.back-to-top {
  position: fixed;
  bottom: 1.2rem; 
  right: 1rem; 
  background-color: var(--primary);
  color: var(--light);
  width: 48px; 
  height: 48px; 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem; 
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.whatsapp-btn {
  position: fixed;
  bottom: 1.2rem;
  left: 1rem;
  background-color: #25D366;
  color: var(--light);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Hide content until JS is ready */
.hide-until-ready {
  opacity: 0;
  visibility: hidden;
}

.hide-until-ready.ready {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}

.js-loading .destinations-grid,
.js-loading .price-tag,
.js-loading #dynamic-region-count {
  visibility: hidden;
}

/* Separator */
.separator {
  display: flex;
  align-items: center;
  margin: 3rem auto;
  max-width: 700px;
}

.separator-line {
  flex: 1;
  height: 1px;
  background-color: var(--bg-beige);
}

.separator-text {
  padding: 0 1rem;
  color: var(--primary);
  font-weight: 500;
}

/* WhatsApp Inline Button */
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  background-color: #25D366;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  margin-top: 0.5rem;
  transition: all 0.3s;
}

.whatsapp-button i {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.whatsapp-button:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
}

/***************************************************
 * 22. MEDIA QUERIES
 ***************************************************/
/* Mobile Header Styles */
@media screen and (max-width: 992px) {
  /* Header container adjustments */
  .header-container {
    position: relative;
  }
  
  /* Keep logo visible and centered */
  .logo-switchers-container {
    width: auto;
    margin: 0 auto;
  }
  
  /* Hide navigation sections and switchers by default */
  .nav-section-left, 
  .nav-section-right,
  .center-switchers-container {
    display: none;
  }
  
  /* Show hamburger button */
  .hamburger {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--secondary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
  }
  
  /* Mobile menu overlay */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    height: 100%;
    width: 100%;
      background: linear-gradient(to bottom, rgba(87, 101, 76, 0.8), rgba(87, 101, 76, 0.9)), 
    url('/assets/images/base/menu.jpg') center/cover no-repeat;
    z-index: 1000;
    overflow-y: auto;
    padding: 2rem 1rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  
  body.menu-open .header-container {
    display: none !important;
  }

  body.menu-open .mobile-menu {
    display: flex;
  }

  body.menu-open {
    overflow: hidden;
    position: static;
    width: auto;
    height: auto;
  }

  .mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.7rem; 
    cursor: pointer;
    z-index: 1001;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  }

  /* Mobile menu components */
  .mobile-menu .logo-container {
    margin-bottom: 2rem;
  }
  
  .mobile-menu .nav-section-left,
  .mobile-menu .nav-section-right {
    width: 100%;
    display: block;
    padding: 0;
    margin-bottom: 1.5rem;
  }
  
  .mobile-menu .nav-list {
    flex-direction: column;
    width: 100%;
  }
  
  .mobile-menu .nav-list li {
    width: 100%;
    text-align: center;
    margin: 0.5rem 0;
  }
  
  .mobile-menu .nav-list li a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
  }
  
  /* Mobile switchers - smaller and below */
  .mobile-menu .center-switchers-container {
    display: flex;
    margin-top: 1rem;
    transform: scale(0.9);
  }

  /* Make mobile switcher menus open upward */
  .mobile-menu .switcher-menu {
    position: absolute;
    bottom: 100%; /* Position above the button instead of below */
    top: auto; /* Override any existing top positioning */
    margin-bottom: 5px; /* Add some spacing between button and menu */
    max-height: 300px; /* Limit height if needed */
    overflow-y: auto; /* Allow scrolling if content is tall */
    overflow: hidden;
  }

  /* Optional: Add a slight visual indicator for upward direction */
  .mobile-menu .switcher-button.active::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: var(--primary); /* Match your menu background */
    pointer-events: none;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-partnership {
    grid-template-columns: 3fr 2fr;
    gap: 2rem;
  }
  
  .ams-container {
    grid-template-columns: 3fr 2fr;
    gap: 2rem;
  }

  .process-steps {
    grid-template-columns: 1fr; /* Change to single column */
    gap: 3rem; /* Increase vertical gap slightly */
  }
  
  .process-step {
    padding: 2rem; /* Reduce padding for smaller screens */
    min-height: auto; /* Allow height to be determined by content */
  }

  /* Adjust header badge positioning and size */
  .modal-header-badge {
    top: 8px;
    left: 8px;
    gap: 0.3rem;
    max-width: 60%;
  }
  
  .header-country-flag {
    width: 32px;
    height: 32px;
  }
  
  .header-country-name {
    padding: 0.3rem 0.6rem;
    font-size: 0.85rem;
  }
  
  /* Adjust modal price */
  .modal-price {
    padding: 0.6rem 1.2rem;
    font-size: 1.2rem;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
  }
  
  .modal-price span:last-child {
    font-size: 0.8rem;
  }
  
  /* Adjust title container */
  .modal-title-container {
    padding: 1rem 1.2rem 0.8rem;
  }
  
  /* Adjust badges */
  .modal-badges {
    margin-top: 0.3rem;
    gap: 0.3rem;
  }
  
  .modal-badge {
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
    gap: 0.25rem;
  }
  
  .modal-badge i {
    font-size: 0.65rem;
  }
  
  /* Make key facts wrap properly */
  .modal-key-facts {
    padding: 0.7rem 1rem;
  }

  .modal-body-container {
    display: flex;
    flex-direction: column;
    align-items: center; 
  }

  .facts-grid {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 1rem;
    width: 100%;
  }

  .fact-item {
    min-width: 100px; /* Minimum width before wrapping */
    justify-content: center;
  }

  /* Convert main content to column layout with specified order */
  .modal-main-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  /* Reset grid structure */
  .modal-main-content, .modal-sidebar {
    display: block;
    width: 100%;
  }

  /* Reset sidebar width constraints */
  .modal-sidebar {
    min-width: auto;
  }

  /* Set order of elements as requested */
  .modal-section:has(.modal-description) {
    order: 1;
  }

  .modal-section:not(:has(.modal-description)) {
    order: 2;
  }

  .modal-sidebar {
    order: 3;
    margin-top: 1.5rem;
  }

  /* Reposition and resize the price container */
  .price-value {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    font-size: 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: 16px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    margin: 0.5rem auto 0;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 3;
  }
 
  .price-value:hover {
    transform: translateY(-2px);
    color: var(--primary-dark);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    background-color: var(--bg-cream);
  }

  /* Structure price range container as a flex column */
  .price-range-container {
    display: flex;
    flex-direction: column;
    margin: 0.8rem 0;
    min-height: 105px;
    padding-bottom: 0.5rem;
  }
  
  /* Make labels more compact */
  .price-labels {
    order: 2;
    margin-bottom: 0.5rem;
  }
  
  .price-labels span {
    padding: 0.25rem 0.6rem;
    font-size: 0.8rem;
  }
  
  /* Make "per person" text smaller */
  .price-value .per-person {
    font-size: 0.65rem;
    margin-top: 0;
    opacity: 0.8;
  }

  /* Region header adjustments */
  .region-header {
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .region-header h3 {
    font-size: 1.8rem;
    margin: 0;
    display: inline-block;
    white-space: nowrap; /* Prevents "Toute l'Océanie" from wrapping */
  }

  .region-count {
    font-size: 0.8rem;
    padding: 0.35rem 0.8rem;
    display: inline-flex;
    margin-left: 1rem;
    white-space: nowrap; /* Ensures destination count stays on one line */
  }

  /* Destinations grid */
  .destinations-grid {
    gap: 1.5rem;
  }

  /* Destination card */
  .destination-card {
    max-width: 450px;
  }

  .destination-card:hover {
    transform: translateY(-10px) rotate3d(1, 1, 0, 1.5deg);
  }

  /* Country label */
  .country-label {
    top: 20px;
    padding: 0.5rem 1rem 0.5rem 0.7rem;
    font-size: 0.95rem;
    gap: 0.5rem;
  }

  .country-label img {
    width: 20px;
    height: 20px;
  }

  /* Card image */
  .card-image {
    max-height: 280px;
  }

  /* Price tag */
  .price-tag {
    padding: 0.6rem 1.1rem 0.6rem 0.9rem;
    font-size: 1.1rem;
  }

  .price-tag span:last-child {
    font-size: 0.85rem;
  }

  /* Card content */
  .card-content {
    padding: 1.2rem;
    gap: 0.6rem;
  }

  .card-title h2 {
    font-size: 1.6rem;
    word-wrap: break-word;
    hyphens: auto;
  }

  .card-subtitle {
    font-size: 0.9rem;
  }

  /* Quick facts */
  .quick-facts {
    gap: 0.4rem;
  }

  .quick-fact {
    padding: 0.35rem 0.65rem;
    font-size: 0.8rem;
    white-space: normal;
  }

  /* Key details - IMPROVED */
  .key-details {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .key-detail {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
    height: auto;
    min-height: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.4;
  }

  .key-detail strong {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: auto;
    margin-bottom: 0.2rem;
    display: block;
    color: rgba(0, 0, 0, 0.7);
  }

  .key-detail span {
    white-space: normal;
    display: block;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
  }

  /* Card text */
  .card-text {
    font-size: 0.85rem;
    line-height: 1.6;
    min-height: 170px;
  }

  /* Highlights - IMPROVED */
  .highlights {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .highlight-item {
    padding: 0.7rem 0.9rem;
    font-size: 0.85rem;
    height: auto;
    min-height: 72px;
    line-height: 1.4;
    display: block; /* Changed from flex */
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: left;
    box-sizing: border-box;
    overflow: hidden; /* Instead of overflow-y: auto */
    white-space: normal;
  }

  /* Ideal box */
  .ideal-box {
    height: auto;
    min-height: 130px;
    padding: 0.7rem;
    overflow-y: auto;
  }

  .ideal-header h5 {
    font-size: 0.85rem;
  }

  .ideal-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    text-align: center;  
    white-space: normal;   
    display: inline-block; 
    margin: 0 auto;        
  }

  /* Card footer */
  .card-footer {
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: space-between;
  }

  .perks {
    gap: 0.6rem;
    justify-content: flex-start;
  }

  .perk {
    font-size: 0.75rem;
  }

  .view-details {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  /* Featured badge */
  .featured-badge {
    top: 20px;
    padding: 0.5rem 1rem 0.5rem 0.7rem;
    font-size: 0.75rem;
  }
}

/* Adjustments for screens smaller than 768px (e.g., tablets and mobile devices) */
@media (max-width: 768px) {
  /* Stack grid columns vertically */
  .about-preview-grid {
    grid-template-columns: 1fr;
  }

  /* Make card and image wrapper responsive */
  .about-preview-card,
  .about-preview-image-wrapper {
    max-width: 100%;
  }

  /* Reduce padding for more content space */
  .about-preview-wrapper {
    padding: 2rem 0;
  }

  .about-preview-content {
    padding: 1rem;
  }

  /* Ensure text wraps and doesn't get cut off */
  .about-preview-text p,
  .about-preview-tagline {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  /* Adjust overlay padding */
  .about-preview-overlay {
    padding: 1rem;
  }

  /* Make CTA button full-width for better mobile usability */
  .about-preview-cta {
    width: 100%;
    justify-content: center;
  }

  .about-partnership {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-partnership-image {
    max-height: 300px;
    margin-top: 1rem;
  }

  .ams-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .ams-image {
    max-height: 300px;
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .process-step {
    padding: 1.5rem; /* Further reduce padding on very small screens */
  }
  
  .process-step h3 {
    font-size: 1.3rem; /* Slightly smaller headings */
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    top: -10px;
    left: -10px;
  }
}

/* Additional adjustments for very small screens (e.g., mobile phones below 480px) */
@media (max-width: 480px) {
  /* Reduce minimum width of feature boxes to prevent overflow */
  .about-preview-features {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  /* Shrink badges to fit better */
  .about-preview-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .about-partnership {
    gap: 1.5rem;
    margin: 2rem 0;
  }
  
  .about-partnership-content h3 {
    font-size: 1.5rem;
  }
  
  .about-partnership-content p {
    font-size: 1rem;
  }
  
  .about-partnership-image {
    max-height: 220px;
  }

  .ams-container {
    gap: 1.5rem;
    margin: 2rem 0;
  }
  
  .ams-content h3 {
    font-size: 1.5rem;
  }
  
  .ams-content p {
    font-size: 1rem;
  }
  
  .ams-image {
    max-height: 220px;
  }
  
  .ams-feature-text h4 {
    font-size: 1rem;
  }
  
  .ams-feature-text p {
    font-size: 0.9rem;
  }
}
