/* ============================================================
   EZREHYN DREAMS — style.css  (Single Master CSS File)
   Brand: Gold #DFBA3F | Navy #0C0532 | White Background
   Fonts: Unbounded (display) + DM Sans (body)
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
  --gold:         #DFBA3F;
  --gold-dark:    #c4a230;
  --gold-light:   #f0d06a;
  --navy:         #0C0532;
  --navy-mid:     #1a0f52;
  --white:        #ffffff;
  --off-white:    #f9f8f5;
  --text-dark:    #111111;
  --text-mid:     #444444;
  --text-light:   #888888;
  --border:       rgba(0,0,0,0.08);
  --shadow-sm:    0 4px 20px rgba(0,0,0,0.07);
  --shadow-md:    0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.18);
  --radius-sm:    12px;
  --radius-md:    20px;
  --radius-lg:    28px;
  --radius-xl:    40px;
  --radius-pill:  100px;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Unbounded', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100%;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  position: relative;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }

/* ============================================================
   PRELOADER (Homepage only)
   ============================================================ */
#preloader {
  position: fixed; inset: 0;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}
.preloader-logo {
  width: 180px;
  max-width: 60vw;
  margin: 0 auto 32px;
  display: block;
  animation: preloaderPulse 1.6s ease-in-out infinite;
}
.preloader-bar {
  width: 240px;
  max-width: 70vw;
  height: 4px;
  background: rgba(0,0,0,0.10);
  border-radius: 100px;
  overflow: hidden;
  margin: 0 auto;
}
.preloader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 100px;
  animation: preloaderLoad 2.2s ease forwards;
}
@keyframes preloaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.75; transform: scale(0.97); }
}
@keyframes preloaderLoad {
  0%   { width: 0%; }
  100% { width: 100%; }
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}
.section-body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 14px;
}
.text-gold { color: var(--gold) !important; }
.section-pad { padding: 100px 0; }
.section-header { margin-bottom: 10px; }

/* Ghost watermark */
.section-title-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 16px;
}
.ghost-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  font-weight: 900;
  color: rgba(12,5,50,0.045);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.05em;
  line-height: 1;
  z-index: 0;
}
.section-title-wrap .section-title { position: relative; z-index: 1; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: 13px 28px;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold); color: var(--navy); border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark); border-color: var(--gold-dark); color: var(--navy);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(223,186,63,0.35);
}
.btn-outline-gold {
  background: transparent; color: var(--gold); border-color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }

.btn-outline-white {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.14); border-color: var(--white); color: var(--white);
}
.btn-whatsapp {
  background: var(--white); color: var(--navy); border-color: var(--white);
  font-weight: 700; padding: 10px 22px; font-size: 0.875rem;
}
.btn-whatsapp:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.btn-whatsapp .fa-whatsapp { color: #25D366; font-size: 1rem; }

.btn-dark-pill {
  background: var(--navy); color: var(--white); border-color: var(--navy);
  border-radius: var(--radius-pill); padding: 10px 24px; font-size: 0.875rem;
}
.btn-dark-pill:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.btn-wa-pill {
  background: #25D366; color: var(--white); border-color: #25D366;
  border-radius: var(--radius-pill); padding: 10px 16px; font-size: 1rem;
}
.btn-wa-pill:hover { background: #1ebe5b; border-color: #1ebe5b; }

.btn-outline-navy {
  background: transparent; color: var(--navy); border: 2px solid rgba(12,5,50,0.15);
  border-radius: var(--radius-pill); padding: 10px 20px;
  font-weight: 600; font-size: 0.875rem;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  padding: 16px 0;
  background: transparent;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  z-index: 1000;
}
#mainNav.scrolled {
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.09);
}
.nav-logo { height: 56px; width: auto; object-fit: contain; }

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9) !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: rgba(255,255,255,0.15);
  color: var(--white) !important;
}
#mainNav.scrolled .navbar-nav .nav-link { color: var(--navy) !important; }
#mainNav.scrolled .navbar-nav .nav-link:hover,
#mainNav.scrolled .navbar-nav .nav-link.active {
  background: rgba(12,5,50,0.07); color: var(--navy) !important;
}

/* Dropdown */
.mega-dropdown {
  border: none; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 12px;
  background: var(--white); min-width: 240px;
  animation: dropdownFade 0.2s ease;
}
@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mega-dropdown .dropdown-item {
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 500;
  color: var(--text-dark); padding: 10px 16px; border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 10px; transition: var(--transition);
}
.mega-dropdown .dropdown-item i { color: var(--gold); width: 18px; font-size: 0.875rem; }
.mega-dropdown .dropdown-item:hover { background: var(--off-white); color: var(--navy); }

