/* ============================================
   ANDAMAN ADVENTURE ADDICT — Main Stylesheet
   Colors: #FFC515 (Gold), #1E275B (Navy)
   ============================================ */

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

/* ── CSS Variables ── */
:root {
  --gold: #FFC515;
  --gold-dark: #e0a800;
  --gold-light: #FFD65C;
  --navy: #1E275B;
  --navy-dark: #141b40;
  --navy-light: #2d3878;
  --white: #ffffff;
  --off-white: #f8f9ff;
  --light-bg: #f0f4ff;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  --border: #e5e7f0;
  --shadow-sm: 0 2px 8px rgba(30,39,91,0.08);
  --shadow-md: 0 8px 24px rgba(30,39,91,0.12);
  --shadow-lg: 0 20px 60px rgba(30,39,91,0.16);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── Section Utilities ── */
.section-padding { padding: 90px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,197,21,0.12);
  color: var(--navy);
  font-size: 0.82rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px;
  border-left: 3px solid var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700;
  /* color: var(--navy); */
  line-height: 1.25;
  margin-bottom: 16px;
   background: linear-gradient(90deg, #193176 0%, #1E275B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* .section-title span { color: var(--gold); } */
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 13px 30px;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(255,197,21,0.35);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,197,21,0.45);
  color: var(--navy);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 13px 30px;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50px;
  padding: 11px 28px;
  font-weight: 700;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.95rem;
  cursor: pointer;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 13px 30px;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.95rem;
  cursor: pointer;
}
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); color:#fff; }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 9px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.announcement-bar .ticker-text {
  display: inline-flex; align-items: center; gap: 8px;
}
.announcement-bar span.highlight { color: var(--gold); font-weight: 700; }

/* ============================================
   NAVBAR
   ============================================ */
#mainNav {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0;
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(30,39,91,0.06);
  z-index: 1050;
}
#mainNav.scrolled {
  padding: 5px 0;
  box-shadow: 0 4px 30px rgba(30,39,91,0.12);
}
/* Overlapping Badge Logo Effect */
#mainNav .navbar-brand img { 
  height: 150px; /* Big height to overlap outwards */
  margin-bottom: -65px; /* Forces the image to hang over the bottom edge */
  position: relative;
  z-index: 1060;
  transition: var(--transition);
  filter: drop-shadow(0 8px 16px rgba(30,39,91,0.25));
}
#mainNav.scrolled .navbar-brand img { 
  height: 120px;
  margin-bottom: -60px;
}
#mainNav .nav-link {
  color: var(--navy) !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 16px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
#mainNav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 1px;
}
#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after { transform: scaleX(1); }
#mainNav .nav-link:hover { color: var(--navy) !important; }
#mainNav .dropdown-menu {
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 12px;
  margin-top: 8px;
  animation: dropFade 0.2s ease;
}
@keyframes dropFade {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
#mainNav .dropdown-item {
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--navy);
  transition: var(--transition);
}
#mainNav .dropdown-item:hover { background: rgba(255,197,21,0.12); color: var(--navy); }
.nav-cta-group { display: flex; align-items: center; gap: 10px; }
.btn-call {
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 9px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.btn-call:hover { background: var(--navy-light); color:#fff; }
.btn-nav-wa {
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50px;
  padding: 9px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.btn-nav-wa:hover { background: var(--gold-dark); color: var(--navy); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #2a3580 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 90px;
}
.hero-bg-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  mix-blend-mode: luminosity;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,39,91,0.92) 0%, rgba(30,39,91,0.7) 60%, rgba(30,39,91,0.4) 100%);
}
/* Decorative blob shapes */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  animation: blobPulse 6s ease-in-out infinite alternate;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: var(--gold-light);
  top: -150px; right: -100px;
  animation-delay: 0s;
}
.hero-blob-2 {
  width: 350px; height: 350px;
  background: #4a90e2;
  bottom: -100px; left: 10%;
  animation-delay: 2s;
}
.hero-blob-3 {
  width: 200px; height: 200px;
  background: var(--gold);
  top: 40%; right: 25%;
  animation-delay: 4s;
}
@keyframes blobPulse {
  from { transform: scale(1) translate(0,0); }
  to   { transform: scale(1.15) translate(20px,-20px); }
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,197,21,0.15);
  border: 1px solid rgba(255,197,21,0.4);
  color: var(--gold-light);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.4s both;
}
.hero-title .highlight { color: var(--gold); }
.hero-subtitle {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 36px;
  animation: fadeInUp 0.6s ease 0.6s both;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeInUp 0.6s ease 0.8s both; }
