/* Marrakech Quad Biking - Complete Styles */

/* Import Components */
@import url('components/booking-form.css');
@import url('components/calendar.css');

/* CSS Variables */
:root {
  /* Primary Colors */
  --primary: #FF6B35;
  --primary-dark: #E85A2C;
  --primary-light: #FF8F6B;
  
  /* Secondary Colors */
  --secondary: #1A1A1A;
  --secondary-light: #333333;
  
  /* Neutral Colors */
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  
  /* Semantic Colors */
  --success: #22C55E;
  --error: #EF4444;
  --warning: #F59E0B;
  --info: #3B82F6;
  --whatsapp: #25D366;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  
  /* Border Radius */
  --radius-base: 0.25rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  
  /* Transitions */
  --transition-base: 300ms ease;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--primary);
  z-index: 10000;
  transition: width 0.1s ease;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--secondary);
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Prevent horizontal scrolling on mobile */
  width: 100%;
  max-width: 100vw;
}

/* Prevent content from causing horizontal scroll */
* {
  max-width: 100%;
}

/* Fix for elements that might overflow */
img, video, iframe, embed {
  max-width: 100%;
  height: auto;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

@media (max-width: 640px) {
  .container {
    padding: 0 var(--space-4);
  }
}

/* Header */
.header {
  position: fixed;
  top: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - var(--space-6));
  max-width: 1280px;
  z-index: 1000;
  transition: all var(--transition-base);
  padding: var(--space-4) 0;
  border-radius: var(--radius-2xl);
}

/* Ensure header doesn't overflow on very small screens */
@media (max-width: 360px) {
  .header {
    width: calc(100% - var(--space-4));
  }
}

/* Header hide on scroll down, show on scroll up */
.header.header-hidden {
  transform: translateX(-50%) translateY(-120%);
}

@media (max-width: 640px) {
  .header.header-hidden {
    transform: translateX(0) translateY(-120%);
  }
}

/* Ensure mobile menu closes when header is hidden */
.header.header-hidden ~ .mobile-menu.active {
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 640px) {
  .header {
    width: 100%;
    top: 0;
    left: 0;
    transform: translateX(0);
    border-radius: 0;
    padding: var(--space-3) 0;
  }
}

body.home-page .header {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

body.home-page .header.header-scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Non-homepage headers (tour pages, etc.) */
body:not(.home-page) .header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

body:not(.home-page) .header.header-scrolled {
  box-shadow: var(--shadow-md);
}

.header-container {
  padding: 0 var(--space-6);
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 640px) {
  .header-container {
    padding: 0 var(--space-4);
  }
}

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

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: filter var(--transition-base);
}

@media (max-width: 640px) {
  .header-logo-img {
    height: 32px;
  }
}

/* Make logo white on transparent header (before scrolling) */
body.home-page .header:not(.header-scrolled) .header-logo-img {
  filter: brightness(0) invert(1);
}

.logo-light {
  display: block;
}

.logo-dark {
  display: none;
}

.header-scrolled .logo-light {
  display: none;
}

.header-scrolled .logo-dark {
  display: block;
}

/* Navigation */
.header-nav {
  display: none;
}

@media (min-width: 1024px) {
  .header-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    flex: 1;
    justify-content: center;
  }
  
  .header-nav > a,
  .header-nav > .nav-dropdown {
    flex-shrink: 0;
    flex-grow: 0;
  }
  
  .header-nav > a {
    display: inline-flex;
    align-items: center;
  }
}

@media (min-width: 1024px) and (max-width: 1300px) {
  .header-nav {
    gap: 1rem;
  }
  
  .nav-link {
    font-size: 0.95rem;
  }
  
  .header-container {
    padding: 0 var(--space-4);
  }
  
  .header-content {
    gap: 1.5rem;
  }
}

.nav-link {
  font-weight: 500;
  color: white;
  transition: color var(--transition-base);
  position: relative;
  white-space: nowrap;
  display: inline-block;
  text-decoration: none;
}

.header-scrolled .nav-link {
  color: var(--secondary);
}

/* Non-homepage nav links */
body:not(.home-page) .nav-link {
  color: var(--secondary);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

/* Dropdown Menus */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 280px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1000;
  border-radius: 4px;
  padding: 8px 0;
  top: 100%;
  left: 0;
  /* Prevent dropdown from going off-screen */
  max-width: calc(100vw - var(--space-8));
}

