/* ============================================================
   EXCURSIONS PLAYA DEL CARMEN — STYLES.CSS
   Tropical moderne : turquoise, bleu caraïbe, blanc, vert jungle
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ---- VARIABLES ---- */
:root {
  --primary: #0891B2;
  --primary-dark: #0e7490;
  --primary-light: #06B6D4;
  --secondary: #10B981;
  --secondary-dark: #059669;
  --coral: #F97316;
  --coral-light: #FB923C;
  --jungle: #166534;
  --jungle-light: #16a34a;
  --sand: #FEF3C7;
  --sand-dark: #FDE68A;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --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;
  --text: #1F2937;
  --text-muted: #6B7280;
  --font-main: 'Poppins', sans-serif;
  --font-display: 'Playfair Display', serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.25s ease;
  --max-w: 1280px;
  --header-h: 72px;
  --cc-bar-h: 40px; /* currency bar height */
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-main); border: none; background: none; }
input, textarea, select { font-family: var(--font-main); }

/* ---- UTILITIES ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-coral { color: var(--coral); }
.text-white { color: var(--white); }
.bg-primary { background: var(--primary); }
.bg-off-white { background: var(--off-white); }
.bg-sand { background: var(--sand); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.2; color: var(--gray-900); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(8,145,178,0.1);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ============================================================
   CURRENCY CONVERTER BAR
   ============================================================ */
.currency-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100; /* above header */
  height: var(--cc-bar-h);
  background: linear-gradient(90deg, #0e7490 0%, #0891B2 50%, #06B6D4 100%);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(8,145,178,0.25);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.currency-bar.cc-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  height: 0;
}
.currency-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 0 16px;
  height: 100%;
}
.cc-icon {
  font-size: 1rem;
  flex-shrink: 0;
  line-height: 1;
}
.cc-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  flex-shrink: 0;
}
.cc-rate {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  min-width: 80px;
  text-align: right;
  white-space: nowrap;
  flex-shrink: 0;
}
.cc-select {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 6px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 3px 24px 3px 8px;
  cursor: pointer;
  outline: none;
  transition: background 0.2s;
  /* custom arrow */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,0.8)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 7px center;
  flex-shrink: 0;
  max-width: 110px;
}
.cc-select:hover {
  background-color: rgba(255,255,255,0.28);
}
.cc-select option {
  background: #0e7490;
  color: #fff;
  font-weight: 500;
}
.cc-close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  line-height: 1;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
  margin-left: auto;
  padding: 0;
}
.cc-close:hover {
  background: rgba(255,255,255,0.3);
  color: #fff;
}

/* Separator between rate and select */
.cc-sep {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

/* ── Responsive currency bar ── */
@media (max-width: 480px) {
  .currency-bar-inner { gap: 7px; padding: 0 10px; }
  .cc-label { display: none; } /* hide "1 USD =" on tiny screens, save space */
  .cc-rate { min-width: 60px; font-size: 0.82rem; }
  .cc-select { max-width: 88px; font-size: 0.76rem; }
  .cc-icon { font-size: 0.9rem; }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(8,145,178,0.35);
}
.btn-coral {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn-coral:hover {
  background: #ea6c07;
  border-color: #ea6c07;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,115,22,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ---- HEADER / NAV ---- */
.site-header {
  position: fixed;
  top: var(--cc-bar-h); /* pushed below currency bar */
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
  text-decoration: none;
}
.site-header.scrolled .nav-logo { color: var(--gray-900); }
.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon svg { width: 22px; height: 22px; color: white; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: all var(--transition);
  text-decoration: none;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.12); }
.site-header.scrolled .nav-link { color: var(--gray-700); }
.site-header.scrolled .nav-link:hover { color: var(--primary); background: rgba(8,145,178,0.08); }
.nav-link.active { color: var(--primary-light); font-weight: 600; }
.site-header.scrolled .nav-link.active { color: var(--primary); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-whatsapp {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #25D366;
  color: white;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
}
.nav-whatsapp:hover { background: #1da851; transform: translateY(-1px); }
.nav-whatsapp svg { width: 16px; height: 16px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}
.site-header.scrolled .nav-toggle span { background: var(--gray-800); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Account for currency bar + header */
  padding-top: calc(var(--cc-bar-h) + var(--header-h));
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,145,178,0.75) 0%,
    rgba(6,182,212,0.5) 40%,
    rgba(0,0,0,0.4) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-badge svg { width: 16px; height: 16px; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 720px;
}
.hero h1 em {
  font-style: italic;
  color: var(--sand-dark);
}
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--white);
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
}
.trust-item svg { width: 22px; height: 22px; color: var(--primary); flex-shrink: 0; }
.trust-divider {
  width: 1px;
  height: 28px;
  background: var(--gray-200);
}

/* ---- EXCURSION CARDS ---- */
.excursion-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-100);
}
.excursion-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.excursion-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.excursion-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.excursion-card:hover .excursion-card-img img { transform: scale(1.05); }
.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--coral);
  color: white;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
}
.card-category {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0,0,0,0.5);
  color: white;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
}
.excursion-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.excursion-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.3;
}
.excursion-card-body p {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 16px;
  flex: 1;
  line-height: 1.6;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  margin-top: auto;
}
.card-price {
  display: flex;
  flex-direction: column;
}
.card-price-amount {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.card-price-label {
  font-size: 0.72rem;
  color: var(--gray-400);
  margin-top: 2px;
}
.card-duration {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--gray-500);
}
.card-duration svg { width: 14px; height: 14px; }