.hero-trust-badges {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-top: 42px;
  animation: fadeInUp 0.6s ease 1s both;
}
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem; font-weight: 600;
}
.trust-badge .check {
  width: 28px; height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 0.8rem;
  flex-shrink: 0;
}
.hero-img-wrapper {
  position: relative; z-index: 2;
  animation: fadeInRight 0.8s ease 0.3s both;
}
.hero-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  height: 520px;
  object-fit: cover;
  width: 100%;
}
.hero-stat-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 10px 40px rgba(30,39,91,0.2);
  display: flex; align-items: center; gap: 12px;
  min-width: 170px;
}
.hero-stat-card.card-1 { bottom: 30px; left: -30px; animation: float1 3s ease-in-out infinite; }
.hero-stat-card.card-2 { top: 40px; right: -20px; animation: float2 3.5s ease-in-out infinite; }
.hero-stat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.hero-stat-icon.gold { background: rgba(255,197,21,0.15); }
.hero-stat-icon.navy { background: rgba(30,39,91,0.1); }
.hero-stat-num { font-family:'Playfair Display',serif; font-size:1.3rem; font-weight:700; color:var(--navy); line-height:1; }
.hero-stat-label { font-size:0.75rem; color:var(--text-muted); font-weight:500; }

@keyframes float1 {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes float2 {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(10px); }
}

/* ============================================
   ENQUIRY FORM STRIP
   ============================================ */
.enquiry-strip {
  background: var(--white);
  position: relative;
  z-index: 10;
  margin-top:-2px;
}
.enquiry-strip-inner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  margin-top: -155px;
  position: relative;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--gold);
}