/* Adjust dropdown position if it would overflow */
@media (max-width: 1024px) {
  .dropdown-menu {
    min-width: 220px;
  }
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s;
}

.dropdown-item:hover {
  background-color: #f1f1f1;
  color: var(--primary);
}

/* Navigation Dropdown Styles */
.nav-dropdown {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.nav-dropdown .nav-link {
  display: inline-block;
  white-space: nowrap;
}

.nav-dropdown .nav-link::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-left: 4px;
  font-size: 0.75em;
  vertical-align: middle;
  display: inline-block;
}

.nav-dropdown-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  background-color: white;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.15);
  z-index: 1000;
  border-radius: 8px;
  padding: 8px 0;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s ease, visibility 0s linear 0.5s;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu:hover {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease, visibility 0s;
}

.nav-dropdown-item {
  color: var(--secondary);
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 400;
}

.nav-dropdown-item:hover {
  background-color: var(--gray-50);
  color: var(--primary);
  padding-left: 24px;
}

/* Header scrolled state for dropdowns */
.header-scrolled .nav-dropdown-menu {
  box-shadow: 0px 8px 20px 0px rgba(0,0,0,0.12);
}

/* Mobile nav dropdown - hide on mobile */
@media (max-width: 768px) {
  .nav-dropdown .nav-link::after {
    display: none;
  }
  
  .nav-dropdown-menu {
    display: none !important;
  }
}

/* Mobile Dropdown */
.mobile-dropdown {
  position: relative;
}

.mobile-dropdown-menu {
  display: none;
  padding-left: 20px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  display: block;
}

.mobile-dropdown-item {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  border-left: 2px solid #eee;
}

.mobile-dropdown-item:hover {
  background-color: #f8f8f8;
  border-left-color: var(--primary);
}

/* Header CTA */
.header-cta {
  display: none;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .header-cta {
    display: block;
    flex-shrink: 0;
    margin-left: auto;
  }
}


/* Mobile Menu */
.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.header-scrolled .mobile-menu-btn {
  color: var(--secondary);
}

/* Non-homepage mobile menu button */
body:not(.home-page) .mobile-menu-btn {
  color: var(--secondary);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  transform: translateY(-100%);
  width: 100%;
  background: var(--gray-900);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

@media (max-width: 640px) {
  .mobile-menu {
    top: 60px;
    max-height: calc(100vh - 60px);
  }
}

.mobile-menu-container {
  padding: var(--space-6);
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .mobile-menu-container {
    padding: var(--space-4);
  }
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.mobile-nav-link {
  display: block;
  padding: var(--space-4) var(--space-4);
  margin: 0 calc(-1 * var(--space-4));
  color: white;
  font-weight: 500;
  font-size: var(--text-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
  text-decoration: none;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  color: var(--primary);
  background-color: rgba(255, 107, 53, 0.1);
  padding-left: var(--space-6);
}

.mobile-menu-footer {
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-block {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
              url('https://marrakechquadbiking.com/wp-content/uploads/2023/08/Marrakech-Quad-Biking.jpeg') center/cover no-repeat;
  min-height: 70vh;
  padding: 120px 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 60vh;
    padding: 100px 0 60px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 50vh;
    padding: 80px 0 40px;
  }
}

.hero-section h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: var(--space-6);
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .hero-section h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: var(--space-4);
  }
}

@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 2rem;
  }
}

.hero-section p {
  font-size: 1.25rem;
  margin-bottom: var(--space-8);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .hero-section p {
    font-size: 1.125rem;
    margin-bottom: var(--space-6);
  }
}

@media (max-width: 480px) {
  .hero-section p {
    font-size: 1rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-8);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  gap: var(--space-2);
}

.btn-primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
  border-color: var(--whatsapp);
}

.btn-whatsapp:hover {
  background: #1EB954;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-white {
  background: white;
  color: var(--secondary);
  border-color: white;
}

.btn-white:hover {
  background: var(--gray-100);
  border-color: var(--gray-100);
}

.btn-lg {
  padding: var(--space-4) var(--space-10);
  font-size: 1.125rem;
}

@media (max-width: 480px) {
  .btn-lg {
    padding: var(--space-3) var(--space-6);
    font-size: 1rem;
  }
}

.btn-sm {
  padding: var(--space-2) var(--space-6);
  font-size: 0.875rem;
}

/* Hero CTA */
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  margin-bottom: var(--space-16);
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  font-size: 2rem;
  color: white;
}

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

