/* CSS Variables */
:root {
  --color-primary: #FFC000;
  --color-primary-dark: #E0A800;
  --color-primary-light: #FFD54F;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F8F8F8;
  --color-border: #E0E0E0;
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  --max-width: 1200px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
}

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

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

body {
  font-family: var(--font-family);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

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

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

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

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

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

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

.logo img {
  height: 75px;
  width: auto;
}

.nav-list {
  display: flex;
  gap: var(--spacing-md);
}

.nav-list a {
  font-weight: 500;
  color: var(--color-text);
  transition: opacity 0.3s ease;
}

.nav-list a:hover {
  opacity: 0.7;
}

/* Dropdown Menu */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-bg);
  min-width: 180px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: var(--spacing-xs) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li {
  padding: 0;
}

.dropdown a {
  display: block;
  padding: 0.75rem 1.25rem;
  transition: background-color 0.2s ease;
}

.dropdown a:hover {
  background-color: var(--color-bg-alt);
  color: var(--color-primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s ease;
}

/* Main content offset for fixed header */
main {
  padding-top: 100px;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: var(--spacing-md) var(--spacing-sm);
  background: var(--color-bg-alt);
}

.hero h1 {
  font-size: 4rem;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

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

/* Gallery Slider */
.gallery-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
}

.gallery-slides {
  position: relative;
  width: 100%;
  aspect-ratio: 21/9;
}

.gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.gallery-slide.active {
  opacity: 1;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease;
}

.gallery-dot.active {
  background: white;
}

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

.lightbox.active {
  display: flex;
  opacity: 1;
}

#lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

#map-lightbox-img {
  max-width: 75%;
  max-height: 85vh;
  object-fit: contain;
  display: block;
}

#guides-lightbox-img {
  max-width: 60vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  padding: 1rem;
  line-height: 1;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--color-primary);
}

/* Description Section */
.description-section {
  padding: var(--spacing-lg) 0;
  background: var(--color-bg-alt);
}

.description-section .container {
  max-width: 800px;
  text-align: center;
}

.description-section h2 {
  margin-bottom: var(--spacing-md);
}

.description-section p {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-sm);
}

/* Countries Section */
.countries-section {
  padding: var(--spacing-lg) 0;
}

.countries-section h2 {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.countries-grid-single {
  grid-template-columns: 1fr;
  max-width: 400px;
  margin: 0 auto;
}

.country-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.country-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.country-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.country-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--spacing-md);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
}

.country-card h3 {
  font-size: 1.75rem;
  margin-bottom: var(--spacing-xs);
}

.country-card p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.country-fiche-badge {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-top: var(--spacing-xs);
  padding: 0.2rem 0.65rem;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  color: white;
  font-size: 0.78rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease;
}

.country-fiche-badge:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* Tours Page */
.page-header {
  text-align: center;
  padding: var(--spacing-lg) var(--spacing-sm);
  background: var(--color-bg-alt);
}

.page-header h1 {
  margin-bottom: var(--spacing-sm);
}

.tours-filter {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md) 0;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: 25px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--color-primary);
  background: var(--color-primary);
}

.tours-country-section {
  margin-bottom: var(--spacing-lg);
}

.tours-country-intro {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: var(--spacing-md);
  align-items: center;
  margin-bottom: var(--spacing-md);
}

.tours-country-intro-text h2 {
  color: var(--color-primary-dark);
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.fiche-pays-badge {
  display: inline-flex;
  align-items: center;
  align-self: center;
  padding: 0.25rem 0.75rem;
  background: var(--color-primary-light);
  border-radius: 12px;
  color: #000 !important;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none !important;
  line-height: 1;
  transition: background 0.2s ease;
}

.fiche-pays-badge:hover {
  background: var(--color-border);
}

.tours-country-intro-text p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--spacing-xs);
}

.tours-country-intro-text a {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.tours-country-intro-map img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  cursor: zoom-in;
  transition: opacity 0.2s ease;
}

.tours-country-intro-map img:hover {
  opacity: 0.85;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-md);
  padding-bottom: var(--spacing-lg);
}

