:root {
  --cream: #fdf8f3;
  --warm-white: #fffcf8;
  --coral: #ff6b47;
  --coral-light: #ff8a6e;
  --coral-dark: #e5512d;
  --teal: #2dd4bf;
  --teal-dark: #0d9488;
  --gold: #f59e0b;
  --gold-light: #fcd34d;
  --navy: #1e3a5f;
  --navy-light: #2d5282;
  --text-dark: #1a1a2e;
  --text-mid: #4a5568;
  --text-light: #718096;
  --border: #e8e0d5;
  --shadow-sm: 0 2px 12px rgba(30,58,95,0.08);
  --shadow-md: 0 8px 32px rgba(30,58,95,0.12);
  --shadow-lg: 0 20px 60px rgba(30,58,95,0.18);
  --shadow-xl: 0 30px 80px rgba(30,58,95,0.25);
  --radius: 20px;
  --radius-sm: 12px;
  --gradient-hero: linear-gradient(135deg, #fdf8f3 0%, #fff5ee 50%, #fdf0e8 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text-dark); overflow-x: hidden; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--coral); border-radius: 3px; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253,248,243,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%; height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow-sm);
  will-change: transform;
  transform: translateZ(0);
}
.nav-logo { display: flex; align-items: center; gap: 10px; cursor: pointer; text-decoration: none; }
.nav-logo img { height: 48px; width: auto; filter: drop-shadow(0 2px 8px rgba(255,107,71,0.3)); }
.nav-logo span { font-family: 'Dancing Script', cursive; font-size: 1.6rem; color: var(--coral); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { padding: 8px 16px; border-radius: 50px; text-decoration: none; font-size: 0.9rem; font-weight: 500; color: var(--text-mid); transition: all 0.3s; cursor: pointer; }
.nav-links a:hover, .nav-links a.active { background: var(--coral); color: #fff; }
.nav-cta { background: linear-gradient(135deg, var(--coral), var(--coral-dark)) !important; color: #fff !important; font-weight: 600 !important; box-shadow: 0 4px 15px rgba(255,107,71,0.4); }

/* Updated .hamburger block to handle native button styling resets cleanly */
button.hamburger { 
  display: none; 
  flex-direction: column; 
  gap: 5px; 
  cursor: pointer; 
  padding: 5px; 
  background: transparent;
  border: none;
  outline: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--coral); border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--warm-white); border-bottom: 1px solid var(--border); padding: 20px 5%; z-index: 999; flex-direction: column; gap: 8px; box-shadow: var(--shadow-md); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 16px; border-radius: var(--radius-sm); text-decoration: none; font-weight: 500; color: var(--text-dark); border: 1px solid var(--border); text-align: center; transition: all 0.2s; cursor: pointer; }
.mobile-menu a:hover { background: var(--coral); color: #fff; border-color: var(--coral); }

/* SECTIONS */
section { padding: 80px 5%; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 700; color: var(--coral); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; }
.section-eyebrow::before, .section-eyebrow::after { content: ''; display: block; width: 30px; height: 1.5px; background: var(--coral); }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--text-dark); line-height: 1.2; }
.section-title .accent { color: var(--coral); }
.section-title .script { font-family: 'Dancing Script', cursive; font-size: 1.2em; color: var(--teal-dark); }
.section-sub { margin-top: 12px; color: var(--text-mid); font-size: 1rem; max-width: 540px; margin-left: auto; margin-right: auto; }

/* TRIP CARDS */
.trips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  justify-content: center;
}
.trips-grid.three-col {
  grid-template-columns: repeat(3, minmax(0, 360px));
  justify-content: center;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
}
.trip-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
  cursor: pointer;
  border: 1px solid var(--border);
  will-change: transform;
  contain: layout style;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.trip-card:hover { transform: translateY(-10px) scale(1.01); box-shadow: var(--shadow-xl); }
