/* ============================================================
       DESIGN TOKENS
    ============================================================ */
:root {
  --mangrove: #1B3A2D;
  --emerald: #2D7A4F;
  --emerald-lt: #3D9B66;
  --gold: #C9923A;
  --gold-lt: #E5B06A;
  --ocean: #0D2233;
  --deepocean: #0a1410;
  --cream: #F8F5EF;
  --cream-dk: #EDE9E0;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-mid: #4A5568;
  --text-light: #8A9BB0;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, .08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, .14);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .18);
  --transition: 0.38s cubic-bezier(0.22, 1, 0.36, 1);

  --bg-dark: #0f1b16;
  --bg-card: #1a2b24;
  --gold: #C9923A;
  --gold-lt: #E5B06A;
  --gold-glow: rgba(201, 146, 58, 0.15);
  --text-light: #f0ebe3;
  --text-muted: rgba(255, 255, 255, 0.55);
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
}

/* ============================================================
       BASE
    ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

p {
  font-size: 14px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.18;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

.primary-color {
  color: var(--mangrove);
}

.secondar-color {
  color: var(--gold);
}

/* ============================================================
       UTILITY
    ============================================================ */
.section-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '—';
  margin: 0 .45em;
  opacity: .5;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--mangrove);
}

.section-title.light {
  color: var(--white);
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 560px;
}

.section-subtitle.light {
  color: rgba(255, 255, 255, .72);
}

/* Gold accent line */
.gold-rule {
  display: block;
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s var(--transition), transform .7s var(--transition);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.stagger>* {
  transition-delay: calc(var(--i, 0) * 90ms);
}

/* ============================================================
       NAVBAR
    ============================================================ */
#mainNav.homeNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 0rem 0;
  background: transparent;
}

#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 0rem 0;
  /* transition: background var(--transition), padding var(--transition), box-shadow var(--transition); */

  background: rgba(27, 58, 45, .97);
}



#mainNav.scrolled {
  background: rgba(27, 58, 45, .97);
  backdrop-filter: blur(16px);
  padding: 0rem 0;
  box-shadow: 0 2px 24px rgba(0, 0, 0, .22);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .55rem;
}

.nav-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.nav-logo .logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
}

.nav-logo .logo-text span {
  display: block;
  font-size: .62rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

.nav-logo img {
  width: 200px;
}

.navbar-nav .nav-link {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .82) !important;
  padding: .4rem .7rem !important;
  position: relative;
  transition: color var(--transition);
}

.navbar-nav {
  margin-right: 20px;
}

.btn-wa {
  margin-left: 10px;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: .7rem;
  right: .7rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.navbar-nav .nav-link:hover {
  color: var(--white) !important;
}

.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

.btn-wa {
  background: #25D366;
  color: var(--white) !important;
  border-radius: 50px;
  padding: .4rem 1rem !important;
  font-size: .78rem !important;
  font-weight: 600 !important;
  display: flex;
  align-items: center;
  gap: .35rem;
  transition: background var(--transition), transform var(--transition);
}

.btn-wa:hover {
  background: #1ebe59;
  transform: translateY(-1px);
}

.btn-book-nav {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--white) !important;
  border-radius: 50px;
  padding: .4rem 1.2rem !important;
  font-size: .78rem !important;
  font-weight: 600 !important;
  letter-spacing: .02em;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-book-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 146, 58, .45);
}


/* ============================================================
       HERO
    ============================================================ */
#hero {
  position: relative;
  width: 100%;
  height: calc(100svh + 160px);
  min-height: 780px;
  display: flex;
  align-items: center;
  overflow: visible;
  background: var(--ocean);
  isolation: isolate;
}

/* Hero Slider */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -60px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 40%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-1 {
  background-image: url('./images/img13.png');
}

.hero-slide-2 {
  background-image: url('./images/img16.png');
}

.hero-slide-3 {
  background-image: url('./images/img15.png');
}

/* @keyframes heroZoom {
      from {
        transform: scale(1.06);
      }

      to {
        transform: scale(1.0);
      }
    } */

/* ── Layer 1: Primary cinematic dark overlay (unchanged feel) ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  bottom: -60px;
  background: linear-gradient(to bottom,
      rgba(13, 34, 51, .45) 0%,
      rgba(13, 34, 51, .18) 38%,
      rgba(13, 34, 51, .52) 68%,
      rgba(13, 34, 51, .80) 84%,
      rgba(248, 245, 239, .0) 100%);
  z-index: 1;
}

/* ── Layer 2: The mist dissolve — wide elliptical radial fades ──
       These simulate how rising river fog diffuses light from below,
       dissolving the image into the cream page colour organically.    */
#hero::before {
  content: '';
  position: absolute;
  /* left: -10%;
      right: -10%; */
  /* Start well inside hero, extend into next section */
  bottom: -80px;
  height: 340px;
  z-index: 2;
  pointer-events: none;
  background:
    /* Central mist bloom — densest at the very bottom centre */
    radial-gradient(ellipse 90% 55% at 50% 100%,
      rgba(248, 245, 239, .96) 0%,
      rgba(248, 245, 239, .72) 28%,
      rgba(248, 245, 239, .35) 55%,
      transparent 100%),
    /* Left-side ground fog tendril */
    radial-gradient(ellipse 60% 45% at 18% 100%,
      rgba(232, 228, 218, .70) 0%,
      rgba(232, 228, 218, .35) 42%,
      transparent 100%),
    /* Right-side ground fog tendril */
    radial-gradient(ellipse 55% 40% at 82% 100%,
      rgba(232, 228, 218, .65) 0%,
      rgba(232, 228, 218, .30) 45%,
      transparent 100%),
    /* Mid-left secondary bloom */
    radial-gradient(ellipse 48% 35% at 35% 95%,
      rgba(248, 245, 239, .50) 0%,
      transparent 100%),
    /* Mid-right secondary bloom */
    radial-gradient(ellipse 44% 32% at 68% 92%,
      rgba(248, 245, 239, .45) 0%,
      transparent 100%);
  /* Feather the top edge of this mist layer so it doesn't start sharply */
  -webkit-mask-image: linear-gradient(to bottom,
      transparent 0%,
      rgba(0, 0, 0, .08) 12%,
      rgba(0, 0, 0, .40) 30%,
      rgba(0, 0, 0, .80) 58%,
      black 100%);
  mask-image: linear-gradient(to bottom,
      transparent 0%,
      rgba(0, 0, 0, .08) 12%,
      rgba(0, 0, 0, .40) 30%,
      rgba(0, 0, 0, .80) 58%,
      black 100%);
  /* Very slight blur to soften the ellipse edges further */
  filter: blur(2px);
}

