/* ============================================================
   CS Travels – Custom Stylesheet
   Premium Luxury Travel Agency
   ============================================================ */

/* ---- FONT IMPORTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ---- ROOT VARIABLES ---- */
:root {
  --cs-primary:      #1e3a5f;
  --cs-primary-2:    #25507e;
  --cs-emerald:      #2980a8;
  --cs-emerald-lt:   #3fa0c8;
  --cs-gold:         #b8904a;
  --cs-gold-lt:      #d4aa72;
  --cs-dark:         #141e30;
  --cs-dark-2:       #1e2d45;
  --cs-slate:        #2c3a4f;
  --cs-gray:         #64748b;
  --cs-light:        #ede8df;
  --cs-off-white:    #f8f5f0;
  --cs-white:        #ffffff;
  --cs-border:       rgba(30,58,95,.12);
  --cs-glass-bg:     rgba(255,255,255,.08);
  --cs-glass-border: rgba(255,255,255,.18);
  --transition:      all .35s cubic-bezier(.4,0,.2,1);
  --transition-slow: all .6s cubic-bezier(.4,0,.2,1);
  --radius:          .875rem;
  --radius-lg:       1.5rem;
  --shadow-sm:       0 1px 4px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
  --shadow:          0 4px 20px rgba(30,58,95,.12), 0 2px 8px rgba(0,0,0,.05);
  --shadow-lg:       0 12px 44px rgba(30,58,95,.18), 0 4px 14px rgba(0,0,0,.07);
  --shadow-xl:       0 24px 72px rgba(30,58,95,.24), 0 8px 28px rgba(0,0,0,.09);
}

/* ---- BASE ---- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--cs-dark);
  background: var(--cs-off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- TYPOGRAPHY ---- */
.font-serif       { font-family: 'Playfair Display', serif; }
.font-cormorant   { font-family: 'Cormorant Garamond', serif; }

h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.15; }
h4, h5, h6 { font-family: 'Inter', sans-serif; }

.text-gradient {
  background: linear-gradient(135deg, var(--cs-primary) 0%, var(--cs-emerald-lt) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #a67c2e 0%, var(--cs-gold-lt) 50%, #a67c2e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar        { width: 5px; }
::-webkit-scrollbar-track  { background: var(--cs-off-white); }
::-webkit-scrollbar-thumb  { background: var(--cs-emerald); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--cs-primary-2); }

/* ---- SELECTION ---- */
::selection { background: var(--cs-primary-2); color: white; }

/* ====================================================
   PRELOADER – Cinematic Edition
   ==================================================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(ellipse at 60% 40%, #1a2f52 0%, #0d1824 55%, #060e18 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity .8s cubic-bezier(.4,0,.2,1), visibility .8s ease;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ---- Animated background rings ---- */
.pl-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.pl-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(184,144,74,.18);
  animation: plRingPulse 4s ease-in-out infinite;
}
.pl-ring-1 { width: 420px; height: 420px; animation-delay: 0s; }
.pl-ring-2 { width: 620px; height: 620px; animation-delay: .8s; border-color: rgba(41,128,168,.14); }
.pl-ring-3 { width: 820px; height: 820px; animation-delay: 1.6s; border-color: rgba(30,58,95,.12); }
@keyframes plRingPulse {
  0%, 100% { transform: scale(1);    opacity: .6; }
  50%       { transform: scale(1.04); opacity: 1; }
}

/* ---- Floating particles ---- */
.pl-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.pl-particle {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--cs-gold-lt);
  opacity: 0;
  top: calc(20% + var(--i) * 5%);
  left: calc(8% + var(--i) * 7.5%);
  animation: plFloat calc(3s + var(--i) * .25s) ease-in-out infinite;
  animation-delay: calc(var(--i) * .22s);
}
.pl-particle:nth-child(odd)  { background: rgba(41,128,168,.8); width: 3px; height: 3px; }
.pl-particle:nth-child(3n)   { background: rgba(255,255,255,.35); width: 2px; height: 2px; }
@keyframes plFloat {
  0%        { transform: translateY(0)    scale(1);   opacity: 0; }
  20%       { opacity: .9; }
  80%       { opacity: .6; }
  100%      { transform: translateY(-80px) scale(.6); opacity: 0; }
}

/* ---- Centre content ---- */
.pl-center {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* ---- Logo ---- */
.pl-logo-wrap {
  position: relative;
  width: 90px; height: 90px;
  margin-bottom: .5rem;
}
.pl-logo-glow {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,144,74,.35) 0%, transparent 70%);
  animation: plGlowPulse 2.4s ease-in-out infinite;
}
@keyframes plGlowPulse {
  0%, 100% { transform: scale(1);    opacity: .6; }
  50%       { transform: scale(1.15); opacity: 1; }
}
.pl-logo-img {
  width: 90px; height: 90px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  position: relative;
  z-index: 1;
  animation: plLogoIn .9s cubic-bezier(.34,1.56,.64,1) forwards;
}
@keyframes plLogoIn {
  from { transform: scale(.5) rotate(-10deg); opacity: 0; }
  to   { transform: scale(1)  rotate(0deg);  opacity: 1; }
}

/* ---- Brand name ---- */
.pl-brand {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: white;
  animation: plFadeUp .8s .4s cubic-bezier(.4,0,.2,1) both;
}
.pl-brand-cs      { color: var(--cs-gold-lt); }
.pl-brand-space   { display: inline-block; width: .3em; }
.pl-brand-travels { color: white; }

/* ---- Tagline ---- */
.pl-tagline {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  animation: plFadeUp .8s .55s cubic-bezier(.4,0,.2,1) both;
}

/* ---- Progress ---- */
.pl-progress-wrap {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-top: .75rem;
  animation: plFadeUp .8s .7s cubic-bezier(.4,0,.2,1) both;
}
.pl-progress-track {
  width: 220px; height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.pl-progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cs-emerald) 0%, var(--cs-gold) 60%, var(--cs-gold-lt) 100%);
  transition: width .12s ease;
  box-shadow: 0 0 10px rgba(184,144,74,.6);
}
.pl-percent {
  font-size: .72rem;
  font-weight: 700;
  color: var(--cs-gold-lt);
  letter-spacing: .04em;
  min-width: 2.5rem;
  text-align: left;
}

/* ---- Ticker ---- */
.pl-ticker {
  display: flex;
  align-items: center;
  gap: .5rem;
  animation: plFadeUp .8s .85s cubic-bezier(.4,0,.2,1) both;
}
.pl-ticker-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cs-gold);
  animation: plDotBlink 1.2s ease-in-out infinite;
}
@keyframes plDotBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.7); }
}
.pl-ticker-text {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---- Bottom decorative line ---- */
.pl-bottom-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cs-gold), var(--cs-emerald), var(--cs-gold), transparent);
  animation: plLineShimmer 2s ease-in-out infinite;
}
@keyframes plLineShimmer {
  0%, 100% { opacity: .4; }
  50%       { opacity: 1; }
}

/* ---- Shared fade-up utility ---- */
@keyframes plFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- NAVBAR ---- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 1.25rem 0;
}
#navbar.scrolled {
  background: rgba(14, 22, 40, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: .75rem 0;
  box-shadow: 0 4px 32px rgba(0,0,0,.28);
  border-bottom: 1px solid rgba(184,144,74,.15);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  letter-spacing: .02em;
}
.nav-logo span { color: var(--cs-gold); }

.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter .3s ease, opacity .3s ease;
}

#navbar.scrolled .nav-logo-img {
  filter: brightness(0) invert(1);
}

.nav-logo-img--mobile {
  height: 40px;
  filter: brightness(0) invert(1);
}

