/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #1a1a1a;
  background: #fff;
  overflow-x: hidden;
}
 
/* ===== CSS VARIABLES ===== */
:root {
  --teal: #2d7d6f;
  --teal-light: #3a9e8e;
  --teal-dark: #1b4f46;
  --teal-bg: #e8f5f3;
  --mint-bg: #e8f2f0;
  --dark-bg: #1c3f38;
  --darker-bg: #142e28;
  --coral: #e8614a;
  --white: #ffffff;
  --off-white: #f7f9f8;
  --gray-light: #f0f4f3;
  --gray: #6b7a76;
  --text: #1a1a1a;
  --nav-h: 72px;
}
 
/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 700; line-height: 1.15; }
p, a, button, span, li { font-family: 'DM Sans', 'Segoe UI', sans-serif; }
 
/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1200px;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  z-index: 1000;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
nav.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 32px rgba(0,0,0,0.12);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.nav-logo span { color: var(--teal); }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }
.nav-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--coral);
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nav-whatsapp:hover { background: #d4503a; transform: scale(1.03); }
.nav-whatsapp svg { width: 16px; height: 16px; }
 
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
  font-size: 0;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 100px;
  left: 16px;
  right: 16px;
  background: white;
  border-radius: 20px;
  padding: 24px;
  z-index: 999;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  flex-direction: column;
  gap: 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-light);
}
.mobile-menu a:last-child { border-bottom: none; }
 
/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1548013146-72479768bada?w=1800&q=80') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,46,40,0.75) 0%, rgba(28,63,56,0.5) 60%, rgba(0,0,0,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 80px;
}
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--teal-light);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: white;
  max-width: 680px;
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 440px;
  line-height: 1.65;
  margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--teal-light); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  transition: background 0.2s, transform 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }
.scroll-hint {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}
 
/* ===== SECTION COMMONS ===== */
section { padding: 80px 24px; }
#faq { padding-bottom: 64px; }
.services { padding-top: 64px; }
.memories { padding-top: 64px; }
.container { max-width: 1200px; margin: 0 auto; }
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 48px;
}
 
/* ===== ABOUT ===== */
#about { background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 520px;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: white;
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.about-badge small {
  display: block;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.about-badge p { color: var(--text); font-size: 0.95rem; font-weight: 600; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.feature-card {
  background: white;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid #e8eeec;
  transition: box-shadow 0.2s;
}
.feature-card:hover { box-shadow: 0 4px 20px rgba(45,125,111,0.12); }
.feature-card svg { color: var(--teal); margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; font-weight: 600; color: var(--text); }
 
/* ===== DESTINATIONS ===== */
#destinations { background: var(--dark-bg); }
#destinations .eyebrow { color: var(--teal-light); }
#destinations .section-title { color: white; }
#destinations .section-sub { color: rgba(255,255,255,0.6); }
/* ===== DESTINATION SLIDER ===== */
.dest-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dest-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 4px 20px;
  scrollbar-width: none; /* hide scrollbar Firefox */
}
.dest-slider::-webkit-scrollbar {
  display: none; /* hide scrollbar Chrome */
}

.dest-card {
  flex: 0 0 300px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  height: 460px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.dest-card:hover { transform: translateY(-6px); }
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.dest-card:hover img { transform: scale(1.07); }

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
}
.dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
}
.dest-days {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.dest-info h3 { color: white; font-size: 1.5rem; margin-bottom: 6px; }
.dest-info p { color: rgba(255,255,255,0.8); font-size: 0.8rem; line-height: 1.5; margin-bottom: 14px; }
.dest-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(45,125,111,0.85);
  backdrop-filter: blur(8px);
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

/* Arrow buttons */
.slider-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(8px);
}
.slider-arrow:hover { background: var(--teal); border-color: var(--teal); }

.dest-btn:hover { background: var(--teal); }

/* ===== DESTINATION ATTRACTIONS ===== */
.dest-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}
.dest-attractions {
  margin-bottom: 12px;
}
.dest-attractions-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
  font-family: 'DM Sans', sans-serif;
}
.dest-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.dest-chip {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92);
  font-size: 0.68rem;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 30px;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, border-color 0.2s;
}
.dest-card:hover .dest-chip {
  background: rgba(45,125,111,0.3);
  border-color: rgba(45,125,111,0.5);
}
.dest-card-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.dest-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(37,211,102,0.22);
  backdrop-filter: blur(8px);
  color: #4ade80;
  border: 1px solid rgba(37,211,102,0.35);
  padding: 8px 13px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}