/* ── Layer 3: Gossamer veil — a wide soft cream curtain ──
       This is the final, smoothest cover that eases the image to
       exactly the cream background colour of the next section.         */
#hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100px;
  height: 260px;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(to bottom,
      transparent 2%,
      rgba(248, 245, 239, .0) 15%,
      rgba(248, 245, 239, .18) 22%,
      rgba(248, 245, 239, .52) 44%,
      rgba(248, 245, 239, .82) 56%,
      rgba(248, 245, 239, .98) 70%,
      var(--cream) 100%);
  /* Irregular mask so the fade isn't a flat horizontal line —
         the opacity peaks shift left/right mimicking water-surface refraction */
  -webkit-mask-image:
    radial-gradient(ellipse 140% 100% at 50% 100%, black 50%, transparent 100%);
  mask-image:
    radial-gradient(ellipse 140% 100% at 50% 100%, black 50%, transparent 100%);
}

/* ── Layer 4: Deep shadow anchor ──
       A dark colour-matched shadow at the very base of the hero image
       so the image doesn't look "floating" above the page. This
       matches the dark mangrove treeline merging into ground.          */
.hero-shadow-anchor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 60px;
  height: 180px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(27, 58, 45, .35) 45%,
      rgba(27, 58, 45, .58) 68%,
      rgba(27, 58, 45, .20) 88%,
      transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom,
      transparent 0%,
      black 35%,
      black 72%,
      transparent 100%);
  mask-image: linear-gradient(to bottom,
      transparent 0%,
      black 35%,
      black 72%,
      transparent 100%);
  filter: blur(18px);
}

/* Letterbox gold lines — the signature element */
.hero-letterbox-top,
.hero-letterbox-bot {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--gold-lt) 80%, transparent 100%);
  opacity: .7;
}

.hero-letterbox-top {
  top: 72px;
}

/* Raised well above the dissolve zone */
.hero-letterbox-bot {
  bottom: 280px;
}

.hero-content {
  position: relative;
  z-index: 6;
  /* Shift content upward so it sits well above the dissolve zone */
  margin-bottom: 160px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 146, 58, .35);
  border-radius: 50px;
  padding: .35rem 1rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.07;
  letter-spacing: -.01em;
  margin-bottom: 1.25rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-lt);
}

.hero-sub {
  font-size: clamp(.9rem, 1.6vw, 1.1rem);
  color: rgba(255, 255, 255, .78);
  font-weight: 300;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2rem;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--white);
  border: none;
  padding: .45rem 2rem;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: transform var(--transition), box-shadow var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.btn-hero-primary:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(201, 146, 58, .52);
}

.btn-hero-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .45);
  padding: .45rem 2rem;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.btn-hero-secondary:hover {
  color: var(--white);
  border-color: var(--gold);
  background: rgba(201, 146, 58, .12);
  transform: translateY(-3px);
}

/* Floating stats — lifted above dissolve zone */
.hero-stats {
  position: absolute;
  bottom: 130px;

  left: 0;
  right: 0;
  z-index: 5;
}

.hero-stat {
  text-align: center;
  padding: .5rem 1rem;
  /* background: #09190c70; */
}

.hero-stat .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero-stat .stat-label {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-top: .2rem;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, .2);
  align-self: center;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 230px;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  z-index: 2;
}

.scroll-indicator span {
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .5), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  height: 100%;
  background: var(--gold);
  animation: scrollDrop 1.8s ease-in-out infinite;
}

@keyframes scrollDrop {
  0% {
    top: -100%;
  }

  100% {
    top: 200%;
  }
}

.offer-banner {
  padding-top: 110px;
}

/* ============================================================
       BOOKING CARD
    ============================================================ */
#booking {
  position: relative;
  z-index: 20;
  /* Pull the card up into the dissolve zone so it appears to
         emerge naturally from the dissipating hero image */
  margin-top: -100px;
  /* padding-bottom: 2rem; */
}

.booking-glass {
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(201, 146, 58, .18);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 72px rgba(13, 34, 51, .18);
  padding: 1rem 1.5rem;
}

.booking-glass label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: .4rem;
  display: block;
}

.booking-glass .form-control,
.booking-glass .form-select {
  border: 1.5px solid #E2DDD6;
  border-radius: var(--radius-sm);
  padding: .5rem 1rem;
  font-size: .8rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.booking-glass .form-control:focus,
.booking-glass .form-select:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(45, 122, 79, .12);
  outline: none;
}

.btn-search {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-lt));
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: .5rem 1.5rem;
  font-size: .88rem;
  font-weight: 600;
  width: 100%;
  letter-spacing: .04em;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

.btn-search:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 122, 79, .38);
}

/* ============================================================
       WHY CHOOSE US
    ============================================================ */
#why {
  padding: 3rem 0;
  background: var(--cream);
}

.why-card {
  /* background: var(--white); */
  background:
    linear-gradient(rgba(245, 250, 251, 0.7), rgba(248, 252, 254, 0.9)),
    url('images/back-pattent.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius-sm);
  padding: 2rem 1.6rem;
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: 100%;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(27, 58, 45, .12);
  border-color: rgba(201, 146, 58, .25);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(45, 122, 79, .1), rgba(45, 122, 79, .18));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.65rem;
  color: var(--emerald);
  transition: background var(--transition), color var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--white);
}