.enquiry-label {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.enquiry-form-title {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.enquiry-strip .form-control, .enquiry-strip .form-select {
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.92rem;
  transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
}
.enquiry-strip .form-control::placeholder { color: rgba(255,255,255,0.5); }
.enquiry-strip .form-control:focus, .enquiry-strip .form-select:focus {
  background: rgba(255,255,255,0.14);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255,197,21,0.2);
  color: #fff;
}
.enquiry-strip .form-select option { color: var(--navy); background: #fff; }
.enquiry-strip label { color: rgba(255,255,255,0.7); font-size: 0.82rem; font-weight: 600; margin-bottom: 6px; }

/* ── Form Input Icons ── */
.contact-form-styled .input-icon-left {
  left: 30px;
}
.enquiry-form .input-icon-left {
  left: 24px;
}
.input-icon-left {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #a0a8b8;
  pointer-events: none;
  z-index: 5;
  font-size: 0.95rem;
}
.form-control.ps-5, .form-select.ps-5 {
  padding-left: 42px !important;
}
/* Native date picker full-area transparent overlay */
input[type="date"]::-webkit-calendar-picker-indicator {
  background: transparent;
  bottom: 0;
  color: transparent;
  cursor: pointer;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section { background: var(--off-white); position: relative; overflow: hidden; }
.about-section::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,197,21,0.08) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
}
.about-collage-wrapper { position: relative; width: 100%; padding-right: 20px; }
.about-collage {
  position: relative;
  height: 580px;
  width: 100%;
}
.about-collage img {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(30,39,91,0.12);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.c-img-main {
  width: 78%;
  height: 480px;
  top: 0;
  left: 5%;
  z-index: 1;
  border-radius: 40px 40px 40px 10px;
}
.c-img-sub {
  width: 65%;
  height: 250px;
  bottom: 0px;
  right: -10px;
  z-index: 2;
  border-radius: 40px 40px 10px 40px;
  border: 7px solid #fff;
}
.about-exp-badge-circle {
  position: absolute;
  top: 30%;
  right: -5%;
  width: 140px;
  height: 140px;
  background: #fff;
  border-radius: 48% 52% 45% 55% / 55% 45% 58% 42%;
  box-shadow: 0 12px 30px rgba(30,39,91,0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 3;
  color: var(--navy);
  transform: rotate(-5deg);
}
.about-exp-badge-circle::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1.8px dashed var(--navy);
  border-radius: inherit;
  opacity: 0.65;
}
.about-exp-badge-circle .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.about-exp-badge-circle .label {
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 4px;
}
.airplane-decor {
  position: absolute;
  top: 15%;
  left: -15px;
  z-index: 4;
  color: var(--gold);
  font-size: 2.2rem;
  transform: rotate(35deg);
  animation: floatAirplane 3s ease-in-out infinite alternate;
}
.airplane-decor .flight-path {
  position: absolute;
  top: 40px;
  left: -20px;
  width: 80px;
  height: 140px;
  transform: rotate(-35deg);
}
@keyframes floatAirplane {
  0% { transform: rotate(35deg) translateY(0); }
  100% { transform: rotate(35deg) translateY(-8px); }
}
/* ── About Features V2 (Premium 2-col grid) ── */
.about-features-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}
.af-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 10px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.af-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  border-radius: 0 2px 2px 0;
}
.af-item:hover { transform: translateX(6px); box-shadow: var(--shadow-md); border-color: rgba(255,197,21,0.4); }
.af-item:hover::before { transform: scaleY(1); }
.af-icon-wrap {
  width: 38px; height: 38px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 0 rgba(0,0,0,0.13), 0 7px 16px rgba(0,0,0,0.1);
  transition: var(--transition);
}
.af-item:hover .af-icon-wrap { transform: scale(1.08) rotate(-5deg); }
.af-body { flex: 1; min-width: 0; }
.af-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 3px;
  line-height: 1.3;
}
.af-desc {
  font-size: 0.79rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.af-check {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(255,197,21,0.4);
  transition: var(--transition);
}
.af-item:hover .af-check { transform: scale(1.15) rotate(10deg); }
.about-feature-icon { font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
.about-feature-text { font-size: 0.85rem; font-weight: 600; color: var(--navy); }

/* ============================================
   PACKAGES SECTION
   ============================================ */
.packages-section { background: var(--white); padding-top: 80px; }
.package-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  height: 100%;
  display: flex; flex-direction: column;
  
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.package-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.package-img-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.package-card:hover .package-img-wrapper img { transform: scale(1.08); }
.package-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--navy);
  color: #fff;
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase;
}
.package-badge.popular {
  background: var(--gold);
  color: var(--navy);
}
.package-duration {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,0.92);
  color: var(--navy);
  border-radius: 50px;
  padding: 5px 12px;
  font-size: 0.78rem; font-weight: 700;
  display: flex; align-items: center; gap: 5px;
}
.package-body {
  padding: 22px;
  flex: 1;
  display: flex; flex-direction: column;
}
.package-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 6px;
}
.package-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}
.package-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}
.package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1.5px solid var(--border);
  gap: 10px;
  flex-wrap: wrap;
}
.package-price-label { font-size: 0.72rem; color: var(--text-muted); font-weight: 600; }
.package-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.package-price span { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.package-cta {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 9px 18px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
}
.package-cta:hover { background: var(--gold-dark); transform: scale(1.05); }

/* Promo Banner (replaces packages-bottom-cta) */
.promo-banner {
  margin-top: 60px;
  background: linear-gradient(120deg, var(--navy-dark) 0%, var(--navy) 55%, #2d4a9e 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: stretch;
  height: 280px;
}
/* subtle radial glow */
.promo-banner::before {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255,197,21,0.18) 0%, transparent 70%);
  top: -100px; left: -60px;
  border-radius: 50%;
  pointer-events: none;
}
/* Decorative leaf SVG */
.promo-leaf {
  position: absolute;
  right: 44%;
  top: -10px;
  width: 90px;
  height: 180px;
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
}
/* Left content */
.promo-content {
  flex: 1;
  padding: 44px 48px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.promo-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.promo-heading {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}
.promo-heading span { color: var(--gold); }
.promo-sub {
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  margin-bottom: 24px;
  line-height: 1.6;
}
.promo-sub strong { color: var(--gold-light); }
.promo-btns { display: flex; gap: 12px; flex-wrap: wrap; }
/* Right image panel */
.promo-img-wrap {
  width: 42%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  clip-path: ellipse(100% 100% at 100% 50%);
}
.promo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  filter: brightness(0.92);
}
.promo-banner:hover .promo-img { transform: scale(1.05); }