.dest-wa-btn:hover {
  background: rgba(37,211,102,0.38);
  border-color: rgba(37,211,102,0.6);
  color: #6cf0a0;
}
/* Mobile: hide inline WA button — modal already has WA button inside */
@media (max-width: 768px) {
  .dest-wa-btn { display: none !important; }
  .dest-card { cursor: pointer; }
}

@media (max-width: 600px) {
  .dest-card { height: 440px; flex: 0 0 270px; }
  .dest-chip { font-size: 0.63rem; padding: 2px 7px; }
}

/* ===== WHY TRUST ===== */
#trust { background: var(--off-white); }
.trust-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.trust-card {
  background: white;
  border-radius: 16px;
  padding: 28px 20px;
  border: 1px solid #e8eeec;
  transition: box-shadow 0.25s, transform 0.25s;
}
.trust-card:hover { box-shadow: 0 8px 32px rgba(45,125,111,0.1); transform: translateY(-4px); }
.trust-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 16px;
}
.trust-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.trust-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }
 
/* ===== TESTIMONIALS ===== */
#testimonials { background: var(--mint-bg); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.testi-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s;
}
.testi-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.testi-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testi-name { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.testi-country {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 2px;
}
.testi-card blockquote {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.7;
  font-style: italic;
}
 
/* ===== GALLERY ===== */
#gallery { background: white; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 40px;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 200px;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
}
.gallery-label small {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.gallery-label span { color: white; font-weight: 700; font-size: 1rem; }
 
/* ===== INSTAGRAM / REELS ===== */
#reels { background: var(--dark-bg); padding: 80px 24px; }
#reels .eyebrow { color: var(--teal-light); }
.reels-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.reels-text .section-title { color: white; }
.reels-text p { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.7; margin-bottom: 28px; }
.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.2s;
}
.btn-instagram:hover { background: rgba(255,255,255,0.2); }
.reels-videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.reel-item {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 9/14;
  position: relative;
  cursor: pointer;
}
.reel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.reel-item:hover img { transform: scale(1.08); }
.reel-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
}
.reel-play svg { color: white; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)); }
 
/* ===== FAQ ===== */
#faq { background: var(--off-white); }
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white;
  border-radius: 12px;
  border: 1px solid #e8eeec;
  overflow: hidden;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.2rem;
  gap: 12px;
}
.faq-q svg { flex-shrink: 0; transition: transform 0.3s; color: var(--gray); }
.faq-item.open .faq-q svg { transform: rotate(180deg); color: var(--teal); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
  padding: 0 20px;
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 20px 18px; }
 