.nav-link {
  color: rgba(255,255,255,.88);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .03em;
  text-decoration: none;
  padding: .4rem 0;
  position: relative;
  transition: var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--cs-gold);
  transition: width .3s ease;
}
.nav-link:hover, .nav-link.active { color: white; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-btn {
  background: linear-gradient(135deg, var(--cs-gold) 0%, #a07838 100%);
  color: white !important;
  padding: .5rem 1.5rem !important;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: .875rem;
  letter-spacing: .04em;
  box-shadow: 0 4px 16px rgba(184,144,74,.4);
  transition: var(--transition);
}
.nav-btn::after { display: none !important; }
.nav-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(184,144,74,.6);
  background: linear-gradient(135deg, var(--cs-gold-lt) 0%, var(--cs-gold) 100%);
}

/* Language dropdown */
.lang-dropdown {
  position: relative;
}
.lang-trigger {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.88);
  font-size: .875rem;
  cursor: pointer;
  padding: .35rem .75rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.18);
  transition: var(--transition);
  background: rgba(255,255,255,.06);
}
.lang-trigger:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); }

.lang-menu {
  position: absolute;
  top: calc(100% + .5rem);
  right: 0;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  border: 1px solid var(--cs-border);
  overflow: hidden;
  z-index: 100;
}
.lang-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem 1rem;
  color: var(--cs-slate);
  font-size: .875rem;
  text-decoration: none;
  transition: background .2s;
}
.lang-menu a:hover { background: var(--cs-light); color: var(--cs-primary-2); }
.lang-menu a.active { background: var(--cs-light); color: var(--cs-primary-2); font-weight: 600; }

/* Mobile Nav */
#mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14,21,40,.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  padding: 2rem;
}
#mobile-overlay.open { transform: translateX(0); }

.mobile-nav-link {
  color: rgba(255,255,255,.88);
  font-size: 1.25rem;
  font-family: 'Playfair Display', serif;
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .2s;
}
.mobile-nav-link:hover { color: var(--cs-gold); }

/* Hamburger */
.hamburger { cursor: pointer; display: flex; flex-direction: column; gap: 5px; }
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 1px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- HERO ---- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cs-dark);
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--cs-dark);
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  opacity: 1;
  transition: opacity .8s ease;
  will-change: transform, opacity;
}

.hero-video.fade-out { opacity: 0; }

/* Video dots */
.hero-video-dots {
  position: absolute;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .6rem;
  z-index: 10;
}

.hero-video-dot {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,.3);
  border: none;
  cursor: pointer;
  transition: background .3s ease, width .3s ease;
  padding: 0;
}

.hero-video-dot.active {
  background: var(--cs-gold);
  width: 48px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(6,18,12,.88) 0%, rgba(6,18,12,.3) 60%, transparent 100%),
    linear-gradient(to top, rgba(6,18,12,.75) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(6,18,12,.45) 0%, transparent 30%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(184,144,74,.4);
  color: var(--cs-gold-lt);
  padding: .4rem 1.1rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: white;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--cs-gold-lt);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat-item {
  text-align: center;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--cs-gold-lt);
  display: block;
  line-height: 1;
}
.hero-stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .3rem;
}

/* scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 6px;
  background: rgba(255,255,255,.5);
  border-radius: 1.5px;
  animation: scroll-wheel 1.5s ease-in-out infinite;
}
@keyframes scroll-wheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(6px); opacity: 0; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-6px); }
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--cs-primary-2) 0%, var(--cs-emerald) 100%);
  color: white;
  padding: .85rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(30,58,95,.35);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(30,58,95,.5);
  background: linear-gradient(135deg, var(--cs-primary) 0%, var(--cs-primary-2) 100%);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: white;
  padding: .85rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.5);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: white;
  transform: translateY(-2px);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--cs-gold) 0%, #a67c2e 100%);
  color: white;
  padding: .85rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(184,144,74,.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184,144,74,.5);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--cs-dark);
  color: white;
  padding: .85rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-dark:hover { background: var(--cs-dark-2); transform: translateY(-2px); }

/* ---- SECTION STYLES ---- */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--cs-light);
  color: var(--cs-primary-2);
  padding: .35rem 1rem;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--cs-dark);
  line-height: 1.2;
  margin-bottom: .75rem;
}

.section-subtitle {
  color: var(--cs-gray);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 600px;
}
.section-subtitle.centered { margin: 0 auto; }

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--cs-emerald), var(--cs-gold));
  border-radius: 2px;
  margin: 1.25rem 0 1.5rem;
}
.section-divider.centered { margin: 1.25rem auto 1.5rem; }

/* ---- CARDS ---- */
.destination-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.destination-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.destination-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .6s ease;
  display: block;
}
.destination-card:hover .destination-card-img { transform: scale(1.08); }

.destination-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,21,40,.9) 0%, rgba(14,21,40,.2) 60%, transparent 100%);
  transition: var(--transition);
}
.destination-card:hover .destination-card-overlay { background: linear-gradient(to top, rgba(14,21,40,.95) 0%, rgba(14,21,40,.4) 70%, transparent 100%); }

.destination-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  transform: translateY(0);
  transition: var(--transition);
}

.destination-card-tag {
  display: inline-block;
  background: rgba(184,144,74,.25);
  border: 1px solid rgba(184,144,74,.4);
  color: var(--cs-gold-lt);
  padding: .2rem .65rem;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.destination-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: .3rem;
}

.destination-card-desc {
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, opacity .4s ease;
  opacity: 0;
}
.destination-card:hover .destination-card-desc {
  max-height: 80px;
  opacity: 1;
}

/* Package cards */
.package-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--cs-border);
}
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }

.package-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .5s ease;
}
.package-card:hover .package-card-img { transform: scale(1.05); }

.package-card-img-wrap { overflow: hidden; position: relative; }

.package-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: linear-gradient(135deg, var(--cs-gold), #a67c2e);
  color: white;
  padding: .3rem .8rem;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.package-card-body { padding: 1.5rem; }

.package-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: .75rem;
  flex-wrap: wrap;
}
.package-meta-item {
  display: flex;
  align-items: center;
  gap: .3rem;
  color: var(--cs-gray);
  font-size: .8rem;
}

.package-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cs-dark);
  margin-bottom: .5rem;
}

.package-desc { color: var(--cs-gray); font-size: .875rem; line-height: 1.6; margin-bottom: 1rem; }

.package-inclusions {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.25rem;
}
.package-tag {
  background: var(--cs-light);
  color: var(--cs-primary-2);
  padding: .2rem .6rem;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 500;
}

.package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--cs-border);
}

.package-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cs-primary-2);
}
.package-price small {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  color: var(--cs-gray);
  font-weight: 400;
  display: block;
  line-height: 1;
}

/* ---- WHY CARDS ---- */
.why-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cs-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cs-emerald), var(--cs-gold));
  transform: scaleX(0);
  transition: transform .3s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--cs-light), rgba(41,128,168,.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--cs-primary-2);
  font-size: 1.5rem;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--cs-emerald), var(--cs-primary-2));
  color: white;
  transform: scale(1.1);
}

/* ---- STATS SECTION ---- */
.stat-card {
  text-align: center;
  padding: 2rem;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--cs-gold-lt);
  display: block;
  line-height: 1;
}
.stat-label {
  color: rgba(255,255,255,.7);
  font-size: .875rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: .5rem;
}

/* ---- TESTIMONIALS ---- */
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--cs-border);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem; left: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--cs-light);
  line-height: 1;
}

.testimonial-stars { color: var(--cs-gold); margin-bottom: 1rem; font-size: 1rem; }

.testimonial-text {
  color: var(--cs-slate);
  font-size: .95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cs-light);
}
.testimonial-name { font-weight: 700; font-size: .9rem; color: var(--cs-dark); }
.testimonial-location { font-size: .78rem; color: var(--cs-gray); }

