/* ==========================================================================
   HORIZON TRAVEL - Premium Travel Agency CSS
   ========================================================================== */

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

/* ===== CSS Variables ===== */
:root {
  --navy:       #1a2e45;
  --navy-dark:  #0f1f30;
  --navy-mid:   #243d57;
  --gold:       #c8a96e;
  --gold-light: #e2c99a;
  --green:      #25d366;
  --white:      #ffffff;
  --off-white:  #f8f9fb;
  --text-dark:  #1a2e45;
  --text-mid:   #4a5568;
  --text-light: #718096;
  --border:     #e8ecf0;
  --radius:     16px;
  --radius-sm:  10px;
  --shadow:     0 4px 24px rgba(26,46,69,0.10);
  --shadow-lg:  0 8px 40px rgba(26,46,69,0.16);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
button, input, select, textarea { font-family: inherit; }
img { max-width: 100%; display: block; }

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background-color: var(--navy);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  /* White background logo looks good on navy navbar */
  background: white;
  border-radius: 10px;
  padding: 3px 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

/* Keep logo-circle/logo-text for any remaining uses */
.logo-circle {
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(200,169,110,0.4);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}

.logo-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 3px;
}

/* Footer logo */
.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  background: white;
  border-radius: 10px;
  padding: 4px 8px;
  margin-bottom: 16px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-whatsapp-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--green);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-whatsapp-nav:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px;
}

/* ===== HERO SLIDESHOW ===== */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  transform: scale(1);
}

.hero-slide.active {
  opacity: 1;
  animation: kenBurns 8s ease-in-out forwards;
}

@keyframes kenBurns {
  0%   { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/* Country Label */
.slide-label {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15,31,48,0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200,169,110,0.4);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.6s ease 0.6s;
  white-space: nowrap;
}

.hero-slide.active .slide-label {
  opacity: 1;
}

.slide-flag {
  font-size: 20px;
  line-height: 1;
}

/* Navigation Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background: rgba(200,169,110,0.85);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}

.slider-prev { left: 28px; }
.slider-next { right: 28px; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
  align-items: center;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 1.5px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
}

.slider-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  width: 28px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(200,169,110,0.6);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(15,31,48,0.65) 0%,
    rgba(15,31,48,0.78) 60%,
    rgba(15,31,48,0.92) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  padding: 0 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,110,0.15);
  border: 1.5px solid rgba(200,169,110,0.5);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  animation: fadeInDown 0.7s ease both;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5.5vw, 60px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInDown 0.7s ease 0.1s both;
}

.hero-title span {
  color: var(--gold);
  font-style: italic;
}

.hero-desc {
  color: rgba(255,255,255,0.80);
  font-size: 16px;
  font-weight: 400;
  max-width: 580px;
  margin-bottom: 32px;
  animation: fadeInDown 0.7s ease 0.15s both;
}

/* Hero Search Box */
.hero-search-box {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.97);
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.28);
  overflow: hidden;
  width: 100%;
  max-width: 680px;
  margin-bottom: 28px;
  animation: fadeInUp 0.9s ease 0.2s both;
}

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

.search-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  position: relative;
  min-width: 0;
}

.search-field-icon {
  color: var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.search-field select {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  min-width: 0;
  appearance: none;
  -webkit-appearance: none;
}

.search-field select option[value=""][disabled] {
  color: var(--text-light);
}

.field-arrow {
  color: var(--text-light);
  flex-shrink: 0;
  pointer-events: none;
}

.search-divider {
  width: 1px;
  background: var(--border);
  margin: 10px 0;
  align-self: stretch;
}

.hero-search-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  padding: 0 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 0 16px 16px 0;
}

.hero-search-btn:hover {
  background: var(--gold-light);
  transform: none;
  box-shadow: inset 0 0 0 2px rgba(26,46,69,0.15);
}

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--navy);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.2);
  transition: var(--transition);
  animation: fadeInUp 0.9s ease 0.4s both;
}