.toggler-icon { color: var(--white); font-size: 1.3rem; }
#mainNav.scrolled .toggler-icon { color: var(--navy); }
.navbar-toggler { border: none; box-shadow: none !important; background: transparent !important; padding: 4px 8px; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(12,5,50,0.68) 0%, rgba(12,5,50,0.42) 50%, rgba(0,0,0,0.6) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding-top: 120px; padding-bottom: 120px;
  text-align: center;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; display: block;
}
.hero-title {
  display: flex; flex-direction: column;
  align-items: center; gap: 2px; margin-bottom: 24px;
}
.hero-word {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.5vw, 2rem);
  font-weight: 700; color: rgba(255,255,255,0.82);
  letter-spacing: 0.1em; line-height: 1.2; text-transform: uppercase;
}
.hero-word--big {
  font-size: clamp(2.8rem, 9vw, 7.5rem);
  font-weight: 900; color: var(--white);
  letter-spacing: 0.02em; line-height: 0.95;
  text-shadow: 0 4px 40px rgba(0,0,0,0.3);
}
.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.8);
  max-width: 540px; margin: 0 auto 36px; line-height: 1.7;
}
.hero-actions {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
}

/* Hero animation class — starts hidden, JS drives it */
.hero-anim {
  opacity: 0;
  filter: blur(16px);
  transform: translateY(28px);
  transition: opacity 1s ease, filter 1s ease, transform 1s ease;
}
.hero-anim.visible {
  opacity: 1; filter: blur(0px); transform: translateY(0);
}

/* ============================================================
   ABOUT PREVIEW — HOMEPAGE
   ============================================================ */
.about-preview { background: var(--white); }

.about-images-grid {
  position: relative;
  padding-bottom: 40px; padding-right: 40px;
}
.about-img-main {
  border-radius: var(--radius-lg);
  width: 100%; height: 420px; object-fit: cover;
  box-shadow: var(--shadow-md);
}
.about-img-small {
  position: absolute; bottom: 0; right: 0;
  width: 200px; height: 160px; object-fit: cover;
  border-radius: var(--radius-md);
  border: 5px solid var(--white); box-shadow: var(--shadow-md);
}
.about-stats-badge {
  position: absolute; top: 28px; right: -16px;
  background: var(--gold); color: var(--navy);
  border-radius: var(--radius-md); padding: 16px 20px;
  text-align: center; box-shadow: var(--shadow-md); z-index: 2;
}
.stat-num {
  display: block; font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 900; line-height: 1;
}
.stat-label {
  display: block; font-size: 0.72rem; font-weight: 600;
  opacity: 0.8; margin-top: 4px;
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-top: 24px;
}
.about-feat {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.875rem; font-weight: 500; color: var(--text-dark);
}
.about-feat i { color: var(--gold); font-size: 0.9rem; }

/* ============================================================
   PACKAGES — HOMEPAGE CARDS
   ============================================================ */
.packages-section { background: var(--off-white); }