/* ---- CATEGORY FILTER ---- */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 100px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ---- FEATURES / WHY US ---- */
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(8,145,178,0.12), rgba(6,182,212,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.feature-icon svg { width: 28px; height: 28px; color: var(--primary); }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; color: var(--gray-900); }
.feature-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.65; }

/* ---- TESTIMONIALS ---- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-stars svg { width: 18px; height: 18px; fill: #FBBF24; color: #FBBF24; }
.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--gray-900); }
.testimonial-meta { font-size: 0.78rem; color: var(--gray-400); }

/* ---- ABOUT PAGE ---- */
.about-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  padding: 140px 0 80px;
  text-align: center;
  color: white;
}
.about-hero h1 { color: white; margin-bottom: 16px; }
.about-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ---- CONTACT ---- */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---- CONTACT INFO CARDS ---- */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-100);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--transition);
}
.contact-info-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(8,145,178,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 22px; height: 22px; color: var(--primary); }
.contact-info-text h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.contact-info-text p, .contact-info-text a { font-size: 0.9rem; color: var(--gray-500); }
.contact-info-text a:hover { color: var(--primary); }

/* ---- PAGE HERO (excursion detail, about) ---- */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  text-align: center;
}
.page-hero h1 { color: white; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.breadcrumb a:hover { color: white; }
.breadcrumb svg { width: 14px; height: 14px; }

/* ---- EXCURSION DETAIL ---- */
.excursion-detail-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.excursion-detail-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.excursion-detail-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.excursion-detail-hero-content {
  position: relative;
  z-index: 2;
  padding: 48px 0;
  width: 100%;
}
.excursion-detail-hero-content h1 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 12px;
}
.excursion-detail-hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 24px;
}
.excursion-meta-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.meta-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  color: white;
  font-size: 0.82rem;
  font-weight: 500;
}
.meta-chip svg { width: 14px; height: 14px; }
.price-chip {
  background: var(--coral);
  border-color: var(--coral);
  font-size: 1.1rem;
  font-weight: 800;
  font-family: var(--font-display);
  padding: 8px 20px;
}

/* ---- INCLUDED LIST ---- */
.included-list { display: flex; flex-direction: column; gap: 10px; }
.included-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.included-item svg { width: 18px; height: 18px; color: var(--secondary); flex-shrink: 0; }
.included-item.not svg { color: #EF4444; }

/* ---- HIGHLIGHTS ---- */
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: rgba(8,145,178,0.05);
  border-radius: var(--radius);
  border-left: 3px solid var(--primary);
  margin-bottom: 10px;
}
.highlight-item svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.highlight-item span { font-size: 0.9rem; color: var(--gray-700); font-weight: 500; }

/* ---- GALLERY GRID ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery-main { grid-row: 1 / 3; }
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* ---- STICKY BOOKING BOX ---- */
.booking-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gray-100);
  position: sticky;
  top: 90px;
}
.booking-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.booking-price-suffix { font-size: 0.95rem; color: var(--gray-400); font-family: var(--font-main); font-weight: 400; }
.booking-divider { height: 1px; background: var(--gray-100); margin: 20px 0; }