.why-card h5 {
  font-size: 1.15rem;
  color: var(--mangrove);
  margin-bottom: .5rem;
}

.why-card p {
  font-size: .85rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ============================================================
       PACKAGES
    ============================================================ */
#packages {
  /* padding: 6rem 0; */
  background: var(--mangrove);
  /* background-image: url('./images/back-pattent.png'); */
  background:
    linear-gradient(rgba(248, 255, 238, 0.8), rgba(236, 250, 237, 0.8)),
    url('images/back.webp');
  /* background-size: cover; */
  background-position: center;
  /* background-repeat: no-repeat; */
  position: relative;
  overflow: hidden;
}

#packages::before {
  /* content: ''; */
  /* position: absolute; */
  /* top: -80px; */
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 122, 79, .25) 0%, transparent 70%);
}


/* ============================================================
       ABOUT
    ============================================================ */
#about {
  padding: 6rem 0;
  background: var(--cream);
}

.about-img-collage {
  position: relative;
  height: 520px;
}

.collage-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 82%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.collage-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  height: 52%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--cream);
}

.collage-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-badge {
  position: absolute;
  top: 48%;
  left: 58%;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: 0 12px 40px rgba(201, 146, 58, .38);
  z-index: 5;
  border: 3px solid var(--cream);
}

.collage-badge .badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.collage-badge .badge-label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .85;
}

.counter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.counter-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--gold);
}

.counter-item .c-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--mangrove);
  line-height: 1;
}

.counter-item .c-label {
  font-size: .78rem;
  color: var(--text-mid);
  margin-top: .25rem;
  font-weight: 500;
}

/* ============================================================
       GALLERY
    ============================================================ */
#gallery {
  padding: 6rem 0;
  background: var(--ocean);
  /* background-image: url('./images/back.webp'); */
  background:
    linear-gradient(rgba(60, 79, 34, 0.9), rgba(37, 75, 39, 0.9)),
    url('images/back.webp');
  background-repeat: no-repeat;

}

.gallery-popup {
  cursor: pointer;
}

#galleryModal .modal-dialog {
  max-width: 95vw;
  width: auto;
  margin: auto;
}

#galleryModal .modal-content {
  width: auto;
  background: transparent;
  box-shadow: none;
}

#galleryModalImg {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
}

body.modal-open {
  overflow: hidden !important;
  padding-right: 0 !important;
}


.masonry-grid {
  columns: 4 240px;
  gap: 1rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform .5s var(--transition);
}

.masonry-item:hover img {
  transform: scale(1.06);
}

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 58, 45, .75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  pointer-events: none;
}

.masonry-item:hover .masonry-overlay {
  opacity: 1;
}

.masonry-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
}

/* ============================================================
       TESTIMONIALS
    ============================================================ */
#testimonials {
  padding: 6rem 0;
  background: var(--cream);
}

.testi-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.testi-track {
  display: flex;
  gap: 0.5rem;
  width: max-content;
  will-change: transform;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201, 146, 58, .12);

  flex: 0 0 calc((100vw - 120px) / 3);
  max-width: 380px;
  min-width: 320px;
  transition: box-shadow var(--transition);
}

.testi-card:hover {
  box-shadow: 0 16px 48px rgba(27, 58, 45, .12);
}

.testi-stars {
  color: #FBBF24;
  font-size: .85rem;
  margin-bottom: 1rem;
}

.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testi-text::before {
  content: '\201C';
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 0;
  vertical-align: -.3em;
  margin-right: .1em;
}

.testi-text::after {
  content: '\201D';
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 0;
  vertical-align: -.3em;
  margin-left: .1em;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-lt);
}

.testi-name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--mangrove);
}

.testi-origin {
  font-size: .72rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: .25rem;
}

.testi-origin i {
  color: var(--gold);
}

.testi-controls {
  margin-top: 2rem;
  display: flex;
  gap: .75rem;
}

.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--emerald);
  background: transparent;
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.testi-btn:hover {
  background: var(--emerald);
  color: var(--white);
}

/* ===============================
   TESTIMONIAL RESPONSIVE
================================*/

@media (max-width:991px) {

  .testi-card {
    flex: 0 0 calc(50vw - 36px);
    min-width: 300px;
  }

}

@media (max-width:767px) {

  .testi-card {
    flex: 0 0 calc(100vw - 40px);
    min-width: unset;
    max-width: none;
  }

  .testi-controls {
    justify-content: center;
  }

}

/* ============================================================
       TRUST / AWARDS
    ============================================================ */
#trust {
  padding: 4rem 0;
  background: var(--white);
  border-top: 1px solid var(--cream-dk);
  border-bottom: 1px solid var(--cream-dk);
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
  text-align: center;
}

.trust-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  color: var(--emerald);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.trust-badge:hover .trust-icon {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(45, 122, 79, .22);
}

.trust-label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--mangrove);
  letter-spacing: .04em;
}

/* ============================================================
       INSTAGRAM MOMENTS
    ============================================================ */
#moments {
  padding: 6rem 0;
  background: var(--cream);
}

.moments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.moment-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.moment-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.moment-item img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  transition: transform .5s var(--transition);
  display: block;
}

.moment-item:hover img {
  transform: scale(1.07);
}