/* Section */
.section {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 2rem 0;
  }
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--secondary);
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.75rem;
  }
}

.section-header p {
  font-size: 1.25rem;
  color: var(--gray-600);
}

/* Tours Grid */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

@media (max-width: 768px) {
  .tours-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

@media (max-width: 480px) {
  .tours-grid {
    gap: var(--space-4);
  }
}

/* Tour Card */
.tour-card {
  background: white;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.tour-card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card:hover .tour-card-image img {
  transform: scale(1.1);
}

.tour-card-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: var(--primary);
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.tour-card-content {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--secondary);
}

@media (max-width: 480px) {
  .tour-card-title {
    font-size: 1.25rem;
  }
}

.tour-card-description {
  color: var(--gray-600);
  margin-bottom: var(--space-4);
  flex: 1;
  line-height: 1.6;
}

.tour-card-description ul {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

.tour-card-description ul li {
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}

.tour-card-description strong {
  color: var(--secondary);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.tour-card-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

@media (max-width: 640px) {
  .tour-card-info-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
}

.tour-card-features {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.tour-card-feature {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: 0.875rem;
  color: var(--gray-600);
}

.tour-card-feature i {
  color: var(--primary);
}

.tour-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-4);
  border-top: 1px solid var(--gray-200);
}

.tour-card-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
}

.tour-card-price-original {
  font-size: 1.125rem;
  color: var(--gray-400);
  text-decoration: line-through;
}

.tour-card-price-current {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
}

@media (max-width: 480px) {
  .tour-card-price-current {
    font-size: 1.5rem;
  }
}

.tour-card-price-unit {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

/* Blog Grid - 3 columns on desktop */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Testimonials Carousel */
.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-container {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonials-slide {
  width: 100%;
  flex-shrink: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

@media (max-width: 1024px) {
  .testimonials-slide {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .testimonials-slide {
    grid-template-columns: 1fr;
  }
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-8);
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: background var(--transition-base);
}

.carousel-dot.active {
  background: var(--primary);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid var(--gray-200);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  z-index: 10;
}

.carousel-nav:hover {
  background: var(--gray-50);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
  left: -20px;
}

.carousel-nav.next {
  right: -20px;
}

@media (max-width: 1024px) {
  .carousel-nav {
    display: none;
  }
}

/* Feature Card */
.feature-card {
  text-align: center;
  padding: var(--space-8);
  background: white;
  border-radius: var(--radius-2xl);
  transition: all var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-4);
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: white;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--secondary);
}

.feature-description {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Testimonial Card */
.testimonial-card {
  background: white;
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.testimonial-rating {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-4);
}

.testimonial-rating i {
  color: #FFC107;
}

.testimonial-quote {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: var(--space-1);
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Footer */
.footer {
  background-color: #041827;
  color: white;
  padding-top: var(--space-16);
  padding-bottom: var(--space-8);
  margin-top: 4rem;
  margin-left: 1rem;
  margin-right: 1rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .footer {
    margin-top: 3rem;
    padding-top: var(--space-12);
  }
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-16) var(--space-6) var(--space-8);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
}

@media (max-width: 640px) {
  .footer {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    border-radius: 0.75rem;
  }
  
  .footer-container {
    padding: var(--space-12) var(--space-4) var(--space-6);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  
  .footer-links {
    align-items: flex-start;
  }
  
  .footer-social {
    justify-content: flex-start;
  }
  
  .footer-contact-item {
    justify-content: flex-start;
  }
}

.footer-column h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-6);
}

.footer-about {
  max-width: 400px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: var(--space-4);
}

.footer-description {
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-link {
  color: var(--gray-400);
  transition: color var(--transition-base);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-link:hover {
  color: var(--primary);
}

.footer-link i {
  font-size: 0.75rem;
  color: var(--primary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .footer-contact-icon {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
  }
}

.footer-contact-info strong {
  display: block;
  margin-bottom: var(--space-1);
}

.footer-contact-info a {
  color: var(--gray-400);
  transition: color var(--transition-base);
}

.footer-contact-info a:hover {
  color: var(--primary);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

@media (max-width: 480px) {
  .social-link {
    width: 40px;
    height: 40px;
  }
}

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

.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-copyright {
  color: var(--gray-400);
  font-size: 0.875rem;
}

.footer-menu {
  display: flex;
  gap: var(--space-6);
}

.footer-menu-link {
  color: var(--gray-400);
  font-size: 0.875rem;
  transition: color var(--transition-base);
}

.footer-menu-link:hover {
  color: var(--primary);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-4);
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  z-index: 999;
}

@media (max-width: 640px) {
  .back-to-top {
    right: var(--space-3);
    width: 40px;
    height: 40px;
    bottom: var(--space-4);
  }
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-4px);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 120px;
  right: var(--space-4);
  background: var(--whatsapp);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-base);
  z-index: 998;
  font-size: 28px;
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: var(--space-3);
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 80px;
  }
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
  color: white;
}

/* Tour Page Styles */
.tour-page-wrapper {
  background-color: #fff;
  padding-top: 100px; /* Account for fixed header */
}

@media (max-width: 768px) {
  .tour-page-wrapper {
    padding-top: 80px;
  }
}

@media (max-width: 480px) {
  .tour-page-wrapper {
    padding-top: 70px;
  }
}

.tour-page-container {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.content-card {
  background-color: var(--gray-50);
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease-out;
  margin-bottom: 2.5rem; /* Reduced from 3rem for more consistent spacing */
}

@media (max-width: 640px) {
  .content-card {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .content-card {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
  }
}

/* Remove these old rules - they're replaced by the new comprehensive spacing system */

.content-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -4px rgba(0, 0, 0, 0.07);
}

/* Interactive Pop Grid */
.interactive-pop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}

@media (max-width: 768px) {
  .interactive-pop-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

.interactive-pop-grid .content-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -4px rgba(0, 0, 0, 0.07);
}

/* Static content card without hover effects for booking sections */
.content-card-static {
  background-color: var(--gray-50);
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-200);
  margin-bottom: 3rem;
  margin-top: 3rem;
}

@media (max-width: 640px) {
  .content-card-static {
    padding: 1.5rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .content-card-static {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
  }
}

/* Override hover effect for booking reservation sections */
#reservation.content-card:hover {
  transform: none;
  box-shadow: none;
}

/* Global content card spacing - only applies outside tour pages */
.content-card:not([class*="!mb-"]):not(.tour-page-wrapper .content-card) {
  margin-bottom: 2.5rem !important;
}

/* Handle grid sections with nested content cards globally */
section.grid .content-card,
.interactive-pop-grid .content-card {
  margin-bottom: 0 !important;
}

/* Tour page specific spacing overrides */
/* Reset all margins first to ensure clean slate */
.tour-page-wrapper main > section {
  margin: 0;
}

/* Add consistent bottom spacing to ALL sections in tour pages */
.tour-page-wrapper main > section:not(:last-child) {
  margin-bottom: 2.5rem !important;
}

/* Ensure last section has no bottom margin */
.tour-page-wrapper main > section:last-child {
  margin-bottom: 0 !important;
}

/* Handle sections with mt-12 class (customer reviews, FAQ) */
.tour-page-wrapper main > section.mt-12 {
  margin-top: 3rem !important;
  margin-bottom: 2.5rem !important;
}

.tour-page-wrapper main > section.mt-12:last-child {
  margin-bottom: 0 !important;
}

/* Grid sections should not have extra spacing on their content cards */
.tour-page-wrapper main > section.grid .content-card,
.tour-page-wrapper main > section[class*="grid-cols"] .content-card {
  margin-bottom: 0 !important;
}

/* Sections that ARE content cards should follow the same spacing rules */
.tour-page-wrapper main > section.content-card:not(:last-child) {
  margin-bottom: 2.5rem !important;
}

/* Remove any top margins that might cause inconsistent spacing */
.tour-page-wrapper main > section#reservation,
.tour-page-wrapper main > section#about,
.tour-page-wrapper main > section#faq,
.tour-page-wrapper main > section#customer-reviews {
  margin-top: 0 !important;
}