/* Tour Card */
.tour-card {
  background: var(--color-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tour-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-card-content {
  padding: var(--spacing-md);
}

.tour-card-meta {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

.tour-badge {
  padding: 0.25rem 0.75rem;
  background: var(--color-primary-light);
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.tour-badge--hiking {
  background: #d4edda;
  color: #1a6630;
}

.tour-card h3 {
  margin-bottom: var(--spacing-xs);
}

.tour-card p {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-sm);
}

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

.tour-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

/* Tour Detail Page */
.tour-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
}

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

.tour-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--spacing-lg);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
}

.tour-hero h1 {
  margin-bottom: var(--spacing-xs);
}

.tour-excerpt {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 700px;
  margin-top: var(--spacing-xs);
}

.tour-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg) 0;
}

.tour-description h2 {
  margin-bottom: var(--spacing-md);
}

.tour-description p {
  margin-bottom: var(--spacing-sm);
  line-height: 1.8;
}

.tour-description em {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

/* Tour Map Thumbnail */
.tour-map-thumb {
  position: relative;
  display: block;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: var(--spacing-lg);
}

.tour-map-thumb img {
  display: block;
  width: 100%;
  transition: transform 0.3s ease;
}

.tour-map-thumb:hover img {
  transform: scale(1.03);
}

.tour-map-hint {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 0.8rem;
  text-align: center;
  padding: 0.4rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.tour-map-thumb:hover .tour-map-hint {
  opacity: 1;
}

#tour-map-lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Tour Hero — clickable for gallery */
.tour-hero-gallery-trigger {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.tour-hero-hint {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.tour-hero-gallery-trigger:hover .tour-hero-hint {
  opacity: 1;
}

/* Tour Photo Gallery grid */
.tour-gallery {
  margin-top: var(--spacing-lg);
}

.tour-gallery h2 {
  margin-bottom: var(--spacing-sm);
}

/* Lightbox image for tour gallery */
#tour-gallery-lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Tour Highlights (Nos +) */
.tour-highlights {
  background: var(--color-bg-alt);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 12px 12px 0;
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.tour-highlights h2 {
  color: var(--color-primary-dark);
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
}

.tour-highlights ul {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.tour-highlights li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.tour-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* Tour Technical Info */
.tour-technical {
  margin-top: var(--spacing-lg);
  padding: var(--spacing-md);
  background: var(--color-bg-alt);
  border-radius: 12px;
}

.tour-technical h2 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
}

.tour-technical p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.tour-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.tour-info-card {
  background: var(--color-bg-alt);
  border-radius: 12px;
  padding: var(--spacing-md);
}

.tour-info-item {
  display: flex;
  justify-content: space-between;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

.tour-info-item:last-child {
  border-bottom: none;
}

.tour-actions {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.tour-actions .btn {
  width: 100%;
  text-align: center;
}

/* Tour Sidebar Lists (Inclus / Non compris) */
.tour-info-list {
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

.tour-info-list-title {
  display: block;
  font-weight: 500;
  margin-bottom: var(--spacing-xs);
}

.tour-info-list ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tour-info-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.tour-info-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #4CAF50;
}

.tour-info-list-excluded li::before {
  content: '–';
  color: #E57373;
}

/* Pricing Table */
.tour-pricing {
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

.pricing-label {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-sm);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.pricing-table th,
.pricing-table td {
  padding: 0.5rem;
  text-align: left;
}

.pricing-table th {
  background: var(--color-primary-light);
  font-weight: 600;
  font-size: 0.8rem;
}

.pricing-table th:last-child,
.pricing-table td:last-child {
  text-align: right;
}

.pricing-table tbody tr:nth-child(odd) {
  background: rgba(0, 0, 0, 0.02);
}

.pricing-table td:last-child {
  font-weight: 600;
  color: var(--color-primary-dark);
}

/* Country Page */
.country-info-title {
  margin-bottom: var(--spacing-sm);
  padding-bottom: var(--spacing-sm);
  border-bottom: 2px solid var(--color-primary);
  font-size: 1.1rem;
}

.country-description h2 {
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
  padding-bottom: var(--spacing-xs);
  border-bottom: 2px solid var(--color-primary-light);
}

.country-description h2:first-of-type {
  margin-top: 0;
}

.country-description p {
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-light);
  line-height: 1.8;
}

.country-description strong {
  color: var(--color-text);
}

.country-tours {
  padding: var(--spacing-lg) 0;
  margin-top: var(--spacing-md);
  background: var(--color-bg-alt);
}

.country-tours h2 {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

/* Guide Photos */
.guides-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.guide-photo-item {
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.guide-photo-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.guide-photo-item:hover img {
  transform: scale(1.04);
}

.guide-photo-item span {
  display: block;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* Guide Bio */
.guide-bio {
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
  margin-bottom: var(--spacing-xl);
}

.guide-bio-text {
  flex: 1;
  min-width: 0;
}

.guide-bio-photo {
  flex-shrink: 0;
  width: 180px;
}

.guide-bio-photo img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

@media (max-width: 600px) {
  .guide-bio {
    flex-direction: column;
  }

  .guide-bio-photo {
    width: 100%;
    max-width: 240px;
  }
}

/* Contact Gallery */
.contact-gallery {
  padding: var(--spacing-xl) 0;
  background: var(--color-bg-alt);
}

.contact-gallery h2 {
  margin-bottom: var(--spacing-md);
}

.contact-gallery .guides-photos {
  margin-top: 0;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

/* Contact Page */
.contact-section {
  padding: var(--spacing-lg) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
}

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

/* About Page */
.about-section {
  padding: var(--spacing-lg) 0;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2 {
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.about-content p {
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-light);
}

/* Testimonials Page */
.testimonials-section {
  padding: var(--spacing-lg) 0;
}

.testimonials-grid {
  columns: 2 350px;
  gap: var(--spacing-md);
}

.testimonial-card {
  break-inside: avoid;
  margin-bottom: var(--spacing-md);
  background: var(--color-bg-alt);
  border-radius: 12px;
  padding: var(--spacing-md);
  border-left: 4px solid var(--color-primary);
}

.testimonial-content {
  margin-bottom: var(--spacing-md);
}

.testimonial-content p {
  font-style: italic;
  color: var(--color-text);
  line-height: 1.7;
}

.testimonial-content p + p {
  margin-top: var(--spacing-sm);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author strong {
  color: var(--color-text);
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* À la carte Page */
.a-la-carte-section {
  padding: var(--spacing-lg) 0;
}

.a-la-carte-content {
  max-width: 800px;
  margin: 0 auto;
}

.a-la-carte-intro {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.a-la-carte-intro h2 {
  margin-bottom: var(--spacing-md);
}

.a-la-carte-intro p {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-sm);
}

.a-la-carte-details {
  background: var(--color-bg-alt);
  border-radius: 12px;
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.a-la-carte-details h3 {
  margin-bottom: var(--spacing-md);
  color: var(--color-text);
}

.details-list {
  list-style: none;
}

.details-list li {
  display: flex;
  flex-direction: column;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

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

.details-list strong {
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.details-list strong::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  margin-right: 0.75rem;
}

.details-list span {
  color: var(--color-text-light);
  font-size: 0.9rem;
  padding-left: 1.5rem;
}

.a-la-carte-cta {
  text-align: center;
}

.a-la-carte-cta p {
  margin-bottom: var(--spacing-md);
  font-size: 1.1rem;
  color: var(--color-text-light);
}

/* Footer */
.site-footer {
  background: var(--color-text);
  color: white;
  padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-brand h3 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.site-footer h4 {
  margin-bottom: var(--spacing-sm);
  color: var(--color-primary);
}

.footer-links a {
  display: block;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.75rem; }

  .hero h1 {
    font-size: 2.5rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-list {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    padding: var(--spacing-md);
    gap: var(--spacing-sm);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .nav-list.active {
    display: flex;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    padding-left: var(--spacing-sm);
    display: none;
  }

  .has-dropdown.open .dropdown {
    display: block;
  }

  .dropdown a {
    padding: 0.5rem 0;
  }

  .tours-country-intro {
    grid-template-columns: 1fr;
  }

  .countries-grid {
    grid-template-columns: 1fr;
  }

  .tour-content {
    grid-template-columns: 1fr;
  }

  .tour-sidebar {
    position: static;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