.moment-hover {
  position: absolute;
  inset: 0;
  background: rgba(27, 58, 45, .55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.moment-item:hover .moment-hover {
  opacity: 1;
}

.moment-hover i {
  font-size: 1.8rem;
  color: var(--white);
}

.moment-hover span {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
}

/* ============================================================
       CTA BANNER
    ============================================================ */
#cta {
  padding: 7rem 0;
  background-image: url('./images/img2.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 34, 51, .82) 0%, rgba(27, 58, 45, .72) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.btn-cta-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--white);
  border: none;
  padding: .9rem 2.2rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-cta-primary:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(201, 146, 58, .52);
}

.btn-cta-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .45);
  padding: .9rem 2.2rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.btn-cta-secondary:hover {
  color: var(--white);
  border-color: var(--gold);
  background: rgba(201, 146, 58, .12);
  transform: translateY(-3px);
}

/* ============================================================
       FOOTER
    ============================================================ */
#footer {
  background: var(--deepocean);
  padding: 5rem 0 0;
}

.footer-logo .logo-text {
  color: var(--white);
}

.footer-tagline {
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
  margin-top: .75rem;
}

.footer-social {
  display: flex;
  gap: .65rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  font-size: .95rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.footer-links a {
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
  transition: color var(--transition), padding-left var(--transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}

.footer-links a:hover {
  color: var(--gold-lt);
  padding-left: 4px;
}

.footer-links a i {
  font-size: .65rem;
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .85rem;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: .12rem;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: .83rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.55;
}

.footer-map {
  width: 100%;
  height: 160px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .08);
  margin-top: .75rem;
  font-size: .8rem;
  color: rgba(255, 255, 255, .4);
  flex-direction: column;
  gap: .4rem;
}

.footer-map i {
  font-size: 1.5rem;
  color: var(--gold);
}

.newsletter-input-group {
  display: flex;
  gap: .5rem;
}

.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: .65rem 1rem;
  font-size: .83rem;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, .35);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--gold);
}

.btn-newsletter {
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: .65rem 1.1rem;
  font-size: .83rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background var(--transition);
}

.btn-newsletter:hover {
  background: var(--gold-lt);
  color: var(--white);
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .75rem;
}

.payment-icon {
  background: rgba(255, 255, 255, .08);
  border-radius: 4px;
  padding: .25rem .55rem;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .55);
  border: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 1.5rem 0;
  margin-top: 3.5rem;
}

.footer-bottom-text {
  font-size: .75rem;
  color: rgba(255, 255, 255, .35);
}

/* ============================================================
       FLOATING BUTTONS
    ============================================================ */
.fab-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  animation: waPulse 2.4s ease infinite;
  transition: transform var(--transition);
}

.fab-wa:hover {
  color: var(--white);
  transform: scale(1.1);
  animation: none;
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  }

  50% {
    box-shadow: 0 6px 36px rgba(37, 211, 102, .7);
  }
}

.btn-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 1000;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--mangrove);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.btn-top.show {
  opacity: 1;
  pointer-events: auto;
}

.btn-top:hover {
  color: var(--white);
  transform: translateY(-3px);
  background: var(--emerald);
}

/* ============================================================
       OFFCANVAS
    ============================================================ */
.offcanvas {
  background: var(--mangrove);
  z-index: 99999;
}

.offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.offcanvas .nav-link {
  color: rgba(255, 255, 255, .8) !important;
  padding: .7rem 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.offcanvas .nav-link:hover {
  color: var(--gold-lt) !important;
}

.offcanvas .btn-close {
  filter: invert(1) opacity(.6);
}

/* ============================================================
       RESPONSIVE TWEAKS
    ============================================================ */
@media (max-width: 991px) {
  .hero-stats {
    position: absolute;
    bottom: 190px;
  }

  #hero {
    height: auto;
    min-height: 100svh;
    padding: 7rem 0 260px;
  }

  .hero-letterbox-bot {
    display: none;
  }

  .scroll-indicator {
    display: none;
  }

  .hero-content {
    margin-bottom: 0;
  }

  .about-img-collage {
    height: 340px;
    margin-bottom: 2rem;
  }

  .masonry-grid {
    columns: 2 160px;
  }

  .moments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .moment-item:nth-child(1) {
    grid-column: span 2;
  }

  #booking {
    margin-top: -180px;
  }
}

@media (max-width: 575px) {
  #hero {
    padding: 7rem 0 240px;
  }

  #why {
    padding: 0rem 0;
    background: var(--cream);
  }

  #gallery {
    padding: 2rem 0;
  }

  #booking {
    margin-top: -70px;
  }

  #testimonials {
    padding: 3rem 0;
  }

  #cta {
    padding: 3rem 0;
  }

  #footer {
    padding: 2rem 0;
  }

  .hero-stats {
    bottom: 100px;
  }

  .masonry-grid {
    columns: 2 120px;
  }

  .booking-glass {
    padding: 1.5rem;
  }

  .collage-badge {
    left: auto;
    right: 0.5rem;
  }

  .moments-grid {
    grid-template-columns: 1fr 1fr;
  }

  .counter-grid {
    grid-template-columns: 1fr 1fr;
  }

  .offer-banner {
    padding-top: 40px;
    z-index: 9999999 !important;
  }
}

/* ripple */
.ripple-btn {
  position: relative;
  overflow: hidden;
}

.ripple-btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  transform: scale(0);
  animation: rippleAnim .55s linear;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}






/* ----- global luxury base ----- */


/* .offers-section {
      padding: 4rem 0 5rem;
      background: linear-gradient(145deg, #eae3d7 0%, #f8f4ed 100%);
    } */

/* ----- section header (elegant) ----- */
.offers-header {
  margin-bottom: 3rem;
  padding-top: 50px;
  position: relative;
}

.offers-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #6d7d6a;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.offers-title {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #15281d;
}

.offers-subtitle {
  font-size: 1rem;
  color: #546b58;
  max-width: 600px;
  margin: 0.2rem auto 0;
  opacity: 0.8;
}

/* ----- offer card: premium glassmorphism ----- */
.offer-card {
  background: rgba(255, 248, 240, 0.40);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius-md);
  ;
  border: 1px solid rgba(255, 250, 240, 0.5);
  box-shadow: 0 20px 40px -14px rgba(20, 40, 20, 0.15), 0 8px 24px -8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s cubic-bezier(0.15, 0.85, 0.35, 1), box-shadow 0.4s ease;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
  position: relative;
  will-change: transform;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 48px -18px rgba(20, 50, 30, 0.25), 0 12px 28px -10px rgba(0, 0, 0, 0.06);
}