/* Special handling for customer reviews and FAQ sections that have mt-12 */
.tour-page-wrapper main > section#customer-reviews,
.tour-page-wrapper main > section#faq {
  margin-top: 3rem !important;
}

/* Bottom padding for tour page container */
.tour-page-container {
  padding-bottom: 3rem;
}

@media (max-width: 640px) {
  .tour-page-container {
    padding-bottom: 2rem;
  }
  
  /* Reduce spacing on mobile */
  .tour-page-wrapper main > section:not(:last-child) {
    margin-bottom: 2rem !important;
  }
  
  .tour-page-wrapper main > section.mt-12,
  .tour-page-wrapper main > section#customer-reviews,
  .tour-page-wrapper main > section#faq {
    margin-top: 2.5rem !important;
  }
}

@media (max-width: 480px) {
  /* Further reduce spacing on small mobile */
  .tour-page-wrapper main > section:not(:last-child) {
    margin-bottom: 1.5rem !important;
  }
  
  .tour-page-wrapper main > section.mt-12,
  .tour-page-wrapper main > section#customer-reviews,
  .tour-page-wrapper main > section#faq {
    margin-top: 2rem !important;
  }
}

/* Generic section spacing - only applies outside tour pages */
.section:not(.tour-page-wrapper .section) {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 1.875rem;
  }
}