.btn-primary-hero:hover {
  background: transparent;
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Stats Bar */
.stats-bar {
  position: relative;
  z-index: 2;
  width: 100%;
  background: rgba(15,31,48,0.6);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(200,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 24px 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 48px;
}

.stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  font-family: 'Playfair Display', serif;
}

.stat-num sup {
  font-size: 18px;
  vertical-align: super;
}

.stat-star {
  font-size: 28px;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
}

/* ===== SECTIONS ===== */
.section {
  padding: 88px 0;
}

.section-light {
  background-color: var(--off-white);
}

.section-eyebrow {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-desc {
  text-align: center;
  color: var(--text-mid);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 56px auto;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.service-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: inline-block;
  background: linear-gradient(135deg, rgba(200,169,110,0.12), rgba(200,169,110,0.04));
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 32px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===== FILTER BAR ===== */
.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.filter-pill {
  padding: 9px 22px;
  border-radius: 30px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ===== TRIPS GRID ===== */
.trips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.loading-msg {
  grid-column: 1/-1;
  text-align: center;
  color: var(--text-light);
  padding: 60px;
  font-size: 16px;
}

/* Trip Card */
.trip-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.trip-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

/* Badges */
.badge-country {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 6px;
  text-transform: uppercase;
}

.badge-coup-coeur {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--navy);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Card Body */
.trip-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.trip-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.trip-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 500;
}

.trip-meta-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.trip-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.3;
}

.trip-highlights {
  list-style: none;
  margin-bottom: 16px;
  flex: 1;
}

.trip-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 7px;
  line-height: 1.4;
}

.highlight-check {
  width: 16px;
  height: 16px;
  background: rgba(37,211,102,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25d366;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Visa Note */
.trip-visa-note {
  background: rgba(200,169,110,0.08);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}

/* Price + Book */
.trip-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: auto;
}

.trip-price-block small {
  display: block;
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.trip-price-block .price {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.trip-price-block .price-unit {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
}

.btn-reserver {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--navy);
  color: var(--white);
  padding: 11px 22px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-reserver:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* Detail button too */
.btn-detail {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--navy);
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}

.btn-detail:hover {
  border-color: var(--navy);
}

/* ===== CONTACT SECTION ===== */
.section-contact {
  background: var(--navy);
  padding: 88px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  margin-top: 48px;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,46,69,0.08);
}

.btn-form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-form-submit:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

.contact-info-card {
  color: var(--white);
  padding: 40px 32px;
}

.contact-info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 12px;
}

.contact-info-card > p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,169,110,0.12);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.info-item small {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.info-item strong {
  display: block;
  font-size: 15px;
  color: var(--white);
  font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  padding: 56px 0 24px;
  border-top: 1px solid rgba(200,169,110,0.2);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  animation: pulse-green 2.5s infinite;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0   rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0   rgba(37,211,102,0); }
}

/* ===== DETAIL PAGE ===== */
.detail-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  background: var(--navy);
  background-size: cover;
  background-position: center;
  padding-top: 72px;
}

.detail-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,31,48,0.4) 0%, rgba(15,31,48,0.85) 100%);
}

.detail-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 40px 0;
}

.detail-hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.detail-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.detail-subtitle {
  font-size: 16px;
  color: var(--gold-light);
}

/* Detail Grid */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  margin-top: 48px;
  margin-bottom: 80px;
}

.detail-main {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.detail-section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

/* Timeline */
.timeline { position: relative; padding: 8px 0; }

.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(200,169,110,0.1));
}

.timeline-item {
  position: relative;
  padding-left: 56px;
  margin-bottom: 28px;
}

.timeline-day-badge {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--navy);
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  z-index: 1;
}

.timeline-content {
  background: var(--off-white);
  border-radius: 12px;
  padding: 18px 20px;
}

.timeline-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.timeline-location-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Hotels Grid */
.hotels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.hotel-card {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hotel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.hotel-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.hotel-location {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}

.hotel-rating {
  background: var(--navy);
  color: var(--gold);
  padding: 3px 9px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.hotel-stars { color: #f59e0b; font-size: 13px; }

/* Pricing Table */
.premium-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 8px;
}

.premium-table th {
  background: var(--navy);
  color: var(--gold);
  padding: 12px 14px;
  text-align: left;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.1);
}

.premium-table td {
  padding: 11px 14px;
  border: 1px solid var(--border);
}

.premium-table tr:nth-child(even) td {
  background: var(--off-white);
}

.table-responsive {
  overflow-x: auto;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* Package heading */
.pkg-heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  border-right: 3px solid var(--gold);
  padding-right: 10px;
  margin: 24px 0 12px;
}

/* Icon Lists */
.icon-list { list-style: none; }

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 10px;
  line-height: 1.5;
}

.icon-list li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: rgba(37,211,102,0.12);
  color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.exclusion-list li::before {
  content: '✗';
  background: rgba(239,68,68,0.1);
  color: #ef4444;
}

.document-list li::before {
  content: '📄';
  background: none;
  font-size: 14px;
}

/* Sidebar */
.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.sidebar-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.summary-row:last-child { border: none; }

.summary-row span:first-child { color: var(--text-light); font-weight: 500; }
.summary-row span:last-child  { font-weight: 700; color: var(--navy); text-align: right; max-width: 60%; }

/* Date Badges */
.dates-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 240px;
  overflow-y: auto;
}

.date-badge {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  color: var(--text-dark);
  background: var(--off-white);
}

.date-badge:hover,
.date-badge.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Book Now Card */
.book-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 4px solid var(--gold);
}

.book-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.book-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-book-now {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-book-now:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

.book-card-tel {
  text-align: center;
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.book-card-tel span {
  color: var(--white);
  font-weight: 700;
}

/* Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 28px;
  transition: var(--transition);
}

.back-link:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 20px 24px;
    gap: 12px;
    border-bottom: 2px solid var(--gold);
    z-index: 999;
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .btn-whatsapp-nav span { display: none; }

  .stats-bar {
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 16px;
  }

  .stat-item { padding: 0 16px; }
  .stat-divider { display: none; }

  .stat-num { font-size: 28px; }

  .hero-title { font-size: 28px; }

  .hero-search-box {
    flex-direction: column;
    border-radius: 16px;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    gap: 10px;
  }

  .search-field {
    background: rgba(255,255,255,0.97);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  }

  .search-divider {
    display: none;
  }

  .hero-search-btn {
    border-radius: 12px;
    padding: 14px 24px;
    justify-content: center;
    width: 100%;
  }

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

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

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .detail-main {
    padding: 24px 20px;
  }
}