/* ----- image wrapper: 16:9 ratio ----- */
.card-img-wrap {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  background: #1a2a1e;
  border-radius: var(--radius-md);
  ;
}

.card-img-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  /* object-fit: contain; */
}

.offer-card {
  display: flex;
  flex-direction: column;
}

.card-img-wrap {
  flex: 0 0 auto;
}

.offer-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  ;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.offer-card:hover::after {
  opacity: 1;
}

.container {
  overflow: hidden;
}

.row {
  --bs-gutter-y: 1.8rem;
}

/* ----- premium badge overlay ----- */
.offer-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  background: rgba(10, 30, 20, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 240, 0.25);
  color: #f5efe6;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.35rem 1rem;
  border-radius: 60px;
  font-size: 0.65rem;
  text-transform: uppercase;
  box-shadow: 0 6px 12px -6px rgba(0, 0, 0, 0.3);
  transition: all 0.2s;
}

.offer-card:hover .offer-badge {
  transform: scale(1.02);
  background: rgba(10, 30, 20, 0.85);
}

.offer-discount {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  background: rgba(200, 70, 40, 0.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fcf6ed;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 60px;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 215, 180, 0.3);
  box-shadow: 0 6px 14px -6px rgba(150, 40, 20, 0.3);
  transition: all 0.2s;
}

.offer-card:hover .offer-discount {
  transform: scale(1.02);
}

.card-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(20, 30, 20, 0.3), transparent);
  pointer-events: none;
  border-radius: 0 0 0px 0px;
  z-index: 2;
}

.card-img-wrap {
  background: #0f1a12;
}

/* ----- Fade-up animation (CSS only) ----- */
.offer-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.15, 0.85, 0.35, 1), box-shadow 0.4s ease;
}

.offer-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----- Bootstrap Carousel Customization ----- */
.carousel-inner {
  padding: 0 0.5rem;
}

.carousel-item .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(45, 122, 79, 0.8);
  border-radius: 50%;
  padding: 1.2rem;
  background-size: 60% 60%;
}

.carousel-indicators {
  position: relative;
  bottom: 0;
  margin-top: 0.8rem;
  gap: 0.5rem;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 2%;
  background-color: rgba(45, 122, 79, 0.3);
  border: none;
  margin: 0;
  transition: all 0.3s ease;
}

.carousel-indicators button.active {
  background-color: #2d7a4f;
  transform: scale(1.2);
}

/* ----- Responsive: Hide/Show ----- */
.desktop-grid {
  display: block;
}

.mobile-carousel {
  display: none;
}

/* Tablet & Mobile: Show carousel, hide desktop grid */
@media (max-width: 991.98px) {
  .desktop-grid {
    display: none;
  }

  .mobile-carousel {
    display: block;
  }
}

/* Mobile specific - 1 card per slide */
@media (max-width: 576px) {
  .offers-section {
    padding: 0rem 0 3rem;
  }

  .offers-header {
    padding-top: 20px;
  }

  .offers-title {
    font-size: 1.9rem;
  }

  .offer-card {
    border-radius: var(--radius-md);
    ;
  }

  .card-img-wrap {
    border-radius: var(--radius-md);
    ;
  }

  /* Mobile: hide second column */
  .carousel-item .col-md-6.d-md-block {
    display: none !important;
  }
}

/* Tablet: 2 cards per slide */
@media (min-width: 577px) and (max-width: 991.98px) {
  .carousel-item .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex !important;
  }

  /* Hide the duplicate card on tablet */
  .carousel-item .d-lg-none {
    display: flex !important;
  }
}



/* ----- global reset & luxury base ----- */

/* .section-outer {
      background: linear-gradient(145deg, #eae3d7 0%, #f8f4ed 100%);
      padding: 4rem 0 5rem;
      position: relative;
    }  */

/* glassmorphism card base */
.package-card {
  background: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius-md);
  ;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 40px -12px rgba(0, 20, 10, 0.15), 0 8px 24px -8px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  will-change: transform;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 48px -16px rgba(0, 30, 20, 0.25), 0 12px 28px -8px rgba(0, 0, 0, 0.08);
}

/* image wrapper – 16:9 ratio */
.package-img-wrap {
  position: relative;
  padding-top: 56.25%;
  /* 16:9 */
  overflow: hidden;
  background: #d9d0c0;
  border-radius: 10px 10px 0 0;
}

.package-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0, 0, 1);
  will-change: transform;
}

.package-card:hover .package-img-wrap img {
  transform: scale(1.04);
}

/* badges */
.badge-top-left {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  background: rgba(10, 30, 20, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 240, 0.3);
  color: #f5efe6;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.4rem 1rem;
  border-radius: 60px;
  font-size: 0.7rem;
  text-transform: uppercase;
  box-shadow: 0 6px 12px -6px rgba(0, 0, 0, 0.2);
  transition: all 0.2s;
}

.badge-top-right {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  background: rgba(200, 70, 40, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fcf6ed;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 60px;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 215, 180, 0.3);
  box-shadow: 0 6px 14px -6px rgba(150, 40, 20, 0.3);
  transition: all 0.2s;
}

.package-card:hover .badge-top-left,
.package-card:hover .badge-top-right {
  transform: scale(1.02);
}

/* card body */
.package-body {
  padding: 1rem 1rem 1.2rem;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;

  background:
    linear-gradient(rgba(245, 250, 251, 0.9), rgba(248, 252, 254, 0.8)),
    url('images/back-pattent.png');

  /* background:
        linear-gradient(rgba(248, 255, 238, 0.8), rgba(236, 250, 237, 0.8)),
        url('images/Add-a-heading-1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */

}