/* Gradient Button */
.gradient-button {
  background-image: linear-gradient(to right, var(--primary), #f97316);
  transition: all var(--transition-base);
}

.gradient-button:hover {
  background-image: linear-gradient(to right, #f97316, var(--primary));
}

/* Rating Badge */
.rating-badge {
  background-color: #10b981;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-right: 0.5rem;
}

/* Price Display */
.price-display {
  color: var(--primary);
}

/* Gallery Images */
.gallery-images {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .gallery-images {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-image-clickable {
  cursor: pointer;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.gallery-image-clickable:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* CTA Booking Section */
.cta-booking-section {
  background-color: transparent;
  padding: 0 1rem;
}

.cta-booking-container {
  background-color: var(--primary);
  color: white;
  padding: var(--space-16) var(--space-6);
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  max-width: 1280px;
}

.cta-booking-container h2 {
  color: white;
  margin-bottom: var(--space-4);
}

.cta-booking-container p {
  color: white;
}

@media (max-width: 640px) {
  .cta-booking-section {
    padding: 0 0.5rem;
  }
  
  .cta-booking-container {
    border-radius: 0.75rem;
    padding: var(--space-12) var(--space-4);
  }
}

/* Contact Form Grid */
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

@media (max-width: 1024px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  
  /* Ensure FAQ section comes after form on mobile */
  .contact-form-grid > div:first-child {
    order: 1;
  }
  
  .contact-form-grid > div:last-child {
    order: 2;
  }
}

/* Contact Section Grid (Home Page) */
.contact-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

@media (max-width: 768px) {
  .contact-section-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

@media (max-width: 480px) {
  .contact-section-grid {
    gap: var(--space-6);
  }
}

/* Form Styles */
.booking-form,
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-label {
  font-weight: 600;
  color: var(--secondary);
  font-size: 0.875rem;
}

.form-label.required::after {
  content: ' *';
  color: var(--error);
}

.form-input,
.form-select,
.form-textarea {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  transition: all var(--transition-base);
  background: white;
  width: 100%;
}

@media (max-width: 480px) {
  .form-input,
  .form-select,
  .form-textarea {
    padding: var(--space-2) var(--space-3);
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  cursor: pointer;
}

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

/* FAQ Styles */
.faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .faq-container {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-item-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.faq-question {
  width: 100%;
  padding: var(--space-6);
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: var(--space-4);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-base);
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary);
}

.faq-question:hover {
  background: var(--gray-50);
}

.faq-question-icon {
  font-size: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

.faq-toggle-icon {
  margin-left: auto;
  transition: transform var(--transition-base);
  color: var(--gray-400);
}

.faq-question.active .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer.show {
  max-height: 800px;
}

.faq-answer > * {
  padding: 0 var(--space-6) var(--space-6);
}

.faq-location {
  background: var(--gray-50);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
}

.faq-location strong {
  color: var(--primary);
  display: block;
  margin-bottom: var(--space-2);
}

.faq-checklist {
  margin-bottom: var(--space-4);
}

.faq-checklist h4 {
  font-size: 0.875rem;
  color: var(--secondary);
  margin-bottom: var(--space-2);
}

.faq-checklist ul {
  list-style: none;
  padding: 0;
}

.faq-checklist li {
  padding: var(--space-2) 0;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.faq-checklist i {
  color: var(--success);
  font-size: 0.875rem;
}

.age-requirement {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

@media (max-width: 480px) {
  .age-requirement {
    grid-template-columns: 1fr;
  }
}

.age-box {
  background: var(--gray-50);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  text-align: center;
}

.age-box i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: var(--space-2);
  display: block;
}

.age-box strong {
  display: block;
  color: var(--secondary);
  margin-bottom: var(--space-1);
}

.age-box p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.faq-features {
  list-style: none;
  padding: 0;
  margin-top: var(--space-3);
}

.faq-features li {
  padding: var(--space-2) 0;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

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

.faq-tip {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  margin-top: var(--space-3);
}

.faq-tip i {
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.faq-cta {
  text-align: center;
  margin-top: var(--space-12);
  padding: var(--space-8);
  background: white;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
}

.faq-cta h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
  color: var(--secondary);
}

.faq-cta p {
  color: var(--gray-600);
  margin-bottom: var(--space-6);
}

.faq-cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
}

@media (max-width: 480px) {
  .faq-cta-buttons {
    flex-direction: column;
  }
}

/* FAQ Toggle Styles */
.faq-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 1rem;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s ease;
}

.faq-toggle:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.faq-toggle[aria-expanded="true"] .fa-chevron-down {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1rem;
}

.faq-content[aria-hidden="false"] {
  max-height: 500px;
  padding: 0 1rem 1rem;
}

/* Legacy FAQ styles for contact page */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: var(--space-4) 0;
}

.faq-item h4 {
  cursor: pointer;
  user-select: none;
  transition: color var(--transition-base);
}

.faq-item h4:hover {
  color: var(--primary);
}

.faq-content.show {
  max-height: 300px;
  padding-top: var(--space-3);
}

/* Hero Overlay */
.hero-overlay {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 200px 0 100px;
  color: white;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero-overlay .container {
  position: relative;
  z-index: 1;
}

/* Utility Classes */
.bg-gray-50 {
  background-color: var(--gray-50);
}

.bg-primary {
  background-color: var(--primary);
}

.text-white {
  color: white;
}

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

.btn-block {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Safety Guidelines Section */
.safety-guidelines-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

@media (max-width: 1024px) {
  .safety-guidelines-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .safety-guidelines-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

@media (max-width: 480px) {
  .safety-guidelines-grid {
    margin-bottom: var(--space-8);
  }
}

.safety-card {
  background: white;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.safety-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.safety-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-4);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  transition: all var(--transition-base);
}

.safety-card:hover .safety-icon {
  transform: scale(1.1) rotate(5deg);
}

.safety-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--secondary);
}

.safety-description {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.safety-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  margin-top: var(--space-8);
}

.safety-cta p {
  font-size: 1.125rem;
  color: var(--gray-700);
  margin-bottom: var(--space-4);
}

/* About Us Section */
.about-section {
  overflow: visible;
}

@media (max-width: 768px) {
  .about-section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 2rem 0;
  }
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  margin-bottom: var(--space-16);
}

@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .about-text-content {
    order: 2;
  }
  
  .about-image-content {
    order: 1;
  }
}

@media (max-width: 768px) {
  .about-content {
    gap: var(--space-6);
    margin-bottom: var(--space-8);
  }
}

@media (max-width: 480px) {
  .about-content {
    gap: var(--space-4);
  }
}

.about-header {
  margin-bottom: var(--space-6);
}

@media (max-width: 480px) {
  .about-header {
    margin-bottom: var(--space-4);
  }
}

.about-subtitle {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: var(--space-2);
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary);
}

@media (max-width: 768px) {
  .about-title {
    font-size: 2rem;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 1.75rem;
  }
}

.about-description {
  margin-bottom: var(--space-8);
}

.about-description p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: var(--space-4);
}

@media (max-width: 768px) {
  .about-description p {
    font-size: 1rem;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .about-description {
    margin-bottom: var(--space-6);
  }
  
  .about-description p {
    font-size: 0.9375rem;
    margin-bottom: var(--space-3);
  }
}

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

.about-stats {
  display: flex;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

@media (max-width: 640px) {
  .about-stats {
    gap: var(--space-4);
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .about-stat {
    flex: 0 0 45%;
  }
}

@media (max-width: 480px) {
  .about-stats {
    gap: var(--space-3);
  }
}

.about-stat {
  text-align: center;
}

.about-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: var(--space-2);
}

@media (max-width: 480px) {
  .about-stat-number {
    font-size: 2rem;
  }
}

.about-stat-label {
  font-size: 0.875rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-cta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .about-cta {
    flex-direction: column;
  }
  
  .about-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .about-image {
    height: 400px;
  }
}

.about-image-badge {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  background: white;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  box-shadow: var(--shadow-lg);
}

.about-image-badge i {
  color: var(--primary);
  font-size: 1.25rem;
}

.about-image-badge span {
  font-weight: 600;
  color: var(--secondary);
}

/* Why Choose Us */
.why-choose-us {
  padding-top: var(--space-8);
}

@media (max-width: 768px) {
  .why-choose-us {
    padding-top: var(--space-6);
  }
}

@media (max-width: 480px) {
  .why-choose-us {
    padding-top: var(--space-4);
  }
}

.feature-card-v2 {
  background: white;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

@media (max-width: 480px) {
  .feature-card-v2 {
    padding: var(--space-4);
    gap: var(--space-3);
  }
}

.feature-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon-v2 {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.2));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

.feature-content {
  flex: 1;
}

.feature-content .feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--secondary);
}

.feature-content .feature-description {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Outline Button */
.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--gray-300);
}

.btn-outline:hover {
  background: var(--secondary);
  color: white;
  border-color: var(--secondary);
  transform: translateY(-2px);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-4);
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }
}