/* Responsive */
@media (max-width: 768px) {
  .promo-banner { flex-direction: column; }
  .promo-img-wrap { width: 100%; height: 200px; clip-path: none; }
  .promo-content { padding: 32px 28px; }
  .promo-leaf { right: 10px; width: 60px; }
}

/* ============================================
   WHY CHOOSE US — Premium Light Cards
   ============================================ */
.why-section {
  background: linear-gradient(135deg, #eef2ff 0%, #f8f9ff 55%, #fffbf0 100%);
  position: relative;
  overflow: hidden;
}
/* Subtle dot pattern on light bg */
.why-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(30,39,91,0.045) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

/* ── Premium White Card ── */
.why-glass-card {
  background: var(--white);
  border: 1.5px solid rgba(30,39,91,0.07);
  border-radius: 20px;
  padding: 30px 24px 26px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(30,39,91,0.07), 0 1px 4px rgba(30,39,91,0.04);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  cursor: default;
}
/* Per-card colored top accent bar from --gc */
.why-glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gc, var(--gold));
  border-radius: 20px 20px 0 0;
  transition: height 0.35s ease;
}
.why-glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(30,39,91,0.13), 0 4px 12px rgba(30,39,91,0.07);
  border-color: transparent;
}
.why-glass-card:hover::before { height: 6px; }

/* Soft colored radial glow blob behind icon */
.why-glass-glow {
  position: absolute;
  top: -30px; left: -30px;
  width: 130px; height: 130px;
  background: radial-gradient(circle, var(--gc, #00b09b) 0%, transparent 70%);
  opacity: 0.1;
  border-radius: 50%;
  transition: all 0.4s ease;
  pointer-events: none;
}
.why-glass-card:hover .why-glass-glow { opacity: 0.18; transform: scale(1.5); }

/* Ghost number */
.why-glass-num {
  position: absolute;
  top: 14px; right: 18px;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 800;
  color: rgba(30,39,91,0.06);
  line-height: 1;
  transition: color 0.4s ease;
  user-select: none;
}
.why-glass-card:hover .why-glass-num { color: rgba(255,197,21,0.28); }

/* Icon */
.why-glass-icon {
  width: 54px; height: 54px;
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 18px;
  position: relative; z-index: 1;
  box-shadow: 0 6px 0 rgba(0,0,0,0.12), 0 10px 22px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.why-glass-card:hover .why-glass-icon { transform: scale(1.1) translateY(-4px); }

/* Title */
.why-glass-card h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
  position: relative; z-index: 1;
}
/* Description */
.why-glass-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  position: relative; z-index: 1;
}
/* Colored bottom reveal line using --gc */
.why-glass-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gc, var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  border-radius: 0 0 20px 20px;
}
.why-glass-card:hover .why-glass-line { transform: scaleX(1); }
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(255,197,21,0.15), rgba(30,39,91,0.08));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--gold); }
.why-card h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ── Why Horizontal Card (enhanced) ── */
.why-hcard {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  position: relative;
}
.why-hcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
/* Colored left band */
.why-hcard-band {
  width: 70px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #fff;
  transition: width 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}