.pkg-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition); height: 100%;
  display: flex; flex-direction: column;
  border: 2px solid transparent;
}
.pkg-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: rgba(223,186,63,0.18);
}
.pkg-card-img {
  position: relative; overflow: hidden; height: 220px;
}
.pkg-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s ease;
}
.pkg-card:hover .pkg-card-img img { transform: scale(1.06); }
.pkg-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,5,50,0.3) 0%, transparent 60%);
}
.pkg-arrow-btn {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px; background: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--navy);
  box-shadow: var(--shadow-sm); transition: var(--transition); z-index: 2;
}
.pkg-arrow-btn:hover { background: var(--gold); color: var(--navy); }
.pkg-card-body {
  padding: 22px; flex: 1; display: flex; flex-direction: column;
}
.pkg-meta {
  font-size: 0.72rem; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.09em;
  margin-bottom: 8px; display: flex; align-items: center; gap: 5px;
}
.pkg-title {
  font-family: var(--font-display); font-size: 1.05rem;
  font-weight: 800; color: var(--navy); margin-bottom: 8px; line-height: 1.3;
}
.pkg-desc {
  font-size: 0.875rem; color: var(--text-mid);
  line-height: 1.65; margin-bottom: 14px;
}
.pkg-features { margin-bottom: 18px; }
.pkg-features li {
  font-size: 0.82rem; color: var(--text-dark);
  padding: 3px 0; display: flex; align-items: center; gap: 8px;
}
.pkg-features li i { color: var(--gold); font-size: 0.78rem; }
.pkg-card-footer {
  margin-top: auto; display: flex; align-items: center; gap: 10px;
}
/* CTA card */
.pkg-card--cta {
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.pkg-cta-inner { padding: 32px; text-align: center; }
.pkg-cta-icon {
  width: 64px; height: 64px; background: rgba(223,186,63,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--gold); margin: 0 auto 20px;
}
.pkg-card--cta h3 {
  font-family: var(--font-display); font-size: 1.25rem;
  font-weight: 800; color: var(--white); margin-bottom: 12px;
}
.pkg-card--cta p { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--white); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1.15fr 1fr;
  gap: 20px; align-items: start;
}
.why-col { display: flex; flex-direction: column; gap: 16px; }
.why-col--center img {
  width: 100%; height: 540px; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
.why-card {
  background: var(--off-white); border-radius: var(--radius-md);
  padding: 24px; transition: var(--transition); border: 2px solid transparent;
}
.why-card:hover {
  background: var(--white); box-shadow: var(--shadow-md);
  transform: translateY(-3px); border-color: rgba(223,186,63,0.15);
}
.why-icon-wrap {
  width: 48px; height: 48px; background: rgba(223,186,63,0.13);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gold); margin-bottom: 14px;
}
.why-card h4 {
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 800;
  color: var(--navy); margin-bottom: 8px; line-height: 1.3;
}
.why-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.65; margin: 0; }
.why-img-box { border-radius: var(--radius-md); overflow: hidden; height: 155px; }
.why-img-box img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease;
}
.why-img-box:hover img { transform: scale(1.05); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--off-white); }
.gallery-hero-wrap {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; height: 480px;
}
.gallery-hero-img { width: 100%; height: 100%; object-fit: cover; }
.gallery-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,5,50,0.78) 0%, rgba(12,5,50,0.28) 55%, transparent 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding: 48px 32px; text-align: center;
}
.gallery-eyebrow {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.gallery-main-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900; color: var(--white);
  line-height: 1.1; margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.gallery-pill {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.32);
  color: var(--white); border-radius: var(--radius-pill);
  padding: 10px 22px; font-size: 0.875rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px; transition: var(--transition);
}
.gallery-pill:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.gallery-thumbs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.gallery-thumb {
  border-radius: var(--radius-md); overflow: hidden; height: 180px; position: relative;
}
.gallery-thumb img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease;
}
.gallery-thumb:hover img { transform: scale(1.07); }
.gallery-more-cover {
  position: absolute; inset: 0; background: rgba(12,5,50,0.62);
  display: flex; align-items: center; justify-content: center;
}
.gallery-more-cover span {
  font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--white);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--white); }
