:root {
  --gold: #F1B505;
  --gold-light: #F7CD43;
  --gold-dim: rgba(241,181,5,0.14);
  --dark: #1A1A1A;
  --dark2: #2A2A2A;
  --sand: #F5EDD8;
  --sand2: #EDE0C4;
  --text-muted: #7A7A7A;
  --muted: #6B6B6B;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--dark);
  overflow-x: hidden;
  background: #fff;
}

/* ===== NAVBAR ===== */
.navbar-custom {
  background: transparent;
  padding: 18px 0;
  position: absolute;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease;
  overflow: visible;
}
.navbar-custom > .container {
  overflow: visible;
}
.navbar-custom #navLinks {
  overflow: visible;
}
.navbar-custom .dropdown {
  position: relative;
}
.navbar-custom.scrolled {
  background: rgba(26,26,26,0.95);
  position: fixed;
  top: 0;
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.navbar-brand-text {
  font-family: 'Cinzel', serif;
  color: var(--gold) !important;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
}
.navbar-custom .nav-link {
  color: rgba(255,255,255,0.9) !important;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 6px 14px !important;
  transition: color 0.3s;
  text-transform: uppercase;
}
.navbar-custom .nav-link:hover { color: var(--gold) !important; }
.navbar-custom .btn-nav {
  background: var(--gold);
  color: #fff !important;
  border-radius: 2px;
  padding: 8px 20px !important;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
}
.navbar-custom .btn-nav:hover { background: var(--gold-light); }
.navbar-toggler { border-color: var(--gold); }
.navbar-toggler-icon { filter: invert(1); }

body.inner-page .navbar-custom { background: rgba(26,26,26,0.97); position: sticky; top: 0; }
.navbar-custom .nav-link.active { color: var(--gold) !important; }

/* Destinations dropdown (navbar) */
.navbar-custom .nav-dest-dropdown .dropdown-toggle::after {
  margin-left: 0.35em;
  vertical-align: 0.12em;
}
.navbar-custom .nav-dest-dropdown .dropdown-toggle.show,
.navbar-custom .nav-dest-dropdown .dropdown-toggle:focus {
  color: var(--gold) !important;
}
.navbar-custom .dest-nav-dropdown {
  max-height: min(70vh, 520px);
  overflow-y: auto;
  min-width: 14rem;
  margin-top: 0.5rem !important;
  border-radius: 8px;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}
.navbar-custom .dest-nav-dropdown .dropdown-item {
  font-size: 0.82rem;
  text-transform: none;
  letter-spacing: 0.02em;
  padding: 0.45rem 1rem;
}
.navbar-custom .dest-nav-dropdown .dropdown-item:hover {
  background: rgba(241,181,5,0.2);
  color: #fff;
}
.navbar-custom .dest-nav-dropdown .dropdown-divider {
  border-color: rgba(255,255,255,0.12);
}
.navbar-custom img,
.navbar-custom svg {
  max-width: 100%;
  height: auto;
}
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 992px) {
  /* Desktop: open nav dropdowns on hover */
  .navbar-custom .nav-dest-dropdown:hover > .dropdown-menu,
  .navbar-custom .user-nav-dropdown:hover > .dropdown-menu {
    display: block;
  }
  .navbar-custom .nav-dest-dropdown:hover > .dropdown-toggle,
  .navbar-custom .user-nav-dropdown:hover > .dropdown-toggle {
    color: var(--gold) !important;
  }
}
.mobile-dest-toggle .fa-chevron-down {
  transition: transform 0.2s ease;
}

/* ---------- Destination landing (destination-page.php) ---------- */
body.destination-landing-root {
  background: #f4f1ec;
}
body.destination-landing-root .navbar-custom {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}
.dest-landing {
  overflow-x: hidden;
}

.dest-hero {
  position: relative;
  min-height: clamp(320px, 52vh, 560px);
  display: flex;
  align-items: flex-end;
  background-color: #0f1419;
  background-image:
    linear-gradient(165deg, rgba(10, 14, 22, 0.55) 0%, rgba(20, 28, 42, 0.35) 42%, rgba(12, 16, 24, 0.9) 100%),
    var(--dest-hero-img);
  background-size: cover;
  background-position: center;
  padding: 0 0 3.5rem;
}
.dest-hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(241, 181, 5, 0.1), transparent 55%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: overlay;
}
.dest-hero__inner {
  position: relative;
  z-index: 2;
}
.dest-hero__eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.dest-hero__eyebrow-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.dest-hero__title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(2.1rem, 5vw, 3.35rem);
  line-height: 1.12;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  max-width: 20ch;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.35);
}
.dest-hero__location {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  margin: 0 0 1.25rem;
}
.dest-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}
.dest-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.dest-breadcrumb-bar {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.65rem 0;
  backdrop-filter: blur(12px);
}
.dest-breadcrumb {
  font-size: 0.82rem;
}

.dest-main {
  padding-bottom: 4rem;
   padding-top: 4rem;
}

.dest-feature-fig {
  margin: -2.5rem auto 2.5rem;
  position: relative;
  z-index: 3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 24px 48px -12px rgba(15, 20, 30, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  max-width: 1000px;
}
.dest-feature-fig img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.dest-feature-cap {
  padding: 0.65rem 1rem 0.85rem;
  font-size: 0.8rem;
  color: #666;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-style: italic;
}

.dest-deck {
  font-family: 'Lato', sans-serif;
  font-size: 1.18rem;
  line-height: 1.65;
  color: #3d3d3d;
  margin-bottom: 1.75rem;
  font-weight: 300;
}

.dest-divider {
  height: 3px;
  width: 100%;
  max-width: 120px;
  margin: 0 auto 2rem;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
  border-radius: 2px;
  opacity: 0.88;
}
.dest-divider--short {
  max-width: 64px;
  margin-top: 2.5rem;
  margin-bottom: 1.75rem;
}

.dest-prose {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.28rem;
  line-height: 1.82;
  color: #252525;
}
.dest-prose p {
  margin: 0 0 1.5rem;
  text-align: justify;
  hyphens: auto;
}
.dest-prose p:last-child {
  margin-bottom: 0;
}
.dest-prose > p:first-of-type::first-letter {
  float: left;
  font-family: 'Playfair Display', serif;
  font-size: 4.25rem;
  line-height: 0.82;
  padding: 0.06em 0.12em 0 0;
  color: #c9a227;
  font-weight: 600;
}
.dest-prose h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  font-weight: 600;
  margin: 2.35rem 0 1rem;
  color: #141820;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid rgba(241, 181, 5, 0.55);
  clear: both;
}
.dest-prose h3 {
  font-family: 'Cinzel', 'Lato', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 1.85rem 0 0.75rem;
  color: #3a3a3a;
  font-weight: 700;
}
.dest-prose strong {
  color: #1a1a1a;
  font-weight: 700;
}
.dest-prose ul.dest-prose-list {
  margin: 0 0 1.5rem 1.15rem;
  padding: 0;
  list-style: none;
}
.dest-prose ul.dest-prose-list li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1.1rem;
  line-height: 1.55;
}
.dest-prose ul.dest-prose-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #c9a227);
}
.dest-prose .dest-map-note {
  font-size: 0.95em;
  font-style: italic;
  color: #555;
  padding: 1rem 1.15rem;
  background: rgba(241, 181, 5, 0.08);
  border-left: 3px solid rgba(241, 181, 5, 0.55);
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.5rem;
}

.dest-cta-panel {
  margin-top: 2.5rem;
  padding: 1.75rem 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 246, 240, 0.99));
  border: 1px solid rgba(241, 181, 5, 0.28);
  border-radius: 14px;
  box-shadow: 0 16px 40px -20px rgba(20, 28, 40, 0.25);
  text-align: center;
}
.dest-cta-panel__lede {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 1.25rem;
}
.dest-cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.dest-btn-primary {
  background: var(--gold) !important;
  color: #111 !important;
  border: none !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(241, 181, 5, 0.35);
}
.dest-btn-primary:hover {
  filter: brightness(1.06);
  color: #111 !important;
}
.dest-btn-ghost {
  border: 2px solid rgba(0, 0, 0, 0.14) !important;
  background: transparent !important;
  color: #222 !important;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.6rem 1.35rem;
}
.dest-btn-ghost:hover {
  border-color: var(--gold) !important;
  color: #111 !important;
}

@media (max-width: 575.98px) {
  .dest-hero {
    padding-bottom: 2.25rem;
    min-height: 280px;
  }
  .dest-feature-fig {
    margin: -1.25rem -0.75rem 1.75rem;
    border-radius: 0;
  }
  .dest-prose {
    font-size: 1.15rem;
    text-align: left;
  }
  .dest-prose > p:first-of-type::first-letter {
    font-size: 3.25rem;
  }
}

/* Legacy destination article (older template) */
.destination-article-page .destination-body-text p {
  margin-bottom: 1.1rem;
  line-height: 1.75;
}
.destination-article-page .article-content.destination-body-text {
  font-size: 1.05rem;
}

/* Auth icons in navbar */
.navbar-custom .auth-icon-link {
  padding: 0 !important;
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(241,181,5,0.7);
  border-radius: 50%;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  color: var(--gold) !important;
}
.navbar-custom .auth-icon-link i {
  font-size: 0.82rem;
  line-height: 1;
}
.navbar-custom .auth-icon-link:hover,
.navbar-custom .auth-icon-link.active {
  background: var(--gold);
  color: #111 !important;
  border-color: var(--gold);
}

.mobile-auth-icon {
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(241,181,5,0.8);
  border-radius: 50%;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: var(--gold) !important;
}
.mobile-auth-icon i { font-size: 0.82rem; }