.why-hcard-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: var(--transition);
}
.why-hcard:hover .why-hcard-band { width: 78px; }
.why-hcard:hover .why-hcard-band::after { opacity: 1; }
/* Body */
.why-hcard-body {
  flex: 1;
  padding: 20px 20px 20px 18px;
  position: relative;
}
/* Number badge */
.why-hcard-num {
  position: absolute;
  top: 14px; right: 16px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: rgba(30,39,91,0.07);
  line-height: 1;
  transition: var(--transition);
  user-select: none;
}
.why-hcard:hover .why-hcard-num { color: rgba(255,197,21,0.22); }
.why-hcard-body h5 {
  font-family: 'Playfair Display', serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
  padding-right: 36px;
}
.why-hcard-body p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Trust Bar */
.trust-bar {
  background: var(--navy);
  padding: 20px 0;
}
.trust-bar-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}
.trust-bar-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem; font-weight: 600;
}
.trust-bar-item .dot {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   DESTINATIONS
   ============================================ */
.destinations-section { background: var(--white); }
.dest-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 280px;
  cursor: pointer;
  transition: var(--transition);
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.dest-card:hover img { transform: scale(1.1); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,39,91,0.85) 0%, rgba(30,39,91,0.1) 60%, transparent 100%);
  transition: var(--transition);
}
.dest-card:hover .dest-overlay { background: linear-gradient(to top, rgba(30,39,91,0.92) 0%, rgba(30,39,91,0.2) 60%, transparent 100%); }
.dest-content {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
}
.dest-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: #fff; margin-bottom: 4px;
}
.dest-tag { font-size: 0.78rem; color: var(--gold); font-weight: 600; }
.dest-explore {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold);
  font-size: 0.82rem; font-weight: 700;
  margin-top: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
.dest-card:hover .dest-explore { opacity: 1; transform: translateY(0); }

.dest-card-lg { height: 400px; }

/* ============================================
   CUSTOM PACKAGE
   ============================================ */
.custom-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.custom-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(255,197,21,0.1) 0%, transparent 50%),
                    radial-gradient(circle at 20% 80%, rgba(74,144,226,0.1) 0%, transparent 50%);
}
/* custom-title on dark bg: white gradient */
.custom-title {
  background: linear-gradient(135deg, #fff 30%, var(--gold-light) 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* Trust pills */
.custom-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}
.custom-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.custom-trust-pill i { color: var(--gold); font-size: 0.75rem; }
.custom-trust-pill:hover { background: rgba(255,197,21,0.15); border-color: rgba(255,197,21,0.35); }

/* ── Step Cards ── */
.custom-step-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 22px 18px 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  height: 100%;
}
/* Colored top accent bar via --sc */
.csc-top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--sc, var(--gold));
  border-radius: var(--radius) var(--radius) 0 0;
  transition: height 0.35s ease;
}
.custom-step-card:hover .csc-top-bar { height: 5px; }
/* Ghost number */
.csc-num {
  position: absolute;
  top: 10px; right: 14px;
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 800;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  transition: color 0.4s ease;
  user-select: none;
}
.custom-step-card:hover .csc-num { color: rgba(255,255,255,0.12); }
/* Icon */
.csc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
  position: relative; z-index: 1;
  box-shadow: 0 5px 0 rgba(0,0,0,0.25), 0 8px 18px rgba(0,0,0,0.2);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.custom-step-card:hover .csc-icon { transform: scale(1.1) translateY(-4px); }
/* Title & desc */
.custom-step-card h5 { color: #fff; font-weight: 700; font-size: 0.95rem; margin-bottom: 6px; position: relative; z-index:1; }
.custom-step-card p   { color: rgba(255,255,255,0.6); font-size: 0.8rem; margin: 0; line-height: 1.6; position: relative; z-index:1; }
/* Hover: lift + glow border */
.custom-step-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
/* Bottom reveal line */
.csc-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--sc, var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  border-radius: 0 0 var(--radius) var(--radius);
}
.custom-step-card:hover .csc-line { transform: scaleX(1); }