/* ---- GALLERY ---- */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,21,40,.75);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ---- FAQ ---- */
.faq-item {
  border: 1px solid var(--cs-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  background: white;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-question {
  font-weight: 600;
  font-size: .95rem;
  color: var(--cs-dark);
  transition: color .2s;
}
.faq-item.open .faq-question { color: var(--cs-primary-2); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cs-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cs-primary-2);
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--cs-emerald); color: white; transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .4s;
  padding: 0 1.5rem;
  color: var(--cs-gray);
  font-size: .9rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 500px; padding: 0 1.5rem 1.25rem; }

/* ---- FORM STYLES ---- */
.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-weight: 500;
  font-size: .875rem;
  color: var(--cs-dark);
  margin-bottom: .4rem;
}
.form-label .required { color: #ef4444; margin-left: .2rem; }

.form-control {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
  color: var(--cs-dark);
  background: white;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--cs-emerald);
  box-shadow: 0 0 0 3px rgba(41,128,168,.12);
}
.form-control::placeholder { color: #94a3b8; }

.form-control.error { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,.1); }

textarea.form-control { resize: vertical; min-height: 120px; }

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* ---- NEWSLETTER ---- */
.newsletter-section {
  background: linear-gradient(135deg, var(--cs-primary) 0%, #0d7a5e 50%, var(--cs-primary-2) 100%);
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

/* ---- GLASS CARD ---- */
.glass-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding: 8rem 0 5rem;
  background: linear-gradient(135deg, var(--cs-dark) 0%, var(--cs-primary-2) 60%, var(--cs-emerald) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='50' cy='50' r='40'/%3E%3C/g%3E%3C/svg%3E") repeat;
}
.page-hero-content { position: relative; z-index: 1; }

.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: white;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.65);
  font-size: .875rem;
  margin-top: .75rem;
}
.breadcrumb a { color: var(--cs-gold-lt); text-decoration: none; }
.breadcrumb a:hover { color: white; }

/* ---- FLOATING CTA ---- */
#whatsapp-btn {
  position: fixed;
  bottom: 5rem; right: 1.5rem;
  width: 52px; height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  z-index: 900;
  transition: var(--transition);
  text-decoration: none;
}
#whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,.65);
}
#whatsapp-btn svg { width: 26px; height: 26px; fill: white; }

#scroll-top {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: var(--cs-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 900;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  border: none;
  color: white;
}
#scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#scroll-top:hover { background: var(--cs-emerald); transform: translateY(-2px); }

/* ---- FOOTER ---- */
.footer-link {
  color: rgba(255,255,255,.65);
  font-size: .875rem;
  text-decoration: none;
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .2rem 0;
}
.footer-link:hover { color: var(--cs-gold-lt); }

.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.75);
  font-size: .875rem;
  text-decoration: none;
  transition: var(--transition);
}
.social-icon:hover { background: var(--cs-emerald); border-color: transparent; color: white; transform: translateY(-2px); }

/* ---- SWIPER CUSTOM ---- */
.swiper-pagination-bullet { background: var(--cs-border) !important; opacity: 1 !important; }
.swiper-pagination-bullet-active { background: var(--cs-emerald) !important; }
.swiper-button-next, .swiper-button-prev { color: var(--cs-primary-2) !important; }

/* ---- FILTER TABS ---- */
.filter-tab {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1.25rem;
  border-radius: 100px;
  border: 1.5px solid var(--cs-border);
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  background: white;
  color: var(--cs-gray);
}
.filter-tab:hover, .filter-tab.active {
  background: var(--cs-primary-2);
  border-color: var(--cs-primary-2);
  color: white;
  box-shadow: 0 4px 16px rgba(35,90,142,.3);
}

/* ---- TEAM CARD ---- */
.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cs-border);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--cs-light);
  margin: 0 auto 1rem;
}
.team-name { font-weight: 700; font-size: 1rem; color: var(--cs-dark); }
.team-role { color: var(--cs-emerald); font-size: .8rem; font-weight: 500; }

/* ---- BLOG CARD ---- */
.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cs-border);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card-img { transform: scale(1.05); }
.blog-card-img-wrap { overflow: hidden; }
.blog-card-body { padding: 1.5rem; }
.blog-card-cat {
  color: var(--cs-emerald);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cs-dark);
  margin: .5rem 0;
  line-height: 1.3;
}
.blog-card-date { color: var(--cs-gray); font-size: .8rem; }

/* ---- TIMELINE ---- */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: .5rem; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--cs-emerald), var(--cs-gold));
}
.timeline-item { position: relative; padding-bottom: 2.5rem; }
.timeline-dot {
  position: absolute;
  left: -1.625rem;
  top: .2rem;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--cs-emerald);
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--cs-emerald);
}
.timeline-year {
  font-size: .8rem;
  font-weight: 700;
  color: var(--cs-emerald);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .35rem;
}
.timeline-title { font-weight: 700; font-size: 1rem; color: var(--cs-dark); margin-bottom: .35rem; }
.timeline-desc { color: var(--cs-gray); font-size: .875rem; line-height: 1.6; }

/* ---- CONTACT ---- */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cs-border);
  transition: var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.contact-info-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--cs-light), rgba(41,128,168,.15));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cs-primary-2);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-info-label { font-size: .75rem; color: var(--cs-gray); text-transform: uppercase; letter-spacing: .07em; }
.contact-info-value { font-weight: 600; color: var(--cs-dark); font-size: .95rem; margin-top: .2rem; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--cs-primary) 0%, var(--cs-dark) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(184,144,74,.15), transparent 70%);
  border-radius: 50%;
}

/* ---- LIGHTBOX ---- */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
#lightbox.open { opacity: 1; visibility: visible; }
#lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: .5rem;
  box-shadow: 0 24px 80px rgba(0,0,0,.8);
}
#lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ---- UTILITY ---- */
.overflow-hidden-x { overflow-x: hidden; }
.transition-all { transition: var(--transition); }
.gradient-emerald { background: linear-gradient(135deg, var(--cs-primary) 0%, var(--cs-emerald) 100%); }
.gradient-dark-emerald { background: linear-gradient(135deg, var(--cs-dark) 0%, var(--cs-primary) 100%); }
.gradient-ocean { background: linear-gradient(135deg, var(--cs-dark) 0%, var(--cs-primary-2) 50%, var(--cs-emerald) 100%); }
.text-gold { color: var(--cs-gold); }
.bg-light-green { background: var(--cs-light); }

/* RTL support for Arabic */
[dir="rtl"] .nav-link::after { right: 0; left: auto; }
[dir="rtl"] .timeline { padding-left: 0; padding-right: 2rem; }
[dir="rtl"] .timeline::before { left: auto; right: .5rem; }
[dir="rtl"] .timeline-dot { left: auto; right: -1.625rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero-title { font-size: 2.25rem; }
  .section-title { font-size: 1.75rem; }
  .hero-stats { gap: 1.5rem; }
  .destination-card-img { height: 240px; }
  .destination-card-desc { max-height: 80px !important; opacity: 1 !important; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.9rem; }
  .btn-primary, .btn-outline, .btn-gold { padding: .75rem 1.5rem; }
}

/* ---- ANIMATIONS ---- */
.floating {
  animation: floating 4s ease-in-out infinite;
}
@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.glow-green {
  box-shadow: 0 0 30px rgba(41,128,168,.4);
}

/* AOS overrides */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ============================================================
   LUXURY MODERN UI ENHANCEMENTS
   ============================================================ */

/* Refined hero content z-index above overlay */
.hero-section > .max-w-screen-xl { z-index: 2; }
.hero-section .scroll-indicator    { z-index: 2; }

/* Hero content text shadow for video readability */
.hero-title    { text-shadow: 0 2px 24px rgba(0,0,0,.4); }
.hero-subtitle { text-shadow: 0 1px 12px rgba(0,0,0,.35); }

/* Luxury shimmer effect on buttons */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
}
.btn-primary:hover::after { left: 160%; }

/* Gold shimmer on gold button */
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.btn-gold { position: relative; overflow: hidden; }
.btn-gold:hover::after { opacity: 1; }