.package-title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #1f2e26;
  margin-bottom: 0.3rem;
}

.package-description {
  font-size: 0.9rem;
  color: #3d4d42;
  line-height: 1.5;
  opacity: 0.85;
}

.package-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  margin: 0.6rem 0 0.8rem;
  font-size: 0.8rem;
  color: #2f4035;
}

.package-highlights i {
  color: #2a6b4a;
  margin-right: 0.25rem;
  font-size: 0.9rem;
}

.package-price-area {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.6rem 0.8rem;
  margin-top: 0.2rem;
}

.old-price {
  font-size: 0.85rem;
  color: #8a7a6a;
  text-decoration: line-through;
  opacity: 0.7;
}

.current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #153523;
  letter-spacing: -0.02em;
}

.save-amount {
  background: #d9e6d9;
  padding: 0.15rem 0.8rem;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #1a4a2e;
  letter-spacing: 0.02em;
}

.package-countdown {
  margin: 0.5rem 0 0.1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #5d3f2b;
  background: rgba(200, 180, 160, 0.2);
  padding: 0.3rem 1rem;
  border-radius: 60px;
  display: inline-block;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 215, 180, 0.2);
}

.btn-group-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.btn-primary-premium {
  background: #1f3d2e;
  border: none;
  border-radius: 60px;
  /* padding: 0.2rem 1rem; */
  font-weight: 500;
  font-size: 0.85rem;
  color: #f6efe6;
  transition: all 0.2s;
  box-shadow: 0 4px 10px -4px rgba(20, 50, 30, 0.2);
  flex: 1 0 auto;
}

.btn-primary-premium:hover {
  background: #2b4f3a;
  color: #fff;
  transform: scale(1.02);
  box-shadow: 0 8px 18px -6px rgba(20, 60, 30, 0.3);
}

.btn-outline-whatsapp {
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 60px;
  padding: 0.2rem 1rem;
  font-weight: 500;
  font-size: 0.85rem;
  color: #1a4d2a;
  transition: all 0.2s;
  flex: 1 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.btn-outline-whatsapp i {
  font-size: 1rem;
  color: #25b86a;
}

.btn-outline-whatsapp:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: #25b86a;
  transform: scale(1.02);
}

/* ripple effect (simple) */
.btn-ripple {
  position: relative;
  overflow: hidden;
}

/* section heading */
.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #6d7d6a;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #15281d;
}

.section-subtitle {
  font-size: 14px;
  color: #546b58;
  max-width: 600px;
  margin: 0.2rem auto 0;
  opacity: 0.8;
}

/* cards grid – bootstrap handles it, but we enforce no gaps */
.row.gap-4 {
  --bs-gutter-y: 1.5rem;
}

/* no empty spaces */
.package-card .package-body {
  flex: 1;
}

/* responsive fine-tune */
@media (max-width: 576px) {
  .section-title {
    font-size: 1.9rem;
  }

  .package-title {
    font-size: 1.1rem;
  }

  .current-price {
    font-size: 1.3rem;
  }
}

/* fade-up animation (JS triggers) */
.package-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.15, 0.85, 0.35, 1), box-shadow 0.35s ease, transform 0.25s ease;
}

.package-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* badge hover micro */
.badge-top-left,
.badge-top-right {
  transition: all 0.25s ease;
}

/* ensure card height consistency */
.h-100 {
  height: 100% !important;
}



/* package detail page */

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #eef2f6;
}

::-webkit-scrollbar-thumb {
  background: var(--mangrove);
  border-radius: 12px;
}



a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

.singlePackages {
  padding-top: 80px;
}

.badge-verified {
  background: rgba(200, 180, 160, 0.2);
  color: #5d3f2b;
  border: 1px solid #2563EB20;
  border-radius: 60px;
  padding: 0.2rem 0.8rem;
  font-size: 0.65rem;
  font-weight: 600;
}

/* .btn-primary-soft {
      background: #2563EB;
      border: none;
      color: white;
      font-weight: 600;
      padding: 0.65rem 1.6rem;
      border-radius: 60px;
      transition: all 0.2s ease;
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    } */

/* .btn-primary-soft:hover {
      background: #1d4ed8;
      transform: scale(1.01);
    } */

.btn-outline-premium {
  border: 1.5px solid #2563EB;
  background: transparent;
  color: #2563EB;
  border-radius: 60px;
  font-weight: 600;
  padding: 0.55rem 1.4rem;
  transition: all 0.2s;
}

.btn-outline-premium:hover {
  background: #2563EB;
  color: white;
}

.card-premium {
  border: none;
  border-radius: 10px;
  background: rgba(255, 254, 249, 0.715);
  /* background: transparent; */
  transition: all 0.25s ease;
  /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02); */
  overflow: hidden;
}

.card-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.card-premium p {
  font-size: 13px;
}

.price-tag {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--ocean);
}

.old-price {
  font-size: 1rem;
  color: #9ca3af;
  text-decoration: line-through;
  margin-left: 0.5rem;
}

.breadcrumb-custom {
  font-size: 0.8rem;
  color: #6b7280;
}

.breadcrumb-custom a {
  color: var(--mangrove);
  font-weight: 700;
}

.breadcrumb-custom a:hover {
  text-decoration: underline;
}

/* main image + thumbnails */
.feature-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.feature-image img {
  width: 100%;
  max-height: 320px;
  /* object-fit:cover; */
  border-radius: 10px;
  transition: 0.3s;
}

.thumb-container {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.thumb-container .thumb {
  width: 80px;
  height: 60px;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: 0.2s;
  opacity: 0.6;
}

.thumb-container .thumb:hover {
  opacity: 0.9;
}

.thumb-container .thumb.active {
  border-color: #2563EB;
  opacity: 1;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.thumb-container .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width:576px) {
  .thumb-container .thumb {
    width: 60px;
    height: 50px;
  }
}

.bg-custom {
  background: linear-gradient(135deg, var(--emerald), var(--mangrove));
  margin-bottom: 30px;
}

/* timeline with food details */
.timeline-item {
  border-left: 3px solid var(--emerald);
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 1.8rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--emerald);
  border-radius: 60px;
  border: 2px solid white;
}