/* Legacy (keep hidden) */
.custom-card { display: none; }


/* ============================================
   TRUST BAR MARQUEE
   ============================================ */
.trust-bar {
  background: var(--navy);
  padding: 18px 0;
  overflow: hidden;
}
.trust-bar-overflow {
  overflow: hidden;
  width: 100%;
}
.trust-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 0;
  animation: trustMarquee 28s linear infinite;
}
.trust-bar-overflow:hover .trust-track { animation-play-state: paused; }
@keyframes trustMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.88);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.trust-bar-item:last-child { border-right: none; }
.tbi-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 8px;
  font-size: 0.85rem;
  flex-shrink: 0;
  box-shadow: 0 3px 0 rgba(0,0,0,0.2);
}


.testimonials-section { background: var(--off-white); }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); border-color: var(--gold); transform: translateY(-4px); }
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
  color: var(--text-dark);
  font-size: 0.93rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 22px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 800; font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.testimonial-loc { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================
   FAQ
   ============================================ */
.faq-section { background: var(--white); }

/* ── FAQ Blob Image ── */
.faq-img-block {
  position: relative;
  margin: 28px 0 0;
  padding-left: 40px;
}
.faq-dashed-arc {
  position: absolute;
  left: 0; top: 8%;
  width: 42px; height: 84%;
  opacity: 0.7;
  pointer-events: none;
}
.faq-plane-icon {
  position: absolute;
  left: -2px; top: 50%;
  transform: rotate(-40deg) translateY(-50%);
  color: var(--gold);
  font-size: 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(255,197,21,0.45));
  animation: faqPlaneFly 3s ease-in-out infinite alternate;
  z-index: 2;
}
@keyframes faqPlaneFly {
  from { transform: rotate(-40deg) translateY(-50%) translateX(0); }
  to   { transform: rotate(-40deg) translateY(-50%) translateX(6px) translateY(-6px); }
}
/* ── FAQ Brush-stroke image shell (provides shadow, does NOT have filter) ── */
.faq-stroke-shell {
  position: relative;
  max-width: 340px;
  aspect-ratio: 4/3;
  transition: transform 0.4s ease;
}
.faq-stroke-shell:hover { transform: scale(1.02); }
/* The layer that clips to rounded rect AND applies turbulence filter */
.faq-stroke-outer {
  width: 100%; height: 100%;
  border-radius: 34% 66% 52% 48% / 48% 42% 58% 52%;
  overflow: hidden;
  /* SVG turbulence filter distorts the rounded edges into a brush stroke */
  filter: url(#brush-stroke-fx) drop-shadow(0 20px 40px rgba(30,39,91,0.22)) drop-shadow(0 6px 16px rgba(30,39,91,0.14));
  background: #f0f4ff;
}
.faq-blob-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.faq-stroke-shell:hover .faq-blob-img { transform: scale(1.1); }
/* keep the old .faq-blob-wrap hidden if it still exists anywhere */
.faq-blob-wrap { display: none; }

.faq-accordion .accordion-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  padding: 18px 22px;
  border: none;
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(255,197,21,0.08);
  color: var(--navy);
  box-shadow: none;
}
.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231E275B' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FFC515' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.faq-accordion .accordion-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  padding: 4px 22px 18px;
  background: rgba(255,197,21,0.04);
}

/* ============================================
   PAGE BANNER
   ============================================ */