/* Luxury section badge refinement */
.section-badge {
  border: 1px solid rgba(35,90,142,.18);
  box-shadow: 0 2px 8px rgba(30,58,95,.08);
}

/* Refined card micro-interactions */
.destination-card {
  box-shadow: 0 8px 32px rgba(30,58,95,.1), 0 2px 8px rgba(0,0,0,.06);
}
.destination-card:hover {
  box-shadow: 0 24px 60px rgba(30,58,95,.2), 0 8px 24px rgba(0,0,0,.1);
}

.package-card {
  box-shadow: 0 4px 24px rgba(30,58,95,.08);
}
.package-card:hover {
  box-shadow: 0 20px 56px rgba(30,58,95,.18), 0 8px 20px rgba(0,0,0,.08);
}

/* Luxury gold accent line on package card hover */
.package-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cs-emerald), var(--cs-gold));
  transform: scaleX(0);
  transition: transform .35s ease;
}
.package-card { position: relative; overflow: hidden; }
.package-card:hover::after { transform: scaleX(1); }

/* Hero video progress line */
.hero-video-dot {
  position: relative;
  overflow: hidden;
}
.hero-video-dot.active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.25);
  animation: dotProgress 7s linear forwards;
}
@keyframes dotProgress {
  from { transform: scaleX(0); transform-origin: left; }
  to   { transform: scaleX(1); transform-origin: left; }
}


/* Luxury scroll indicator */
.scroll-indicator { font-family: 'Cormorant Garamond', serif; font-size: .8rem; letter-spacing: .2em; }

/* Section title italic accent */
.section-title em {
  font-style: italic;
  color: var(--cs-primary-2);
}

/* Why card icon gradient refinement */
.why-icon {
  background: linear-gradient(135deg, rgba(41,128,168,.12) 0%, rgba(184,144,74,.08) 100%);
  border: 1px solid rgba(41,128,168,.1);
}

/* Stats section refinement */
.hero-stat-num {
  background: linear-gradient(135deg, var(--cs-gold) 0%, var(--cs-gold-lt) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Testimonial card glass effect */
.testimonial-card {
  background: rgba(255,255,255,.98) !important;
  border: 1px solid rgba(30,58,95,.06) !important;
  box-shadow: 0 8px 32px rgba(30,58,95,.08) !important;
}

/* Features bar refined */
.features-bar-item {
  transition: var(--transition);
  padding: .75rem 1rem;
  border-radius: var(--radius);
}
.features-bar-item:hover { background: var(--cs-light); }

/* Luxury gradient divider */
.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cs-emerald) 30%, var(--cs-gold) 70%, transparent);
  width: 80px;
}

/* Smooth image loading */
img { transition: opacity .3s ease; }
img[src]  { opacity: 1; }

/* Mobile hero video dots adjust */
@media (max-width: 640px) {
  .hero-video-dots { bottom: 6.5rem; }
  .nav-logo-img { height: 36px; }
}

/* ============================================================
   NEXT-LEVEL MODERN UI OVERHAUL
   ============================================================ */

/* ============================================================
   INTRODUCTION SECTION
   ============================================================ */
.intro-lang-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(30,58,95,.08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.intro-lang-card:hover { box-shadow: var(--shadow); }

.intro-lang-flag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cs-primary-2);
  background: rgba(30,58,95,.07);
  border: 1px solid rgba(30,58,95,.12);
  padding: .3rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.intro-text-body p {
  color: var(--cs-slate);
  font-size: .95rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}
.intro-text-body strong { color: var(--cs-primary-2); font-weight: 600; }

/* Value cards */
.value-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(30,58,95,.08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.value-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}
.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cs-dark);
  margin-bottom: .4rem;
}
.value-desc {
  font-size: .8rem;
  color: var(--cs-gray);
  line-height: 1.6;
}

/* ============================================================
   TOUR PACKAGE CARDS
   ============================================================ */
.tour-pkg-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid transparent;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}
.tour-pkg-card:hover  { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.tour-pkg-card.active {
  border-color: var(--cs-primary-2);
  box-shadow: 0 0 0 4px rgba(37,80,126,.12), var(--shadow-xl);
}

.tour-pkg-img-wrap { position: relative; overflow: hidden; }
.tour-pkg-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .6s ease;
  display: block;
}
.tour-pkg-card:hover .tour-pkg-img { transform: scale(1.06); }

.tour-pkg-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: linear-gradient(135deg, var(--cs-gold), #8a6a28);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .28rem .8rem;
  border-radius: 100px;
}

.tour-pkg-days {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(14,21,40,.75);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: .3rem .85rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.2);
}

.tour-pkg-body { padding: 1.5rem; }

.tour-pkg-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cs-dark);
  margin-bottom: .5rem;
}

.tour-pkg-route {
  display: flex;
  align-items: flex-start;
  gap: .35rem;
  font-size: .78rem;
  color: var(--cs-gray);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.tour-pkg-route svg { flex-shrink: 0; margin-top: 2px; color: var(--cs-primary-2); }

.tour-pkg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: 1.25rem;
}
.tour-pkg-tag {
  background: rgba(30,58,95,.07);
  color: var(--cs-primary-2);
  border: 1px solid rgba(30,58,95,.1);
  font-size: .7rem;
  font-weight: 600;
  padding: .22rem .6rem;
  border-radius: 100px;
}

.tour-pkg-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .7rem 1rem;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  border: 2px solid var(--cs-primary-2);
  color: var(--cs-primary-2);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}
.tour-pkg-btn:hover,
.tour-pkg-card.active .tour-pkg-btn {
  background: var(--cs-primary-2);
  color: white;
}

/* ============================================================
   PACKAGE DETAIL PANEL
   ============================================================ */
.pkg-detail-panel {
  animation: panelIn .45s ease;
}
.pkg-detail-panel.hidden { display: none; }

@keyframes panelIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pkg-detail-inner {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(30,58,95,.1);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.pkg-detail-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(30,58,95,.08);
}

.pkg-detail-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cs-dark);
  margin-bottom: .35rem;
}

.pkg-detail-route {
  font-size: .85rem;
  color: var(--cs-primary-2);
  font-weight: 500;
}

.pkg-lang-tabs {
  display: flex;
  gap: .4rem;
}
.pkg-lang-tab {
  padding: .4rem 1rem;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  border: 1.5px solid rgba(30,58,95,.18);
  color: var(--cs-slate);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}
.pkg-lang-tab.active, .pkg-lang-tab:hover {
  background: var(--cs-primary-2);
  border-color: var(--cs-primary-2);
  color: white;
}

/* Inclusions / Exclusions */
.pkg-incl-excl-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 640px) { .pkg-incl-excl-row { grid-template-columns: 1fr; } }

.pkg-incl, .pkg-excl {
  background: var(--cs-off-white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(30,58,95,.08);
}
.pkg-incl h4, .pkg-excl h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--cs-dark);
  margin-bottom: .75rem;
}
.pkg-incl ul, .pkg-excl ul {
  list-style: none;
  padding: 0; margin: 0;
}
.pkg-incl ul li, .pkg-excl ul li {
  font-size: .82rem;
  color: var(--cs-slate);
  padding: .3rem 0;
  border-bottom: 1px solid rgba(30,58,95,.05);
}
.pkg-incl ul li:last-child, .pkg-excl ul li:last-child { border: none; }

/* Timeline days */
.pkg-timeline { position: relative; }
.pkg-timeline::before {
  content: '';
  position: absolute;
  left: 22px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--cs-primary-2), var(--cs-gold));
}