.gallery-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  transition: transform var(--transition-base);
}

@media (max-width: 640px) {
  .gallery-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .gallery-image {
    height: 250px;
  }
}

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

/* Touch targets for mobile */
@media (max-width: 768px) {
  .carousel-dot {
    width: 12px;
    height: 12px;
    margin: 0 var(--space-1);
  }
  
  .faq-question {
    padding: var(--space-4);
  }
  
  .mobile-nav-link {
    padding: var(--space-3) var(--space-4);
  }
}

/* Gallery Modal Styles */
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.gallery-modal.show {
  opacity: 1;
  visibility: visible;
}

.gallery-modal-button {
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.gallery-modal-button:hover {
  background: white;
  transform: scale(1.1);
}

@media (max-width: 640px) {
  .gallery-modal-button {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/* Additional spacing utilities */
.mb-6 { margin-bottom: var(--space-6); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-2 { margin-bottom: var(--space-2); }

/* Margin utilities */
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mt-16 { margin-top: var(--space-16); }

.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }
.mb-16 { margin-bottom: var(--space-16); }

/* Override Tailwind utility classes for tour pages */
.tour-page-container .content-card.mt-12,
.tour-page-container .content-card[class*="mt-"] {
  margin-top: 0 !important;
}

/* Force consistent spacing for content cards */
.tour-page-container .content-card.\!mb-0 {
  margin-bottom: 0 !important;
}

.text-white h2 {
  color: white;
}

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

.fade-in {
  animation: fadeIn 0.8s ease-in;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .header-content {
    padding: 0;
    gap: var(--space-2);
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section p {
    font-size: 1.125rem;
  }
  
  .btn-lg {
    font-size: 1rem;
    padding: var(--space-3) var(--space-8);
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-menu {
    flex-direction: column;
    gap: var(--space-2);
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 100px;
    right: var(--space-3);
  }
  
  .back-to-top {
    width: 40px;
    height: 40px;
    right: var(--space-3);
  }
}

/* ==========================================================================
   Custom Date Picker Styles
   ========================================================================== */

.date-input-wrapper {
    position: relative;
}

.date-picker,
.custom-date-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    background: white;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
}

.date-picker:focus,
.custom-date-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.calendar-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    pointer-events: none;
    z-index: 1;
}

/* Calendar overlay */
.calendar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.calendar-overlay.show {
    display: block;
}

.custom-calendar {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 2px solid var(--primary);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    padding: 20px;
    display: none;
    backdrop-filter: blur(10px);
    min-width: 350px;
}

.custom-calendar.show {
    display: block;
    animation: calendarSlideIn 0.3s ease;
}

@keyframes calendarSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-nav-btn {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    transition: background 0.3s;
}

.calendar-nav-btn:hover {
    background: var(--primary-dark);
}

.calendar-month-year {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day-header {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
    padding: 8px;
}

.calendar-day {
    text-align: center;
    padding: 12px 8px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    color: var(--gray-700);
}

.calendar-day:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
}

.calendar-day.selected {
    background: var(--primary);
    color: white;
}

.calendar-day.today {
    background: var(--gray-200);
    color: var(--gray-800);
    font-weight: 600;
}

.calendar-day.other-month {
    color: var(--gray-400);
}

.calendar-day.disabled {
    color: var(--gray-400);
    cursor: not-allowed;
}

.calendar-day.disabled:hover {
    background: transparent;
    color: var(--gray-400);
}

.calendar-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.calendar-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.2s;
}

.calendar-btn:hover {
    background: rgba(255, 107, 53, 0.1);
}

/* Mobile adjustments for calendar */
@media (max-width: 640px) {
    .custom-calendar {
        min-width: 300px;
        padding: 15px;
    }
    
    .calendar-day {
        padding: 10px 6px;
        font-size: 13px;
    }
    
    .calendar-nav-btn {
        width: 32px;
        height: 32px;
    }
}

/* Footer Language Switcher */
.footer-lang-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-lang-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-lang-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-lang-link.active {
    color: white;
    font-weight: 600;
}

.lang-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

/* Mobile styles for footer language switcher */
@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-lang-switcher {
        order: -1; /* Place language switcher at the top on mobile */
    }
}

/* Blog Styles */
.blog-post {
    background: var(--gray-50);
}

/* Blog Hero Section */
.blog-hero {
    position: relative;
    margin-top: 80px;
}

.blog-hero-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .blog-hero-image {
        height: 300px;
    }
}