/* ===== CTA ===== */
#cta {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  text-align: center;
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45,125,111,0.2) 0%, transparent 70%);
  pointer-events: none;
}
#cta .eyebrow { color: var(--teal-light); }
#cta h2 { color: white; font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 20px; }
#cta p { color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto 40px; font-size: 1rem; line-height: 1.7; }
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--coral);
  color: white;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 8px 32px rgba(232,97,74,0.35);
}
.btn-cta:hover { background: #d4503a; transform: translateY(-3px); }
 
/* ===== FOOTER ===== */
footer {
  background: var(--darker-bg);
  padding: 60px 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .nav-logo { font-size: 1.3rem; color: white; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.7; margin-top: 12px; max-width: 280px; }
.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  text-decoration: none;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: white; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-item:hover { color: white; }
.footer-contact-item svg { color: var(--teal-light); flex-shrink: 0; }
.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
 
/* ===== FLOATING WHATSAPP ===== */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.float-wa svg { color: white; }
 
/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-cards { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}
 
@media (max-width: 768px) {
  section { padding: 64px 20px; }
  .nav-links, .nav-whatsapp { display: none; }
  .hamburger { display: flex; }
 
  .hero h1 { font-size: 2.6rem; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-img-wrap { height: 340px; }
  .about-features { grid-template-columns: 1fr 1fr; }
 
  .dest-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .dest-card { height: 260px; }
 
  .trust-cards { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; }
 
  .reels-inner { grid-template-columns: 1fr; gap: 36px; }
  .faq-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
 
@media (max-width: 480px) {
  nav { width: calc(100% - 24px); padding: 0 18px; height: 62px; }
  .hero h1 { font-size: 2.1rem; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { justify-content: center; }
  .dest-grid { grid-template-columns: 1fr; }
  .trust-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .reels-videos { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
}


/* ===== SERVICES SECTION ===== */
.services { background: var(--off-white); }
.services .container { max-width: 1200px; margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 12px;
}

.service-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 36px;
  border: 1px solid #e0ecea;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(45,125,111,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
  align-self: stretch;
}
/* push button to bottom of card */
.service-card .service-cta-btn { margin-top: auto; }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(45,125,111,0.14);
}

.service-card--accent {
  background: linear-gradient(145deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  border-color: transparent;
  color: white;
}
.service-card--accent::before {
  background: linear-gradient(90deg, var(--coral), #f9a85d);
}
.service-card--accent h3{
    color: #fff !important;
}
.service-card--accent .service-desc { color: rgba(255,255,255,0.9); }
.service-card--accent .service-includes li { color: rgba(255,255,255,0.75); }
.service-card--accent .service-includes svg { color: var(--teal-light); }

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.service-icon-wrap {
  width: 54px;
  height: 54px;
  background: var(--teal-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.service-icon-wrap--light {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
}

.service-badge {
  background: var(--teal-bg);
  color: var(--teal-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  white-space: nowrap;
}
.service-badge--light {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}
.service-badge--popular {
  background: linear-gradient(135deg, #f9a85d, var(--coral));
  color: white;
  box-shadow: 0 3px 10px rgba(232,97,74,0.35);
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding: 0;
}
.service-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray);
  font-weight: 500;
}
.service-includes svg {
  color: var(--teal);
  flex-shrink: 0;
}

.service-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(232,97,74,0.08);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.8rem;
  color: var(--coral);
  line-height: 1.5;
  margin-bottom: 24px;
}
.service-note svg { flex-shrink: 0; margin-top: 2px; }

.service-price-block {
  padding: 18px 0;
  border-top: 1px solid #e8eeec;
  margin-bottom: 24px;
}
.service-card--accent .service-price-block {
  border-color: rgba(255,255,255,0.1);
}

.price-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1;
}
.service-card--accent .price-main { color: white; }
.price-range {
  font-size: 1.6rem;
  color: var(--teal);
  font-weight: 600;
}
.service-card--accent .price-range { color: rgba(255,255,255,0.65); }
.price-usd {
  font-size: 1.2rem;
  color: var(--gray);
  margin-top: 6px;
}
.service-card--accent .price-usd { color: rgba(255,255,255,0.45); }

.service-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  width: 100%;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(45,125,111,0.2);
}
.service-cta-btn:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,125,111,0.3);
}
.service-cta-btn--light {
  background: var(--coral);
  box-shadow: 0 4px 16px rgba(232,97,74,0.3);
}
.service-cta-btn--light:hover {
  background: #d4503a;
  box-shadow: 0 8px 24px rgba(232,97,74,0.4);
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 32px 24px; }
}


/* ===== MEMORIES / TRIP PHOTOS ===== */
.memories { background: var(--white); overflow: hidden; }
.memories .container { max-width: 1200px; margin: 0 auto; }

.memories-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}

.memories-nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.mem-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #d4e6e3;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--teal-dark);
  transition: all 0.2s;
}
.mem-nav-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
  transform: scale(1.05);
}

.memories-track-wrap {
  overflow: hidden;
  margin: 0 -24px;
  padding: 0 24px 8px;
}

.memories-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
  scrollbar-width: none;
  cursor: grab;
}
.memories-track:active { cursor: grabbing; }
.memories-track::-webkit-scrollbar { display: none; }

.memory-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--gray-light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.memory-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.memory-img-wrap {
  width: 100%;
  height: 380px;
  overflow: hidden;
  position: relative;
}
.memory-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(20,46,40,0.55), transparent);
  pointer-events: none;
}
.memory-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.memory-card:hover .memory-img-wrap img {
  transform: scale(1.06);
}

.memory-label {
  position: absolute;
  bottom: 14px;
  left: 16px;
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  z-index: 2;
}

@media (max-width: 768px) {
  .memories-header { flex-direction: column; align-items: flex-start; }
  .memory-card { flex: 0 0 82vw; }
  .memory-img-wrap { height: 300px; }
}

/* ===================================================
   PRELOADER 
   =================================================== */

#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: visible;
  pointer-events: all;
}

.pre-bg {
  position: absolute;
  inset: 0;
  background: #0d1e1a;
}

/* India landmarks image layer */
.pre-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/pre.png');
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center bottom;
  opacity: 0.15;
  filter: invert(1) brightness(1.5);
  z-index: 0;

}


/* Dark gradient overlay so text stays readable */
.pre-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(30,107,94,0.45) 0%, rgba(20,46,40,0.55) 55%, rgba(13,30,26,0.70) 100%);
  z-index: 1;
}



/* All centre content sits above monuments */
.pre-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Animated map pin */
.pre-pin {
  width: 48px;
  height: 62px;
  margin-bottom: 20px;
  animation: pre-pin-drop 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.45));
}
@keyframes pre-pin-drop {
  0%   { transform: translateY(-40px) scale(0.5); opacity: 0; }
  100% { transform: translateY(0)      scale(1);   opacity: 1; }
}