.trip-img { position: relative; height: 220px; overflow: hidden; }
.trip-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.5s; display: block; aspect-ratio: 4/3;
  background-color: var(--border);
}
.trip-card:hover .trip-img img { transform: scale(1.08); }
.trip-badge { position: absolute; top: 12px; left: 12px; padding: 4px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.badge-group { background: var(--coral); color: #fff; }
.badge-custom { background: var(--teal-dark); color: #fff; }
.badge-hot { position: absolute; top: 12px; right: 12px; background: var(--gold); color: #fff; padding: 4px 10px; border-radius: 50px; font-size: 0.7rem; font-weight: 700; }
.trip-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.trip-dest { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; gap: 4px; margin-bottom: 6px; }
.trip-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; line-height: 1.3; }
.trip-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.trip-meta span { font-size: 0.78rem; color: var(--text-mid); display: flex; align-items: center; gap: 4px; }
.trip-meta i { color: var(--coral); font-size: 0.75rem; }
.trip-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); margin-top: auto; }
.trip-price .price-label { font-size: 0.7rem; color: var(--text-light); }
.trip-price .price-val { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--coral); }
.trip-price .price-per { font-size: 0.72rem; color: var(--text-light); }
.btn-book { padding: 8px 18px; border-radius: 50px; background: linear-gradient(135deg, var(--coral), var(--coral-dark)); color: #fff; border: none; font-family: 'DM Sans', sans-serif; font-size: 0.83rem; font-weight: 600; cursor: pointer; transition: all 0.2s; box-shadow: 0 4px 12px rgba(255,107,71,0.3); }
.btn-book:hover { transform: scale(1.05); box-shadow: 0 6px 18px rgba(255,107,71,0.45); }
.show-more-wrap { text-align: center; margin-top: 40px; }
.btn-show-more { padding: 14px 40px; border-radius: 50px; border: 2px solid var(--coral); color: var(--coral); background: transparent; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; }
.btn-show-more:hover { background: var(--coral); color: #fff; box-shadow: 0 8px 25px rgba(255,107,71,0.35); transform: translateY(-2px); }

/* WHY SECTION */
.why-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 80px 5%; }
.why-section .section-eyebrow { color: var(--teal); }
.why-section .section-eyebrow::before, .why-section .section-eyebrow::after { background: var(--teal); }
.why-section .section-title { color: #fff; }
.why-section .section-sub { color: rgba(255,255,255,0.65); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; margin-top: 40px; }
.why-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 28px 22px; text-align: center; transition: all 0.3s; }
.why-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-6px); border-color: rgba(255,255,255,0.2); }
.why-icon { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--coral), var(--coral-dark)); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #fff; margin: 0 auto 16px; box-shadow: 0 8px 25px rgba(255,107,71,0.4); }
.why-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #fff; font-weight: 700; margin-bottom: 8px; }
.why-desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* TESTIMONIALS */
.testi-section { background: var(--cream); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.testi-card { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); position: relative; transition: all 0.3s; }
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testi-quote { font-size: 3rem; color: var(--coral); opacity: 0.15; font-family: 'Playfair Display', serif; line-height: 1; margin-bottom: 12px; }
.testi-text { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--coral), var(--gold)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-size: 1rem; }
.testi-name { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.testi-trip { font-size: 0.75rem; color: var(--text-light); }
.testi-stars { color: var(--gold); font-size: 0.8rem; margin-top: 2px; }

/* ABOUT */
.about-section { background: var(--warm-white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-img-grid img { width: 100%; border-radius: var(--radius-sm); object-fit: cover; object-position: center; transition: transform 0.3s; display: block; background-color: var(--border); }
.about-img-grid img:hover { transform: scale(1.02); }
.about-img-grid img:first-child { grid-column: 1 / -1; height: 220px; }
.about-img-grid img:not(:first-child) { height: 160px; }
.about-text .section-header { text-align: left; margin-bottom: 24px; }
.about-text .section-header .section-eyebrow::before { display: none; }
.about-p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.about-highlights { display: flex; gap: 24px; margin: 24px 0; flex-wrap: wrap; }
.ah-item { display: flex; align-items: center; gap: 10px; }
.ah-icon { color: var(--coral); font-size: 1.1rem; }
.ah-text { font-size: 0.88rem; font-weight: 600; color: var(--text-dark); }

/* CONTACT */
.contact-section { background: linear-gradient(135deg, #fff5ee 0%, var(--cream) 100%); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; color: var(--text-dark); margin-bottom: 20px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
.contact-item { display: flex; align-items: center; gap: 16px; padding: 14px 18px; background: #fff; border-radius: var(--radius-sm); border: 1px solid var(--border); transition: all 0.2s; text-decoration: none; color: inherit; }
.contact-item:hover { border-color: var(--coral); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.ci-icon { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: #fff; flex-shrink: 0; }
.ci-wa { background: #25D366; }
.ci-phone { background: var(--coral); }
.ci-email { background: var(--navy); }
.ci-ig { background: linear-gradient(135deg, #833ab4, #fd1d1d, #f77737); }
.ci-fb { background: #1877F2; }
.ci-text { font-size: 0.88rem; }
.ci-label { font-size: 0.72rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.ci-val { font-weight: 600; color: var(--text-dark); }

/* FOOTER */
footer { background: var(--text-dark); color: rgba(255,255,255,0.7); padding: 50px 5% 30px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo img { height: 58px; filter: brightness(1.2); }
.footer-logo span { font-family: 'Dancing Script', cursive; font-size: 1.5rem; color: var(--coral); font-weight: 600; }
.footer-desc { font-size: 0.85rem; line-height: 1.7; margin-bottom: 20px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; transition: all 0.2s; }
.footer-social:hover { background: var(--coral); border-color: var(--coral); color: #fff; }
.footer-col h5 { font-size: 0.85rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { text-decoration: none; color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: color 0.2s; cursor: pointer; }
.footer-col ul li a:hover { color: var(--coral); }
.footer-bottom { padding-top: 24px; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: var(--coral); text-decoration: none; }
.footer-policies { display: flex; justify-content: center; gap: 24px; margin-bottom: 12px; flex-wrap: wrap; }
.footer-policies a { color: rgba(255,255,255,0.5); font-size: 0.8rem; text-decoration: none; transition: color 0.2s; }
.footer-policies a:hover { color: var(--coral); }

/* HERO */
.hero {
  padding-top: 70px; min-height: 100vh;
  background: var(--gradient-hero);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  contain: layout style;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(255,107,71,0.07) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 20% 80%, rgba(45,212,191,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.floating-shape { position: absolute; border-radius: 50%; background: linear-gradient(135deg, rgba(255,107,71,0.12), rgba(255,138,110,0.06)); animation: floatShape 6s ease-in-out infinite; will-change: transform; pointer-events: none; }
.fs1 { width: 300px; height: 300px; top: -100px; right: 15%; animation-delay: 0s; }
.fs2 { width: 150px; height: 150px; bottom: 10%; left: 5%; animation-delay: 2s; }
.fs3 { width: 80px; height: 80px; top: 30%; right: 5%; animation-delay: 4s; }
@keyframes floatShape { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-20px) scale(1.05); } }

.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; width: 100%; max-width: 1400px; margin: 0 auto; padding: 60px 5%; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,107,71,0.1); border: 1px solid rgba(255,107,71,0.3); border-radius: 50px; padding: 6px 16px; margin-bottom: 20px; font-size: 0.82rem; font-weight: 600; color: var(--coral); animation: fadeInUp 0.6s both; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.15; font-weight: 900; color: var(--text-dark); margin-bottom: 16px; animation: fadeInUp 0.7s 0.1s both; }
.hero-title .accent { color: var(--coral); }
.hero-title .script { font-family: 'Dancing Script', cursive; font-size: 1.2em; color: var(--teal-dark); }
.hero-sub { font-size: 1rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 30px; max-width: 480px; animation: fadeInUp 0.7s 0.2s both; }

/* SEARCH BOX */
.search-box { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 24px; border: 1px solid var(--border); animation: fadeInUp 0.7s 0.3s both; }
.search-title { font-size: 0.85rem; font-weight: 600; color: var(--coral); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.search-type-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.search-tab-btn { padding: 10px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); background: var(--cream); cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 500; color: var(--text-mid); transition: all 0.2s; text-align: center; }
.search-tab-btn.active, .search-tab-btn:hover { border-color: var(--coral); background: rgba(255,107,71,0.08); color: var(--coral); font-weight: 600; }
.search-field label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.search-field select, .search-field input { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: var(--cream); font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--text-dark); transition: all 0.2s; appearance: none; cursor: pointer; -webkit-appearance: none; margin-bottom: 16px; }
.search-field select:focus, .search-field input:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 3px rgba(255,107,71,0.1); background: #fff; }
.search-btn { width: 100%; padding: 14px; background: linear-gradient(135deg, var(--coral), var(--coral-dark)); color: #fff; border: none; border-radius: var(--radius-sm); font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.3s; box-shadow: 0 6px 20px rgba(255,107,71,0.4); }
.search-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,107,71,0.5); }

/* HERO STATS */
.hero-stats { display: flex; gap: 24px; margin-top: 20px; animation: fadeInUp 0.7s 0.4s both; }
.stat-item { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--text-dark); }
.stat-label { font-size: 0.75rem; color: var(--text-light); font-weight: 500; }

/* HERO RIGHT */
.hero-right { display: flex; justify-content: flex-end; align-items: center; animation: fadeInRight 0.8s 0.2s both; padding-right: 2%; }
.hero-image-wrap { position: relative; width: 380px; }
.hero-img-container { width: 100%; height: 560px; border-radius: 24px 24px 80px 24px; overflow: hidden; position: relative; box-shadow: var(--shadow-xl); border: 4px solid #fff; transform: translateZ(0); }
.hero-img-container img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: opacity 0.7s ease, transform 0.7s ease; position: absolute; top: 0; left: 0; opacity: 0; transform: scale(1.05); will-change: opacity, transform; }
.hero-img-container img.active { opacity: 1; transform: scale(1); }
.img-dots { display: flex; justify-content: center; gap: 8px; margin-top: 14px; }
.img-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: all 0.3s; }
.img-dot.active { background: var(--coral); width: 24px; border-radius: 4px; }
.float-card { position: absolute; background: #fff; border-radius: var(--radius-sm); padding: 10px 14px; box-shadow: var(--shadow-md); z-index: 10; animation: floatCard 3s ease-in-out infinite; will-change: transform; }
.fc1 { top: 30px; left: -40px; animation-delay: 0s; }
.fc2 { bottom: 100px; right: -30px; animation-delay: 1.5s; }
.fc3 { top: 45%; left: -35px; animation-delay: 0.8s; }
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.float-card .fc-label { font-size: 0.7rem; color: var(--text-light); font-weight: 500; }
.float-card .fc-val { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); }
.float-card .fc-stars { color: var(--gold); font-size: 0.7rem; }

/* SEARCH RESULTS */
.search-results-section { padding: 50px 5%; background: var(--warm-white); display: none; }
.search-results-section.show { display: block; }

/* MARQUEE */
.fun-marquee { background: var(--coral); padding: 14px 0; overflow: hidden; }
.marquee-inner { display: flex; gap: 40px; animation: marqueeScroll 20s linear infinite; width: max-content; will-change: transform; transform: translateZ(0); }
.marquee-item { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 0.88rem; font-weight: 600; white-space: nowrap; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* DESTINATIONS */
.explore-destinations { padding: 80px 5%; background: linear-gradient(135deg, #f0fffe 0%, var(--cream) 100%); }
.dest-scroll { display: flex; gap: 20px; overflow-x: auto; padding-bottom: 16px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; min-height: 296px; }
.dest-scroll::-webkit-scrollbar { height: 4px; }
.dest-scroll::-webkit-scrollbar-thumb { background: var(--coral); border-radius: 2px; }
.dest-chip { flex-shrink: 0; width: 220px; height: 280px; border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; scroll-snap-align: start; transition: transform 0.3s; will-change: transform; background-color: var(--border); }
.dest-chip:hover { transform: scale(1.03); }
.dest-chip img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; position: absolute; inset: 0; decoding: async; }
.dest-chip-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%); display: flex; flex-direction: column; justify-content: flex-end; padding: 16px; }
.dest-chip-name { color: #fff; font-weight: 700; font-size: 1rem; }
.dest-chip-count { color: rgba(255,255,255,0.8); font-size: 0.78rem; }

/* CUSTOM STEPS */
.custom-steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; margin-top: 40px; }
.custom-step { background: #fff; border-radius: var(--radius); padding: 28px 22px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); position: relative; text-align: center; transition: all 0.3s; }
.custom-step:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff; font-weight: 800; font-size: 1rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.step-title { font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.step-desc { font-size: 0.83rem; color: var(--text-mid); line-height: 1.6; }

/* TRIP DETAIL */
.trip-detail-page { padding-top: 70px; }
.trip-detail-hero { height: 460px; position: relative; overflow: hidden; }
.trip-detail-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; background-color: var(--border); }
.trip-detail-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 40px 5%; }
.trip-detail-overlay h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 3rem); color: #fff; font-weight: 900; }
.trip-meta-bar { display: flex; gap: 20px; margin-top: 10px; flex-wrap: wrap; }
.trip-meta-bar span { color: rgba(255,255,255,0.85); font-size: 0.9rem; display: flex; align-items: center; gap: 6px; }
.trip-meta-bar i { color: var(--coral); }
.trip-detail-body { display: grid; grid-template-columns: 1fr 380px; gap: 40px; padding: 50px 5%; max-width: 1300px; margin: 0 auto; }
.trip-section-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 800; color: var(--text-dark); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.trip-section-title i { color: var(--coral); margin-right: 8px; }
.itinerary-list { list-style: none; }
.itinerary-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.it-day { min-width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--coral), var(--coral-dark)); color: #fff; font-weight: 700; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 12px rgba(255,107,71,0.3); }
.it-title { font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.it-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }
.inclusions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.inclusion-item { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text-mid); }
.inclusion-item i { font-size: 0.9rem; }
.inclusion-item.incl i { color: #22c55e; }
.inclusion-item.excl i { color: #ef4444; }
.trip-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }
.trip-photos img { border-radius: var(--radius-sm); width: 100%; height: 200px; object-fit: cover; object-position: center; cursor: pointer; transition: transform 0.3s; display: block; background-color: var(--border); }
.trip-photos img:hover { transform: scale(1.03); }

/* BOOKING CARD */
.booking-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-md); padding: 28px; position: sticky; top: 90px; }
.booking-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
.booking-price { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--coral); font-weight: 700; margin-bottom: 20px; }
.booking-price span { font-size: 0.85rem; color: var(--text-light); font-family: 'DM Sans', sans-serif; }
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: var(--cream); font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--text-dark); transition: all 0.2s; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 3px rgba(255,107,71,0.1); background: #fff; }
.form-field textarea { height: 80px; resize: vertical; }
.form-field input[readonly] { background: rgba(255,107,71,0.06); border-color: rgba(255,107,71,0.3); color: var(--coral); font-weight: 600; cursor: default; }
.btn-submit { width: 100%; padding: 14px; background: linear-gradient(135deg, var(--coral), var(--coral-dark)); color: #fff; border: none; border-radius: var(--radius-sm); font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all 0.3s; box-shadow: 0 6px 20px rgba(255,107,71,0.4); }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,107,71,0.5); }
.form-success { display: none; text-align: center; padding: 30px 20px; }
.form-success i { font-size: 3rem; color: #22c55e; margin-bottom: 12px; }
.form-success h4 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--text-dark); margin-bottom: 8px; }
.form-success p { font-size: 0.88rem; color: var(--text-mid); }

/* IMPORTANT NOTE BOX */
.important-note { background: linear-gradient(135deg, #fff8f0, #fff3e8); border: 1.5px solid rgba(255,107,71,0.3); border-radius: var(--radius-sm); padding: 16px 20px; margin: 20px 0; }
.important-note h4 { font-size: 0.85rem; font-weight: 700; color: var(--coral); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.important-note p { font-size: 0.83rem; color: var(--text-mid); line-height: 1.7; }

/* ROOM SHARING POLICY */
.room-policy { background: linear-gradient(135deg, #f0fffe, #e8faf9); border: 1.5px solid rgba(13,148,136,0.3); border-radius: var(--radius-sm); padding: 16px 20px; margin: 20px 0; }
.room-policy h4 { font-size: 0.9rem; font-weight: 700; color: var(--teal-dark); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.room-policy ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.room-policy ul li { font-size: 0.83rem; color: var(--text-mid); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.room-policy ul li::before { content: '✓'; color: var(--teal-dark); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.room-policy .policy-note { font-size: 0.8rem; color: var(--teal-dark); margin-top: 10px; font-weight: 600; }

/* GROUP TRIP DESCRIPTION */
.group-trip-desc { background: linear-gradient(135deg, #fff5ee, var(--cream)); border-radius: var(--radius-sm); padding: 20px; margin: 20px 0; border: 1px solid var(--border); }
.group-trip-desc p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; }

/* POLICY PAGES */
.policy-page { padding: 100px 5% 60px; max-width: 800px; margin: 0 auto; }
.policy-page h1 { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: var(--text-dark); margin-bottom: 10px; }
.policy-page h2 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin: 28px 0 12px; }
.policy-page p { color: var(--text-mid); font-size: 0.92rem; line-height: 1.8; margin-bottom: 12px; }
.policy-page ul { padding-left: 20px; margin-bottom: 12px; }
.policy-page ul li { color: var(--text-mid); font-size: 0.92rem; line-height: 1.8; margin-bottom: 6px; }
.policy-date { color: var(--text-light); font-size: 0.82rem; margin-bottom: 30px; }

/* PRICE ENQUIRY NOTICE */
.price-enquiry-notice { background: linear-gradient(135deg, #e8f8f5, #d1f2eb); border: 1.5px solid rgba(13,148,136,0.4); border-radius: var(--radius-sm); padding: 16px 20px; margin-bottom: 20px; }
.price-enquiry-notice p { font-size: 0.85rem; color: var(--teal-dark); font-weight: 600; display: flex; align-items: flex-start; gap: 8px; line-height: 1.6; }

/* PAGE HERO */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1a4a7a 100%); padding: 120px 5% 60px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(255,107,71,0.15) 0%, transparent 70%); pointer-events: none; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 900; color: #fff; margin-bottom: 14px; position: relative; z-index: 1; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; position: relative; z-index: 1; }
.page-hero .accent { color: var(--coral); }

/* WA FLOAT */
.wa-float { position: fixed; right: 12px; top: 60%; transform: translateY(-50%); z-index: 999; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 6px 20px rgba(37,211,102,0.5); text-decoration: none; transition: transform 0.3s; animation: waPulse 2s infinite; will-change: transform; }
.wa-float:hover { transform: scale(1.1); }
@keyframes waPulse { 0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.5); } 50% { box-shadow: 0 6px 30px rgba(37,211,102,0.8); } }

/* ANIMATIONS */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; visibility: hidden; }
.reveal.visible { opacity: 1; transform: translateY(0); visibility: visible; }

/* FORM ROW */
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-image-wrap { width: 320px; }
  .hero-img-container { height: 480px; }
  .trips-grid.three-col { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero-right { order: -1; justify-content: center; padding-right: 0; }
  .hero-image-wrap { width: 100%; max-width: 420px; margin: 0 auto; }
  .hero-img-container { width: 100%; height: 320px; border-radius: 16px; }
  .fc1, .fc2, .fc3 { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 30px; }
  .contact-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .trip-detail-body { grid-template-columns: 1fr; }
  .booking-card { position: static; }
  .trip-detail-hero { height: 340px; }
  .trips-grid.three-col { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  button.hamburger { display: flex; } /* Core mobile update alignment checked */
  .hero-title { font-size: 2rem; }
  .hero-stats { gap: 16px; }
  .trips-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .trips-grid.three-col { grid-template-columns: 1fr 1fr; }
  section { padding: 50px 4%; }
  .footer-top { grid-template-columns: 1fr; }
  .inclusions-grid { grid-template-columns: 1fr; }
  .about-img-grid img:first-child { height: 180px; }
  .about-img-grid img:not(:first-child) { height: 140px; }
  .trip-photos img { height: 160px; }
  .hero-img-container { height: 280px; }
  .trip-detail-hero { height: 280px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .dest-chip { width: 180px; height: 240px; }
  .dest-scroll { min-height: 256px; }
}
@media (max-width: 480px) {
  .trips-grid { grid-template-columns: 1fr; }
  .trips-grid.three-col { grid-template-columns: 1fr; }
  .hero-inner { padding: 20px 4%; }
  .hero-img-container { height: 240px; }
  .trip-photos { grid-template-columns: 1fr 1fr; }
  .trip-photos img { height: 140px; }
  .why-grid { grid-template-columns: 1fr; }
  .custom-steps { grid-template-columns: 1fr 1fr; }
  .search-type-tabs { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .trip-detail-body { padding: 30px 4%; }
  .hero-stats { flex-wrap: wrap; gap: 12px; }
  .about-img-grid img:first-child { height: 160px; }
  .about-img-grid img:not(:first-child) { height: 120px; }
  .trip-detail-hero { height: 240px; }
  .inclusions-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .dest-chip { width: 160px; height: 220px; }
  .dest-scroll { min-height: 236px; }
}