.timeline-item .day-badge {
  background: #2563EB10;
  color: var(--emerald);
  font-weight: 600;
  padding: 0.2rem 0.8rem;
  border-radius: 40px;
  font-size: 0.75rem;
}

.food-detail {
  background: #f8fafc;
  border-radius: 8px;
  padding: 0.8rem 1.2rem;
  margin-top: 0.6rem;
  border-left: 3px solid var(--gold-lt);
}

.food-detail p {
  font-size: 13px;
  padding: 0;
  margin: 0;
  margin-bottom: 5px;
}

.food-detail .meal-tag {
  display: inline-block;
  background: #2563EB10;
  color: #2563EB;
  font-weight: 600;
  font-size: 0.7rem;
  padding: 0.15rem 0.7rem;
  border-radius: 40px;
  margin-right: 0.4rem;
}




.toast-premium {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #111827;
  color: white;
  padding: 0.6rem 1.8rem;
  border-radius: 80px;
  font-weight: 500;
  z-index: 999;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  font-size: 0.9rem;
}

.toast-premium.show {
  opacity: 1;
}

/* Similar packages card */
.similar-card {
  border-radius: 5px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
}

.similar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.similar-card img {
  height: 180px;
  object-fit: cover;
  width: 100%;
}

.similar-card .card-body {
  padding: 1rem 1.2rem;
}

.singlePackages {
  background:
    linear-gradient(rgba(248, 255, 238, 0.8), rgba(236, 250, 237, 0.8)),
    url('images/back.webp');

}




/* ============================================
       CONTACT HERO
    ============================================ */

.contact {
  background:
    linear-gradient(rgba(245, 250, 251, 0.7), rgba(248, 252, 254, 0.9)),
    url('images/back.webp');
  /* background-size: cover; */
  background-position: center;
  /* background-repeat: no-repeat; */
}

.contact-hero {
  padding: 120px 0 50px;
  background: linear-gradient(135deg, #1e4919 0%, #395419 100%);
  border-bottom: 1px solid rgba(201, 146, 58, 0.08);
}

.contact-hero h1 {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 600;
  color: #fff;
}

.contact-hero h1 span {
  color: var(--gold);
}

.contact-hero .subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
}

/* ============================================
       CONTACT INFO CARDS
    ============================================ */
.contact-info-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.3s ease;
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 146, 58, 0.2);
  /* box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2); */
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}

.contact-info-card .icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(201, 146, 58, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.contact-info-card h6 {
  font-weight: 600;
  /* color: #fff; */
  margin-bottom: 0.3rem;
}

.contact-info-card p {
  /* color: var(--text-muted); */
  font-size: 0.9rem;
  margin-bottom: 0;
}

.contact-info-card a {
  /* color: var(--text-muted); */
  text-decoration: none;
  transition: 0.2s;
}

.contact-info-card a:hover {
  color: var(--gold-lt);
}

/* ============================================
       CONTACT FORM
    ============================================ */
.contact-form-wrap {
  background: var(--white);
  border-radius: 10px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.contact-form-wrap .form-label {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 5px !important;
  color: var(--text-mid);
}

.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
  /* background: #f2f7f5 !important; */
  border: 1px solid rgba(71, 69, 69, 0.34);
  /* color: #fff !important; */
  padding: 0.4rem 1rem;
  border-radius: 5px;
  transition: 0.3s;
}

.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 146, 58, 0.1);
}

.contact-form-wrap .form-control::placeholder {
  color: rgba(50, 50, 50, 0.745);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: #0f1b16;
  border: none;
  padding: 0.5rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  transform: scale(1.02);
  box-shadow: 0 0 40px rgba(201, 146, 58, 0.25);
  color: #0f1b16;
}

/* ============================================
       MAP SECTION
    ============================================ */
.map-section {
  padding: 40px 0;
}

.map-container {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  display: block;
  filter: grayscale(0.3) invert(0.1);
}

@media (max-width:576px) {
  .contact-form-wrap {
    padding: 10px;
  }
}


/* privacy policy */

.privacy-policy {
  margin-top: 100px !important;
  margin-bottom: 20px;
}

.privacy-container {
  max-width: 1080px;
  margin: 0 auto;

  background: #ffffff;
  padding: 1rem 3rem;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.privacy-policy h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f1b16;
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}

.privacy-policy .last-updated {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e9edf2;
  padding-bottom: 1rem;
}

.privacy-policy h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f1b16;
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
}

.privacy-policy h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f1b16;
  margin-top: 1.4rem;
  margin-bottom: 0.4rem;
}

.privacy-policy p {
  margin-bottom: 0.8rem;
  font-size: 14px;
}

.privacy-policy ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  font-size: 14px;
}

ul li {
  margin-bottom: 0.3rem;
}

.contact-block {
  background: #f1f5f9;
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.contact-block p {
  margin-bottom: 0.2rem;
}

.footer-note {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid #e9edf2;
  font-size: 0.92rem;
  color: #334155;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.2rem;
  font-size: 14px;
}

table th,
table td {
  border: 1px solid #e2e8f0;
  padding: 0.3rem 0.6rem;
  text-align: left;
}

table th {
  background: #f1f5f9;
  font-weight: 600;
  color: #0f1b16;
}

table td {
  background: #ffffff;
}

@media (max-width: 600px) {
  .privacy-container {
    padding: 1rem;
    margin: 5px;
  }

  .privacy-policy h1 {
    font-size: 1.6rem;
  }
}




/* booking confirm page */
.confirmBooking {
  padding: 100px 0 50px 0;
  background:
    linear-gradient(rgba(248, 255, 238, 0.8), rgba(236, 250, 237, 0.8)),
    url('images/back.webp');
}

.booking-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 1.5rem;
  max-width: 760px;
  width: 100%;
  /* box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08); */
  border: 1px solid rgba(0, 0, 0, 0.03);
  margin: 0 auto;
}