.user-nav-dropdown .user-nav-toggle {
  border: 1.5px solid rgba(241,181,5,0.75);
  border-radius: 40px;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px 4px 4px;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  background: rgba(0,0,0,0.2);
}
.user-nav-dropdown .user-nav-toggle:hover,
.user-nav-dropdown .user-nav-toggle:focus {
  color: #111;
  border-color: var(--gold);
  box-shadow: none;
  background: var(--gold);
}
.user-nav-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
}
.user-nav-name {
  max-width: 115px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user-nav-menu {
  min-width: 190px;
  margin-top: 10px !important;
  background: #111;
  border: 1px solid rgba(241,181,5,0.35);
}
.user-nav-menu .dropdown-item {
  color: rgba(255,255,255,0.88);
  font-size: 0.82rem;
  padding: 10px 14px;
}
.user-nav-menu .dropdown-item:hover,
.user-nav-menu .dropdown-item.active {
  background: rgba(241,181,5,0.14);
  color: var(--gold);
}
.user-nav-menu .dropdown-divider {
  border-color: rgba(255,255,255,0.12);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.55) 100%),
  url('https://images.unsplash.com/photo-1553913861-c0fddf2619ee?w=1600&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, #fff, transparent);
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 14px 36px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  border-radius: 2px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}
.btn-gold:hover { background: var(--gold-light); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.35); }
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 12px 30px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}
.btn-outline-gold:hover { background: var(--gold); color: #fff; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

@media (max-width: 991px) {
  body.page-home .hero {
    align-items: flex-start;
    padding-top: 100px;
    padding-bottom: 48px;
    box-sizing: border-box;
  }
  body.page-home .hero .hero-content {
    padding-top: 12px;
  }
  body.page-home .hero h1 {
    margin-bottom: 18px;
  }
  .hero-cta {
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
  }
  .hero-cta .btn-gold,
  .hero-cta .btn-outline-gold {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding: 11px 10px;
    font-size: 0.68rem;
    letter-spacing: 1px;
    gap: 6px;
  }
  .hero-cta .btn-outline-gold {
    padding: 9px 10px;
  }
}

@media (max-width: 380px) {
  .hero-cta .btn-gold,
  .hero-cta .btn-outline-gold {
    font-size: 0.6rem;
    padding: 10px 6px;
    letter-spacing: 0.5px;
  }
  .hero-cta .btn-outline-gold {
    padding: 8px 6px;
  }
}

/* ===== DESTINATIONS GRID ===== */
.section-eyebrow {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
}
.section-title span { color: var(--gold); font-style: italic; }

.dest-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  display: block;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dest-card:hover img { transform: scale(1.08); }
.dest-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 20px 16px 14px;
}
.dest-card-title {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}
.dest-card-sub {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 3px;
}
.dest-card-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--gold);
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  font-weight: 700;
}

/* ===== FEATURES ===== */
.features-section { background: var(--sand); }
.feature-item { padding: 28px; }
.feature-icon {
  width: 56px; height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.feature-text { color: #666; font-size: 0.9rem; line-height: 1.7; }
.feature-img-wrap { position: relative; }
.feature-img-wrap img { border-radius: 6px; width: 100%; }
.feature-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 68px;
  background: rgba(201,168,76,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s;
}
.feature-play-btn:hover { background: var(--gold); transform: translate(-50%,-50%) scale(1.1); }

/* ===== CTA DARK ===== */
.cta-dark {
  background: var(--dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-dark::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-dark h2 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 0;
}
.cta-dark h2 em { color: var(--gold); font-style: italic; }
.cta-dark p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.8; }

/* ===== DESTINATIONS NEW PANEL DESIGN ===== */
.dest-new-section {
  background: #0e0e0e;
  padding: 80px 0 0;
}
.dest-header {
  text-align: center;
  padding: 0 20px 50px;
}
.dest-cards-strip {
  display: flex;
  height: 580px;
  overflow: hidden;
}
.dest-panel {
  flex: 0.8;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.7s cubic-bezier(0.77,0,0.18,1);
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
}
.dest-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.15) 100%);
  transition: background 0.5s;
}
.dest-panel.active::before {
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
}
.dest-panel.active { flex: 3.5; }
.dest-panel:hover { flex: 3.5; }

.dest-panel-inner {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 36px 32px;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.5s ease 0.2s;
}
.dest-panel.active .dest-panel-inner,
.dest-panel:hover .dest-panel-inner {
  transform: translateY(0);
  opacity: 1;
}
.dest-panel-num {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 8px;
}
.dest-panel-title {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.1;
}
.dest-panel-sub {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.dest-panel-desc {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 360px;
  display: none;
}
.dest-panel.active .dest-panel-desc,
.dest-panel:hover .dest-panel-desc { display: block; }

.dest-panel-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.dest-panel-tags span {
  background: rgba(201,168,76,0.18);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}
.dest-panel-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s;
}
.dest-panel-btn:hover { background: var(--gold-light); color: #fff; }

/* Collapsed panel: show only title vertically */
.dest-panel:not(.active):not(:hover) .dest-panel-inner {
  opacity: 1;
  transform: translateY(0);
  padding: 20px 16px;
}
.dest-panel:not(.active):not(:hover) .dest-panel-title {
  font-size: 0.88rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.dest-panel:not(.active):not(:hover) .dest-panel-num,
.dest-panel:not(.active):not(:hover) .dest-panel-sub,
.dest-panel:not(.active):not(:hover) .dest-panel-desc,
.dest-panel:not(.active):not(:hover) .dest-panel-tags,
.dest-panel:not(.active):not(:hover) .dest-panel-btn { display: none; }

@media (max-width: 768px) {
  .dest-cards-strip { flex-direction: column; height: auto; }
  .dest-panel { flex: none !important; height: 220px; }
  .dest-panel.active, .dest-panel:hover { height: 420px; }
  .dest-panel:not(.active):not(:hover) .dest-panel-title {
    writing-mode: horizontal-tb;
    transform: none;
    left: 20px;
    font-size: 1rem;
    letter-spacing: 2px;
    bottom: 16px;
  }
}

/* ===== TESTIMONIALS SLIDER ===== */
.testi-slider-wrap { position: relative; overflow: hidden; }
.testi-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.77,0,0.18,1);
  will-change: transform;
  width: 100%;
}
.testi-slide {
  width: calc((100% - 48px) / 3);
  min-width: calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
  flex: 0 0 calc((100% - 48px) / 3);
}
@media (max-width: 991px) {
  .testi-slide {
    width: calc((100% - 24px) / 2);
    min-width: calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
    flex: 0 0 calc((100% - 24px) / 2);
  }
}
@media (max-width: 600px) {
  .testi-slide {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
  .testi-track { gap: 0; }
}

.testi-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 28px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.07);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(201,168,76,0.1);
  height: 100%;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(0,0,0,0.12); }