.testi-card {
  background: var(--off-white); border-radius: var(--radius-lg);
  padding: 28px; height: 100%; display: flex; flex-direction: column;
  transition: var(--transition); border: 2px solid transparent;
}
.testi-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
  border-color: rgba(223,186,63,0.18);
}
.testi-card--featured { background: var(--navy); }
.testi-card--featured .testi-text { color: rgba(255,255,255,0.8); }
.testi-card--featured .testi-author strong { color: var(--white); }
.testi-card--featured .testi-author span { color: rgba(255,255,255,0.5); }
.testi-text {
  font-size: 0.9rem; color: var(--text-mid);
  line-height: 1.75; flex: 1; margin-bottom: 20px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author img {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--gold);
}
.testi-author strong {
  display: block; font-size: 0.875rem; font-weight: 700; color: var(--navy);
}
.testi-author span { display: block; font-size: 0.77rem; color: var(--text-light); margin-top: 2px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { position: relative; padding: 120px 0; overflow: hidden; }
.cta-bg-wrap { position: absolute; inset: 0; }
.cta-bg-img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,5,50,0.87) 0%, rgba(12,5,50,0.62) 100%);
}
.cta-content { position: relative; z-index: 2; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3.3rem);
  font-weight: 900; color: var(--white); line-height: 1.15; margin-bottom: 16px;
}
.cta-subtitle {
  font-size: 1rem; color: rgba(255,255,255,0.75);
  max-width: 500px; margin: 0 auto 36px; line-height: 1.7;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy); color: var(--white);
  padding: 80px 0 0; position: relative; overflow: hidden;
}
.footer-logo { height: 50px; width: auto; margin-bottom: 20px; }
.footer-tagline {
  font-size: 0.875rem; color: rgba(255,255,255,0.55);
  line-height: 1.7; margin-bottom: 24px; max-width: 280px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 40px; height: 40px; background: rgba(255,255,255,0.08);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: var(--transition);
}
.footer-socials a:hover { background: var(--gold); color: var(--navy); }
.footer-heading {
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--white); margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact-list li {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px; font-size: 0.875rem; color: rgba(255,255,255,0.55);
}
.footer-contact-list li i { color: var(--gold); width: 16px; font-size: 0.875rem; }
.footer-contact-list li a { color: rgba(255,255,255,0.55); }
.footer-contact-list li a:hover { color: var(--gold); }
.footer-bottom-bar {
  margin-top: 60px; padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.07); text-align: center;
}
.footer-bottom-bar p { font-size: 0.8rem; color: rgba(255,255,255,0.38); }
.footer-bottom-bar a { color: rgba(255,255,255,0.38); }
.footer-bottom-bar a:hover { color: var(--gold); }
.footer-ghost-text {
  position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 17vw, 13rem);
  font-weight: 900; color: rgba(255,255,255,0.035);
  white-space: nowrap; pointer-events: none; user-select: none;
  letter-spacing: 0.05em; line-height: 1;
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.wa-float-btn {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px; background: #25D366;
  color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; z-index: 999; transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.38);
  animation: waPulse 2.8s ease-in-out infinite;
}
.wa-float-btn:hover { background: #1ebe5b; color: var(--white); transform: scale(1.1); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.38); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,0.65), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ============================================================
   SCROLL ANIMATIONS
   Slower, smoother — triggers only when element enters view
   ============================================================ */
.reveal-blur {
  opacity: 0; filter: blur(14px); transform: translateY(22px);
  transition: opacity 1.1s ease, filter 1.1s ease, transform 1.1s ease;
}
.reveal-blur.in-view { opacity: 1; filter: blur(0px); transform: translateY(0); }

.fade-in-left {
  opacity: 0; transform: translateX(-44px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-in-left.in-view { opacity: 1; transform: translateX(0); }

.fade-in-right {
  opacity: 0; transform: translateX(44px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-in-right.in-view { opacity: 1; transform: translateX(0); }

.fade-in-up {
  opacity: 0; transform: translateY(44px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.fade-in-up.in-view { opacity: 1; transform: translateY(0); }

/* ============================================================
   PAGE HERO — Shared across About, Contact, Packages, Inner pages
   ============================================================ */
.page-hero {
  position: relative; min-height: 480px;
  display: flex; align-items: center; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,5,50,0.84) 0%, rgba(12,5,50,0.55) 100%);
}
.page-hero-content { position: relative; z-index: 2; padding-top: 140px; padding-bottom: 80px; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900; color: var(--white); line-height: 1.15; margin-bottom: 16px;
}
.page-hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.75);
  max-width: 520px; line-height: 1.7; margin-bottom: 24px;
}
.page-breadcrumb { background: transparent; padding: 0; margin: 0; }
.page-breadcrumb .breadcrumb-item a { color: var(--gold); font-size: 0.85rem; font-weight: 500; }
.page-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-img-stack { position: relative; padding-bottom: 50px; padding-right: 50px; }
.about-stack-main {
  border-radius: var(--radius-lg); width: 100%; height: 440px;
  object-fit: cover; box-shadow: var(--shadow-md);
}
.about-stack-float {
  position: absolute; bottom: 0; right: 0;
  width: 210px; height: 170px; object-fit: cover;
  border-radius: var(--radius-md); border: 5px solid var(--white); box-shadow: var(--shadow-md);
}
.about-exp-badge {
  position: absolute; top: 30px; right: -10px;
  background: var(--gold); color: var(--navy);
  border-radius: var(--radius-md); padding: 18px 22px;
  text-align: center; box-shadow: var(--shadow-md); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.about-exp-badge i { font-size: 1.4rem; margin-bottom: 4px; }
.exp-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; line-height: 1; }
.exp-label { font-size: 0.7rem; font-weight: 700; opacity: 0.8; line-height: 1.3; }
.about-stats-row {
  display: flex; align-items: center;
  margin-top: 32px; background: var(--off-white);
  border-radius: var(--radius-lg); padding: 24px 28px;
}
.abt-stat { flex: 1; text-align: center; }
.abt-stat-num {
  display: block; font-family: var(--font-display);
  font-size: 2rem; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 4px;
}
.abt-stat-label {
  display: block; font-size: 0.78rem; font-weight: 600;
  color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em;
}
.abt-stat-divider { width: 1px; height: 44px; background: var(--border); flex-shrink: 0; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center; height: 100%;
  transition: var(--transition); border: 2px solid transparent;
}
.service-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-md);
  border-color: rgba(223,186,63,0.22);
}
.service-icon {
  width: 64px; height: 64px; background: rgba(223,186,63,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--gold); margin: 0 auto 20px;
}
.service-card h4 {
  font-family: var(--font-display); font-size: 0.95rem;
  font-weight: 800; color: var(--navy); margin-bottom: 12px; line-height: 1.3;
}
.service-card p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; margin: 0; }
.mission-card {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 48px; display: flex; align-items: flex-start; gap: 32px;
}
.mission-icon {
  width: 64px; height: 64px; background: rgba(223,186,63,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--gold); flex-shrink: 0;
}
.mission-card h3 {
  font-family: var(--font-display); font-size: 1.4rem;
  font-weight: 800; color: var(--white); margin-bottom: 12px;
}
.mission-card p { font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.75; margin: 0; }
.promise-card {
  background: var(--off-white); border-radius: var(--radius-lg);
  padding: 32px; height: 100%; position: relative;
  transition: var(--transition); border: 2px solid transparent;
}
.promise-card:hover {
  background: var(--white); box-shadow: var(--shadow-md);
  border-color: rgba(223,186,63,0.2); transform: translateY(-4px);
}
.promise-num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 900;
  color: rgba(12,5,50,0.06); line-height: 1; position: absolute; top: 16px; right: 20px;
}
.promise-icon {
  width: 52px; height: 52px; background: rgba(223,186,63,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--gold); margin-bottom: 18px;
}
.promise-card h4 {
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 800;
  color: var(--navy); margin-bottom: 10px; line-height: 1.3;
}
.promise-card p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; margin: 0; }
.promise-card--cta {
  background: var(--navy); text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.promise-card--cta:hover { border-color: var(--gold); }
.promise-wa-icon { font-size: 3rem; color: #25D366; margin-bottom: 16px; }
.promise-card--cta h4 { color: var(--white); }
.promise-card--cta p { color: rgba(255,255,255,0.6); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-quick-card {
  display: flex; flex-direction: column; align-items: flex-start;
  background: var(--off-white); border-radius: var(--radius-lg);
  padding: 32px; height: 100%; transition: var(--transition);
  border: 2px solid transparent; text-decoration: none; color: inherit;
}
.contact-quick-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); color: inherit; }
.contact-quick-card--wa:hover  { border-color: #25D366; }
.contact-quick-card--call:hover { border-color: var(--gold); }
.contact-quick-card--loc:hover  { border-color: var(--navy); }
.cqc-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 18px;
}
.contact-quick-card--wa   .cqc-icon { background: rgba(37,211,102,0.12); color: #25D366; }
.contact-quick-card--call .cqc-icon { background: rgba(223,186,63,0.12); color: var(--gold); }
.contact-quick-card--loc  .cqc-icon { background: rgba(12,5,50,0.07);   color: var(--navy); }
.contact-quick-card h4 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 800;
  color: var(--navy); margin-bottom: 8px;
}
.contact-quick-card p {
  font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 16px; flex: 1;
}
.cqc-link {
  font-size: 0.875rem; font-weight: 700; color: var(--navy);
  display: flex; align-items: center; gap: 6px;
}
.contact-quick-card--wa   .cqc-link { color: #25D366; }
.contact-quick-card--call .cqc-link { color: var(--gold); }
.contact-form-wrap {
  background: var(--off-white); border-radius: var(--radius-lg); padding: 44px;
}
.contact-form .form-group-custom { margin-bottom: 4px; }
.form-group-custom label {
  display: block; font-size: 0.78rem; font-weight: 700; color: var(--navy);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px;
}
.form-group-custom label span { color: var(--gold); }
.form-group-custom input,
.form-group-custom select,
.form-group-custom textarea {
  width: 100%; border: 2px solid rgba(0,0,0,0.08); border-radius: var(--radius-sm);
  padding: 13px 16px; font-family: var(--font-body); font-size: 0.9rem;
  color: var(--text-dark); background: var(--white); outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease; appearance: none;
}
.form-group-custom input:focus,
.form-group-custom select:focus,
.form-group-custom textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 4px rgba(223,186,63,0.11);
}
.form-group-custom input::placeholder,
.form-group-custom textarea::placeholder { color: #bbb; }
.form-group-custom select { cursor: pointer; }
.form-group-custom textarea { resize: vertical; min-height: 110px; }
.form-note { text-align: center; margin-top: 14px; font-size: 0.85rem; color: var(--text-light); margin-bottom: 0; }
.form-note a { color: var(--gold); font-weight: 600; }
.form-note a:hover { color: var(--gold-dark); }
.contact-info-wrap { position: sticky; top: 100px; }
.contact-info-title {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 900;
  color: var(--navy); line-height: 1.2; margin-bottom: 16px;
}
.contact-info-items { display: flex; flex-direction: column; gap: 16px; }
.contact-info-item {
  display: flex; align-items: center; gap: 16px; padding: 16px 20px;
  background: var(--off-white); border-radius: var(--radius-md); transition: var(--transition);
}
.contact-info-item:hover { box-shadow: var(--shadow-sm); }
.cii-icon {
  width: 44px; height: 44px; background: rgba(223,186,63,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gold); flex-shrink: 0;
}
.cii-label {
  display: block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 3px;
}
.cii-value { display: block; font-size: 0.95rem; font-weight: 700; color: var(--navy); }
a.cii-value:hover { color: var(--gold); }
.wa-cta-box {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 28px; display: flex; align-items: flex-start; gap: 18px;
}
.wa-cta-icon { font-size: 2.2rem; color: #25D366; flex-shrink: 0; margin-top: 4px; }
.wa-cta-box strong {
  display: block; font-family: var(--font-display); font-size: 0.95rem;
  font-weight: 800; color: var(--white); margin-bottom: 6px;
}
.wa-cta-box p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.6; margin: 0; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tags span {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius-pill); padding: 6px 14px;
  font-size: 0.78rem; font-weight: 600; color: var(--text-mid);
}

/* ============================================================
   PACKAGES LISTING PAGE
   ============================================================ */
.pkg-listing-card {
  display: flex; flex-direction: column; background: var(--white);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition); height: 100%; text-decoration: none;
  color: inherit; border: 2px solid transparent;
}
.pkg-listing-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: rgba(223,186,63,0.2); color: inherit;
}
.plc-img { position: relative; height: 220px; overflow: hidden; }
.plc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.pkg-listing-card:hover .plc-img img { transform: scale(1.06); }
.plc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,5,50,0.32) 0%, transparent 60%);
}
.plc-arrow {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px; background: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--navy); box-shadow: var(--shadow-sm);
  transition: var(--transition); z-index: 2;
}
.pkg-listing-card:hover .plc-arrow { background: var(--gold); color: var(--navy); }
.plc-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.plc-icon {
  width: 44px; height: 44px; background: rgba(223,186,63,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gold); margin-bottom: 14px; transition: var(--transition);
}
.pkg-listing-card:hover .plc-icon { background: var(--gold); color: var(--navy); }
.plc-title {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 800;
  color: var(--navy); margin-bottom: 8px; line-height: 1.3;
}
.plc-desc { font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 14px; flex: 1; }
.plc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.plc-tags span {
  background: var(--off-white); border-radius: var(--radius-pill);
  padding: 4px 12px; font-size: 0.72rem; font-weight: 600;
  color: var(--text-mid); border: 1px solid var(--border);
}
.plc-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border);
}
.plc-cta {
  font-size: 0.85rem; font-weight: 700; color: var(--navy);
  display: flex; align-items: center; gap: 6px; transition: var(--transition);
}
.pkg-listing-card:hover .plc-cta { color: var(--gold); }
.plc-wa {
  width: 36px; height: 36px; background: rgba(37,211,102,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #25D366; transition: var(--transition); text-decoration: none;
}
.plc-wa:hover { background: #25D366; color: var(--white); }
.pkg-custom-cta {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.pkg-custom-cta .pkg-cta-icon {
  width: 64px; height: 64px; background: rgba(223,186,63,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--gold); margin: 0 auto 20px;
}
.pkg-custom-cta h3 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 800;
  color: var(--white); margin-bottom: 12px; line-height: 1.3;
}
.pkg-custom-cta p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.65; margin: 0; }

/* ============================================================
   INNER PACKAGE PAGES
   ============================================================ */
.inner-hero { min-height: 560px; }
.inner-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* Highlights bar */
.highlights-bar {
  background: var(--white); box-shadow: 0 4px 30px rgba(0,0,0,0.07);
  position: relative; z-index: 10; border-bottom: 1px solid var(--border);
}
.highlights-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; flex-wrap: wrap; gap: 16px;
}
.highlight-item { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 140px; }
.highlight-item > i {
  width: 44px; height: 44px; background: rgba(223,186,63,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gold); flex-shrink: 0;
}
.highlight-item span {
  display: block; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em; color: var(--text-light); margin-bottom: 2px;
}
.highlight-item strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--navy); }
.highlight-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* Inner content */
.inner-block { margin-bottom: 52px; }
.inner-block:last-child { margin-bottom: 0; }