.timeline-day {
  display: flex;
  gap: 1.5rem;
  padding: 0 0 2rem 0;
  position: relative;
}
.td-marker {
  flex-shrink: 0;
  width: 46px; height: 46px;
  background: white;
  border: 2px solid var(--cs-primary-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}
.td-icon { font-size: 1.1rem; }

.td-content { flex: 1; padding-top: .25rem; }
.td-day {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cs-primary-2);
  background: rgba(30,58,95,.07);
  border-radius: 100px;
  padding: .15rem .6rem;
  margin-bottom: .35rem;
}
.td-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cs-dark);
  margin-bottom: .35rem;
}
.td-desc {
  font-size: .875rem;
  color: var(--cs-gray);
  line-height: 1.7;
}

/* Package footer */
.pkg-detail-footer {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(30,58,95,.08);
  margin-top: 1rem;
}
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--cs-dark);
  padding: .85rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .03em;
  text-decoration: none;
  border: 1.5px solid rgba(30,58,95,.3);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-dark:hover {
  background: var(--cs-dark);
  color: white;
  border-color: var(--cs-dark);
}

/* ---- Page & Section Backgrounds ---- */
.bg-white { background: #ffffff !important; }

section.py-24.bg-white,
section.py-20.bg-white,
section.py-16.bg-white  { background: #ffffff !important; }

section.bg-gray-50 { background: var(--cs-off-white) !important; }

/* ---- Section Badge — refined pill ---- */
.section-badge {
  background: linear-gradient(135deg, rgba(30,58,95,.07), rgba(41,128,168,.07));
  border: 1px solid rgba(30,58,95,.14);
  color: var(--cs-primary-2);
  font-weight: 700;
  letter-spacing: .1em;
  font-size: .72rem;
}

/* ---- Section Divider — dual-color ---- */
.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cs-primary-2) 30%, var(--cs-gold) 70%, transparent);
  width: 72px;
}

/* ---- Section Title ---- */
.section-title { letter-spacing: -.01em; }
.section-title em { color: var(--cs-emerald); font-style: italic; }

/* ---- Hero Enhancements ---- */
.hero-badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(184,144,74,.45);
  backdrop-filter: blur(12px);
  color: var(--cs-gold-lt);
  letter-spacing: .12em;
}

/* ---- Why Choose Us Cards ---- */
.why-card {
  background: #ffffff;
  border: 1px solid rgba(30,58,95,.08);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.why-card:hover {
  border-color: rgba(30,58,95,.18);
  transform: translateY(-8px);
}
.why-card::before {
  background: linear-gradient(90deg, var(--cs-primary-2), var(--cs-gold));
}

/* ---- Package Card ---- */
.package-badge {
  background: linear-gradient(135deg, var(--cs-gold) 0%, #9a7030 100%);
  font-weight: 700;
  letter-spacing: .06em;
}
.package-price { color: var(--cs-primary-2); }
.package-tag {
  background: rgba(30,58,95,.07);
  color: var(--cs-primary-2);
  border: 1px solid rgba(30,58,95,.1);
}

/* ---- Destination Tag ---- */
.destination-card-tag {
  background: rgba(184,144,74,.2);
  border: 1px solid rgba(184,144,74,.45);
  color: var(--cs-gold-lt);
}

/* ---- Stat Cards ---- */
.stat-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
  transition: background .3s ease;
}
.stat-card:hover { background: rgba(255,255,255,.08); }
.stat-num {
  background: linear-gradient(135deg, var(--cs-gold-lt), var(--cs-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Testimonial Stars ---- */
.testimonial-stars { color: var(--cs-gold); letter-spacing: .05em; }
.testimonial-card::before { color: rgba(30,58,95,.06); }

/* ---- Gallery Overlay ---- */
.gallery-overlay {
  background: linear-gradient(to top, rgba(14,21,40,.85) 0%, rgba(14,21,40,.4) 60%, transparent 100%);
}

/* ---- FAQ ---- */
.faq-item.open .faq-question { color: var(--cs-primary-2); }
.faq-item.open .faq-icon { background: var(--cs-primary-2); color: white; }

/* ---- Form Focus ---- */
.form-control:focus {
  border-color: var(--cs-primary-2);
  box-shadow: 0 0 0 3px rgba(30,58,95,.12);
}

/* ---- Glass Card (dark sections) ---- */
.glass-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--cs-dark) 0%, var(--cs-primary) 50%, var(--cs-emerald) 100%) !important;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(184,144,74,.15), transparent 65%);
}

/* ---- Footer Refinement ---- */
.social-icon:hover {
  background: var(--cs-primary-2);
  border-color: transparent;
}

/* ---- Filter Tabs ---- */
.filter-tab:hover, .filter-tab.active {
  background: var(--cs-primary-2);
  border-color: var(--cs-primary-2);
  box-shadow: 0 4px 16px rgba(30,58,95,.3);
}

/* ---- Breadcrumb link ---- */
.breadcrumb a { color: var(--cs-gold-lt); }

/* ---- Swiper pagination ---- */
.swiper-pagination-bullet-active { background: var(--cs-primary-2) !important; }

/* ---- Scroll to top ---- */
#scroll-top:hover { background: var(--cs-primary-2); transform: translateY(-2px); }

/* ---- Timeline dot ---- */
.timeline-dot { background: var(--cs-primary-2); box-shadow: 0 0 0 2px var(--cs-primary-2); }
.timeline-year { color: var(--cs-primary-2); }

/* ---- Blog card ---- */
.blog-card-cat { color: var(--cs-primary-2); }

/* ---- Page hero ---- */
.page-hero-title { letter-spacing: -.01em; }

/* ---- Hero stat separator ---- */
.hero-stat-item + .hero-stat-item {
  padding-left: 2.5rem;
  border-left: 1px solid rgba(255,255,255,.15);
}

/* ---- Why list item accent ---- */
.why-list-item:hover { background: rgba(30,58,95,.04); }

/* ---- Responsive refinements ---- */
@media (max-width: 768px) {
  .stat-card { border: none; }
  .hero-stat-item + .hero-stat-item { border-left: none; padding-left: 0; }
}

/* ============================================================
   OPEN BOOK INTRODUCTION – PREMIUM ANIMATION
   ============================================================ */

/* Book scene wrapper */
.book-scene {
  perspective: 2000px;
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

/* Book outer shell – opens like a hardcover */
.book-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  transform-style: preserve-3d;
  animation: bookOpen 1.2s cubic-bezier(.22,.61,.36,1) both;
  filter: drop-shadow(0 32px 60px rgba(20,30,48,.25));
}

@keyframes bookOpen {
  0%   { opacity: 0; transform: rotateX(30deg) scale(.92); }
  100% { opacity: 1; transform: rotateX(0deg) scale(1); }
}

/* Spine */
.book-spine {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  transform: translateX(-50%);
  width: 28px;
  background: linear-gradient(180deg, #b8904a 0%, #8a6a28 40%, #c9a84c 60%, #8a6a28 100%);
  z-index: 10;
  box-shadow:
    -3px 0 12px rgba(0,0,0,.25),
     3px 0 12px rgba(0,0,0,.25);
  border-radius: 2px;
}

/* Centre crease shadow on spine */
.book-spine::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.18), rgba(255,255,255,.12), rgba(0,0,0,.18));
}

/* Individual pages */
.book-page {
  position: relative;
  background: #fdfaf4;
  overflow: hidden;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}

/* Left page styles */
.book-page--left {
  border-radius: 8px 0 0 8px;
  border-right: none;
  transform-origin: right center;
  box-shadow:
    -8px 0 24px rgba(0,0,0,.12),
    inset -4px 0 20px rgba(0,0,0,.07);
}

/* Right page styles */
.book-page--right {
  border-radius: 0 8px 8px 0;
  border-left: none;
  transform-origin: left center;
  box-shadow:
    8px 0 24px rgba(0,0,0,.12),
    inset 4px 0 20px rgba(0,0,0,.07);
}

/* Subtle hover lifts */
.book-page--left:hover  { transform: rotateY(-3deg); }
.book-page--right:hover { transform: rotateY( 3deg); }

