/**
 * Keka's Travel Theme — Premium Bright Design
 * Design: Playfair Display + DM Sans, Sky Blue + Warm White
 */

/* ═══════ RESET & BASE ═══════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1e293b;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ═══════ CONTAINER ═══════ */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 640px) { .container { padding: 0 24px; } }
@media (min-width: 1024px) { .container { padding: 0 32px; } }

/* ═══════ SECTION ═══════ */
.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 100px 0; } }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
  color: #0369a1;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.2;
}
@media (min-width: 768px) { .section-header h2 { font-size: 2.75rem; } }
.section-header p { color: #64748b; font-size: 1.05rem; line-height: 1.7; }

/* ═══════ BUTTONS ═══════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: white;
  box-shadow: 0 4px 14px rgba(3, 105, 161, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(3, 105, 161, 0.4); }
.btn-outline { background: transparent; border-color: #cbd5e1; color: #334155; }
.btn-outline:hover { border-color: #0284c7; color: #0284c7; background: #f0f9ff; }
.btn-white { background: white; color: #0369a1; box-shadow: 0 4px 14px rgba(0,0,0,0.1); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; }

/* ═══════ TOP BAR ═══════ */
.top-bar {
  background: #0f172a;
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  padding: 8px 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 16px; }
.top-bar a { color: rgba(255,255,255,0.8); transition: color 0.2s; }
.top-bar a:hover { color: white; }
.wa-btn {
  background: #25D366;
  color: white !important;
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 600;
}
@media (max-width: 640px) { .top-bar { display: none; } }

/* ═══════ NAVIGATION ═══════ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: transparent;
}
.site-nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 10px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: white;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
}
.nav-logo-text { display: block; font-weight: 700; font-size: 1.1rem; color: white; line-height: 1.2; }
.nav-logo-sub { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.7); letter-spacing: 0.05em; }
.site-nav.scrolled .nav-logo-text { color: #0f172a; }
.site-nav.scrolled .nav-logo-sub { color: #64748b; }

.nav-links { display: none; gap: 28px; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: white; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #0284c7;
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.site-nav.scrolled .nav-links a { color: #475569; }
.site-nav.scrolled .nav-links a:hover { color: #0284c7; }

.nav-ctas { display: none; align-items: center; gap: 12px; }
@media (min-width: 1024px) { .nav-ctas { display: flex; } }
.nav-phone { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.9); }
.site-nav.scrolled .nav-phone { color: #334155; }
.nav-wa-btn {
  background: #25D366;
  color: white !important;
  padding: 8px 18px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s;
}
.nav-wa-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,211,102,0.3); }

/* Mobile Toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
@media (min-width: 1024px) { .mobile-toggle { display: none; } }
.mobile-toggle span {
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: background 0.2s;
}
.site-nav.scrolled .mobile-toggle span { background: #334155; }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 80%; max-width: 360px;
  height: 100vh;
  background: white;
  z-index: 2000;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: right 0.3s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}
.mobile-menu.active { right: 0; }
.mobile-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #334155;
}
.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  color: #334155;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
}

/* ═══════ HERO ═══════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
}
.hero-content {
  position: absolute;
  bottom: 15%;
  left: 0; right: 0;
  z-index: 10;
  color: white;
}
.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 700px;
}
@media (min-width: 768px) { .hero-content h1 { font-size: 4rem; } }
.hero-content h1 .accent { color: #38bdf8; }
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 24px;
  line-height: 1.7;
}

/* Hero Search */
.hero-search {
  display: flex;
  max-width: 520px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
}
.hero-search input {
  flex: 1;
  padding: 14px 18px;
  background: transparent;
  border: none;
  color: white;
  font-size: 0.95rem;
  outline: none;
}
.hero-search input::placeholder { color: rgba(255,255,255,0.6); }
.hero-search .btn {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: white;
  border-radius: 0 12px 12px 0;
  padding: 14px 24px;
  border: none;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-trust {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.hero-trust .stars { color: #fbbf24; }

/* Hero Arrows */
.hero-arrows {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  transform: translateY(-50%);
  pointer-events: none;
}
.hero-arrow {
  pointer-events: all;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.hero-arrow:hover { background: rgba(255,255,255,0.3); }

/* Hero Dots */
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.hero-dot.active { background: white; transform: scale(1.3); }

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: -40px;
  position: relative;
  z-index: 20;
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
@media (min-width: 768px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.hero-stat { text-align: center; }
.hero-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0369a1;
}
.hero-stat-label { font-size: 0.85rem; color: #64748b; margin-top: 4px; }

/* ═══════ PACKAGES ═══════ */
.packages-section { background: #f8fafc; }

.pkg-filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.pkg-year-filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}
.pkg-filter {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid #e2e8f0;
  background: white;
  font-size: 0.85rem;
  font-weight: 500;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s;
}
.pkg-filter:hover { border-color: #0284c7; color: #0284c7; }
.pkg-filter.active {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: white;
  border-color: transparent;
}

.pkg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pkg-grid { grid-template-columns: repeat(3, 1fr); } }

.pkg-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }

.pkg-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.pkg-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.pkg-card:hover .pkg-card-img img { transform: scale(1.05); }
.pkg-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 12px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: white;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
}
.pkg-card-featured {
  position: absolute;
  top: 12px; right: 12px;
  padding: 4px 12px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pkg-card-body { padding: 20px; }
.pkg-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.3;
}
.pkg-card-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 10px;
}
.pkg-card-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pkg-card-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.pkg-highlight {
  padding: 3px 10px;
  background: #f0f9ff;
  color: #0369a1;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
}
.pkg-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
}
.pkg-price-from { font-size: 0.75rem; color: #94a3b8; }
.pkg-price-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0369a1;
}
.pkg-price-per { font-size: 0.75rem; color: #94a3b8; }
.pkg-detail-link {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0284c7;
  transition: color 0.2s;
}
.pkg-detail-link:hover { color: #0369a1; }

.pkg-load-more { text-align: center; margin-top: 40px; }

/* ═══════ HOW IT WORKS ═══════ */
.hiw-section { background: white; }
.hiw-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hiw-card {
  flex: 1;
  min-width: 240px;
  max-width: 320px;
  text-align: center;
  padding: 32px 24px;
  background: #f8fafc;
  border-radius: 20px;
  position: relative;
  transition: all 0.3s;
}
.hiw-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.hiw-number {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 32px;
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.hiw-icon { font-size: 2.5rem; margin-bottom: 16px; margin-top: 8px; }
.hiw-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}
.hiw-card p { font-size: 0.9rem; color: #64748b; line-height: 1.7; }
.hiw-connector {
  display: none;
  font-size: 1.5rem;
  color: #cbd5e1;
  margin-top: 60px;
}
@media (min-width: 768px) { .hiw-connector { display: block; } }

/* ═══════ ABOUT ═══════ */
.about-section { background: #f8fafc; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-images { position: relative; }
.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.about-img-main img { width: 100%; height: 400px; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(3,105,161,0.3);
}
.about-badge-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
}
.about-badge-label { font-size: 0.8rem; opacity: 0.9; }
.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  line-height: 1.2;
}
.about-content p { color: #64748b; line-height: 1.7; margin-bottom: 16px; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.about-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.about-feature-icon {
  width: 40px; height: 40px;
  background: #f0f9ff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.about-feature strong { display: block; font-size: 0.9rem; color: #0f172a; }
.about-feature span { font-size: 0.8rem; color: #94a3b8; }

/* ═══════ TESTIMONIALS ═══════ */
.testimonials-section { background: white; }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.testimonial-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 12px; }
.testimonial-text {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: #0f172a; }
.testimonial-author span { font-size: 0.8rem; color: #94a3b8; }

/* ═══════ FAQ ═══════ */
.faq-section { background: #f8fafc; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.faq-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  font-weight: 600;
  color: #0f172a;
  font-size: 0.95rem;
}
.faq-toggle {
  font-size: 1.5rem;
  color: #0284c7;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer p { padding: 0 24px; color: #64748b; line-height: 1.7; font-size: 0.9rem; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 18px; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* ═══════ FOOTER CTA ═══════ */
.footer-cta {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: white;
  text-align: center;
  padding: 64px 32px;
  border-radius: 24px;
  margin-bottom: -60px;
  position: relative;
  z-index: 10;
}
.footer-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-cta p { color: rgba(255,255,255,0.85); max-width: 500px; margin: 0 auto 24px; }

/* ═══════ FOOTER ═══════ */
.site-footer {
  background: #0f172a;
  color: rgba(255,255,255,0.7);
  padding: 100px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-top: 12px; }
.footer-col h4 { color: white; font-weight: 700; margin-bottom: 16px; font-size: 0.95rem; }
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-contact-item { display: flex; gap: 8px; margin-bottom: 8px; font-size: 0.85rem; }
.footer-contact-item a { display: inline; padding: 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ═══════ WHATSAPP FLOAT ═══════ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
}
.whatsapp-float a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 14px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: all 0.3s;
  animation: pulse-wa 2s infinite;
}
.whatsapp-float a:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 20px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ═══════ AI ASSISTANT ═══════ */
.ai-launcher {
  position: fixed;
  bottom: 90px;
  right: 28px;
  z-index: 900;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(3,105,161,0.3);
  transition: all 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.ai-launcher:hover { transform: scale(1.1); }
.ai-launcher.active { background: #dc2626; }

.ai-chat {
  position: fixed;
  bottom: 150px;
  right: 24px;
  width: 380px;
  max-height: 520px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  z-index: 950;
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.ai-chat.open { display: flex; }
@media (max-width: 480px) {
  .ai-chat { right: 8px; left: 8px; width: auto; bottom: 100px; max-height: 70vh; }
}

.ai-chat-header {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: white;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ai-chat-header h3 { font-size: 0.95rem; font-weight: 700; }
.ai-chat-header p { font-size: 0.75rem; opacity: 0.8; }
.ai-chat-close {
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}

.ai-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 300px;
}
.ai-msg {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 85%;
}
.ai-msg.bot {
  background: #f1f5f9;
  color: #334155;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.ai-msg.user {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.ai-wa-link {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 14px;
  background: #25D366;
  color: white !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.82rem;
  transition: all 0.2s;
}
.ai-wa-link:hover { opacity: 0.9; }

.ai-quick-replies {
  display: flex;
  gap: 6px;
  padding: 8px 16px;
  overflow-x: auto;
  flex-wrap: nowrap;
}
.ai-quick-btn {
  padding: 6px 14px;
  background: #f0f9ff;
  border: 1px solid #e0f2fe;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #0369a1;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.ai-quick-btn:hover { background: #e0f2fe; }

.ai-chat-input {
  display: flex;
  padding: 12px 16px;
  border-top: 1px solid #f1f5f9;
  gap: 8px;
}
.ai-chat-input input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
}
.ai-chat-input input:focus { border-color: #0284c7; }
.ai-chat-input button {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.ai-chat-input button:hover { opacity: 0.9; }

/* ═══════ PACKAGE DETAIL ═══════ */
.pkg-detail-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  overflow: hidden;
}
.pkg-detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.pkg-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
}
.pkg-detail-hero-content {
  position: absolute;
  bottom: 40px;
  left: 0; right: 0;
  color: white;
}
.pkg-back-link {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.pkg-back-link:hover { color: white; }
.pkg-detail-badge {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.pkg-detail-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.pkg-detail-meta { display: flex; gap: 20px; font-size: 0.9rem; color: rgba(255,255,255,0.85); flex-wrap: wrap; }

.pkg-detail-body { padding: 48px 0 80px; }
.pkg-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) { .pkg-detail-grid { grid-template-columns: 2fr 1fr; } }

.pkg-detail-section { margin-bottom: 40px; }
.pkg-detail-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}
.pkg-detail-section p { color: #64748b; line-height: 1.7; }

.pkg-detail-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pkg-detail-highlight {
  padding: 8px 14px;
  background: #f0f9ff;
  border-radius: 8px;
  font-size: 0.88rem;
  color: #0369a1;
  font-weight: 500;
}

/* Itinerary Timeline */
.pkg-itinerary { display: flex; flex-direction: column; gap: 0; }
.pkg-itin-day { display: flex; gap: 16px; }
.pkg-itin-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.pkg-itin-dot {
  width: 14px; height: 14px;
  background: linear-gradient(135deg, #0284c7, #0369a1);
  border-radius: 50%;
  border: 3px solid #e0f2fe;
}
.pkg-itin-line {
  width: 2px;
  flex: 1;
  background: #e2e8f0;
  min-height: 20px;
}
.pkg-itin-day:last-child .pkg-itin-line { display: none; }
.pkg-itin-content { padding-bottom: 24px; }
.pkg-itin-content h4 {
  font-weight: 700;
  color: #0f172a;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.pkg-itin-content p { font-size: 0.88rem; color: #64748b; line-height: 1.6; }

.pkg-includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.pkg-include-item {
  font-size: 0.88rem;
  color: #334155;
  padding: 6px 0;
}

/* Sidebar */
.pkg-sidebar-card {
  background: white;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px;
  position: sticky;
  top: 100px;
}
.pkg-sidebar-price { text-align: center; margin-bottom: 20px; }
.pkg-sidebar-from { display: block; font-size: 0.8rem; color: #94a3b8; }
.pkg-sidebar-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0369a1;
}
.pkg-sidebar-per { font-size: 0.85rem; color: #94a3b8; }
.pkg-sidebar-info { margin-bottom: 20px; }
.pkg-sidebar-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.88rem;
}
.pkg-sidebar-row span { color: #64748b; }
.pkg-sidebar-row strong { color: #0f172a; }
.pkg-sidebar-card .btn { margin-bottom: 10px; }
.pkg-sidebar-trust {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
  color: #64748b;
}

/* ═══════ SCROLL ANIMATIONS ═══════ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════ WORDPRESS SPECIFIC ═══════ */
.wp-block-image img { border-radius: 12px; }
.entry-content { max-width: 720px; margin: 0 auto; }
.entry-content p { margin-bottom: 16px; line-height: 1.7; }
.entry-content h1, .entry-content h2, .entry-content h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
}