.blog-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.blog-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 0;
    color: white;
}

.blog-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .blog-hero-title {
        font-size: 2rem;
    }
}

.blog-meta {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.blog-meta i {
    margin-right: 6px;
}

/* Blog Content */
.blog-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .blog-content {
        padding: 24px;
        margin-top: -20px;
    }
}

.blog-lead {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.8;
}

.blog-section {
    margin-bottom: 32px;
}

.blog-heading {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.3;
}

.blog-subheading {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 12px;
}

.blog-highlight {
    background: var(--gray-50);
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
    border-left: 4px solid var(--primary);
}

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

.blog-list li {
    padding: 8px 0;
    display: flex;
    align-items: start;
    gap: 12px;
}

.blog-list i {
    margin-top: 2px;
    flex-shrink: 0;
}

/* Process Steps */
.process-steps {
    margin: 32px 0;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.process-step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.process-step-content p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* FAQ Styles */
.faq-container {
    margin-top: 24px;
}

.faq-item {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--gray-50);
}

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Blog CTA Section */
.blog-cta-section {
    text-align: center;
    margin: 48px 0;
    padding: 48px;
    background: var(--gray-50);
    border-radius: 12px;
}

.blog-cta-section p {
    margin-bottom: 20px;
    font-size: 1.125rem;
    color: var(--gray-700);
}