.page-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 140px 0 100px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,16,43,0.85) 0%, rgba(30,39,91,0.6) 100%);
  z-index: 1;
}
.page-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.page-breadcrumb {
  margin: 0;
  font-size: 1.1rem;
}
.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.6);
  content: "/";
}
.page-breadcrumb .breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.page-breadcrumb .breadcrumb-item a:hover {
  color: var(--gold);
}
.page-breadcrumb .breadcrumb-item.active {
  color: var(--gold);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section { background: var(--off-white); }
.contact-card-wrapper {
  background: var(--navy);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(30,39,91,0.08);
  display: flex;
  flex-direction: column;
}
.contact-image-box {
  position: relative;
  height: 280px;
}
.contact-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}
.contact-info-badge {
  position: absolute;
  bottom: -20px;
  left: 30px;
  background: var(--gold);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 8px;
  font-family: 'Caveat', 'Playfair Display', cursive, serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(248,169,2,0.4);
  z-index: 2;
}
.contact-info-card {
  padding: 50px 30px 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  background: var(--navy);
}
.ci-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ci-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.ci-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gold);
  font-size: 1.1rem;
}
.ci-text {
  display: flex;
  flex-direction: column;
}
.ci-text span {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 4px;
}
.ci-text strong {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
}
.contact-form-wrapper {
  padding: 10px 10px 10px 30px;
}
.contact-form-styled .form-control,
.contact-form-styled .form-select {
  background-color: #f4f6fa;
  border: none;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 0.95rem;
  color: var(--navy);
  transition: all 0.3s ease;
  box-shadow: 2px 2px 5px #0000002a;
  border: 1px solid #0000001a;
}
.contact-form-styled input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
}
.contact-form-styled .form-select {
  color: #a0a8b8;
}
.contact-form-styled .form-select:not(:invalid) {
  color: var(--navy);
}
.contact-form-styled .form-control::placeholder {
  color: #a0a8b8;
}
.contact-form-styled .form-control:focus,
.contact-form-styled .form-select:focus {
  background: #fff;
  box-shadow: 0 0 0 2px var(--gold);
}
.btn-contact-submit {
  width: auto;
  min-width: 200px;
}
@media (max-width: 991px) {
  .contact-form-wrapper { padding: 30px 0 0 0; }
  .contact-info-badge { left: 20px; font-size: 1.2rem; }
}

/* ============================================
   MODALS
   ============================================ */
.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  background-color: rgba(0,0,0,0.05);
  border-radius: 50%;
  padding: 12px;
  transition: all 0.3s ease;
}
.modal-close-btn:hover {
  background-color: rgba(0,0,0,0.1);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}
footer .footer-logo { margin-bottom: 18px;  }
footer .footer-logo h4 { color: var(--gold); font-weight: 900; font-size: 1.5rem; }
footer .footer-about { font-size: 0.88rem; line-height: 1.75; max-width: 280px; }
footer .footer-heading {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,197,21,0.3);
  position: relative;
}
footer .footer-heading::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 40px; height: 2px;
  background: var(--gold);
}
footer .footer-links a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  padding: 5px 0;
  transition: var(--transition);
}
footer .footer-links a:hover { color: var(--gold); padding-left: 8px; }
footer .footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.88rem;
  margin-bottom: 14px;
}
footer .footer-contact-item .icon {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
footer .footer-social { display: flex; gap: 10px; margin-top: 20px; }
footer .social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  font-size: 1rem;
}
footer .social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  margin-top: 50px;
  font-size: 0.82rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}

/* ============================================
   STICKY WHATSAPP
   ============================================ */
.sticky-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.sticky-wa-btn {
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: var(--transition);
  animation: wa-pulse 2.5s ease-in-out infinite;
  text-decoration: none;
}
.sticky-wa-btn:hover { transform: scale(1.1); }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.3); }
  50%      { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 16px rgba(37,211,102,0); }
}
.sticky-wa-tooltip {
  background: var(--navy);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  display: none;
}
.sticky-wa:hover .sticky-wa-tooltip { display: block; }

/* ============================================
   SCROLL 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); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* stagger children */