.testi-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  position: relative;
}
.testi-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.95rem; color: var(--dark); margin-bottom: 2px; }
.testi-role { font-size: 0.73rem; color: var(--text-muted); letter-spacing: 0.5px; margin-bottom: 4px; }
.stars { color: var(--gold); font-size: 0.75rem; }
.testi-logo-mark {
  position: absolute;
  top: 0; right: 0;
  color: rgba(201,168,76,0.15);
  font-size: 2rem;
}
.testi-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 18px;
  height: 28px;
  display: block;
}
.testi-text {
  color: #555;
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-footer { border-top: 1px solid rgba(0,0,0,0.06); padding-top: 14px; }
.testi-trip {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.testi-prev, .testi-next {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.testi-prev:hover, .testi-next:hover { background: var(--gold); color: #fff; }
.testi-dots { display: flex; gap: 8px; align-items: center; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(201,168,76,0.3);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}
.testi-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ===== CTA SECTION ===== */
.begin-section { background: #fff; }
.begin-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
}

/* ===== FAQ / QUALITY SECTION ===== */
.quality-section { background: var(--dark); }
.quality-section h2 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}
.quality-section .subtitle { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; }
.accordion-item-custom {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.accordion-btn-custom {
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-family: 'Lato', sans-serif;
  padding: 16px 0;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s;
}
.accordion-btn-custom:hover, .accordion-btn-custom.active { color: var(--gold); }
.accordion-btn-custom i { transition: transform 0.3s; }
.accordion-btn-custom.active i { transform: rotate(45deg); color: var(--gold); }
.accordion-content {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding-bottom: 0;
}
.accordion-content.open { max-height: 200px; padding-bottom: 16px; }
.quality-img-wrap img { border-radius: 8px; width: 100%; }

/* ===== BLOG ===== */
.blog-section { background: #fff; }
.blog-card { border-radius: 8px; overflow: hidden; background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 10px 35px rgba(0,0,0,0.1); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 22px; }
.blog-cat {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--dark);
  margin-bottom: 12px;
}
.blog-meta { font-size: 0.78rem; color: var(--text-muted); }
.blog-meta i { color: var(--gold); margin-right: 4px; }

/* ===== PROMO FOOTER BANNER ===== */
.promo-banner {
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
  url('https://images.unsplash.com/photo-1503177119275-0aa32b3a9368?w=1400&q=80') center/cover no-repeat;
  padding: 100px 0;
  text-align: center;
  position: relative;
}
.promo-banner h2 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.promo-banner h2 em { color: var(--gold); font-style: italic; }
.promo-banner p { color: rgba(255,255,255,0.75); font-size: 1rem; max-width: 500px; margin: 0 auto 32px; }

/* ===== FOOTER ===== */
footer { background: #111; padding: 70px 0 30px; }
.footer-logo-link {
  display: inline-block;
  margin-bottom: 10px;
  line-height: 0;
}
.footer-logo-img {
  width: 118px;
  height: auto;
  display: block;
  object-fit: contain;
}
.footer-brand {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.footer-desc { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.7; margin-bottom: 24px; }
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  margin-right: 0;
  transition: all 0.3s;
  text-decoration: none;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-heading {
  font-family: 'Cinzel', serif;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 10px; }
footer ul li a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}
footer ul li a:hover { color: var(--gold); }
.footer-divider { border-color: rgba(255,255,255,0.08); margin: 40px 0 24px; }
.footer-copy { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-copy span { color: var(--gold); }

/* ===== TOUR PACKAGES SECTION ===== */
.pkg-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.pkg-card img { width: 100%; height: 220px; object-fit: cover; }
.pkg-card-body { padding: 22px; }
.pkg-tag {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.pkg-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.35;
}
.pkg-meta { font-size: 0.8rem; color: #888; margin-bottom: 16px; }
.pkg-meta i { color: var(--gold); margin-right: 4px; }
.pkg-price { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--gold); }
.pkg-price-label { font-size: 0.75rem; color: #999; font-family: 'Lato', sans-serif; font-weight: 400; }
.pkg-rating { font-size: 0.78rem; color: var(--gold); }
.pkg-rating span { color: #888; font-size: 0.75rem; margin-left: 4px; }

/* ===== DIVIDER ===== */
.gold-divider {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 16px 0 24px;
  border-radius: 2px;
}
.gold-divider.center { margin: 16px auto 24px; }

/* ===== SCROLL TO TOP ===== */
#scrollTop {
  position: fixed;
  bottom: 30px; right: 30px;
  background: var(--gold);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  display: none;
  align-items: center; justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(201,168,76,0.4);
  transition: all 0.3s;
}
#scrollTop:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ===== FIXED WHATSAPP CHAT ===== */
.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 90px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
  z-index: 10000;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.whatsapp-fab:hover {
  color: #fff;
  background: #1ebc59;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.28);
}
@media (max-width: 767px) {
  .whatsapp-fab {
    right: 68px;
    bottom: 18px;
    width: 48px;
    height: 48px;
    font-size: 1.35rem;
  }
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== ABOUT PAGE ===== */

/* ===== HERO ===== */
.about-hero {
  min-height: 92vh;
  background:
    linear-gradient(to right, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.55) 55%, rgba(0,0,0,0.2) 100%),
    url('https://images.unsplash.com/photo-1553913861-c0fddf2619ee?w=1600&q=85') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, #fff, transparent);
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; }
.hero-eyebrow {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px; height: 1px;
  background: var(--gold);
}
.about-hero h1 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 28px;
}
.about-hero h1 em { color: var(--gold); font-style: italic; display: block; }
.about-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}
.scroll-dot {
  width: 28px; height: 44px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 14px;
  margin: 0 auto 8px;
  position: relative;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 1.8s infinite;
}
@keyframes scrollBounce {
  0%,100% { top: 6px; opacity: 1; }
  80% { top: 20px; opacity: 0; }
}
.scroll-label { color: rgba(255,255,255,0.4); font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; }

/* ===== BREADCRUMB ===== */
.breadcrumb-wrap {
  background: var(--sand);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.breadcrumb-item a { color: var(--gold); text-decoration: none; font-size: 0.82rem; }
.breadcrumb-item.active { color: var(--muted); font-size: 0.82rem; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--gold); }

/* ===== REUSABLES ===== */
.section-eyebrow {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before { content: ''; display: inline-block; width: 30px; height: 1px; background: var(--gold); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
.section-title span { color: var(--gold); font-style: italic; }
.section-title.light { color: #fff; }
.gold-bar { width: 56px; height: 3px; background: var(--gold); border-radius: 2px; margin: 18px 0 28px; }
.body-text { color: var(--muted); font-size: 0.95rem; line-height: 1.85; font-weight: 300; }

/* ===== WHY EGYPT ===== */
.why-egypt { padding: 100px 0; background: #fff; }
.why-img-collage { position: relative; }
.collage-main {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.collage-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  border: 6px solid #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}
.why-badge {
  position: absolute;
  top: 24px;
  left: -20px;
  background: var(--dark);
  color: #fff;
  border-radius: 10px;
  padding: 16px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  min-width: 140px;
  text-align: center;
}
.why-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.why-badge-label { font-size: 0.72rem; letter-spacing: 1px; color: rgba(255,255,255,0.6); text-transform: uppercase; margin-top: 4px; }

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  border-radius: 10px;
  transition: background 0.3s;
  border: 1px solid transparent;
}
.why-feature:hover {
  background: var(--sand);
  border-color: rgba(201,168,76,0.2);
}
.why-feat-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}
.why-feat-title { font-weight: 700; font-size: 0.95rem; color: var(--dark); margin-bottom: 4px; }
.why-feat-text { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ===== STORY TIMELINE ===== */
.story-section { background: var(--dark); padding: 100px 0; position: relative; overflow: hidden; }
.story-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.story-section .section-title.light { color: #fff; }
.story-section .gold-bar { }
.story-section .body-text { color: rgba(255,255,255,0.6); }

.story-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 14px;
  padding: 36px 32px;
  position: relative;
  transition: all 0.35s;
  overflow: hidden;
  height: 100%;
}
.story-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold);
  border-radius: 4px 0 0 4px;
}
.story-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.story-card-icon {
  width: 60px; height: 60px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 22px;
}
.story-card-label {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.story-card-title {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
}
.story-card-text { color: rgba(255,255,255,0.58); font-size: 0.88rem; line-height: 1.8; }

/* ===== VALUES / PILLARS ===== */
.values-section { padding: 100px 0; background: var(--sand); }
.value-pill {
  background: #fff;
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(201,168,76,0.1);
  transition: all 0.35s;
  height: 100%;
}
.value-pill:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 55px rgba(201,168,76,0.18);
  border-color: var(--gold);
}
.value-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 8px 28px rgba(201,168,76,0.35);
}
.value-title {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  letter-spacing: 2px;
  color: var(--dark);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.value-text { color: var(--muted); font-size: 0.88rem; line-height: 1.75; }

/* ===== TEAM ===== */
.team-section { padding: 100px 0; background: #fff; }
.team-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.07);
  transition: all 0.35s;
  background: #fff;
  border: 1px solid rgba(201,168,76,0.1);
}
.team-card:hover { transform: translateY(-8px); box-shadow: 0 18px 50px rgba(0,0,0,0.12); }
.team-img-wrap { position: relative; overflow: hidden; }
.team-img-wrap img { width: 100%;  }
.team-card:hover .team-img-wrap img { transform: scale(1.06); }
.team-social-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.7);
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.35s;
}
.team-card:hover .team-social-overlay { opacity: 1; }
.team-social-overlay a {
  width: 38px; height: 38px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.85rem;
  text-decoration: none;
  transition: transform 0.3s;
}
.team-social-overlay a:hover { transform: scale(1.15); }
.team-body { padding: 24px 22px; }
.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
.team-role {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-bio { font-size: 0.83rem; color: var(--muted); line-height: 1.7; }

/* ===== STATS BANNER ===== */
.stats-banner {
  background: var(--dark);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1503177119275-0aa32b3a9368?w=1400&q=60') center/cover no-repeat;
  opacity: 0.08;
}
.stat-item { text-align: center; position: relative; z-index: 1; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  height: 60px;
  margin: auto;
}

/* ===== PROMISE SECTION ===== */
.promise-section { padding: 100px 0; background: #fff; }
.promise-img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.promise-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}
.promise-check {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  padding: 16px;
  border-radius: 8px;
  transition: background 0.3s;
}
.promise-check:hover { background: var(--sand); }
.check-icon {
  width: 26px; height: 26px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-title { font-weight: 700; font-size: 0.9rem; color: var(--dark); margin-bottom: 3px; }
.check-text { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }

/* ===== CTA SECTION ===== */
.about-cta {
  padding: 110px 0;
  background:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
    url('https://images.unsplash.com/photo-1572252009286-268acec5ca0a?w=1600&q=80') center/cover no-repeat fixed;
  text-align: center;
  position: relative;
}
.about-cta h2 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-cta h2 em { color: var(--gold); font-style: italic; }
.about-cta p { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 520px; margin: 0 auto 36px; line-height: 1.8; }

/* ===== FOOTER ===== */
footer { background: #111; padding: 60px 0 26px; }
.footer-brand { font-family: 'Cinzel', serif; color: var(--gold); font-size: 1.15rem; font-weight: 700; letter-spacing: 2px; margin-bottom: 14px; }
.footer-desc { color: rgba(255,255,255,0.45); font-size: 0.83rem; line-height: 1.75; margin-bottom: 22px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
  margin-right: 7px;
  text-decoration: none;
  transition: all 0.3s;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-heading { font-family: 'Cinzel', serif; color: #fff; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 10px; }
footer ul li a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.83rem; transition: color 0.3s; }
footer ul li a:hover { color: var(--gold); }
.footer-copy { color: rgba(255,255,255,0.28); font-size: 0.78rem; }
.footer-copy span { color: var(--gold); }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }

@media (max-width: 991px) {
  .collage-float { display: none; }
  .why-badge { left: 10px; }
}
@media (max-width: 767px) {
  .about-hero { min-height: 80vh; }
  .promise-img { min-height: 300px; }
}

/* ===== TEAM PAGE ===== */
/* HERO */
.team-hero {
  min-height: 75vh;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.5) 60%, rgba(0,0,0,0.8) 100%),
    url('https://images.unsplash.com/photo-1553913861-c0fddf2619ee?w=1600&q=85') center/cover no-repeat;
  display:flex; align-items:center; justify-content:center;
  text-align:center; position:relative; overflow:hidden;
}
.team-hero::after { content:''; position:absolute; bottom:0; left:0; right:0; height:100px; background:linear-gradient(to top,#fff,transparent); }
.hero-inner { position:relative; z-index:2; }
.hero-eyebrow { font-family:'Cinzel',serif; color:var(--gold); font-size:0.72rem; letter-spacing:5px; text-transform:uppercase; margin-bottom:18px; display:flex; align-items:center; justify-content:center; gap:14px; }
.hero-eyebrow::before,.hero-eyebrow::after { content:''; display:inline-block; width:40px; height:1px; background:var(--gold); }
.team-hero h1 { font-family:'Playfair Display',serif; color:#fff; font-size:clamp(2.6rem,6vw,4.8rem); font-weight:700; line-height:1.1; margin-bottom:20px; }
.team-hero h1 em { color:var(--gold); font-style:italic; }
.team-hero p { color:rgba(255,255,255,0.72); font-size:1rem; max-width:560px; margin:0 auto; line-height:1.8; font-weight:300; }

/* BREADCRUMB */
.breadcrumb-wrap { background:var(--sand); padding:14px 0; border-bottom:1px solid rgba(201,168,76,0.2); }
.breadcrumb-item a { color:var(--gold); text-decoration:none; font-size:0.82rem; }
.breadcrumb-item.active { color:var(--muted); font-size:0.82rem; }
.breadcrumb-item+.breadcrumb-item::before { color:var(--gold); }

/* REUSABLES */
.section-eyebrow { font-family:'Cinzel',serif; color:var(--gold); font-size:0.72rem; letter-spacing:4px; text-transform:uppercase; margin-bottom:12px; display:flex; align-items:center; gap:10px; }
.section-eyebrow::before { content:''; display:inline-block; width:30px; height:1px; background:var(--gold); }
.section-title { font-family:'Playfair Display',serif; font-size:clamp(1.9rem,3.5vw,2.8rem); font-weight:700; line-height:1.2; color:var(--dark); }
.section-title span { color:var(--gold); font-style:italic; }
.gold-bar { width:56px; height:3px; background:var(--gold); border-radius:2px; margin:16px 0 28px; }

/* FOUNDER SPOTLIGHT */
.founder-section { padding:100px 0; background:#fff; }
.founder-img-wrap { position:relative; }
.founder-img {
  width:100%; height:520px; object-fit:cover; object-position:top;
  border-radius:16px;
  box-shadow:0 24px 70px rgba(0,0,0,0.14);
}
.founder-badge {
  position:absolute; bottom:28px; left:-24px;
  background:var(--dark);
  border:2px solid var(--gold);
  border-radius:12px;
  padding:18px 22px;
  text-align:center;
  min-width:150px;
  box-shadow:0 12px 36px rgba(0,0,0,0.3);
}
.founder-badge-num { font-family:'Playfair Display',serif; font-size:2.2rem; color:var(--gold); font-weight:700; line-height:1; }
.founder-badge-label { color:rgba(255,255,255,0.6); font-size:0.68rem; letter-spacing:1.5px; text-transform:uppercase; margin-top:5px; }
.founder-tag { display:inline-flex; align-items:center; gap:8px; background:var(--gold-dim); border:1px solid rgba(201,168,76,0.3); color:var(--gold); font-size:0.72rem; letter-spacing:2px; text-transform:uppercase; padding:8px 18px; border-radius:30px; font-weight:700; margin-bottom:18px; }
.founder-name { font-family:'Playfair Display',serif; font-size:clamp(2rem,4vw,3rem); font-weight:700; color:var(--dark); line-height:1.1; margin-bottom:6px; }
.founder-role { font-family:'Cinzel',serif; color:var(--gold); font-size:0.78rem; letter-spacing:3px; text-transform:uppercase; margin-bottom:24px; }
.founder-text { color:var(--muted); font-size:0.95rem; line-height:1.88; margin-bottom:18px; font-weight:300; }
.founder-quote {
  border-left:3px solid var(--gold);
  padding:16px 24px;
  background:var(--sand);
  border-radius:0 8px 8px 0;
  margin:24px 0;
  font-family:'Playfair Display',serif;
  font-style:italic;
  color:var(--dark);
  font-size:1rem;
  line-height:1.7;
}

/* LEADERSHIP STRIP */
.leadership-section { background:var(--dark); padding:80px 0; position:relative; overflow:hidden; }
.leadership-section::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.07) 0%, transparent 60%); pointer-events:none; }
.leader-card {
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(201,168,76,0.18);
  border-radius:14px;
  padding:32px 28px;
  text-align:center;
  transition:all 0.35s;
  position:relative;
  overflow:hidden;
  height:100%;
}
.leader-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--gold); opacity:0; transition:opacity 0.3s; }
.leader-card:hover { background:rgba(255,255,255,0.08); border-color:rgba(201,168,76,0.4); transform:translateY(-6px); }
.leader-card:hover::before { opacity:1; }
.leader-avatar { width:96px; height:96px; border-radius:50%; object-fit:cover; object-position:top; border:3px solid rgba(201,168,76,0.4); margin:0 auto 18px; display:block; transition:border-color 0.3s; }
.leader-card:hover .leader-avatar { border-color:var(--gold); }
.leader-name { font-family:'Playfair Display',serif; color:#fff; font-size:1.15rem; font-weight:600; margin-bottom:6px; }
.leader-role { font-family:'Cinzel',serif; color:var(--gold); font-size:0.65rem; letter-spacing:2.5px; text-transform:uppercase; margin-bottom:16px; }
.leader-bio { color:rgba(255,255,255,0.55); font-size:0.83rem; line-height:1.75; }

/* TEAM GRID */
.team-grid-section { padding:100px 0; background:#fff; }
.team-card {
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 4px 28px rgba(0,0,0,0.07);
  border:1px solid rgba(201,168,76,0.1);
  transition:all 0.35s;
  height:100%;
  display:flex; flex-direction:column;
}
.team-card:hover { transform:translateY(-8px); box-shadow:0 20px 55px rgba(0,0,0,0.13); border-color:rgba(201,168,76,0.3); }
.team-img-wrap { position:relative; overflow:hidden; flex-shrink:0; }
.team-img-wrap img { width:100%; height:350px; object-fit:cover; object-position:center; transition:transform 0.6s; }
.team-card:hover .team-img-wrap img { transform:scale(1.06); }
.team-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(26,26,26,0.9) 0%, transparent 55%);
  display:flex; align-items:flex-end;
  padding:18px;
  opacity:0; transition:opacity 0.35s;
}
.team-card:hover .team-overlay { opacity:1; }
.team-overlay-text { color:rgba(255,255,255,0.85); font-size:0.8rem; line-height:1.6; font-style:italic; }
.team-body { padding:22px 20px; flex-grow:1; display:flex; flex-direction:column; }
.team-location { font-size:0.75rem; color:var(--gold); margin-bottom:8px; }
.team-location i { margin-right:4px; }
.team-name { font-family:'Playfair Display',serif; font-size:1.1rem; font-weight:600; color:var(--dark); margin-bottom:5px; }
.team-role-tag { font-family:'Cinzel',serif; font-size:0.62rem; letter-spacing:2px; color:var(--gold); text-transform:uppercase; margin-bottom:12px; }
.team-bio-text { font-size:0.83rem; color:var(--muted); line-height:1.72; flex-grow:1; }
.team-exp-badge { display:inline-flex; align-items:center; gap:6px; background:var(--gold-dim); border:1px solid rgba(201,168,76,0.25); color:var(--gold); font-size:0.68rem; letter-spacing:1px; padding:4px 12px; border-radius:20px; font-weight:700; margin-top:14px; }
.team-divider { width:30px; height:2px; background:var(--gold); border-radius:2px; margin:12px 0; }

/* Destination/tour listing cards: whole card is one link */
.travel-destination-card-link { border-radius:14px; }
.travel-destination-card-link:focus-visible {
  outline:2px solid var(--gold);
  outline-offset:4px;
}

/* Tour & destination grid: every card image same frame (crop, not letterbox) */
.travel-destination-card .team-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
}
.travel-destination-card .team-img-wrap img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.travel-destination-card .team-img-wrap .team-overlay {
  z-index: 1;
}

/* MODAL */
.modal-content { border:1px solid rgba(201,168,76,0.2); border-radius:16px; overflow:hidden; }
.modal-header { background:var(--dark); border-bottom:1px solid rgba(201,168,76,0.15); padding:24px 28px; }
.modal-title { font-family:'Playfair Display',serif; color:#fff; font-size:1.3rem; }
.modal-header .btn-close { filter:invert(1); opacity:0.6; }
.modal-body { padding:32px 28px; }
.modal-avatar { width:90px; height:90px; border-radius:50%; object-fit:cover; object-position:top; border:3px solid var(--gold); margin-right:20px; flex-shrink:0; }
.modal-role { font-family:'Cinzel',serif; color:var(--gold); font-size:0.68rem; letter-spacing:2.5px; text-transform:uppercase; margin-bottom:6px; }
.modal-location { color:var(--muted); font-size:0.82rem; margin-bottom:16px; }
.modal-bio-text { color:var(--muted); font-size:0.9rem; line-height:1.85; }
.modal-tag { display:inline-flex; align-items:center; gap:6px; background:var(--gold-dim); border:1px solid rgba(201,168,76,0.25); color:var(--gold); font-size:0.68rem; letter-spacing:1px; padding:4px 12px; border-radius:20px; font-weight:700; margin:4px 4px 0 0; }

/* Team listing: one-line preview + read more */
.team-bio-preview {
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  line-height:1.65;
}
.leader-bio.team-bio-preview {
  -webkit-line-clamp:3;
  text-align:center;
}
.team-read-more-btn {
  font-family:'Cinzel',serif;
  font-size:0.65rem;
  letter-spacing:1.8px;
  text-transform:uppercase;
  color:var(--gold);
  border:1px solid rgba(201,168,76,0.45);
  background:transparent;
  padding:8px 18px;
  border-radius:4px;
  transition:all 0.25s;
}
.team-read-more-btn:hover {
  background:var(--gold);
  color:var(--dark);
  border-color:var(--gold);
}
.leadership-section .team-read-more-btn {
  color:var(--gold);
  border-color:rgba(201,168,76,0.5);
}
.leadership-section .team-read-more-btn:hover {
  background:var(--gold);
  color:var(--dark);
}
.team-grid-section .team-card-listing .team-body { min-height:220px; }
.team-grid-section .team-card-listing .team-img-wrap {
  width: 100%;
  height: 330px;
}
.team-grid-section .team-card-listing .team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 991px) {
  .team-grid-section .team-card-listing .team-img-wrap { height: 300px; }
}
@media (max-width: 767px) {
  .team-grid-section .team-card-listing .team-img-wrap { height: 260px; }
}

/* Team member modal — split layout (overrides Bootstrap modal-content flex) */
.team-member-modal { --tm-radius:18px; }
.team-member-modal-dialog {
  max-width:920px;
  width:calc(100% - 1.75rem);
  margin:1rem auto;
}
.team-member-modal .modal-content.team-member-modal-content {
  position:relative;
  padding:0;
  border:none;
  border-radius:var(--tm-radius);
  overflow:hidden;
  box-shadow:0 24px 70px rgba(0,0,0,0.38);
  background:#fff;
  display:block;
  max-height:calc(100vh - 2.5rem);
}
.team-member-modal-shell {
  display:flex;
  flex-direction:column;
  max-height:calc(100vh - 2.5rem);
  min-height:0;
}
.team-member-modal-photo {
  flex-shrink:0;
  height:220px;
  background:linear-gradient(165deg,#141210 0%,#2a241c 55%,#1a1814 100%);
  position:relative;
  overflow:hidden;
  isolation:isolate;
}
.team-member-modal-photo::after {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(10,9,8,0.45) 0%,transparent 40%);
  pointer-events:none;
}
.team-member-modal-img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 20%;
  display:block;
  position:relative;
  z-index:0;
}
.team-member-modal-main {
  flex:1 1 auto;
  min-height:0;
  display:flex;
  flex-direction:column;
  background:#faf9f7;
}
.team-member-modal-inner {
  flex:1 1 auto;
  overflow-y:auto;
  overflow-x:hidden;
  -webkit-overflow-scrolling:touch;
  padding:1.5rem 1.35rem 1.75rem;
  padding-right:calc(1.35rem + 6px);
}
@media (min-width:992px) {
  .team-member-modal-shell {
    flex-direction:row;
    align-items:stretch;
    min-height:420px;
  }
  .team-member-modal-photo {
    flex:0 0 40%;
    width:40%;
    max-width:380px;
    height:auto;
    min-height:320px;
    align-self:stretch;
  }
  .team-member-modal-img {
    position:absolute;
    left:0;
    top:0;
    right:0;
    bottom:0;
    width:100%;
    height:100%;
    object-position:center top;
  }
  .team-member-modal-main {
    flex:1 1 0;
    min-width:0;
    min-height:0;
    overflow:hidden;
  }
  .team-member-modal-inner {
    padding:2rem 2.25rem 2.25rem 2rem;
    max-height:none;
    height:100%;
  }
}
.team-member-modal-close {
  position:absolute;
  top:12px;
  right:12px;
  z-index:30;
  width:2.5rem;
  height:2.5rem;
  margin:0;
  padding:0;
  border-radius:50%;
  background:rgba(255,255,255,0.97) !important;
  box-shadow:0 4px 20px rgba(0,0,0,0.18);
  opacity:1;
  transition:transform 0.2s, box-shadow 0.2s;
}
.team-member-modal-close:hover {
  transform:scale(1.06);
  box-shadow:0 6px 24px rgba(0,0,0,0.22);
}
.team-member-modal-eyebrow {
  font-family:'Cinzel',serif;
  font-size:0.65rem;
  letter-spacing:2.8px;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:0.65rem;
}
.team-member-modal-title {
  font-family:'Playfair Display',serif;
  font-size:clamp(1.45rem,2.8vw,1.85rem);
  font-weight:600;
  color:var(--dark);
  margin:0 0 0.35rem;
  line-height:1.2;
  padding-right:2.5rem;
}
.team-member-modal-role {
  font-family:'Cinzel',serif;
  font-size:0.7rem;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#5c5a56;
  margin:0 0 0.5rem;
  line-height:1.5;
}
.team-member-modal-location {
  font-size:0.82rem;
  color:#6e6c68;
  margin:0 0 1rem;
  line-height:1.45;
}
.team-member-modal-location:empty { display:none; }
.team-member-modal-tags {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:1rem;
}
.team-member-modal-tags:empty { display:none; }
.team-member-modal-quote {
  font-family:'Playfair Display',serif;
  font-style:italic;
  font-size:0.95rem;
  line-height:1.68;
  color:#2a2824;
  border-left:3px solid var(--gold);
  padding:14px 16px 14px 18px;
  margin:0 0 1.25rem;
  background:linear-gradient(90deg, rgba(201,168,76,0.11), rgba(201,168,76,0.02));
  border-radius:0 12px 12px 0;
}
.team-member-modal-bio {
  font-size:0.875rem;
  line-height:1.82;
  color:#4a4844;
  margin:0;
}
.team-member-modal-bio p { margin-bottom:0.85rem; }
.team-member-modal-bio p:last-child { margin-bottom:0; }

/* STATS */
.stats-strip { background:var(--sand); padding:60px 0; }
.stat-item { text-align:center; }
.stat-num { font-family:'Playfair Display',serif; font-size:clamp(2.2rem,4vw,3.2rem); font-weight:700; color:var(--gold); line-height:1; margin-bottom:8px; }
.stat-label { font-family:'Cinzel',serif; font-size:0.68rem; letter-spacing:2.5px; color:var(--dark); text-transform:uppercase; }

/* CTA */
.team-cta { padding:100px 0; background:linear-gradient(rgba(0,0,0,0.72),rgba(0,0,0,0.72)), url('https://images.unsplash.com/photo-1572252009286-268acec5ca0a?w=1600&q=80') center/cover no-repeat fixed; text-align:center; }
.team-cta h2 { font-family:'Playfair Display',serif; color:#fff; font-size:clamp(1.8rem,3.5vw,3rem); margin-bottom:16px; }
.team-cta h2 em { color:var(--gold); font-style:italic; }
.team-cta p { color:rgba(255,255,255,0.68); font-size:0.95rem; max-width:500px; margin:0 auto 32px; line-height:1.8; }
.btn-outline-white { background:transparent; color:#fff; border:2px solid rgba(255,255,255,0.4); padding:11px 26px; font-size:0.78rem; letter-spacing:2px; text-transform:uppercase; font-weight:700; border-radius:2px; transition:all 0.3s; text-decoration:none; display:inline-flex; align-items:center; gap:8px; }
.btn-outline-white:hover { background:rgba(255,255,255,0.1); color:#fff; border-color:rgba(255,255,255,0.7); }

/* FOOTER */
footer { background:#111; padding:56px 0 24px; }
.footer-brand { font-family:'Cinzel',serif; color:var(--gold); font-size:1.1rem; font-weight:700; letter-spacing:2px; margin-bottom:12px; }
.footer-desc { color:rgba(255,255,255,0.42); font-size:0.82rem; line-height:1.75; margin-bottom:20px; }
.footer-social a { width:34px; height:34px; border:1px solid rgba(255,255,255,0.12); border-radius:50%; display:inline-flex; align-items:center; justify-content:center; color:rgba(255,255,255,0.42); font-size:0.75rem; margin-right:6px; text-decoration:none; transition:all 0.3s; }
.footer-social a:hover { background:var(--gold); border-color:var(--gold); color:#fff; }
.footer-heading { font-family:'Cinzel',serif; color:#fff; font-size:0.76rem; letter-spacing:2px; text-transform:uppercase; margin-bottom:16px; }
footer ul { list-style:none; padding:0; }
footer ul li { margin-bottom:9px; }
footer ul li a { color:rgba(255,255,255,0.42); text-decoration:none; font-size:0.82rem; transition:color 0.3s; }
footer ul li a:hover { color:var(--gold); }
.footer-copy { color:rgba(255,255,255,0.25); font-size:0.76rem; }
.footer-copy span { color:var(--gold); }

/* ANIMATIONS */
.fade-up { opacity:0; transform:translateY(28px); transition:opacity 0.65s ease,transform 0.65s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }
.fade-left { opacity:0; transform:translateX(-28px); transition:opacity 0.65s ease,transform 0.65s ease; }
.fade-left.visible { opacity:1; transform:translateX(0); }
.fade-right { opacity:0; transform:translateX(28px); transition:opacity 0.65s ease,transform 0.65s ease; }
.fade-right.visible { opacity:1; transform:translateX(0); }

@media(max-width:991px){ .founder-badge{left:10px;} }

/* ===== CONTACT PAGE ===== */

/* ===== HERO BANNER ===== */
.contact-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1503177119275-0aa32b3a9368?w=1600&q=80') center/cover no-repeat;
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
}
.contact-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, #fff, transparent);
}
.hero-eyebrow {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.contact-hero h1 em { color: var(--gold); font-style: italic; }
.contact-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-wrap {
  background: var(--sand);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.breadcrumb-item a { color: var(--gold); text-decoration: none; font-size: 0.82rem; }
.breadcrumb-item.active { color: var(--text-muted); font-size: 0.82rem; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--gold); }

/* ===== CONTACT INFO CARDS ===== */
.info-section { padding: 80px 0 60px; background: #fff; }
.info-card {
  background: #fff;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.35s ease;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  height: 100%;
}
.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(201,168,76,0.15);
  border-color: var(--gold);
}
.info-icon {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.info-card h5 {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.info-card p, .info-card a {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.8;
  text-decoration: none;
  display: block;
  transition: color 0.3s;
}
.info-card a:hover { color: var(--gold); }

/* ===== CONTACT FORM + MAP SPLIT ===== */
.contact-main { padding: 0 0 80px; background: #fff; }

.section-eyebrow {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}
.section-title span { color: var(--gold); font-style: italic; }
.gold-divider { width: 56px; height: 3px; background: var(--gold); border-radius: 2px; margin: 16px 0 28px; }

/* Form */
.form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 48px 44px;
  box-shadow: 0 8px 50px rgba(0,0,0,0.08);
  border: 1px solid rgba(201,168,76,0.1);
}
.form-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-control, .form-select {
  border: 1.5px solid #e8e8e8;
  border-radius: 6px;
  padding: 13px 16px;
  font-size: 0.88rem;
  color: var(--dark);
  background: #fafafa;
  transition: all 0.3s;
  font-family: 'Lato', sans-serif;
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  background: #fff;
  outline: none;
}
.form-control::placeholder { color: #bbb; }
textarea.form-control { resize: none; }

.btn-submit {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 15px 40px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.3s;
  width: 100%;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-submit:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.35); }

/* Success message */
.form-success {
  display: none;
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  margin-top: 16px;
}
.form-success i { color: var(--gold); font-size: 1.8rem; margin-bottom: 10px; display: block; }
.form-success p { color: var(--dark); font-size: 0.9rem; margin: 0; }

/* Right side info panel */
.contact-side-panel {
  background: #1A1A1A;
  border-radius: 16px;
  padding: 44px 40px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.contact-side-panel::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.contact-side-panel::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.side-panel-title {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.side-panel-title em { color: var(--gold); font-style: italic; }
.side-panel-sub {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 36px;
}
.side-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.side-contact-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: all 0.3s;
}
.side-contact-item:hover .side-contact-icon { background: var(--gold); color: #fff; }
.side-contact-label {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.side-contact-value {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  line-height: 1.6;
}
.side-contact-value a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.3s; }
.side-contact-value a:hover { color: var(--gold); }

.side-divider { border-color: rgba(255,255,255,0.08); margin: 32px 0; }

.social-row { display: flex; gap: 12px; position: relative; z-index: 1; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

.hours-row { position: relative; z-index: 1; }
.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.83rem;
}
.hours-item:last-child { border-bottom: none; }
.hours-day { color: rgba(255,255,255,0.55); }
.hours-time { color: rgba(255,255,255,0.85); font-weight: 700; }
.hours-time.closed { color: #e05555; }
.hours-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,0.25);
  text-transform: uppercase;
  margin-left: 6px;
}

/* ===== FULL WIDTH MAP ===== */
.map-section { position: relative; }
.map-section iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
  filter: grayscale(20%) contrast(1.05);
}
.map-overlay-card {
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
  background: #1A1A1A;
  border-radius: 14px;
  padding: 30px 28px;
  width: 280px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  z-index: 10;
  border: 1px solid rgba(201,168,76,0.2);
}
.map-overlay-card h5 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.map-overlay-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.83rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.map-overlay-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
}
.map-overlay-card a:hover { background: var(--gold-light); }
@media (max-width: 768px) {
  .map-overlay-card { display: none; }
  .map-section iframe { height: 360px; }
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(135deg, #1A1A1A 0%, #2a2a2a 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-strip h3 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}
.cta-strip h3 em { color: var(--gold); font-style: italic; }
.cta-strip p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 28px; }

/* ===== FOOTER ===== */
footer { background: #111; padding: 50px 0 24px; }
.footer-brand { font-family: 'Cinzel', serif; color: var(--gold); font-size: 1.1rem; font-weight: 700; letter-spacing: 2px; margin-bottom: 12px; }
.footer-desc { color: rgba(255,255,255,0.45); font-size: 0.82rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
  margin-right: 6px;
  text-decoration: none;
  transition: all 0.3s;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-heading { font-family: 'Cinzel', serif; color: #fff; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 9px; }
footer ul li a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.82rem; transition: color 0.3s; }
footer ul li a:hover { color: var(--gold); }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.78rem; }
.footer-copy span { color: var(--gold); }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Mobile adjustments */
@media (max-width: 767px) {
  .form-wrap { padding: 30px 22px; }
  .contact-side-panel { padding: 32px 24px; margin-top: 24px; }
}

/* ===== BLOG PAGE ===== */
.blog-hero {
  min-height: 68vh;
  background: linear-gradient(to bottom, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.45) 55%, rgba(0,0,0,0.78) 100%),
  url('https://images.unsplash.com/photo-1572252009286-268acec5ca0a?w=1600&q=85') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden;
}
.blog-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 90px; background: linear-gradient(to top, #fff, transparent); }
.hero-in { position: relative; z-index: 2; }
.eyebrow-hero { font-family: 'Cinzel', serif; color: var(--gold); font-size: 0.72rem; letter-spacing: 5px; text-transform: uppercase; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; gap: 14px; }
.eyebrow-hero::before, .eyebrow-hero::after { content: ''; display: inline-block; width: 40px; height: 1px; background: var(--gold); }
.blog-hero h1 { font-family: 'Playfair Display', serif; color: #fff; font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 700; line-height: 1.1; margin-bottom: 18px; }
.blog-hero h1 em { color: var(--gold); font-style: italic; }
.blog-hero p { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 520px; margin: 0 auto; line-height: 1.8; }
.bc-wrap { background: var(--sand); padding: 13px 0; border-bottom: 1px solid rgba(201,168,76,0.2); }
.filter-section { padding: 50px 0 20px; background: #fff; }
.filter-btn { background: transparent; border: 1.5px solid #e0e0e0; color: var(--muted); font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; padding: 9px 22px; border-radius: 30px; cursor: pointer; transition: all 0.3s; font-family: 'Lato', sans-serif; }
.filter-btn:hover, .filter-btn.active { background: var(--gold); border-color: var(--gold); color: #fff; }
.search-wrap { position: relative; max-width: 400px; }
.search-wrap input { width: 100%; border: 1.5px solid #e8e8e8; border-radius: 30px; padding: 12px 48px 12px 20px; font-size: 0.88rem; color: var(--dark); background: #fafafa; outline: none; font-family: 'Lato', sans-serif; transition: border-color 0.3s; }
.search-wrap input:focus { border-color: var(--gold); }
.search-wrap i { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: var(--gold); font-size: 0.9rem; }
.featured-section { padding: 40px 0 60px; background: #fff; }
.featured-card { border-radius: 16px; overflow: hidden; position: relative; display: block; text-decoration: none; box-shadow: 0 8px 50px rgba(0,0,0,0.12); }
.featured-card img { width: 100%; height: 500px; object-fit: cover; transition: transform 0.7s; }
.featured-card:hover img { transform: scale(1.04); }
.featured-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 55%, transparent 100%); }
.featured-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px; }
.feat-cat { display: inline-flex; align-items: center; gap: 6px; background: var(--gold); color: #fff; font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; padding: 5px 14px; border-radius: 20px; margin-bottom: 14px; }
.featured-body h2 { font-family: 'Playfair Display', serif; color: #fff; font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.2; margin-bottom: 14px; }
.featured-body p { color: rgba(255,255,255,0.78); font-size: 0.9rem; line-height: 1.7; max-width: 600px; margin-bottom: 20px; }
.feat-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.feat-meta span { color: rgba(255,255,255,0.65); font-size: 0.78rem; }
.feat-meta i { color: var(--gold); margin-right: 5px; }
.feat-badge { position: absolute; top: 24px; left: 24px; background: var(--dark); color: var(--gold); font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px; border-radius: 4px; border: 1px solid rgba(201,168,76,0.3); }
.read-more-link { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; transition: gap 0.3s; }
.featured-card:hover .read-more-link { gap: 14px; }
.blog-grid-section { padding: 20px 0 80px; background: #fff; }
.blog-grid-section .blog-card { border-radius: 12px; overflow: hidden; box-shadow: 0 3px 24px rgba(0,0,0,0.07); border: 1px solid rgba(201,168,76,0.1); transition: all 0.35s; height: 100%; display: flex; flex-direction: column; background: #fff; }
.blog-grid-section .blog-card:hover { transform: translateY(-8px); box-shadow: 0 18px 55px rgba(0,0,0,0.13); border-color: rgba(201,168,76,0.3); }
.blog-img-wrap { position: relative; overflow: hidden; flex-shrink: 0; }
.blog-img-wrap img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.6s; }
.blog-grid-section .blog-card:hover .blog-img-wrap img { transform: scale(1.07); }
.blog-cat-tag { position: absolute; top: 14px; left: 14px; background: var(--gold); color: #fff; font-size: 0.65rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; padding: 4px 12px; border-radius: 20px; }
.blog-grid-section .blog-card-body { padding: 24px 22px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-grid-section .blog-card-title { font-family: 'Playfair Display', serif; font-size: 1.08rem; font-weight: 600; color: var(--dark); line-height: 1.4; margin-bottom: 10px; transition: color 0.3s; }
.blog-grid-section .blog-card:hover .blog-card-title { color: var(--gold); }
.blog-card-excerpt { font-size: 0.84rem; color: var(--muted); line-height: 1.72; flex-grow: 1; margin-bottom: 18px; }
.blog-divider { width: 30px; height: 2px; background: var(--gold); border-radius: 2px; margin: 14px 0; }
.blog-meta-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; }
.blog-author { display: flex; align-items: center; gap: 8px; }
.blog-author img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(201,168,76,0.3); }
.blog-author-name { font-size: 0.75rem; font-weight: 700; color: var(--dark); }
.blog-date { font-size: 0.73rem; color: var(--muted); }
.blog-read-time { font-size: 0.72rem; color: var(--gold); font-weight: 700; }
.blog-card-link { text-decoration: none; display: flex; flex-direction: column; height: 100%; }
.sidebar-section { padding: 20px 0 80px; }
.blog-grid-section + .sidebar-section .sidebar-card,
.sidebar-section .sidebar-card { background: #fff; border-radius: 12px; padding: 28px; box-shadow: 0 3px 24px rgba(0,0,0,0.06); border: 1px solid rgba(201,168,76,0.1); margin-bottom: 28px; }
.sidebar-title { font-family: 'Cinzel', serif; font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--dark); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); }
.popular-item { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; text-decoration: none; }
.popular-item:last-child { margin-bottom: 0; }
.popular-img { width: 68px; height: 60px; border-radius: 8px; object-fit: cover; flex-shrink: 0; transition: transform 0.3s; }
.popular-item:hover .popular-img { transform: scale(1.05); }
.popular-title { font-size: 0.83rem; font-weight: 700; color: var(--dark); line-height: 1.4; margin-bottom: 4px; transition: color 0.3s; }
.popular-item:hover .popular-title { color: var(--gold); }
.popular-date { font-size: 0.72rem; color: var(--muted); }
.cat-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #f0f0f0; text-decoration: none; transition: all 0.3s; }
.cat-item:last-child { border-bottom: none; }
.cat-item:hover .cat-name { color: var(--gold); }
.cat-name { font-size: 0.85rem; color: var(--dark); transition: color 0.3s; }
.cat-count { background: var(--gold-dim); color: var(--gold); font-size: 0.7rem; font-weight: 700; padding: 2px 10px; border-radius: 20px; border: 1px solid rgba(201,168,76,0.25); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-btn { background: transparent; border: 1.5px solid #e0e0e0; color: var(--muted); font-size: 0.72rem; letter-spacing: 1px; padding: 5px 14px; border-radius: 20px; cursor: pointer; transition: all 0.3s; font-family: 'Lato', sans-serif; }
.tag-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.newsletter-box { background: var(--dark); border-radius: 12px; padding: 28px; text-align: center; }
.newsletter-box h5 { font-family: 'Playfair Display', serif; color: #fff; font-size: 1.1rem; margin-bottom: 8px; }
.newsletter-box p { color: rgba(255,255,255,0.55); font-size: 0.82rem; line-height: 1.7; margin-bottom: 18px; }
.newsletter-box input { width: 100%; border: 1.5px solid rgba(255,255,255,0.15); border-radius: 6px; padding: 11px 14px; font-size: 0.85rem; color: #fff; background: rgba(255,255,255,0.06); outline: none; font-family: 'Lato', sans-serif; margin-bottom: 10px; }
.newsletter-box input::placeholder { color: rgba(255,255,255,0.3); }
.pagination-wrap { padding: 20px 0 60px; }
.page-btn { width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid #e0e0e0; background: transparent; color: var(--muted); font-size: 0.85rem; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; font-family: 'Lato', sans-serif; font-weight: 700; }
.page-btn:hover, .page-btn.active { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ===== BLOG DETAILS PAGE ===== */
#readProgress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(to right, var(--gold), var(--gold-light)); width: 0%; z-index: 9999; transition: width 0.1s; }
.post-hero {
  min-height: 75vh;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.82) 100%),
  url('https://images.unsplash.com/photo-1503177119275-0aa32b3a9368?w=1600&q=85') center/cover no-repeat;
  display: flex; align-items: flex-end; position: relative; padding-bottom: 60px;
}
.post-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 100px; background: linear-gradient(to top, #fff, transparent); }
.post-hero-inner { position: relative; z-index: 2; }
.post-cat-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--gold); color: #fff; font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; padding: 6px 16px; border-radius: 20px; margin-bottom: 18px; }
.post-hero h1 { font-family: 'Playfair Display', serif; color: #fff; font-size: clamp(1.9rem, 4.5vw, 3.8rem); font-weight: 700; line-height: 1.15; margin-bottom: 22px; max-width: 800px; }
.post-meta-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.post-meta-row span { color: rgba(255,255,255,0.7); font-size: 0.82rem; }
.post-meta-row i { color: var(--gold); margin-right: 5px; }
.author-pill { display: flex; align-items: center; gap: 10px; }
.author-pill img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.author-pill-name { color: #fff; font-size: 0.82rem; font-weight: 700; }
.article-section { padding: 70px 0 80px; background: #fff; }
.article-body { max-width: 760px; }
.article-lead { font-size: 1.15rem; color: var(--dark); line-height: 1.85; font-weight: 300; margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid #f0f0f0; }
.article-body h2 { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; color: var(--dark); margin: 48px 0 20px; line-height: 1.25; }
.article-body h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 600; color: var(--dark); margin: 36px 0 16px; }
.article-body p { color: var(--muted); font-size: 0.95rem; line-height: 1.88; margin-bottom: 22px; font-weight: 300; }
.article-body ul, .article-body ol { color: var(--muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 24px; padding-left: 24px; }
.article-body li { margin-bottom: 10px; }
.article-body strong { color: var(--dark); font-weight: 700; }
.pull-quote { border-left: 4px solid var(--gold); background: var(--sand); border-radius: 0 10px 10px 0; padding: 24px 28px; margin: 36px 0; position: relative; }
.pull-quote::before { content: '\201C'; font-family: 'Playfair Display', serif; font-size: 5rem; color: rgba(201,168,76,0.2); position: absolute; top: -10px; left: 18px; line-height: 1; }
.pull-quote p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.12rem; color: var(--dark); line-height: 1.7; margin: 0; position: relative; z-index: 1; }
.pull-quote cite { display: block; font-family: 'Lato', sans-serif; font-style: normal; font-size: 0.78rem; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; font-weight: 700; margin-top: 12px; }
.article-img { width: 100%; border-radius: 10px; margin: 32px 0; box-shadow: 0 8px 40px rgba(0,0,0,0.1); }
.img-caption { font-size: 0.78rem; color: var(--muted); text-align: center; margin-top: -22px; margin-bottom: 32px; font-style: italic; }
.info-box { background: var(--dark); border-radius: 12px; padding: 28px 30px; margin: 36px 0; }
.info-box-title { font-family: 'Cinzel', serif; color: var(--gold); font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px; }
.info-box ul { padding-left: 0; list-style: none; margin: 0; }
.info-box li { color: rgba(255,255,255,0.75); font-size: 0.88rem; line-height: 1.7; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; align-items: flex-start; gap: 10px; }
.info-box li:last-child { border-bottom: none; }
.info-box li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.tip-box { background: rgba(201,168,76,0.06); border: 1px solid rgba(201,168,76,0.2); border-radius: 10px; padding: 22px 24px; margin: 28px 0; display: flex; gap: 16px; align-items: flex-start; }
.tip-icon { width: 38px; height: 38px; background: var(--gold); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.9rem; flex-shrink: 0; }
.tip-box p { margin: 0; font-size: 0.88rem; color: var(--dark); line-height: 1.7; }
.tip-box strong { color: var(--gold); }
.two-col-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }
.two-col-imgs img { width: 100%; height: 220px; object-fit: cover; border-radius: 10px; }
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 40px 0 0; }
.post-tag { background: var(--gold-dim); border: 1px solid rgba(201,168,76,0.25); color: var(--gold); font-size: 0.72rem; letter-spacing: 1px; padding: 5px 14px; border-radius: 20px; font-weight: 700; text-transform: uppercase; text-decoration: none; transition: all 0.3s; }
.post-tag:hover { background: var(--gold); color: #fff; }
.share-bar { background: var(--sand); border-radius: 12px; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin: 40px 0; }
.share-label { font-family: 'Cinzel', serif; font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--dark); }
.share-btns { display: flex; gap: 10px; }
.share-btn { width: 38px; height: 38px; border-radius: 8px; border: 1.5px solid #e0e0e0; background: transparent; color: var(--muted); font-size: 0.85rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; text-decoration: none; }
.share-btn.fb:hover { background: #1877f2; border-color: #1877f2; color: #fff; }
.share-btn.tw:hover { background: #1da1f2; border-color: #1da1f2; color: #fff; }
.share-btn.wa:hover { background: #25d366; border-color: #25d366; color: #fff; }
.share-btn.li:hover { background: #0a66c2; border-color: #0a66c2; color: #fff; }
.share-btn.cp:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.author-box { background: #fff; border: 1px solid rgba(201,168,76,0.15); border-radius: 16px; padding: 32px; display: flex; gap: 24px; align-items: flex-start; box-shadow: 0 4px 24px rgba(0,0,0,0.06); margin: 40px 0; }
.author-box-img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold); flex-shrink: 0; }
.author-box-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.author-box-role { font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 12px; }
.author-box-bio { font-size: 0.85rem; color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.author-social a { width: 30px; height: 30px; border-radius: 6px; border: 1.5px solid #e0e0e0; display: inline-flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.75rem; margin-right: 6px; text-decoration: none; transition: all 0.3s; }
.author-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.comments-section { background: var(--sand); border-radius: 16px; padding: 36px; margin: 40px 0; }
.comments-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--dark); margin-bottom: 28px; padding-bottom: 16px; border-bottom: 2px solid var(--gold); }
.comment-item { display: flex; gap: 16px; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(201,168,76,0.15); }
.comment-item:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.comment-avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid rgba(201,168,76,0.3); }
.comment-name { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.comment-date { font-size: 0.73rem; color: var(--muted); margin-bottom: 8px; }
.comment-text { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }
.comment-reply { font-size: 0.72rem; color: var(--gold); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; background: none; border: none; padding: 0; margin-top: 8px; }
.comment-form { margin-top: 32px; }
.comment-form h5 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 20px; }
.form-control-c { width: 100%; border: 1.5px solid #e8e8e8; border-radius: 8px; padding: 12px 16px; font-size: 0.88rem; color: var(--dark); background: #fafafa; outline: none; font-family: 'Lato', sans-serif; transition: border-color 0.3s; margin-bottom: 14px; }
.form-control-c:focus { border-color: var(--gold); }
.form-control-c::placeholder { color: #bbb; }
.toc-item { display: block; color: var(--muted); font-size: 0.83rem; padding: 8px 0; border-bottom: 1px solid #f5f5f5; text-decoration: none; transition: color 0.3s; line-height: 1.4; }
.toc-item:hover { color: var(--gold); }
.toc-item:last-child { border-bottom: none; }
.toc-item i { color: var(--gold); margin-right: 8px; font-size: 0.65rem; }
.related-section { padding: 70px 0 80px; background: var(--sand); }
.related-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.related-title span { color: var(--gold); font-style: italic; }
.gold-bar { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin: 14px 0 36px; }
.related-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 3px 20px rgba(0,0,0,0.07); border: 1px solid rgba(201,168,76,0.1); transition: all 0.35s; text-decoration: none; display: block; }
.related-card:hover { transform: translateY(-6px); box-shadow: 0 16px 45px rgba(0,0,0,0.12); }
.related-card img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s; }
.related-card:hover img { transform: scale(1.06); }
.related-body { padding: 20px; }
.related-cat { font-family: 'Cinzel', serif; font-size: 0.62rem; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; }
.related-post-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--dark); line-height: 1.4; margin-bottom: 10px; transition: color 0.3s; }
.related-card:hover .related-post-title { color: var(--gold); }
.related-meta { font-size: 0.75rem; color: var(--muted); }
@media (max-width: 767px) {
  .author-box { flex-direction: column; }
  .two-col-imgs { grid-template-columns: 1fr; }
}

/* ===== HOMEPAGE: WHY BOOK WITH US ===== */
.why-book-section { background: var(--sand); }
.why-book-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 3px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(201,168,76,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}
.why-book-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.why-book-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
}
.why-book-card h5 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.why-book-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; margin: 0; }

/* ===== HOMEPAGE: GMB REVIEWS ===== */
.gmb-reviews-section { background: #fff; }
.gmb-card {
  background: var(--sand);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(201,168,76,0.12);
  height: 100%;
  transition: box-shadow 0.3s;
}
.gmb-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.gmb-card .stars { color: var(--gold); font-size: 0.85rem; }
.gmb-date { font-size: 0.75rem; color: var(--muted); }
.gmb-text { font-size: 0.9rem; color: var(--dark); line-height: 1.75; margin: 0; }
.gmb-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.gmb-name { font-size: 0.9rem; color: var(--dark); }
.gmb-meta { font-size: 0.75rem; color: var(--muted); }

/* ===== HOMEPAGE: VIDEO TESTIMONIALS ===== */
.video-testi-section { background: var(--sand); }
.video-testi-card {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  text-decoration: none;
  aspect-ratio: 16/10;
}
.video-testi-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.video-testi-card:hover img { transform: scale(1.06); }
.video-testi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: background 0.3s;
}
.video-testi-card:hover .video-testi-overlay { background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%); }
.video-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
  transition: transform 0.3s, background 0.3s;
}
.video-testi-card:hover .video-play-btn { transform: scale(1.1); background: var(--gold-light); }
.video-testi-title { font-family: 'Playfair Display', serif; color: #fff; font-size: 1rem; font-weight: 600; margin: 0 0 4px; text-align: center; }
.video-testi-meta { font-size: 0.8rem; color: rgba(255,255,255,0.75); margin: 0; }

/* ===== HOMEPAGE: INSTAGRAM FEED ===== */
.instagram-section { background: #fff; }
.instagram-tile {
  display: block;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  flex: 0 0 auto;
  width: 220px;
  height: 220px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.12);
}
.instagram-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.2);
  opacity: 0;
  transition: opacity 0.3s;
}
.instagram-tile:hover::after { opacity: 1; }
.instagram-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.instagram-tile:hover img { transform: scale(1.08); }
.instagram-marquee-wrap {
  width: 100%;
  overflow: hidden;
  margin-top: 14px;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.instagram-marquee-track {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  animation: instagram-scroll 160s linear infinite;
}
@keyframes instagram-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 6px)); }
}
@media (max-width: 767px) {
  .instagram-tile { width: 160px; height: 160px; }
  .instagram-marquee-track { animation-duration: 130s; }
}

/* ===== HOMEPAGE: LIVE CHAT BUTTON ===== */
.live-chat-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 24px rgba(201,168,76,0.45);
  z-index: 998;
  text-decoration: none;
  transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
}
.live-chat-btn:hover { background: var(--gold-light); color: #fff; transform: scale(1.08); box-shadow: 0 6px 28px rgba(201,168,76,0.5); }
.live-chat-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 0;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .live-chat-btn { width: auto; padding: 0 20px; border-radius: 28px; gap: 8px; }
  .live-chat-btn .live-chat-label { position: static; transform: none; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.5px; }
}

/* ===== HOMEPAGE: DREAM DESTINATIONS ===== */
.dream-destination-section { background: #f6f6f6; }
.dream-title {
  font-family: 'Playfair Display', serif;
  color: #1a1a1a;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 8px;
}
.dream-title span { color: var(--gold); font-style: italic; }
.dream-subtitle {
  color: #6f6f6f;
  font-size: 0.9rem;
  max-width: 560px;
  margin: 0 auto;
}
.dream-card {
  position: relative;
  display: block;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.dream-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.dream-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 12%, rgba(0,0,0,0.1) 55%, rgba(0,0,0,0.05) 100%);
}
.dream-content {
  position: absolute;
  left: 20px;
  bottom: 16px;
  z-index: 2;
}
.dream-content h4 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 4px;
}
.dream-content p {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  margin: 0;
}
.dream-arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: #6b6b6b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.dream-card:hover img { transform: scale(1.07); }
.dream-card:hover .dream-arrow { transform: translateX(2px); background: var(--gold); color: #fff; }
@media (max-width: 991px) {
  .dream-card { height: 220px; }
}

/* ===== HOMEPAGE: EXCLUSIVE PACKAGES ===== */
.exclusive-packages-section { background: #f4f4f4; }
.exclusive-title {
  font-family: 'Playfair Display', serif;
  color: #1a1a1a;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}
.exclusive-title span { color: var(--gold); font-style: italic; }
.exclusive-subtitle {
  color: #6b6b6b;
  font-size: 0.92rem;
  max-width: 650px;
  margin: 0 auto;
}
.exclusive-card {
  display: block;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  height: 100%;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.exclusive-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.1);
}
.exclusive-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}
.exclusive-body { padding: 14px 14px 16px; }
.exclusive-loc {
  font-size: 0.78rem;
  color: #919191;
  margin-bottom: 8px;
}
.exclusive-loc i { color: #b6b6b6; margin-right: 4px; }
.exclusive-body h5 {
  font-family: 'Playfair Display', serif;
  color: #1a1a1a;
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}
.exclusive-meta {
  color: #7f7f7f;
  font-size: 0.88rem;
  margin: 0;
}
.exclusive-meta span { color: #c8c8c8; margin: 0 7px; }

.exclusive-more-card {
  background: #efefef;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  padding: 20px 18px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.exclusive-small {
  color: #7f7f7f;
  font-size: 0.92rem;
  margin-bottom: 8px;
}
.exclusive-more-card h4 {
  font-family: 'Playfair Display', serif;
  color: #1a1a1a;
  font-size: 1.95rem;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 10px;
}
.exclusive-note {
  color: #8e8e8e;
  font-size: 0.88rem;
  margin-bottom: 18px;
}
.exclusive-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #101010;
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 12px 18px;
  transition: background 0.25s ease;
}
.exclusive-btn:hover { background: var(--gold); color: #fff; }

/* ===== HOMEPAGE: QUERY BOOKING ===== */
.query-booking-section {
  background: linear-gradient(135deg, #151515 0%, #1f1f1f 100%);
}
.query-booking-section .section-title.light { color: #fff; }
.query-booking-info {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 14px;
  padding: 28px;
}
.query-booking-info p {
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
  line-height: 1.8;
}
.qb-points { margin-top: 18px; display: grid; gap: 10px; }
.qb-points div { color: rgba(255,255,255,0.85); font-size: 0.86rem; }
.qb-points i { color: var(--gold); margin-right: 8px; }
.query-booking-form {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid rgba(201,168,76,0.2);
}
.qb-input {
  width: 100%;
  border: 1.5px solid #e7e7e7;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.9rem;
  color: #1a1a1a;
  background: #fafafa;
  outline: none;
  font-family: 'Lato', sans-serif;
}
.qb-input:focus { border-color: var(--gold); background: #fff; }
.qb-textarea { min-height: 130px; resize: vertical; }

/* ===== HOMEPAGE: INFINITE GALLERY ===== */
.infinite-gallery-section {
  background: #fff;
  overflow: hidden;
}
.gallery-marquee-wrap {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  margin-bottom: 14px;
}
.gallery-marquee-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  animation: gallery-scroll 180s linear infinite;
}
.gallery-marquee-wrap.reverse .gallery-marquee-track {
  animation-direction: reverse;
  animation-duration: 220s;
}
.gallery-item {
  flex: 0 0 auto;
  width: 300px;
  height: 190px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0,0,0,0.12);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
@keyframes gallery-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 7px)); }
}
@media (max-width: 991px) {
  .gallery-item { width: 250px; height: 165px; }
  .gallery-marquee-track { animation-duration: 150s; }
  .gallery-marquee-wrap.reverse .gallery-marquee-track { animation-duration: 180s; }
}

/* ===== AUTH PAGES ===== */
.auth-section {
  padding: 120px 0 70px;
  background: linear-gradient(135deg, #111 0%, #1d1d1d 100%);
 
}
.auth-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.auth-wrap-login,
.auth-wrap-forgot {
  grid-template-columns: 1.1fr 0.9fr;
}
.auth-panel {
  border-radius: 14px;
  padding: 34px;
}
.auth-panel-info {
  border: 1px solid rgba(201,168,76,0.25);
  background: rgba(255,255,255,0.03);
}
.auth-panel-info h1 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 14px;
  line-height: 1.2;
}
.auth-panel-info h1 span { color: var(--gold); font-style: italic; }
.auth-panel-info p {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  line-height: 1.8;
}
.auth-panel-form {
  background: #fff;
  border: 1px solid rgba(201,168,76,0.18);
}
.auth-panel-form h2 {
  font-family: 'Playfair Display', serif;
  color: var(--dark);
  margin-bottom: 18px;
}
.auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.auth-input {
  width: 100%;
  border: 1.5px solid #e7e7e7;
  background: #fafafa;
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 12px;
  outline: none;
}
.auth-input:focus {
  border-color: var(--gold);
  background: #fff;
}
.auth-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.84rem;
  color: var(--muted);
}
.auth-actions a,
.auth-footnote a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
}
.auth-footnote {
  font-size: 0.86rem;
  color: var(--muted);
  margin-top: 14px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .auth-wrap,
  .auth-wrap-login,
  .auth-wrap-forgot {
    grid-template-columns: 1fr;
  }
  .auth-panel { padding: 24px; }
}

/* Single-card auth layout for login/registration */
.auth-single-shell {
  display: flex;
  justify-content: center;
}
.auth-single-card {
  width: 100%;
  max-width: 620px;
  background: #fff;
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 16px;
  padding: 34px 30px 28px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.35);
  position: relative;
  overflow: hidden;
}
.auth-single-card::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.2) 0%, rgba(201,168,76,0) 70%);
  pointer-events: none;
}
.auth-single-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.8vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 8px;
}
.auth-single-title span { color: var(--gold); font-style: italic; }
.auth-single-subtitle {
  color: #777;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 20px;
}
.auth-single-card .auth-input {
  margin-bottom: 12px;
  background: #fff;
}
.auth-single-card .auth-actions label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.auth-single-card .btn-gold {
  margin-top: 4px;
  padding: 13px 20px;
}
.auth-single-card .auth-footnote {
  margin-top: 16px;
}
.auth-alert {
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.86rem;
  margin: 0 0 12px;
}
.auth-alert a { color: inherit; text-decoration: underline; font-weight: 700; }
.auth-alert-error {
  background: #fdecec;
  border: 1px solid #f3c3c3;
  color: #9f2e2e;
}
.auth-alert-success {
  background: #ecf9f0;
  border: 1px solid #b9e4c5;
  color: #1f6f39;
}
@media (max-width: 767px) {
  .auth-single-card {
    padding: 26px 18px 22px;
    border-radius: 12px;
  }
  .auth-grid { grid-template-columns: 1fr; }
}

/* ===== FIXED LANGUAGE SWITCHER (UI ONLY) ===== */
.language-fab {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}
.language-fab-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(241,181,5,0.75);
  background: #111;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0,0,0,0.3);
  transition: all 0.25s ease;
}
.language-fab:hover .language-fab-btn {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
}
.language-fab-menu {
  position: absolute;
  right: 58px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: #111;
  border: 1px solid rgba(241,181,5,0.5);
  border-radius: 10px;
  padding: 8px;
  min-width: 152px;
  max-height: min(70vh, 320px);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s ease;
}
.language-fab:hover .language-fab-menu,
.language-fab.open .language-fab-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}
.language-option {
  display: block;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.82rem;
  padding: 8px 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.language-option:hover {
  background: rgba(241,181,5,0.18);
  color: var(--gold);
}
@media (max-width: 767px) {
  .language-fab {
    right: 12px;
    top: auto;
    bottom: 95px;
    transform: none;
  }
  .language-fab-menu {
    right: 0;
    top: auto;
    bottom: 58px;
    transform: translateY(8px);
  }
  .language-fab:hover .language-fab-menu,
  .language-fab.open .language-fab-menu {
    transform: translateY(0);
  }
}

/* Footer social: wrap many icons (overrides duplicate footer blocks above) */
footer .footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
footer .footer-social a {
  margin-right: 0;
}

/* ===== COMING SOON DESTINATIONS (home + nav reference) ===== */
.coming-soon-dest-section {
  background: linear-gradient(180deg, #f8f6f1 0%, #ece6dc 100%);
}
.coming-soon-dest-lead {
  color: #666;
  font-size: 0.92rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}
.coming-soon-dest-lead a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}
.coming-soon-dest-lead a:hover {
  text-decoration: underline;
}
.coming-soon-dest-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}
.coming-soon-dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.92);
  transition: transform 0.35s ease, filter 0.35s ease;
}
.coming-soon-dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 18, 14, 0.15) 0%, rgba(12, 10, 8, 0.82) 100%);
  pointer-events: none;
}
.coming-soon-dest-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: #1a1a1a;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 3px;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}
.coming-soon-dest-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 22px 24px;
  z-index: 2;
}
.coming-soon-dest-name {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 600;
  margin: 0 0 6px;
  line-height: 1.2;
}
.coming-soon-dest-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.45;
}
@media (hover: hover) {
  .coming-soon-dest-card:hover img {
    transform: scale(1.05);
    filter: saturate(1) brightness(1);
  }
}
@media (max-width: 767px) {
  .coming-soon-dest-card {
    height: 240px;
  }
}