/* Inner content padding */
.book-page-inner {
  padding: 2.75rem 2.5rem;
  height: 100%;
  position: relative;
  z-index: 2;
}

/* Page top paper-texture lines */
.book-page-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 27px,
    rgba(184,144,74,.08) 27px,
    rgba(184,144,74,.08) 28px
  );
  pointer-events: none;
  z-index: 1;
}

/* Header row */
.book-page-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 3;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(184,144,74,.3);
}

.book-page--right .book-page-header {
  flex-direction: row-reverse;
  text-align: right;
}

.book-page-flag { font-size: 1.4rem; }
.book-page-lang {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cs-primary-2);
  letter-spacing: .04em;
  flex: 1;
}
.book-page-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(184,144,74,.7);
  letter-spacing: .12em;
  margin-left: auto;
}
.book-page--right .book-page-num { margin-left: 0; margin-right: auto; }

/* Content paragraphs */
.book-page-content {
  position: relative;
  z-index: 3;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  line-height: 1.9;
  color: #2c3040;
}
.book-page-content p { margin-bottom: .9rem; }
.book-page-content strong { color: var(--cs-primary-2); font-weight: 700; }

/* Footer ornament */
.book-page-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(184,144,74,.2);
  text-align: center;
  position: relative;
  z-index: 3;
}
.book-page-ornament {
  font-family: 'Cormorant Garamond', serif;
  font-size: .85rem;
  font-style: italic;
  color: rgba(184,144,74,.6);
  letter-spacing: .15em;
}

/* Page curl / shadow effect on bottom corner */
.book-page-curl {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: radial-gradient(ellipse at bottom left, rgba(0,0,0,.12) 40%, transparent 70%);
  border-radius: 0 0 0 var(--radius);
  pointer-events: none;
}
.book-page-curl--right {
  left: auto;
  right: 0;
  background: radial-gradient(ellipse at bottom right, rgba(0,0,0,.12) 40%, transparent 70%);
  border-radius: 0 0 var(--radius) 0;
}

/* Bottom shadow of full book */
.book-shadow {
  position: absolute;
  bottom: -20px;
  left: 5%;
  right: 5%;
  height: 30px;
  background: rgba(20,30,48,.18);
  filter: blur(16px);
  border-radius: 50%;
  z-index: 0;
}

/* Responsive – stack on mobile */
@media (max-width: 768px) {
  .book-wrapper {
    grid-template-columns: 1fr;
    animation: none;
    filter: none;
  }
  .book-page--left,
  .book-page--right {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transform: none !important;
  }
  .book-page--left  { margin-bottom: 1.5rem; }
  .book-spine { display: none; }
  .book-scene { perspective: none; }
}

/* ============================================================
   ENHANCED ANIMATIONS & MODERN STYLES
   ============================================================ */

/* Floating social icons on hover */
.social-icon {
  transition: transform .28s cubic-bezier(.34,1.56,.64,1), background .25s, box-shadow .25s, border-color .25s;
}
.social-icon:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(30,58,95,.35);
}

/* Pulsing WhatsApp button */
#whatsapp-btn {
  animation: waPulse 2.8s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50%       { box-shadow: 0 4px 36px rgba(37,211,102,.8), 0 0 0 8px rgba(37,211,102,.12); }
}
#whatsapp-btn:hover { animation: none; box-shadow: 0 8px 32px rgba(37,211,102,.7); }

/* Value card inner accent on hover */
.value-card:hover .value-icon {
  animation: iconBounce .5s cubic-bezier(.34,1.56,.64,1);
}
@keyframes iconBounce {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.25) rotate(-6deg); }
  100% { transform: scale(1); }
}

/* Book-section scroll reveal – extra flair */
#intro-book .book-page-content p {
  animation: none;
}
.book-scene.aos-animate .book-page-content p {
  animation: fadeSlideUp .5s ease both;
}
.book-scene.aos-animate .book-page-content p:nth-child(1) { animation-delay: .3s; }
.book-scene.aos-animate .book-page-content p:nth-child(2) { animation-delay: .45s; }
.book-scene.aos-animate .book-page-content p:nth-child(3) { animation-delay: .6s; }
.book-scene.aos-animate .book-page-content p:nth-child(4) { animation-delay: .75s; }
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Shimmer on section titles */
.section-title em {
  background: linear-gradient(135deg, var(--cs-emerald), var(--cs-primary-2), var(--cs-gold-lt));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 4s linear infinite;
}
@keyframes shimmerText {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Enhanced navbar scrolled state */
#navbar.scrolled {
  border-bottom: 1px solid rgba(184,144,74,.2);
}

/* Smooth page transition overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: var(--cs-dark);
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  animation: pageIn .6s ease forwards;
}
@keyframes pageIn {
  from { opacity: 1; }
  to   { opacity: 0; }
}

/* Enhanced tour pkg card active ring */
.tour-pkg-card.active {
  border-color: var(--cs-primary-2);
  box-shadow:
    0 0 0 3px rgba(37,80,126,.15),
    0 20px 48px rgba(30,58,95,.18);
}

/* Glassmorphism badge on dark sections */
.glass-badge {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.9);
  padding: .35rem 1rem;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

/* Refined mobile book */
@media (max-width: 480px) {
  .book-page-inner { padding: 1.75rem 1.5rem; }
  .book-page-content { font-size: 1rem; }
}

/* ============================================================
   CARD REDESIGN OVERHAUL – Modern Premium UI
   All card types: dest, package, why, value, tour-pkg,
   testimonial, gallery, faq, stat
   ============================================================ */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DESTINATION CARDS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.dest-card {
  background: #fff;
  border-radius: 1.375rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(20,30,48,.07), 0 8px 32px rgba(20,30,48,.05);
  border: 1px solid rgba(30,58,95,.07);
  transition: transform .38s cubic-bezier(.4,0,.2,1), box-shadow .38s cubic-bezier(.4,0,.2,1), border-color .3s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.375rem;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #b8904a, #2980a8) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .38s ease;
  pointer-events: none;
}
.dest-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(20,30,48,.18), 0 8px 24px rgba(20,30,48,.08); }
.dest-card:hover::after { opacity: 1; }

.dest-card-img-wrap { position: relative; height: 260px; overflow: hidden; flex-shrink: 0; }
.dest-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.4,0,.2,1); display: block; }
.dest-card:hover .dest-card-img { transform: scale(1.09); }

.dest-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,22,40,.08) 0%, rgba(14,22,40,.28) 45%, rgba(14,22,40,.82) 100%);
  transition: background .4s ease;
}
.dest-card:hover .dest-card-overlay { background: linear-gradient(180deg, rgba(14,22,40,.12) 0%, rgba(14,22,40,.35) 40%, rgba(14,22,40,.88) 100%); }

.dest-card-top {
  position: absolute; top: 1.1rem; left: 1.1rem; right: 1.1rem;
  display: flex; justify-content: space-between; align-items: flex-start; z-index: 2;
}
.dest-tag-badge {
  font-size: .62rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; padding: .32rem 1rem;
  border-radius: 999px; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  background: rgba(184,144,74,.9); color: white;
  box-shadow: 0 2px 12px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.2);
}
.dest-icon-badge {
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  background: rgba(255,255,255,.12); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.28);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), background .3s;
}
.dest-card:hover .dest-icon-badge { transform: scale(1.15) rotate(-6deg); background: rgba(255,255,255,.2); }

.dest-card-img-footer {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.1rem 1.25rem 1.2rem; z-index: 2;
}
.dest-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; color: white; margin: 0 0 .5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
  transition: letter-spacing .3s;
}
.dest-card:hover .dest-card-name { letter-spacing: .01em; }
.dest-card-meta-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.dest-card-meta-row span {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .68rem; font-weight: 500; color: rgba(255,255,255,.82);
  background: rgba(0,0,0,.2); backdrop-filter: blur(6px);
  padding: .18rem .55rem; border-radius: 999px;
}