/* Gallery strip */
.inner-gallery { margin-bottom: 52px; }
.inner-gallery-grid {
  display: grid; grid-template-columns: 2fr 1fr;
  grid-template-rows: 200px 200px; gap: 12px;
  border-radius: var(--radius-lg); overflow: hidden;
}
.inner-gallery-grid img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease;
}
.inner-gallery-grid img:hover { transform: scale(1.04); }
.inner-gallery-grid .ig-main { grid-row: 1 / 3; }

/* Options grid */
.options-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px;
}
.option-card {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--off-white); border-radius: var(--radius-md);
  padding: 20px; transition: var(--transition); border: 2px solid transparent; position: relative;
}
.option-card:hover {
  background: var(--white); box-shadow: var(--shadow-md); border-color: rgba(223,186,63,0.2);
}
.option-card--featured { background: var(--navy); border-color: transparent !important; }
.option-card--featured:hover { background: var(--navy-mid); }
.option-card--featured h4 { color: var(--white) !important; }
.option-card--featured p  { color: rgba(255,255,255,0.65) !important; }
.option-icon {
  width: 40px; height: 40px; background: rgba(223,186,63,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gold); flex-shrink: 0;
}
.option-card--featured .option-icon { background: rgba(223,186,63,0.2); }
.option-card h4 {
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 800;
  color: var(--navy); margin-bottom: 6px; line-height: 1.3;
}
.option-card p { font-size: 0.8rem; color: var(--text-mid); line-height: 1.6; margin: 0; }