/* Blog Language Note */
.blog-lang-note {
    text-align: center;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
    color: var(--gray-600);
}

/* Blog Listing Page Styles */
.blog-listing {
    padding: 120px 0 80px;
    background: var(--gray-50);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    display: block;
    position: relative;
    padding-bottom: 60%;
    overflow: hidden;
    background-color: #f5f5f5;
}

.blog-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.blog-card-content {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}

.blog-card-link:hover {
    gap: 12px;
}

/* Fade-in Animation */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Multi-step Booking Form Styles */
.booking-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.booking-form-title {
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--color-slate-800);
    margin: 0;
    margin-top: 2rem;
}

.booking-form-content {
    background-color: var(--color-slate-50);
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid var(--color-slate-200);
    position: relative;
}

/* Conflicting rules removed - spacing is handled by the comprehensive tour page spacing system above */

/* ========================================
   FINAL TOUR PAGE SPACING OVERRIDE
   Ensures our spacing system has highest specificity
   ======================================== */
/* Force our tour page spacing rules to take precedence over any utility classes */
.tour-detail-page .tour-page-wrapper main > section:not(:last-child) {
  margin-bottom: 2.5rem !important;
}

.tour-detail-page .tour-page-wrapper main > section:last-child {
  margin-bottom: 0 !important;
}

/* Customer reviews and FAQ sections with mt-12 */
.tour-detail-page .tour-page-wrapper main > section#customer-reviews.mt-12,
.tour-detail-page .tour-page-wrapper main > section#faq.mt-12 {
  margin-top: 3rem !important;
}

@media (max-width: 640px) {
  .tour-detail-page .tour-page-wrapper main > section:not(:last-child) {
    margin-bottom: 2rem !important;
  }
  
  .tour-detail-page .tour-page-wrapper main > section#customer-reviews.mt-12,
  .tour-detail-page .tour-page-wrapper main > section#faq.mt-12 {
    margin-top: 2.5rem !important;
  }
}

@media (max-width: 480px) {
  .tour-detail-page .tour-page-wrapper main > section:not(:last-child) {
    margin-bottom: 1.5rem !important;
  }
  
  .tour-detail-page .tour-page-wrapper main > section#customer-reviews.mt-12,
  .tour-detail-page .tour-page-wrapper main > section#faq.mt-12 {
    margin-top: 2rem !important;
  }
}