.dest-card-body {
  padding: 1.35rem 1.35rem 1.35rem; flex: 1;
  display: flex; flex-direction: column; gap: .9rem;
}
.dest-card-desc {
  font-size: .83rem; line-height: 1.75; color: #4b5563;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
  flex: 1;
}
.dest-highlights { display: flex; flex-wrap: wrap; gap: .4rem; }
.dest-highlight-tag {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .68rem; font-weight: 600;
  background: linear-gradient(135deg, #eef4ff, #f5f9ff);
  color: #1e3a5f; border: 1px solid rgba(41,128,168,.2);
  padding: .25rem .75rem; border-radius: 999px;
  transition: background .25s, border-color .25s, transform .25s;
}
.dest-highlight-tag:hover { background: linear-gradient(135deg, #dbeafe, #eff6ff); border-color: rgba(41,128,168,.4); transform: translateY(-1px); }
.dest-highlight-tag svg { color: #2980a8; flex-shrink: 0; }

.dest-card-actions {
  display: flex; gap: .75rem; padding-top: .9rem;
  border-top: 1px solid rgba(30,58,95,.07);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PACKAGE CARDS (packages.php)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.package-card {
  background: #fff;
  border-radius: 1.375rem !important;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(20,30,48,.06), 0 6px 28px rgba(20,30,48,.04) !important;
  border: 1px solid rgba(30,58,95,.07) !important;
  transition: transform .38s cubic-bezier(.4,0,.2,1), box-shadow .38s cubic-bezier(.4,0,.2,1) !important;
  position: relative;
}
.package-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cs-emerald), var(--cs-gold-lt), var(--cs-emerald));
  background-size: 200% auto;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.package-card:hover { transform: translateY(-10px) !important; box-shadow: 0 28px 64px rgba(20,30,48,.18), 0 10px 28px rgba(20,30,48,.08) !important; }
.package-card:hover::after { transform: scaleX(1); }

.package-card-img-wrap { overflow: hidden; position: relative; }
.package-card-img { width: 100%; height: 255px; object-fit: cover; transition: transform .65s cubic-bezier(.4,0,.2,1); display: block; }
.package-card:hover .package-card-img { transform: scale(1.07); }

.package-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: linear-gradient(135deg, rgba(184,144,74,.95), rgba(141,100,40,.95)) !important;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: white; padding: .32rem 1rem; border-radius: 999px;
  font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  box-shadow: 0 2px 12px rgba(184,144,74,.4), inset 0 1px 0 rgba(255,255,255,.2);
}

.package-card-body { padding: 1.5rem 1.5rem 1.25rem; }
.package-meta { display: flex; align-items: center; gap: .75rem; margin-bottom: .85rem; flex-wrap: wrap; }
.package-meta-item { display: flex; align-items: center; gap: .3rem; color: #94a3b8; font-size: .76rem; font-weight: 500; }

.package-title {
  font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700;
  color: var(--cs-dark); margin-bottom: .55rem; line-height: 1.25;
  transition: color .25s;
}
.package-card:hover .package-title { color: var(--cs-primary-2); }

.package-desc { color: #64748b; font-size: .82rem; line-height: 1.7; margin-bottom: 1rem; }

.package-inclusions { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: 1.25rem; }
.package-tag {
  background: linear-gradient(135deg, #eef4ff, #f0f9ff) !important;
  color: var(--cs-primary-2) !important;
  border: 1px solid rgba(41,128,168,.18) !important;
  padding: .22rem .7rem; border-radius: 999px;
  font-size: .7rem; font-weight: 600;
  transition: all .22s ease;
}
.package-tag:hover { background: linear-gradient(135deg, #dbeafe, #e0f2fe) !important; border-color: rgba(41,128,168,.35) !important; }

.package-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; border-top: 1px solid rgba(30,58,95,.07); gap: .75rem;
}
.package-price { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--cs-primary-2); }
.package-price small { font-family: 'Inter', sans-serif; font-size: .68rem; color: #94a3b8; font-weight: 400; display: block; line-height: 1.2; margin-top: .1rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WHY / VALUES CARDS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.why-card {
  background: #fff !important;
  border-radius: 1.375rem !important;
  padding: 2rem 1.75rem !important;
  text-align: center;
  border: 1px solid rgba(30,58,95,.07) !important;
  box-shadow: 0 2px 10px rgba(20,30,48,.05), 0 4px 20px rgba(20,30,48,.04) !important;
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s, border-color .35s !important;
  position: relative; overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cs-primary-2), var(--cs-emerald), var(--cs-gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.why-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(41,128,168,.06) 0%, transparent 70%);
  opacity: 0; transition: opacity .4s;
  pointer-events: none;
}
.why-card:hover { transform: translateY(-10px) !important; box-shadow: 0 24px 56px rgba(20,30,48,.14), 0 8px 24px rgba(20,30,48,.07) !important; border-color: rgba(41,128,168,.18) !important; }
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover::after { opacity: 1; }

.why-icon {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, rgba(41,128,168,.1) 0%, rgba(184,144,74,.08) 100%) !important;
  border: 1px solid rgba(41,128,168,.12) !important;
  border-radius: 1.1rem !important;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.35rem;
  font-size: 1.65rem;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .35s, box-shadow .35s !important;
  box-shadow: 0 4px 16px rgba(41,128,168,.08);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--cs-primary-2), var(--cs-emerald)) !important;
  color: white; transform: scale(1.12) rotate(-4deg) !important;
  box-shadow: 0 8px 28px rgba(41,128,168,.35) !important;
}

/* value-card (intro section) */
.value-card {
  background: #fff !important;
  border-radius: 1.375rem !important;
  padding: 2rem 1.5rem !important;
  text-align: center;
  border: 1px solid rgba(30,58,95,.07) !important;
  box-shadow: 0 2px 10px rgba(20,30,48,.05) !important;
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s !important;
  position: relative; overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(41,128,168,.04) 0%, rgba(184,144,74,.04) 100%);
  opacity: 0; transition: opacity .35s;
}
.value-card:hover { transform: translateY(-8px) !important; box-shadow: 0 24px 52px rgba(20,30,48,.14) !important; }
.value-card:hover::before { opacity: 1; }
.value-icon {
  font-size: 2.4rem; margin-bottom: 1.1rem; display: block;
  filter: drop-shadow(0 2px 8px rgba(41,128,168,.2));
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), filter .3s;
}
.value-card:hover .value-icon { transform: scale(1.2) rotate(-5deg); filter: drop-shadow(0 4px 16px rgba(41,128,168,.35)); }
.value-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--cs-dark); margin-bottom: .4rem; }
.value-desc { font-size: .8rem; color: #64748b; line-height: 1.65; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TOUR PACKAGE SELECTOR CARDS (index.php)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.tour-pkg-card {
  background: #fff;
  border-radius: 1.375rem;
  overflow: hidden;
  border: 2px solid transparent;
  box-shadow: 0 2px 12px rgba(20,30,48,.07), 0 6px 28px rgba(20,30,48,.05);
  transition: transform .38s cubic-bezier(.4,0,.2,1), box-shadow .38s, border-color .3s;
  cursor: pointer;
  position: relative;
}
.tour-pkg-card:hover  { transform: translateY(-8px); box-shadow: 0 28px 64px rgba(20,30,48,.18), 0 10px 28px rgba(20,30,48,.08); }
.tour-pkg-card.active {
  border-color: var(--cs-primary-2);
  box-shadow: 0 0 0 4px rgba(30,58,95,.1), 0 24px 56px rgba(20,30,48,.18);
}

.tour-pkg-img-wrap { position: relative; overflow: hidden; }
.tour-pkg-img { width: 100%; height: 235px; object-fit: cover; transition: transform .65s ease; display: block; }
.tour-pkg-card:hover .tour-pkg-img { transform: scale(1.07); }