/* Inclusion lists */
.inclusion-list {
  background: var(--off-white); border-radius: var(--radius-lg); padding: 24px; height: 100%;
}
.inclusion-list h5 {
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 800;
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.included h5 { color: #16a34a; }
.excluded h5 { color: #dc2626; }
.inclusion-list ul li {
  display: flex; align-items: center; gap: 10px; font-size: 0.875rem;
  color: var(--text-dark); padding: 5px 0; border-bottom: 1px solid rgba(0,0,0,0.05);
}
.inclusion-list ul li:last-child { border-bottom: none; }
.included li i { color: #16a34a; font-size: 0.8rem; }
.excluded li i { color: #dc2626; font-size: 0.8rem; }

/* Photo grid */
.inner-photo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 20px;
}
.inner-photo-grid img {
  width: 100%; height: 180px; object-fit: cover;
  border-radius: var(--radius-md); transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.inner-photo-grid img:hover { transform: scale(1.03); box-shadow: var(--shadow-md); }

/* Booking sidebar */
.booking-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 16px; }
.booking-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 2px solid rgba(223,186,63,0.14);
}
.booking-card-header { background: var(--navy); padding: 24px; text-align: center; }
.booking-card-header h3 {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 800; color: var(--white); margin-bottom: 4px;
}
.booking-card-header p { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin: 0; }
.booking-card-body { padding: 24px; }
.booking-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.bp-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; color: var(--text-dark);
  background: var(--off-white); border-radius: var(--radius-sm); padding: 10px 12px;
}
.bp-item i { color: var(--gold); font-size: 0.85rem; }
.booking-note {
  text-align: center; font-size: 0.75rem; color: var(--text-light);
  margin-top: 12px; margin-bottom: 0;
}
.quick-facts-card { background: var(--off-white); border-radius: var(--radius-lg); padding: 24px; }
.quick-facts-card h4 {
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 800;
  color: var(--navy); margin-bottom: 16px;
}
.quick-facts-card ul { display: flex; flex-direction: column; gap: 10px; }
.quick-facts-card li {
  display: flex; align-items: center; gap: 10px; font-size: 0.85rem;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.quick-facts-card li:last-child { border-bottom: none; padding-bottom: 0; }
.quick-facts-card li i { color: var(--gold); width: 16px; font-size: 0.85rem; }
.quick-facts-card li span { color: var(--text-mid); flex: 1; }
.quick-facts-card li strong { color: var(--navy); font-weight: 700; }
.other-packages-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 24px; border: 1px solid var(--border);
}
.other-packages-card h4 {
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 800;
  color: var(--navy); margin-bottom: 16px;
}
.other-packages-card ul { display: flex; flex-direction: column; gap: 4px; }
.other-packages-card li a {
  display: flex; align-items: center; gap: 10px; font-size: 0.875rem; font-weight: 500;
  color: var(--text-dark); padding: 10px 12px; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.other-packages-card li a i { color: var(--gold); width: 16px; }
.other-packages-card li a:hover { background: var(--off-white); color: var(--navy); }

/* Inner CTA strip */
.inner-cta-strip { background: var(--navy); padding: 50px 0; }
.inner-cta-content {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.inner-cta-content h3 {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 800;
  color: var(--white); margin-bottom: 6px;
}
.inner-cta-content p { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin: 0; }
.inner-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================================
   RESPONSIVE — Tablets (max 991px)
   ============================================================ */
@media (max-width: 991.98px) {
  .section-pad { padding: 70px 0; }
  .hero-content { padding-top: 110px; padding-bottom: 80px; }

  /* Navbar mobile menu */
  #navMenu {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg); padding: 20px; margin-top: 10px;
    box-shadow: var(--shadow-lg);
  }
  .navbar-nav .nav-link { color: var(--navy) !important; }
  .btn-whatsapp { margin-top: 12px; width: 100%; justify-content: center; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr; }
  .why-col--center { display: none; }

  /* About preview grid */
  .about-images-grid { padding-right: 20px; padding-bottom: 30px; }
  .about-img-small { width: 150px; height: 120px; }
  .about-stats-badge { right: -10px; }

  /* Gallery */
  .gallery-thumbs { grid-template-columns: repeat(2, 1fr); }
  .gallery-hero-wrap { height: 380px; }

  /* Inner pages */
  .booking-sidebar { position: static; }
  .highlights-inner { justify-content: flex-start; }
  .highlight-divider { display: none; }
  .options-grid { grid-template-columns: 1fr; }

  /* About page */
  .about-img-stack { padding-right: 20px; padding-bottom: 30px; }
  .about-stack-float { width: 160px; height: 130px; }
  .about-exp-badge { right: -5px; }
  .mission-card { flex-direction: column; gap: 20px; padding: 32px; }

  /* Contact */
  .contact-form-wrap { padding: 28px; }
  .contact-info-wrap { position: static; }
}

/* ============================================================
   RESPONSIVE — Mobile (max 767px)
   ============================================================ */
@media (max-width: 767.98px) {
  .section-pad { padding: 56px 0; }
  .hero-content { padding-top: 90px; padding-bottom: 60px; }
  .hero-word--big { font-size: clamp(2.4rem, 12vw, 4.5rem); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  .ghost-text { display: none; }
  .about-features { grid-template-columns: 1fr; }
  .about-img-small { display: none; }
  .about-stats-badge { right: 10px; top: 10px; }

  .gallery-hero-wrap { height: 280px; }
  .gallery-main-title { font-size: clamp(1.8rem, 8vw, 3rem); }
  .gallery-thumbs { grid-template-columns: repeat(2, 1fr); }
  .gallery-thumb { height: 130px; }

  .cta-section { padding: 80px 0; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  .footer-ghost-text { font-size: clamp(3.5rem, 18vw, 7rem); }
  .footer-bottom-bar { margin-top: 40px; }

  /* Page hero */
  .page-hero { min-height: 360px; }
  .page-hero-content { padding-top: 110px; padding-bottom: 60px; }

  /* About page */
  .about-stack-float { display: none; }
  .about-img-stack { padding-right: 0; }
  .about-stats-row { flex-direction: column; gap: 20px; }
  .abt-stat-divider { width: 60px; height: 1px; }

  /* Contact */
  .contact-form-wrap { padding: 22px; }
  .wa-cta-box { flex-direction: column; gap: 12px; }

  /* Inner pages */
  .inner-hero { min-height: 400px; }
  .inner-hero-actions { flex-direction: column; }
  .inner-hero-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
  .inner-gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .inner-gallery-grid .ig-main { grid-row: auto; }
  .inner-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .inner-cta-content { text-align: center; flex-direction: column; }
  .inner-cta-btns { justify-content: center; width: 100%; }
  .inner-cta-btns .btn { flex: 1; justify-content: center; }
  .booking-perks { grid-template-columns: 1fr; }
  .highlight-item { min-width: calc(50% - 8px); }

  /* Packages listing */
  .plc-img { height: 180px; }

  /* Packages homepage cards */
  .pkg-card-footer { flex-wrap: wrap; }
  .btn-dark-pill { flex: 1; justify-content: center; }
}

/* ============================================================
   RESPONSIVE — Small mobile (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-word--big { font-size: clamp(2rem, 14vw, 3.5rem); }
  .gallery-thumbs { grid-template-columns: repeat(2, 1fr); }
  .inner-photo-grid { grid-template-columns: 1fr; }
  .highlight-item { min-width: 100%; }
  .booking-perks { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 18px; }
  .footer-main .col-6 { width: 100% !important; }
}