/* Brand */
.pre-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.7rem, 5.5vw, 2.6rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  animation: pre-fade-up 0.7s 0.4s both ease;
  white-space: nowrap;
}
.pre-brand span { color: #3a9e8e; }

@keyframes pre-fade-up {
  0%   { opacity: 0; transform: translateY(14px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Decorative divider line with centre dot */
.pre-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  animation: pre-fade-up 0.7s 0.55s both ease;
}
.pre-divider-line {
  display: block;
  width: clamp(60px, 12vw, 120px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,97,74,0.55), rgba(45,125,111,0.55));
}
.pre-divider-line:last-child {
  background: linear-gradient(90deg, rgba(45,125,111,0.55), rgba(232,97,74,0.55), transparent);
}
.pre-divider-dot {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(232,97,74,0.8);
}

/* Tagline word cycling */
.pre-tagline-wrap {
  position: relative;
  height: 26px;
  width: 200px;
  margin-bottom: 28px;
  animation: pre-fade-up 0.7s 0.65s both ease;
  overflow: hidden;          /* KEY FIX: was missing — clips hidden words */
}
.pre-word {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.pre-word.pre-active {
  opacity: 1;
  transform: translateY(0);
}

/* Progress bar */
.pre-progress-wrap {
  width: clamp(200px, 40vw, 280px);
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 22px;
  animation: pre-fade-up 0.7s 0.75s both ease;
}
.pre-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #3a9e8e, #e8614a);
  border-radius: 2px;
}

/* Destination cycling */
.pre-dest-row {
  display: flex;
  align-items: center;
  gap: 10px;
  animation: pre-fade-up 0.7s 0.85s both ease;
}
.pre-dest-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.pre-dest-list {
  position: relative;
  height: 20px;
  width: 90px;
  overflow: hidden;           /* KEY FIX */
}
.pre-dest {
  position: absolute;
  left: 0;
  right: 0;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.pre-dest.pre-active {
  opacity: 1;
  transform: translateY(0);
}

/* Exit fade */
#preloader.pre-exit {
  transition: opacity 0.7s ease, transform 0.7s ease;
  opacity: 0;
  transform: scale(1.03);
  pointer-events: none;
}


/* ===== END PRELOADER STYLES ===== */


/* =========================================
   Scroll Reveal Fallback
   Cards visible if JS fails
========================================= */

.dest-card,
.trust-card,
.testi-card,
.gallery-item,
.feature-card {
  opacity: 1;
  transform: none;
}

/* JS will override these when it runs */
/* ===== DESTINATION MODAL ===== */
.dest-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(15, 35, 30, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.dest-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.dest-modal-card {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(28px) scale(0.97);
  transition: transform 0.35s cubic-bezier(.22,.68,0,1.2);
  box-shadow: 0 32px 80px rgba(0,0,0,0.28);
}
.dest-modal-overlay.open .dest-modal-card {
  transform: translateY(0) scale(1);
}
.dest-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transition: background 0.2s, transform 0.2s;
  color: #1a1a1a;
}
.dest-modal-close:hover {
  background: #fff;
  transform: scale(1.08);
}
.dest-modal-img-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.dest-modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dest-modal-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.45) 100%);
}
.dest-modal-badge {
  position: absolute;
  bottom: 14px;
  left: 18px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  letter-spacing: 0.02em;
}
.dest-modal-body {
  padding: 26px 28px 32px;
}
.dest-modal-body h2 {
  font-size: 2rem;
  color: var(--teal-dark);
  margin-bottom: 8px;
  line-height: 1.1;
}
.dest-modal-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  color: #4a5754;
  line-height: 1.65;
  margin-bottom: 18px;
}
.dest-modal-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.dest-modal-chips .dest-chip {
  background: var(--teal-bg);
  color: var(--teal-dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}
.dest-modal-highlights {
  background: var(--off-white);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 24px;
  border-left: 3px solid var(--teal);
}
.dest-modal-highlights p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
}
.dest-modal-highlights strong {
  color: var(--teal-dark);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dest-modal-actions {
  display: flex;
  gap: 10px;
}
.dest-modal-wa-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 13px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  flex: 1;
  justify-content: center;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(37,211,102,0.3);
}
.dest-modal-wa-btn:hover {
  background: #1da851;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(37,211,102,0.4);
}
@media (max-width: 480px) {
  .dest-modal-img-wrap { height: 190px; }
  .dest-modal-body { padding: 20px 18px 26px; }
  .dest-modal-body h2 { font-size: 1.6rem; }
}
/* ===== END DESTINATION MODAL ===== */
/* ===== ACCESSIBILITY: REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .dest-card,
  .trust-card,
  .testi-card,
  .gallery-item,
  .feature-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ===== END REDUCED MOTION ===== */