.tour-pkg-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: linear-gradient(135deg, rgba(184,144,74,.95), rgba(141,100,40,.95));
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: #fff; font-size: .65rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .9rem; border-radius: 999px;
  box-shadow: 0 2px 12px rgba(184,144,74,.45);
}
.tour-pkg-days {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(14,21,40,.75); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: #fff; font-size: .75rem; font-weight: 700;
  padding: .3rem .9rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
}

.tour-pkg-body { padding: 1.5rem; }
.tour-pkg-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--cs-dark); margin-bottom: .5rem; transition: color .25s; }
.tour-pkg-card:hover .tour-pkg-title { color: var(--cs-primary-2); }
.tour-pkg-route { display: flex; align-items: flex-start; gap: .35rem; font-size: .76rem; color: #94a3b8; margin-bottom: 1rem; line-height: 1.55; }
.tour-pkg-route svg { flex-shrink: 0; margin-top: 2px; color: var(--cs-primary-2); }
.tour-pkg-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: 1.25rem; }
.tour-pkg-tag {
  background: linear-gradient(135deg, #eef4ff, #f0f9ff);
  color: var(--cs-primary-2); border: 1px solid rgba(41,128,168,.18);
  font-size: .68rem; font-weight: 600; padding: .22rem .65rem; border-radius: 999px;
}
.tour-pkg-btn {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .75rem 1rem; border-radius: 999px; font-size: .84rem; font-weight: 600;
  border: 2px solid rgba(30,58,95,.2); color: var(--cs-primary);
  background: transparent; cursor: pointer;
  transition: all .3s cubic-bezier(.4,0,.2,1);
}
.tour-pkg-btn:hover, .tour-pkg-card.active .tour-pkg-btn {
  background: var(--cs-primary-2); border-color: var(--cs-primary-2); color: white;
  box-shadow: 0 6px 20px rgba(30,58,95,.3);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TESTIMONIAL CARDS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.testimonial-card {
  background: #fff !important;
  border-radius: 1.375rem !important;
  padding: 2.25rem !important;
  box-shadow: 0 2px 12px rgba(20,30,48,.06), 0 8px 32px rgba(20,30,48,.04) !important;
  border: 1px solid rgba(30,58,95,.06) !important;
  position: relative; overflow: hidden;
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s !important;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(20,30,48,.14), 0 8px 24px rgba(20,30,48,.07) !important; }
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: .8rem; left: 1.5rem;
  font-family: 'Playfair Display', serif; font-size: 6rem;
  color: rgba(184,144,74,.12); line-height: 1;
  pointer-events: none;
}
.testimonial-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--cs-gold), var(--cs-emerald), transparent);
  opacity: 0; transition: opacity .35s;
}
.testimonial-card:hover::after { opacity: 1; }

.testimonial-stars { color: var(--cs-gold); margin-bottom: 1.1rem; font-size: 1rem; letter-spacing: .05em; }
.testimonial-text {
  color: #475569; font-size: .9rem; line-height: 1.78; font-style: italic;
  margin-bottom: 1.6rem; position: relative; z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: .9rem; }
.testimonial-avatar {
  width: 50px; height: 50px; border-radius: 50%; object-fit: cover;
  border: 2px solid transparent;
  box-shadow: 0 0 0 2px var(--cs-gold), 0 0 0 4px rgba(184,144,74,.15);
  transition: box-shadow .3s;
}
.testimonial-card:hover .testimonial-avatar { box-shadow: 0 0 0 2px var(--cs-emerald), 0 0 0 4px rgba(41,128,168,.2); }
.testimonial-name { font-weight: 700; font-size: .9rem; color: var(--cs-dark); }
.testimonial-location { font-size: .76rem; color: #94a3b8; margin-top: .15rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GALLERY ITEMS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: 1.1rem; cursor: pointer;
  box-shadow: 0 4px 16px rgba(20,30,48,.1);
  transition: transform .38s cubic-bezier(.4,0,.2,1), box-shadow .38s;
}
.gallery-item:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 20px 48px rgba(20,30,48,.2); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,22,40,.88) 0%, rgba(14,22,40,.45) 50%, rgba(14,22,40,.08) 100%);
  opacity: 0; transition: opacity .38s cubic-bezier(.4,0,.2,1);
  display: flex; align-items: center; justify-content: center;
}
.gallery-overlay > * { transform: scale(.8) translateY(8px); transition: transform .38s cubic-bezier(.34,1.56,.64,1), opacity .3s; opacity: 0; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay > * { transform: scale(1) translateY(0); opacity: 1; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FAQ ITEMS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.faq-item {
  border: 1px solid rgba(30,58,95,.09) !important;
  border-radius: 1rem !important;
  overflow: hidden; background: #fff !important;
  transition: box-shadow .3s, border-color .3s !important;
  position: relative;
}
.faq-item::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--cs-primary-2), var(--cs-emerald));
  transform: scaleY(0); transform-origin: top;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  border-radius: 0 0 0 1rem;
}
.faq-item.open { border-color: rgba(41,128,168,.2) !important; box-shadow: 0 8px 28px rgba(30,58,95,.1) !important; }
.faq-item.open::before { transform: scaleY(1); }
.faq-item:hover:not(.open) { border-color: rgba(30,58,95,.15) !important; box-shadow: 0 4px 16px rgba(30,58,95,.07) !important; }

.faq-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.35rem 1.5rem; background: none; border: none; cursor: pointer; text-align: left; gap: 1rem; }
.faq-question { font-weight: 600; font-size: .95rem; color: var(--cs-dark); transition: color .25s; }
.faq-item.open .faq-question { color: var(--cs-primary-2) !important; }
.faq-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(30,58,95,.07); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--cs-primary-2);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .3s, box-shadow .3s;
}
.faq-item.open .faq-icon {
  background: linear-gradient(135deg, var(--cs-primary-2), var(--cs-emerald)) !important;
  color: white; transform: rotate(45deg);
  box-shadow: 0 4px 14px rgba(41,128,168,.35);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .42s cubic-bezier(.4,0,.2,1), padding .4s; padding: 0 1.5rem; color: #64748b; font-size: .88rem; line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 500px; padding: 0 1.5rem 1.35rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STAT CARDS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.stat-card {
  text-align: center; padding: 2.25rem 1.5rem;
  border-radius: 1.375rem !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  background: rgba(255,255,255,.05) !important;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: background .3s, transform .3s, box-shadow .3s !important;
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(184,144,74,.12) 0%, transparent 70%);
  opacity: 0; transition: opacity .3s;
}
.stat-card:hover { background: rgba(255,255,255,.09) !important; transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.2) !important; }
.stat-card:hover::before { opacity: 1; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800; display: block; line-height: 1;
  background: linear-gradient(135deg, var(--cs-gold) 0%, var(--cs-gold-lt) 50%, var(--cs-gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(184,144,74,.4));
}
.stat-label { color: rgba(255,255,255,.65); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-top: .65rem; font-weight: 500; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FILTER TABS – Refined
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.filter-tab {
  padding: .5rem 1.25rem; border-radius: 999px;
  border: 1.5px solid rgba(30,58,95,.15);
  background: white; color: #64748b;
  font-size: .8rem; font-weight: 600; cursor: pointer;
  transition: all .28s cubic-bezier(.4,0,.2,1);
  letter-spacing: .02em;
}
.filter-tab:hover { border-color: rgba(41,128,168,.4); color: var(--cs-primary-2); background: rgba(41,128,168,.04); transform: translateY(-1px); }
.filter-tab.active {
  background: linear-gradient(135deg, var(--cs-primary-2), var(--cs-emerald)) !important;
  border-color: transparent !important; color: white !important;
  box-shadow: 0 4px 20px rgba(30,58,95,.28) !important;
  transform: translateY(-1px);
}