.stagger-item { transition-delay: calc(var(--i,0) * 100ms); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width:991.98px) {
  .hero-img-wrapper { margin-top: 40px; }
  .hero-stat-card.card-2 { right: 0; }
  .enquiry-strip-inner { margin-top: 0; border-radius: var(--radius); }
  .about-exp-badge { right: 10px; }
  .section-padding { padding: 65px 0; }
}
@media (max-width:767.98px) {
  .hero-title { font-size: 2.1rem; }
  .hero-trust-badges { gap: 14px; }
  .trust-bar-items { gap: 20px; }
  .destination-grid-main { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns:1fr; }
  .about-features { grid-template-columns: 1fr; }
  .hero-stat-card { display: none; }
  .enquiry-strip-inner { padding: 24px 20px; }
}
@media (max-width:575.98px) {
  .nav-cta-group .btn-call { display: none; }
  .final-cta::before, .final-cta::after { font-size: 120px; }
  .announcement-bar .ticker-text{display: block;font-size: 0.7rem;}
  html{overflow-x: hidden;}
}


 /* ── 3D Icon Styles ── */
    .icon-3d {
      display:inline-flex;align-items:center;justify-content:center;
      width:64px;height:64px;border-radius:18px;
      font-size:1.6rem;flex-shrink:0;
      box-shadow:0 6px 0 rgba(0,0,0,0.15),0 8px 20px rgba(0,0,0,0.12);
      transition:all .3s ease;
      position:relative;top:0;
    }
    .icon-3d:hover{top:-3px;box-shadow:0 9px 0 rgba(0,0,0,0.15),0 12px 24px rgba(0,0,0,0.18);}

    .icon-3d-sm {
      display:inline-flex;align-items:center;justify-content:center;
      width:44px;height:44px;border-radius:12px;
      font-size:1.1rem;flex-shrink:0;
      box-shadow:0 4px 0 rgba(0,0,0,0.14),0 6px 14px rgba(0,0,0,0.1);
    }
    /* color presets */
    .ic-white   {background:linear-gradient(135deg,#ffffff,#ffffff);color:#000000;}
    .ic-teal   {background:linear-gradient(135deg,#00b09b,#0a7c6e);color:#fff;}
    .ic-gold   {background:linear-gradient(135deg,#FFC515,#e0830a);color:#fff;}
    .ic-navy   {background:linear-gradient(135deg,#1E275B,#3949ab);color:#fff;}
    .ic-red    {background:linear-gradient(135deg,#e74c3c,#c0392b);color:#fff;}
    .ic-green  {background:linear-gradient(135deg,#27ae60,#1e8449);color:#fff;}
    .ic-purple {background:linear-gradient(135deg,#8e44ad,#6c3483);color:#fff;}
    .ic-blue   {background:linear-gradient(135deg,#2980b9,#1a5276);color:#fff;}
    .ic-orange {background:linear-gradient(135deg,#e67e22,#ca6f1e);color:#fff;}
    .ic-pink   {background:linear-gradient(135deg,#e91e8c,#c2185b);color:#fff;}
    .ic-sky    {background:linear-gradient(135deg,#00b4d8,#0077b6);color:#fff;}

    /* Why-card icon override */
    .why-icon.icon-3d{width:64px;height:64px;margin-bottom:20px;}
    .why-card:hover .why-icon.icon-3d{top:-3px;}

    /* About feature icon */
    .about-feature-icon.icon-3d-sm{margin-top:2px;}

    /* Trust bar icon dot replacement */
    .trust-bar-item .tbi-icon{
      display:inline-flex;align-items:center;justify-content:center;
      width:28px;height:28px;border-radius:8px;
      font-size:0.85rem;flex-shrink:0;
      box-shadow:0 3px 0 rgba(0,0,0,0.2);
    }

    /* Hero stat icon upgrade */
    .hero-stat-icon.icon-3d-sm{width:44px;height:44px;}

    /* Custom section icon */
    .custom-card .icon-3d{width:60px;height:60px;font-size:1.5rem;margin-bottom:14px;border-radius:16px;}

    /* Section label icon */
    .sl-icon{
      display:inline-flex;align-items:center;justify-content:center;
      width:22px;height:22px;border-radius:6px;
      font-size:0.7rem;
      /* box-shadow:0 2px 0 rgba(0,0,0,0.15); */
    }