.booking-card h2 {
  font-weight: 700;
  color: #0f1b16;
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}

.booking-card .subtitle {
  color: #64748b;
  font-size: 0.75rem;
  border-bottom: 1px solid #e9edf2;
  padding-bottom: 0.5rem;
}

.form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: #1e293b;
  margin-bottom: 0.3rem;
}

.form-control,
.form-select {
  border-radius: 5px;
  border: 1px solid #e2e8f0;
  padding: 0.4rem 0.7rem;
  font-size: 0.85rem;
  transition: 0.25s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.form-control::placeholder {
  color: #94a3b8;
  font-size: 0.8rem;
}

.form-control.is-invalid {
  border-color: #dc3545;
}

.form-control.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.invalid-feedback {
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.price-summary {
  background: #f8fafc;
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  margin: 1.2rem 0 1.5rem;
  border: 1px solid #e9edf2;
}

.price-summary .row {
  align-items: center;
}

.price-summary .label {
  color: #475569;
  font-size: 0.9rem;
}

.price-summary .amount {
  font-weight: 700;
  font-size: 1.4rem;
  color: #0f1b16;
}

.price-summary .amount .currency {
  font-size: 1rem;
  color: #64748b;
  font-weight: 400;
}

.price-detail {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #475569;
  padding: 0.2rem 0;
}

.price-detail .val {
  font-weight: 600;
  color: #1e293b;
}

.price-detail .half-price-tag {
  font-size: 0.7rem;
  color: #0f766e;
  background: #e6f4f2;
  padding: 0.1rem 0.6rem;
  border-radius: 40px;
  font-weight: 500;
  margin-left: 0.3rem;
}

.btn-confirm {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-lt));
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.5rem;
  border-radius: 6px;
  font-size: 13px;
  transition: 0.3s;
  width: 100%;
  box-shadow: 0 4px 16px rgba(15, 118, 110, 0.2);
}

.btn-confirm:hover {
  transform: scale(1.01);
  background: linear-gradient(135deg, #0d6b64, #0b7e73);
  color: #fff;
  box-shadow: 0 8px 28px rgba(15, 118, 110, 0.25);
}

.btn-confirm:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Success Popup */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 27, 22, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.popup-overlay.active {
  display: flex;
}

.popup-box {
  background: #ffffff;
  border-radius: 5px;
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.15);
  animation: popIn 0.4s ease;
}

.popup-box .icon {
  font-size: 2rem;
  color: #0f766e;
  background: #e6f4f2;
  width: 45px;
  height: 45px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.popup-box h3 {
  font-weight: 700;
  color: #0f1b16;
  margin-bottom: 0.4rem;
}

.popup-box p {
  color: #475569;
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
}

.popup-box .btn-ok {
  background: var(--emerald);
  border: none;
  color: #fff;
  padding: 0.2rem 2rem;
  border-radius: 60px;
  transition: 0.25s;
  font-size: 12px;
}

.popup-box .btn-ok:hover {
  background: var(--emerald-lt);
  color: #fff;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.child-input-group {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.child-input-group input {
  width: 80px;
  flex-shrink: 0;
}

.child-input-group .note {
  font-size: 0.75rem;
  color: #94a3b8;
}

.age-tag {
  font-size: 0.7rem;
  color: #64748b;
  font-weight: 400;
}

.char-counter {
  font-size: 0.7rem;
  color: #94a3b8;
  text-align: right;
  margin-top: 0.15rem;
}

.char-counter.limit {
  color: #dc3545;
}

@media (max-width: 576px) {
  .booking-card {
    padding: 1.5rem;
  }

  .popup-box {
    padding: 2rem 1.5rem;
  }

  .price-summary .amount {
    font-size: 1.2rem;
  }
}

/*Buttom Call And Whatsapp Section*/

    .buttom-section {
       position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
  background: #07291f;
      display: flex;
      flex-wrap: wrap;
      box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
      z-index: 1000;
    }

    /* each half: exactly 50% */
    .buttom-section-half {
      flex: 0 0 50%;  
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: 0.4px;
      color: #ffffff;
      gap: 0.6rem;
      padding: 0.5rem 0.8rem;
      border: none;
      background: transparent;
      position: relative;
      /* remove all hover/active effects */
      transition: none;
    }

    /* left: CALL - fixed solid color */
    .buttom-section-half.call {
      background: #cd972b;           /* solid teal */
      border-right: 1px solid #2b5f55;
    }

    .buttom-section-half.call i {
      font-size: 1.2rem;
    }

    /* right: WHATSAPP - fixed solid color */
    .buttom-section-half.whatsapp {
      background: #14582f;           /* solid WhatsApp green */
    }

    .buttom-section-half.whatsapp i {
      font-size: 1.3rem;
    }

    /* NO hover effects, NO scale, NO brightness change */
    .buttom-section-half.call:hover,
    .buttom-section-half.whatsapp:hover {
      background: inherit;          /* keep same background */
      transform: none;
      filter: none;
      box-shadow: none;
    }

    .buttom-section-half.call:active,
    .buttom-section-half.whatsapp:active {
      transform: none;
    }

  
    /* responsive: on very small screens keep 50/50 but adjust font */
    @media (max-width: 480px) {
      .buttom-section-half {
        font-size: 1rem;
        gap: 0.4rem;
        padding: 0.3rem 0.2rem;
      }
      .buttom-section-half i {
        font-size: 1.2rem !important;
      }
     
    }

    @media (max-width: 360px) {
      .buttom-section-half {
        font-size: 0.85rem;
        gap: 0.2rem;
        min-height: 26px;
      }
      .buttom-section-half i {
        font-size: 1rem !important;
      }
    }