/* ---- BLOG ---- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-100);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(8,145,178,0.1);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.blog-card-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.35; }
.blog-card-body h3 a { color: var(--gray-900); transition: color var(--transition); }
.blog-card-body h3 a:hover { color: var(--primary); }
.blog-card-body p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.65; margin-bottom: 16px; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; font-size: 0.78rem; color: var(--gray-400); }
.blog-card-meta svg { width: 13px; height: 13px; }

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='15'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2 { color: var(--white); position: relative; z-index: 1; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 560px; margin: 0 auto 40px; position: relative; z-index: 1; }
.cta-section .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-about { font-size: 0.88rem; line-height: 1.7; margin-bottom: 24px; color: var(--gray-400); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--primary); color: white; }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 20px;
  font-family: var(--font-main);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--gray-400);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--primary-light); }
.footer-links a svg { width: 13px; height: 13px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: var(--gray-400);
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--primary-light); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--gray-400); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--primary-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--gray-500);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--gray-500); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--primary-light); }

/* ---- WHATSAPP FLOATING ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 999;
  transition: all 0.3s ease;
  animation: pulse-whatsapp 3s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}
.whatsapp-float svg { width: 30px; height: 30px; color: white; }
@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ---- SCROLL REVEAL ---- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-on-scroll.delay-1 { transition-delay: 0.1s; }
.reveal-on-scroll.delay-2 { transition-delay: 0.2s; }
.reveal-on-scroll.delay-3 { transition-delay: 0.3s; }
.reveal-on-scroll.delay-4 { transition-delay: 0.4s; }

/* ---- PRICE BADGE ---- */
.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
}
.savings-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16,185,129,0.1);
  color: var(--secondary-dark);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(16,185,129,0.2);
}
.savings-badge svg { width: 16px; height: 16px; }

/* ---- TIPS BOX ---- */
.tips-box {
  background: linear-gradient(135deg, rgba(6,182,212,0.06), rgba(8,145,178,0.03));
  border: 1px solid rgba(8,145,178,0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.tips-box h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 16px;
}
.tips-box h4 svg { width: 20px; height: 20px; color: var(--coral); }
.tips-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.88rem;
  color: var(--gray-700);
}
.tips-item:last-child { margin-bottom: 0; }
.tips-item::before {
  content: '→';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- 404 ---- */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}
.error-page h1 { font-size: 8rem; color: var(--primary); line-height: 1; margin-bottom: 16px; }
.error-page h2 { font-size: 2rem; margin-bottom: 16px; }
.error-page p { color: var(--gray-500); font-size: 1.1rem; max-width: 420px; margin: 0 auto 32px; }

/* ---- ALERT ---- */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.alert-success { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2); color: var(--secondary-dark); }
.alert svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---- RELATED SECTION ---- */
.related-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gray-100);
  color: var(--gray-900);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

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

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
    --cc-bar-h: 36px;
  }
  .section { padding: 56px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { gap: 24px; }
  .trust-items { gap: 20px; }
  .trust-divider { display: none; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: calc(var(--cc-bar-h) + var(--header-h));
    left: 0;
    right: 0;
    background: white;
    padding: 20px 24px;
    box-shadow: var(--shadow-md);
    gap: 4px;
    z-index: 999;
  }
  .nav-mobile-open .nav-links .nav-link { color: var(--gray-700); }
  .nav-mobile-open .nav-cta {
    display: flex;
    position: fixed;
    top: calc(var(--cc-bar-h) + var(--header-h) + 200px);
    left: 0;
    right: 0;
    background: white;
    padding: 16px 24px;
    box-shadow: var(--shadow-md);
    z-index: 998;
    justify-content: center;
  }
  .gallery-grid { grid-template-columns: 1fr; height: auto; }
  .gallery-main { grid-row: auto; }
  .gallery-grid { grid-template-rows: none; }
  .gallery-grid > * { height: 220px; }
  .booking-box { position: static; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; }
  .contact-form-wrap { padding: 28px 20px; }
  .cta-section .cta-actions { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .excursion-detail-hero { height: 50vh; }
  .whatsapp-float { bottom: 20px; right: 16px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .filter-bar { gap: 8px; }
  .filter-btn { padding: 8px 16px; font-size: 0.82rem; }
}