/* ===========================
   Berline Tours Company
   "Voyage" Editorial — v3
   =========================== */

/* ───────────────────────────
   1. Tokens & Variables
─────────────────────────── */
:root {
  /* Core Palette */
  --ink:         #0A0F1E;
  --ink-700:     #1A2033;
  --ink-500:     #374151;
  --ink-400:     #6B7280;
  --ink-200:     #D1D5DB;
  --ink-100:     #F3F4F6;
  --ink-50:      #F9FAFB;

  --white:       #FFFFFF;
  --blue:        #2563EB;
  --blue-dark:   #1D4ED8;
  --blue-light:  #3B82F6;
  --blue-50:     #EFF6FF;
  --blue-100:    #DBEAFE;

  --amber:       #D97706;
  --amber-light: #F59E0B;

  /* Typography Scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;
  --text-7xl:  4.5rem;
  --text-8xl:  6rem;

  /* Spacing */
  --section-y:  6rem;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(10,15,30,0.08), 0 1px 2px rgba(10,15,30,0.05);
  --shadow-md:  0 4px 16px rgba(10,15,30,0.10), 0 2px 6px rgba(10,15,30,0.06);
  --shadow-lg:  0 12px 40px rgba(10,15,30,0.12), 0 4px 12px rgba(10,15,30,0.08);
  --shadow-xl:  0 24px 60px rgba(10,15,30,0.15);

  /* Transitions */
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast:   0.2s;
  --dur-base:   0.35s;
  --dur-slow:   0.6s;

  /* Radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-pill: 9999px;

  /* Gold (kept for cards/badges) */
  --gold:       #D4AF37;
  --gold-light: #E8C557;
}

/* ───────────────────────────
   2. Custom Fonts (AR/KU)
─────────────────────────── */
@font-face {
  font-family: 'Ping';
  src: url('assets/fonts/ar/Ping-Regular.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Ping';
  src: url('assets/fonts/ar/Ping-Medium.otf') format('opentype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Ping';
  src: url('assets/fonts/ar/Ping-Bold.otf') format('opentype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Ping';
  src: url('assets/fonts/ar/Ping-Black.otf') format('opentype');
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: 'Rabar';
  src: url('assets/fonts/Rabar_038.ttf') format('truetype');
  font-display: swap;
}

/* ───────────────────────────
   3. Base Reset
─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--text-base);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

body.intro-running {
  overflow: hidden;
}

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 52%, rgba(105, 157, 255, 0.16), transparent 30%),
    rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: siteIntroLeave 0.62s ease 1.9s forwards;
}

.site-intro.is-hidden {
  display: none;
}

.site-intro-mark {
  position: relative;
  width: min(168px, 38vw);
  aspect-ratio: 10794 / 9008;
  animation: siteIntroMark 1.2s cubic-bezier(.22, 1, .36, 1) both;
}

.site-intro-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.28));
}

.site-intro-route {
  position: absolute;
  left: 50%;
  top: calc(50% + min(104px, 22vw));
  width: min(190px, 46vw);
  height: 1px;
  transform: translateX(-50%);
  background: rgba(37, 99, 235, 0.16);
  overflow: hidden;
  animation: siteIntroRouteIn 0.55s ease 0.35s both;
}

.site-intro-route span {
  position: absolute;
  inset: 0;
  width: 46%;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  animation: siteIntroRouteFly 1.05s ease 0.52s both;
}

@keyframes siteIntroMark {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.9);
  }
  62% {
    opacity: 1;
    transform: translateY(0) scale(1.035);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes siteIntroRouteIn {
  from {
    opacity: 0;
    transform: translateX(-50%) scaleX(0.35);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
  }
}

@keyframes siteIntroRouteFly {
  from { transform: translateX(-110%); }
  to { transform: translateX(245%); }
}

@keyframes siteIntroLeave {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-intro {
    display: none;
  }
}

/* Lang-specific fonts */
[lang="ar"] body, html[dir="rtl"] body { font-family: 'Ping', sans-serif; }
[lang="ku"] body { font-family: 'Rabar', sans-serif; }

/* Fix icon spacing in RTL — add margin on both sides to ensure gap */
[dir="rtl"] i.bi.me-2 { margin-left: 0.5rem !important; }
[dir="rtl"] i.bi.me-3 { margin-left: 1rem !important; }

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ───────────────────────────
   4. Navbar
─────────────────────────── */
#mainNav {
  padding: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  z-index: 1000;
}

#mainNav.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(10,15,30,0.09);
  border-bottom-color: rgba(0,0,0,0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  padding: 0.75rem 3rem;
  gap: 2rem;
  transition: padding 0.35s ease;
}

#mainNav.scrolled .nav-container {
  padding: 0.5rem 3rem;
}

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  margin-right: 0;
}
.navbar-brand img, .nav-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

#mainNav .nav-logo {
  width: 140px;
  height: 90px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 3px 8px rgba(10, 15, 30, 0.28));
  animation: navLogoIntro 0.75s cubic-bezier(.22, 1, .36, 1) 0.15s both;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

#mainNav.scrolled .nav-logo {
  filter: drop-shadow(0 2px 5px rgba(10, 15, 30, 0.12));
}

@keyframes navLogoIntro {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  #mainNav .nav-logo {
    animation: none;
  }
}
.brand-wordmark {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color 0.35s ease;
}
#mainNav.scrolled .brand-wordmark {
  color: var(--ink);
}

/* Nav links — white over hero */
.navbar-nav {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex-wrap: nowrap;
}
.nav-link {
  font-size: 1.15rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88) !important;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-pill);
  transition: color var(--dur-fast), background var(--dur-fast);
  white-space: nowrap;
}
.nav-link:hover {
  color: #ffffff !important;
  background: rgba(255,255,255,0.15);
}
.nav-link.active {
  color: #ffffff !important;
  background: rgba(255,255,255,0.18);
  font-weight: 600;
}
.nav-item.active .nav-link { color: #ffffff !important; }

/* Scrolled: dark links */
#mainNav.scrolled .nav-link { color: var(--ink-500) !important; }
#mainNav.scrolled .nav-link:hover {
  color: var(--blue) !important;
  background: var(--blue-50);
}
#mainNav.scrolled .nav-link.active,
#mainNav.scrolled .nav-item.active .nav-link {
  color: var(--blue) !important;
  background: var(--blue-50);
}

/* Nav end */
.nav-end {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Language switcher */
.language-switcher {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,0.18);
  padding: 3px;
  border-radius: var(--radius-pill);
  transition: background 0.35s ease;
}
#mainNav.scrolled .language-switcher { background: var(--ink-100); }

.lang-btn {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
  transition: all var(--dur-fast);
}
#mainNav.scrolled .lang-btn { color: var(--ink-500); }

.lang-btn.active,
.lang-btn:hover {
  background: rgba(255,255,255,0.9);
  color: var(--blue);
}
#mainNav.scrolled .lang-btn.active,
#mainNav.scrolled .lang-btn:hover {
  background: var(--blue);
  color: var(--white);
}

/* CTA button */
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink) !important;
  background: rgba(255,255,255,0.95);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.5);
  transition: background var(--dur-fast), color var(--dur-fast), transform var(--dur-fast), border-color var(--dur-fast);
  white-space: nowrap;
}
.btn-nav-cta:hover {
  background: var(--blue);
  color: var(--white) !important;
  border-color: var(--blue);
  transform: translateY(-1px);
}
#mainNav.scrolled .btn-nav-cta {
  background: var(--ink);
  color: var(--white) !important;
  border-color: var(--ink);
}
#mainNav.scrolled .btn-nav-cta:hover {
  background: var(--blue);
  border-color: var(--blue);
}

/* The CTA pill duplicates the "Contact" nav link right next to it — the
   plain-text nav link is hidden for Kurdish instead (see .nav-item-contact) */
[lang="ku"] .nav-item-contact {
  display: none;
}

/* Kurdish nav content is narrower than AR/EN, so the default space-between
   layout leaves a large empty gap before the logo — pull the nav cluster
   in next to the logo instead of spreading it across the full width */
[lang="ku"] .nav-container {
  justify-content: flex-start;
}

/* Mobile toggler */
.navbar-toggler {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
  background: none;
  border: none;
}
.toggler-bar {
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  display: block;
  transition: background var(--dur-fast);
}
#mainNav.scrolled .toggler-bar { background: var(--ink); }

/* Mobile */
@media (max-width: 991px) {
  #mainNav {
    background: rgba(12, 18, 38, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: rgba(255,255,255,0.08);
  }
  #mainNav.scrolled {
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: rgba(0,0,0,0.06);
  }
  .nav-container {
    flex-wrap: wrap;
    padding: 0.7rem 1.1rem;
    gap: 0.5rem;
  }
  #mainNav.scrolled .nav-container { padding: 0.55rem 1.1rem; }
  .navbar-brand { gap: 0.4rem; min-width: 0; }
  .navbar-brand img, .nav-logo { width: 52px; height: 52px; }
  #mainNav .nav-logo {
    width: 110px;
    height: 70px;
  }
  #mainNav .navbar-brand::before {
    width: 110px;
    height: 70px;
  }
  .navbar-toggler {
    width: 34px; height: 34px;
    align-items: center; justify-content: center;
    gap: 4px; padding: 0; border-radius: 50%;
  }
  .navbar-toggler:hover { background: rgba(255,255,255,0.12); }
  #mainNav.scrolled .navbar-toggler:hover { background: var(--ink-100); }
  .toggler-bar { width: 17px; height: 2px; }
  .navbar-collapse {
    width: 100%;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  #mainNav.scrolled .navbar-collapse { border-top-color: var(--ink-100); }
  .navbar-nav { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
  .navbar-nav .nav-link { display: block; width: 100%; padding: 0.55rem 0.75rem !important; }
  .nav-end {
    width: 100%;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  #mainNav.scrolled .nav-end { border-top-color: var(--ink-100); }
}

@media (max-width: 380px) {
  .nav-container { padding: 0.6rem 0.9rem; }
  .navbar-brand img, .nav-logo { width: 44px; height: 44px; }
  #mainNav .nav-logo {
    width: 96px;
    height: 62px;
  }
  #mainNav .navbar-brand::before {
    width: 96px;
    height: 62px;
  }
}

/* ───────────────────────────
   5. Hero Section
─────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #0a0a0a;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Soft radial vignette — darkens ONLY the text zone, no color cast */
  background:
    radial-gradient(
      ellipse 70% 75% at 18% 88%,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.42) 38%,
      rgba(0, 0, 0, 0.12) 62%,
      transparent 80%
    ),
    /* Subtle bottom bar so buttons also stay readable */
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.52) 0%,
      rgba(0, 0, 0, 0.18) 18%,
      transparent 36%
    );
}

.hero-section .container {
  position: relative;
  z-index: 2;
  padding-top: 280px;
  padding-bottom: 100px;
}

.hero-content { max-width: 720px; }

.hero-eyebrow {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55), 0 1px 4px rgba(0,0,0,0.30);
}
.hero-headline br { display: block; }

/* Kurdish words run wider than AR/EN per line, so shrink the display size
   to keep the stacked headline from feeling oversized/crowding the sub text */
[lang="ku"] .hero-headline {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
}

.hero-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.92);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.25rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.40);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--ink) !important;
  background: #FFFFFF;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  transition: all var(--dur-base) var(--ease-out);
  box-shadow: 0 4px 20px rgba(255,255,255,0.25);
}
.btn-hero-primary:hover {
  background: var(--blue);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,99,235,0.4);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-base);
  font-weight: 600;
  color: rgba(255,255,255,0.85) !important;
  background: rgba(255,255,255,0.12);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.25);
  transition: all var(--dur-base) var(--ease-out);
  backdrop-filter: blur(8px);
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.20);
  color: #FFFFFF !important;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  right: 2.5rem;
  bottom: clamp(10.5rem, 16vw, 14rem);
  z-index: 4;
}
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 11px;
  position: relative;
  margin: 0 auto;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 7px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%,100% { opacity:1; top:5px; }
  50%      { opacity:0; top:16px; }
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  z-index: 5;
  height: clamp(78px, 9vw, 140px);
  pointer-events: none;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-wave path {
  fill: var(--white);
}

@media (max-width: 767px) {
  .hero-scroll-indicator { display: none; }
}

/* ───────────────────────────
   6. Shared Section Typography
─────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(37,99,235,0.16);
  border-radius: var(--radius-pill);
  background: rgba(37,99,235,0.06);
}

.section-label::before {
  content: '';
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(37,99,235,0.10);
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 4.5vw, 3.65rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: var(--text-lg);
  color: var(--ink-400);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.section-header .section-heading {
  max-width: 780px;
}

.section-kicker-heading {
  position: relative;
  width: fit-content;
  margin: 0 auto 1.5rem;
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(10,15,30,0.08);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-kicker-heading::before,
.section-kicker-heading::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37,99,235,0.45));
}

.section-kicker-heading::before {
  right: 100%;
  margin-right: 0.8rem;
}

.section-kicker-heading::after {
  left: 100%;
  margin-left: 0.8rem;
  transform: rotate(180deg);
}

.section-view-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--white) !important;
  border: 1px solid rgba(10,15,30,0.08);
  font-size: var(--text-sm);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(10,15,30,0.16);
  transition: transform var(--dur-fast), background var(--dur-fast), box-shadow var(--dur-fast), gap var(--dur-fast);
}

.section-view-action:hover {
  gap: 0.75rem;
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(37,99,235,0.28);
}

.section-view-action-dark {
  background: var(--white);
  color: var(--ink) !important;
}

/* ───────────────────────────
   7. About Section — Bento Grid
─────────────────────────── */
.about-section {
  padding: calc(var(--section-y) + 1rem) 0;
  background: linear-gradient(160deg, #f8faff 0%, #ffffff 45%, #f3f7ff 100%);
  overflow: hidden;
}

.about-bento {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 0.875rem;
}

.ab-card {
  border-radius: 20px;
  overflow: hidden;
  padding: 1.75rem;
  text-decoration: none;
}

.ab-intro {
  grid-column: 1 / 3;
  grid-row: 1;
  background: var(--white);
  border: 1.5px solid rgba(10,15,30,0.07);
  box-shadow: 0 2px 16px rgba(10,15,30,0.05);
  display: flex;
  flex-direction: column;
}

.ab-year {
  grid-column: 3;
  grid-row: 1;
  background: linear-gradient(145deg, #EFF6FF 0%, #DBEAFE 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.4rem;
  position: relative;
  overflow: hidden;
}
.ab-year::after {
  content: '2011';
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  font-weight: 700;
  color: rgba(37,99,235,0.07);
  line-height: 1;
  bottom: -1.5rem;
  right: -0.75rem;
  pointer-events: none;
  user-select: none;
}
.ab-year-since {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  position: relative;
  z-index: 1;
}
.ab-year-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 0.95;
  position: relative;
  z-index: 1;
}
.ab-year-desc {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-400);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
  padding: 0 0.75rem;
}

.ab-photo {
  grid-column: 1;
  grid-row: 2 / 4;
  padding: 0;
  overflow: hidden;
}
.ab-photo-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}
.ab-photo:hover .ab-photo-img { transform: scale(1.04); }

.ab-stat {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.15rem;
  position: relative;
  overflow: hidden;
}
.ab-si {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
  display: block;
}
.ab-sn {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
}
.ab-sl {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.3;
}

.ab-stat-blue {
  grid-column: 2;
  grid-row: 2;
  background: var(--blue);
  color: var(--white);
}
.ab-stat-blue .ab-si { color: rgba(255,255,255,0.65); }
.ab-stat-blue .ab-sl { color: rgba(255,255,255,0.72); }

.ab-stat-white {
  grid-column: 3;
  grid-row: 2;
  background: var(--white);
  border: 1.5px solid rgba(10,15,30,0.07);
  box-shadow: 0 2px 16px rgba(10,15,30,0.05);
}
.ab-stat-white .ab-si,
.ab-stat-white .ab-sn { color: var(--blue); }
.ab-stat-white .ab-sl { color: var(--ink-400); }

.ab-stat-green {
  grid-column: 2;
  grid-row: 3;
  background: linear-gradient(145deg, #f0fdf9 0%, #d1fae5 100%);
}
.ab-stat-green .ab-si { color: #059669; }
.ab-stat-green .ab-sn { color: #065f46; }
.ab-stat-green .ab-sl { color: #047857; }

.ab-tagline {
  grid-column: 3;
  grid-row: 3;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.8rem;
}
.ab-tagline-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(37,99,235,0.28);
  flex-shrink: 0;
}
.ab-tagline-text {
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
}

.about-proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
  margin-top: 0.875rem;
}
.about-proof-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.15rem;
  border-radius: 16px;
  background: var(--white);
  border: 1.5px solid rgba(10,15,30,0.07);
  box-shadow: 0 2px 10px rgba(10,15,30,0.05);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.about-proof-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37,99,235,0.20);
  box-shadow: 0 8px 24px rgba(37,99,235,0.09);
}
.about-proof-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--blue);
  flex-shrink: 0;
  font-size: 1.05rem;
  transition: background var(--dur-fast), color var(--dur-fast);
}
.about-proof-card:hover .about-proof-icon {
  background: var(--blue);
  color: var(--white);
}
.about-proof-title {
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.18rem;
}
.about-proof-desc {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--ink-400);
  margin: 0;
}

.about-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.65rem, 2.8vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.about-body {
  font-size: var(--text-base);
  color: var(--ink-400);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 0;
}
.about-service-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0;
}
.about-service-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border: 1.5px solid rgba(37,99,235,0.14);
  border-radius: var(--radius-pill);
  background: var(--blue-50);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  transition: all var(--dur-fast);
}
.about-service-pill:hover {
  border-color: var(--blue);
  background: var(--blue-100);
}
.about-service-pill i { color: var(--blue); }

.btn-primary-blue {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--white) !important;
  background: var(--blue);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  transition: all var(--dur-base) var(--ease-out);
  box-shadow: 0 4px 18px rgba(37,99,235,0.32);
}
.btn-primary-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(37,99,235,0.42);
}

@media (max-width: 991px) {
  .about-bento { grid-template-columns: 1fr 1fr; }
  .ab-intro  { grid-column: 1 / 3; grid-row: 1; }
  .ab-year   { grid-column: 1;     grid-row: 2; }
  .ab-photo  { grid-column: 2;     grid-row: 2 / 4; }
  .ab-stat-blue  { grid-column: 1; grid-row: 3; }
  .ab-stat-white { grid-column: 1; grid-row: 4; }
  .ab-stat-green { grid-column: 2; grid-row: 4; }
  .ab-tagline    { grid-column: 1 / 3; grid-row: 5; flex-direction: row; align-items: center; }
  .about-proof-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 575px) {
  .about-bento { grid-template-columns: 1fr; }
  .ab-intro, .ab-year, .ab-photo,
  .ab-stat-blue, .ab-stat-white, .ab-stat-green, .ab-tagline {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
  .ab-photo-img { min-height: 240px; }
  .about-proof-row { grid-template-columns: 1fr; }
}

/* ───────────────────────────
   8. Services Section
─────────────────────────── */
.services-section {
  padding: var(--section-y) 0;
  background: linear-gradient(160deg, #f0f5ff 0%, #e8f0fe 50%, #f5f8ff 100%);
  position: relative;
  overflow: hidden;
}
.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 55% at 75% 50%, rgba(37,99,235,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.services-header {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
}
.services-header .section-label {
  color: var(--blue);
  border-color: rgba(37,99,235,0.18);
  background: rgba(37,99,235,0.07);
}
.services-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.services-section .section-heading {
  color: var(--ink);
}
.services-section .section-sub {
  color: var(--ink-500);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(37,99,235,0.10);
  transition: background var(--dur-fast);
  cursor: default;
}
.service-item:first-child { border-top: 1px solid rgba(37,99,235,0.10); }
.service-item:hover { background: rgba(37,99,235,0.04); border-radius: var(--radius-md); }

.service-num {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-4xl);
  font-weight: 700;
  color: rgba(37,99,235,0.14);
  line-height: 1;
  transition: color var(--dur-fast);
  flex-shrink: 0;
  text-align: center;
}
.service-item:hover .service-num { color: var(--blue); }

.service-body {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.service-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(37,99,235,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: all var(--dur-fast);
}
.service-item:hover .service-icon-wrap {
  background: var(--blue);
  color: #FFFFFF;
}

.service-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.service-desc {
  font-size: var(--text-sm);
  color: var(--ink-400);
  line-height: 1.65;
  margin: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink-400) !important;
  white-space: nowrap;
  transition: color var(--dur-fast);
  flex-shrink: 0;
}
.service-item:hover .service-link { color: var(--blue) !important; }

@media (max-width: 767px) {
  .services-header { grid-template-columns: 1fr; }
  .service-item { grid-template-columns: 50px 1fr; gap: 1rem; }
  .service-link { display: none; }
  .service-num { font-size: var(--text-2xl); }
}

/* ───────────────────────────
   9. Hotel Intro Section
─────────────────────────── */
.hotel-intro-section {
  padding: var(--section-y) 0;
  background: var(--ink-50);
}

.hotel-intro-section #hotelCardsContainer {
  margin-top: 0.5rem;
}

/* ───────────────────────────
   10. Tours / Packages / Transfers / Group Programs
─────────────────────────── */
.tours-section,
.group-programs-section {
  padding: var(--section-y) 0;
  background: var(--white);
}

.packages-section {
  padding: var(--section-y) 0;
  background: var(--ink-50);
}

.transfers-section {
  padding: var(--section-y) 0;
  background: linear-gradient(145deg, #1a3a6e 0%, #1e4fa8 50%, #1a3a6e 100%);
}
.transfers-section .section-label {
  color: rgba(255,255,255,0.90);
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.10);
}
.transfers-section .section-heading { color: var(--white); }
.transfers-section .section-sub { color: rgba(255,255,255,0.70); }

/* ───────────────────────────
   11. Card System
─────────────────────────── */

/* Package / Tour Card */
.package-card,
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-100);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
  cursor: pointer;
  height: 100%;
}
.package-card:hover,
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-100);
}

.package-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.package-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.package-card:hover .package-image-wrapper img { transform: scale(1.07); }

.package-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--blue);
  color: #FFFFFF;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
}

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

.price-text {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--blue);
}

.package-note {
  font-size: var(--text-xs);
  color: var(--ink-400);
}

.package-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.package-meta li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: var(--ink-500);
}
.package-meta li i { color: var(--blue); flex-shrink: 0; }

/* Hotel Cards */
.hotel-card,
.hotel-card-new {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(10,15,30,0.08);
  border: 1px solid rgba(10,15,30,0.08);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
  cursor: pointer;
  height: 100%;
}
.hotel-card:hover,
.hotel-card-new:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 54px rgba(10,15,30,0.14);
  border-color: rgba(37,99,235,0.20);
}

.hotel-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--ink-100);
}

.hotel-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease-out);
}

.hotel-card-new:hover .hotel-card-image img {
  transform: scale(1.06);
}

.hotel-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,15,30,0.03), rgba(10,15,30,0.24));
  pointer-events: none;
}

.hotel-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  max-width: calc(100% - 2rem);
  padding: 0.42rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--blue);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(37,99,235,0.28);
}

.hotel-card-content {
  display: flex;
  flex-direction: column;
  padding: 1.15rem 1.2rem 1.25rem;
  min-height: 210px;
}

.hotel-card-name {
  margin: 0 0 0.45rem;
  color: var(--ink);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.28rem, 2vw, 1.65rem);
  line-height: 1.08;
}

.hotel-card-location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.8rem;
  color: var(--ink-500);
  font-size: var(--text-sm);
  line-height: 1.4;
}

.hotel-card-location i {
  color: var(--blue);
}

.hotel-card-stars {
  display: flex;
  gap: 0.12rem;
  min-height: 1.25rem;
  margin-bottom: 0.85rem;
  color: var(--amber-light);
}

.room-type-selector {
  position: relative;
  margin-top: auto;
}

.room-type-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink-400);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-type-dropdown {
  min-height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(10,15,30,0.10);
  background-color: var(--ink-50);
  color: var(--ink);
  font-size: var(--text-sm);
  font-weight: 700;
  box-shadow: none;
}

.room-type-dropdown:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}

.btn-reserve {
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.9rem;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--white) !important;
  font-size: var(--text-sm);
  font-weight: 800;
  transition: transform var(--dur-fast), background var(--dur-fast), box-shadow var(--dur-fast);
}

.btn-reserve:hover {
  background: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(37,99,235,0.24);
}

/* Visa Card */
.visa-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.visa-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-100);
}

/* Transfer Card */
.transfer-card {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 1.5rem;
  transition: all var(--dur-base) var(--ease-out);
}
.transfer-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.20);
  transform: translateY(-4px);
}

.flight-card-elegant,
.transfer-card-elegant {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}

.flight-card-elegant {
  background: var(--white);
  border: 1px solid rgba(10,15,30,0.08);
  box-shadow: var(--shadow-sm);
}

.flight-card-elegant:hover {
  transform: translateY(-6px);
  border-color: rgba(37,99,235,0.22);
  box-shadow: var(--shadow-lg);
}

.flight-elegant-header,
.transfer-elegant-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.25rem 0;
}

.flight-elegant-airline {
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.35;
}

.flight-elegant-class {
  margin-top: 0.2rem;
  font-size: var(--text-xs);
  color: var(--ink-400);
}

.flight-elegant-icon-wrapper,
.transfer-elegant-icon-wrapper {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  flex: 0 0 44px;
}

.flight-elegant-icon-wrapper {
  background: var(--blue-50);
  color: var(--blue);
}

.flight-elegant-icon,
.transfer-elegant-icon,
.elegant-flight-plane,
.elegant-baggage-icon,
.btn-arrow {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
}

.flight-elegant-icon {
  transform: rotate(45deg);
}

.flight-elegant-body,
.transfer-elegant-body {
  flex: 1;
  padding: 1.35rem 1.25rem 1.25rem;
}

.flight-elegant-route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 18px;
  background: var(--ink-50);
}

.elegant-flight-point:last-child {
  text-align: right;
}

.elegant-flight-code {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.elegant-flight-city {
  margin-top: 0.25rem;
  font-size: var(--text-xs);
  color: var(--ink-400);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.elegant-flight-connector {
  width: 76px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  color: var(--blue);
}

.elegant-flight-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(37,99,235,0.15), rgba(37,99,235,0.7));
}

.flight-elegant-baggage,
.transfer-elegant-features {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  color: var(--ink-500);
  font-size: var(--text-sm);
}

.flight-elegant-baggage {
  color: var(--ink-400);
}

.flight-elegant-price,
.transfer-elegant-price {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(10,15,30,0.08);
}

.elegant-price-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-400);
}

.elegant-price-amount {
  margin-top: 0.2rem;
  font-family: 'Playfair Display', serif;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--blue);
}

.flight-elegant-footer,
.transfer-elegant-footer {
  padding: 0 1.25rem 1.25rem;
}

.btn-elegant-flight,
.btn-elegant-transfer {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-weight: 800;
  transition: transform var(--dur-fast), background var(--dur-fast), color var(--dur-fast);
}

.btn-elegant-flight {
  color: var(--white);
  background: var(--blue);
}

.btn-elegant-flight:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.transfer-card-elegant {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 20px 50px rgba(0,0,0,0.14);
  color: var(--white);
}

.transfer-card-elegant:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.32);
  background: rgba(255,255,255,0.16);
}

.transfer-elegant-icon-wrapper {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.transfer-elegant-badge {
  max-width: 60%;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.78);
  font-size: var(--text-xs);
  font-weight: 700;
  text-align: right;
}

.transfer-elegant-route {
  display: grid;
  gap: 0.75rem;
}

.elegant-route-point {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.75rem;
}

.elegant-route-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 0 6px rgba(59,130,246,0.14);
}

.elegant-route-dot-destination {
  background: var(--amber-light);
  box-shadow: 0 0 0 6px rgba(245,158,11,0.14);
}

.elegant-route-label {
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.42);
}

.elegant-route-location {
  margin-top: 0.1rem;
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--white);
}

.elegant-route-line {
  height: 1rem;
  width: 2px;
  margin-left: 0.35rem;
  color: rgba(255,255,255,0.28);
}

.elegant-route-line svg {
  display: block;
  width: 2px;
  height: 100%;
}

.transfer-elegant-price {
  border-top-color: rgba(255,255,255,0.12);
}

.transfer-elegant-price .elegant-price-label {
  color: rgba(255,255,255,0.42);
}

.transfer-elegant-price .elegant-price-amount {
  color: var(--white);
}

.transfer-elegant-features {
  color: rgba(255,255,255,0.62);
}

.btn-elegant-transfer {
  color: var(--ink);
  background: var(--white);
}

.btn-elegant-transfer:hover {
  color: var(--white);
  background: var(--blue);
  transform: translateY(-1px);
}

/* ───────────────────────────
   12. Contact Section
─────────────────────────── */
.contact-section {
  padding: var(--section-y) 0;
  background: var(--ink-50);
}

.location-link {
  display: contents;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.contact-info { color: var(--ink-500); }
.contact-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: var(--text-base);
}
.contact-info i { color: var(--blue); margin-top: 0.2rem; flex-shrink: 0; }
.contact-phone-list,
.footer-phone-list {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  direction: ltr;
  unicode-bidi: isolate;
  text-align: left;
}
.contact-info a[href^="tel:"],
.contact-info a[href^="https://wa.me/"],
.footer-contact a[href^="tel:"],
.footer-contact a[href^="https://wa.me/"] {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
  text-align: left;
}
.contact-phone-list a {
  color: var(--ink-500);
  transition: color var(--dur-fast);
}
.contact-phone-list a:hover { color: var(--blue); }

/* Contact form */
.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: var(--text-base);
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--ink-200);
  border-radius: var(--radius-md);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  outline: none;
  font-family: inherit;
}
.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}
textarea.form-control { resize: vertical; min-height: 120px; }

/* ───────────────────────────
   13. Buttons (Generic)
─────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  border: none;
  transition: all var(--dur-base) var(--ease-out);
  box-shadow: 0 4px 16px rgba(217,119,6,0.35);
  cursor: pointer;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217,119,6,0.45);
  filter: brightness(1.08);
}

/* Contact submit */
#contact .btn-gold {
  background: var(--blue);
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
}
#contact .btn-gold:hover {
  background: var(--blue-dark);
  box-shadow: 0 8px 24px rgba(37,99,235,0.45);
}

/* Price visibility safety net */
.price-text,
.price-tag,
.hotel-card-price,
.package-price-section,
.package-price-display,
.package-price-label,
.package-price-amount,
.package-guarantee-text,
.flight-elegant-price,
.transfer-elegant-price,
.transport-option-price,
.summary-total,
.total-amount {
  display: none !important;
}

/* ───────────────────────────
   14. Footer
─────────────────────────── */
.footer-modern {
  background: linear-gradient(160deg, #0d1e42 0%, #0a1530 100%) !important;
  padding-top: 5rem;
  padding-bottom: 2rem;
}

.footer-title {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
}

.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  display: inline-block;
  padding: 0.3rem 0;
  transition: color var(--dur-fast), padding-left var(--dur-fast);
}
.footer-links li a:hover { color: var(--white); padding-left: 4px; }

.footer-contact li { font-size: var(--text-sm); color: rgba(255,255,255,0.55); }
.footer-contact li i { color: var(--blue); }
.footer-logo-stack {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 116px;
  height: 78px;
  flex: 0 0 auto;
}

.footer-logo-stack::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/images/berlin-tours-svg-logo.svg?v=20260609") center / contain no-repeat;
  filter: brightness(0) invert(1);
  transform: translateY(0.5px) scale(1);
  opacity: 1;
  pointer-events: none;
}

.footer-modern .footer-logo {
  width: 116px;
  height: 78px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  border-radius: 0;
  background: transparent;
  border: 0;
  padding: 0;
  filter: none;
}
.footer-brand-link {
  gap: 0.95rem !important;
  align-items: center !important;
  position: relative;
}
.footer-brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.24);
}
.footer-phone-list a,
.footer-contact a {
  color: rgba(255,255,255,0.58);
  transition: color var(--dur-fast);
}
.footer-phone-list a:hover,
.footer-contact a:hover {
  color: var(--white);
}

/* Social buttons */
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.70);
  font-size: var(--text-base);
  transition: all var(--dur-fast);
}
.social-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* Footer border */
.footer-modern .border-top { border-color: rgba(255,255,255,0.10) !important; }
.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  font-size: var(--text-xs);
  transition: color var(--dur-fast);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ───────────────────────────
   15. Reservation Modal
─────────────────────────── */
.modern-modal-dialog { max-width: 860px; }

.modern-modal-content {
  border: none;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.reservation-modal-header {
  background: var(--ink);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-header-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.modal-header-icon {
  font-size: 1.5rem;
  color: var(--amber-light);
}
.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.modern-modal-body { padding: 2rem; background: var(--white); }

.modern-form-panel {
  background: var(--ink-50);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.form-section-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-label-custom {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.form-control-custom {
  display: block;
  width: 100%;
  padding: 0.7rem 1rem;
  font-size: var(--text-sm);
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--ink-200);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  font-family: inherit;
}
.form-control-custom:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

/* ───────────────────────────
   16. Scroll Reveal Animation
─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
}

/* Prevent flash before JS loads */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ───────────────────────────
   17. RTL Support
─────────────────────────── */
[dir="rtl"] .hero-content { margin-right: 0; }
[dir="rtl"] .about-grid { direction: rtl; }
[dir="rtl"] .service-item { direction: rtl; }
[dir="rtl"] .footer-title::after { left: auto; right: 0; }
[dir="rtl"] .footer-links li a:hover { padding-left: 0; padding-right: 4px; }
[dir="rtl"] body { font-family: 'Ping', sans-serif; }

/* ───────────────────────────
   18. Utilities / Helpers
─────────────────────────── */
.text-gold { color: var(--amber) !important; }
.bg-dark { background: var(--ink) !important; }
.filter-white { filter: brightness(0) invert(1); }

/* Global heading overrides */
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; line-height: 1.2; }

/* Bootstrap overrides */
.container { max-width: 1200px; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--ink-100); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* Selection */
::selection { background: var(--blue); color: var(--white); }

/* ───────────────────────────
   19. Stat Cards (used in hotel section etc.)
─────────────────────────── */
.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--ink-100);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.stat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: var(--radius-md);
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--blue);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: var(--text-sm);
  color: var(--ink-400);
  font-weight: 500;
}

/* ───────────────────────────
   20. Cursor Orb (from animations.js)
─────────────────────────── */
/* Orb is added via JS — no extra CSS needed */

/* ───────────────────────────
   21. Section alternating BG helper
─────────────────────────── */
.bg-surface { background: var(--ink-50) !important; }

/* ───────────────────────────
   22. Price & badge text
─────────────────────────── */
.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: 'Playfair Display', serif;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--blue);
}

.price-text,
.price-tag,
.hotel-card-price,
.package-price-section,
.package-price-display,
.package-price-label,
.package-price-amount,
.package-guarantee-text,
.flight-elegant-price,
.transfer-elegant-price,
.transport-option-price,
.summary-total,
.total-amount {
  display: none !important;
}

/* ───────────────────────────
   23. Responsive tweaks
─────────────────────────── */
@media (max-width: 767px) {
  :root { --section-y: 4rem; }

  .hero-headline { font-size: 2.75rem; }
  .hero-sub { font-size: var(--text-base); }

  .services-header { grid-template-columns: 1fr; gap: 1rem; }
  .services-heading { font-size: 2rem; }

  .about-stat-num { font-size: var(--text-3xl); }

  .section-heading { font-size: 1.75rem; }
}

@media (max-width: 575px) {
  .hero-actions { flex-direction: column; gap: 0.75rem; }
  .btn-hero-primary, .btn-hero-ghost { width: 100%; justify-content: center; }
}


/* ───────────────────────────
   25. Why Choose Section (WANDER.ph)
─────────────────────────── */
/* ───────────────────────────
   26. Destination Categories (Travel Bee)
─────────────────────────── */
.dest-categories-section {
  padding: var(--section-y) 0;
  background: var(--white);
}

.dest-categories-header {
  text-align: center;
  margin-bottom: 3rem;
}
.dest-categories-header .section-sub {
  margin: 0.75rem auto 0;
}

.dest-categories-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: center;
  flex-wrap: wrap;
}
.dest-categories-scroll::-webkit-scrollbar { display: none; }

.dest-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease-out);
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
  color: inherit;
}
.dest-cat:hover { transform: translateY(-4px); }

.dest-cat-img {
  width: 100px;
  height: 140px;
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid transparent;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  background: var(--ink-100);
}
.dest-cat:hover .dest-cat-img,
.dest-cat.is-selected .dest-cat-img {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
}

.dest-cat.is-selected .dest-cat-img {
  border-color: var(--primary-gold, #d4af37);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.35), var(--shadow-lg);
}

.dest-cat.is-selected .dest-cat-name {
  color: var(--primary-gold-dark, #b8941f);
}

.dest-cat:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

.dest-cat-count {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--neutral-500, #64748b);
}

.dest-categories-empty {
  text-align: center;
  padding: 1.5rem 1rem 2rem;
  color: var(--neutral-600, #64748b);
  font-size: var(--text-sm);
}

.hotels-destination-hub .hotels-hub-divider {
  width: min(120px, 40%);
  height: 2px;
  margin: 2.5rem auto 3rem;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  border-radius: 999px;
}

.hotels-destination-hub .hotels-hub-results-header {
  text-align: center;
  margin-bottom: 2rem;
}

.hotels-empty-state {
  background: #fff;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.hotels-empty-state-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.06) 100%);
  color: var(--primary-gold, #d4af37);
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotels-empty-state-text {
  color: var(--neutral-600, #64748b);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}
.dest-cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.dest-cat:hover .dest-cat-img img { transform: scale(1.1); }

.dest-cat-name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  letter-spacing: -0.01em;
}

@media (max-width: 767px) {
  .dest-categories-scroll { justify-content: flex-start; flex-wrap: nowrap; padding: 0 1rem 1rem; }
  .dest-cat-img { width: 80px; height: 110px; }
}

/* ───────────────────────────
   27. Tour Card Rank Badge (Visit Indonesia inspired)
─────────────────────────── */
.tour-rank-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
}

/* ───────────────────────────
   28. Group tour / program detail modals (gp-*)
─────────────────────────── */
#groupProgramDetailsModal .modal-dialog {
  max-width: min(960px, calc(100vw - 2rem));
  margin: 1rem auto;
}

/* Group tour — balanced modal width */
#groupTourDetailsModal .modal-dialog {
  max-width: min(960px, calc(100vw - 1.25rem));
  width: 100%;
  margin: 0.625rem auto;
}

#groupTourDetailsModal .gt-modal-content {
  max-height: calc(100vh - 1.5rem);
  max-height: calc(100dvh - 1.5rem);
  display: flex;
  flex-direction: column;
}

#groupTourDetailsModal .gt-hero-header {
  min-height: 200px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  #groupTourDetailsModal .gt-hero-header {
    min-height: 240px;
  }
}

@media (min-width: 992px) {
  #groupTourDetailsModal .gt-hero-header {
    min-height: 260px;
  }

  #groupTourDetailsModal .gp-hero-title {
    font-size: clamp(1.65rem, 2.8vw, 2.25rem);
    max-width: none;
  }
}

#groupTourDetailsModal .gt-hero-content {
  padding: 2rem 2.5rem 2.25rem;
}

#groupTourDetailsModal .gt-modal-body {
  flex: 1;
  min-height: 0;
  max-height: none;
  overflow-y: auto;
  padding: 0;
}

#groupTourDetailsModal .gt-modal-footer {
  flex-shrink: 0;
  padding: 1.15rem 2rem;
}

#groupTourDetailsModal .gt-details-panel {
  padding: 1.25rem 1.5rem 0.75rem;
}

#groupTourDetailsModal .gt-itinerary-wrap {
  padding: 1.25rem 1.5rem 1.5rem;
  margin-top: 0.25rem;
  border-top: 1px solid var(--ink-200);
}

.gp-modal-content {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--white);
}

.gp-hero-header {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.gp-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.gp-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 15, 30, 0.15) 0%, rgba(10, 15, 30, 0.55) 55%, rgba(10, 15, 30, 0.92) 100%);
}

.gp-hero-pattern {
  display: none;
}

.gp-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-fast), background var(--dur-fast);
}

.gp-close-btn:hover {
  transform: scale(1.05);
  background: var(--white);
}

.gp-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2rem 2.25rem 2.25rem;
  color: var(--white);
}

.gp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.9rem;
  margin-bottom: 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(37, 99, 235, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gp-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.55rem;
  color: var(--white);
  max-width: 28ch;
}

.gp-hero-location {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.35rem;
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.9);
}

.gp-hero-location i {
  color: var(--gold-light);
}

.gp-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.7rem 1.4rem;
  border: none;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--ink);
  font-size: var(--text-sm);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
  transition: transform var(--dur-fast), box-shadow var(--dur-fast);
}

.gp-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.gp-modal-body {
  padding: 0;
  background: var(--ink-50);
  max-height: min(52vh, 520px);
  overflow-y: auto;
}

.gp-modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 1.25rem 1.75rem;
  background: var(--white);
  border-top: 1px solid var(--ink-200);
}

.about-program-section {
  background: var(--white);
  padding: 2.25rem 0;
}

.about-program-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.about-program-label,
.itinerary-label,
.transport-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.45rem;
}

.about-program-title,
.itinerary-section-title,
.transport-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.75rem;
}

.about-program-divider,
.itinerary-divider,
.transport-divider {
  width: 72px;
  height: 2px;
  margin: 0 auto 1.15rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.about-program-description {
  margin: 0;
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--ink-500);
}

.itinerary-section,
.transport-section {
  padding: 2.25rem 0 2.75rem;
}

.itinerary-header,
.transport-header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.itinerary-subtitle,
.transport-subtitle {
  margin: 0.65rem 0 0;
  color: var(--ink-400);
  font-size: var(--text-sm);
}

.itinerary-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1rem;
}

.itinerary-card {
  animation: gtFadeUp 0.45s var(--ease-out) both;
}

.itinerary-card-inner {
  display: grid;
  grid-template-columns: 88px 1fr;
  grid-template-areas:
    "badge image"
    "badge content";
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.itinerary-day-badge {
  grid-area: badge;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.75rem;
  background: var(--blue-50);
  border-right: 1px solid var(--ink-200);
}

.itinerary-day-badge .day-number {
  font-size: var(--text-xs);
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.3;
}

.itinerary-card-image {
  grid-area: image;
  position: relative;
  min-height: 160px;
}

.itinerary-card-image img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  display: block;
}

.itinerary-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 15, 30, 0.35) 100%);
}

.itinerary-card-content {
  grid-area: content;
  padding: 1.15rem 1.35rem 1.35rem;
  border-top: 1px solid var(--ink-100);
}

.itinerary-title {
  margin: 0 0 0.45rem;
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--ink);
}

.itinerary-description {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--ink-500);
}

.transport-option-card {
  height: 100%;
  padding: 1.5rem;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-fast), box-shadow var(--dur-fast);
}

.transport-option-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.transport-option-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-50);
  color: var(--blue);
  font-size: 1.35rem;
}

.transport-option-name {
  margin: 0 0 0.5rem;
  font-size: var(--text-base);
  font-weight: 700;
}

.transport-option-desc {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--ink-500);
  line-height: 1.55;
}

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

/* Group tour details — summary sheet */
.gt-details-panel {
  padding: 1.25rem 0 1.5rem;
}

.gt-summary-sheet {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.gt-summary-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .gt-summary-cols {
    grid-template-columns: 1fr 1fr;
  }

  .gt-summary-cols .gt-summary-block:first-child {
    border-right: 1px solid var(--ink-100);
  }

  .gt-summary-cols:has(#gtDetailsExcludesSection[hidden]) {
    grid-template-columns: 1fr;
  }

  .gt-summary-cols:has(#gtDetailsExcludesSection[hidden]) .gt-summary-block:first-child {
    border-right: none;
  }
}

.gt-summary-block--flush {
  border-top: 1px solid var(--ink-100);
}

.gt-summary-head {
  padding: 1.15rem 1.35rem;
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--ink-100);
}

.gt-summary-head[hidden] {
  display: none !important;
}

.gt-summary-note {
  margin: 0 0 0.85rem;
  font-size: var(--text-sm);
  line-height: 1.55;
  color: var(--ink-500);
}

.gt-summary-note[hidden] {
  display: none !important;
}

.gt-summary-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.65rem;
}

.gt-summary-facts[hidden] {
  display: none !important;
}

.gt-fact {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-sm);
}

.gt-fact > i {
  color: var(--blue);
  font-size: 1rem;
  margin-top: 0.1rem;
}

.gt-fact-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-400);
}

.gt-fact-value {
  display: block;
  margin-top: 0.15rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}

.gt-summary-block {
  padding: 1.15rem 1.35rem;
  border-top: 1px solid var(--ink-100);
}

.gt-summary-block-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  margin-bottom: 0.85rem;
}

.gt-summary-block-title {
  margin: 0;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

.gt-summary-block > .gt-summary-block-title {
  margin-bottom: 0.85rem;
}

.gt-summary-block-head .gt-summary-block-title {
  margin-bottom: 0;
}

.gt-summary-block-lead {
  margin: 0;
  font-size: var(--text-xs);
  color: var(--ink-400);
  font-weight: 500;
}

.gt-rates-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
  background: var(--ink-100);
  color: var(--ink-500);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.gt-summary-rates {
  padding: 1.15rem 1.35rem 1.25rem;
  border-top: 1px solid var(--ink-100);
  background: var(--ink-50);
}

.gt-summary-rates[hidden] {
  display: none !important;
}

.gt-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.gt-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-weight: 500;
  line-height: 1.3;
}

.gt-tag i {
  font-size: 0.75rem;
  font-weight: 700;
}

.gt-tag--included {
  background: var(--blue-50);
  color: var(--ink-700);
  border: 1px solid var(--blue-100);
}

.gt-tag--included i {
  color: var(--blue);
}

.gt-tag--excluded {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.gt-tag--excluded i {
  color: #dc2626;
}

.gt-tag--muted {
  background: var(--ink-50);
  color: var(--ink-400);
  border: 1px dashed var(--ink-200);
}

.gt-summary-block--rates,
.gt-summary-rates {
  background: var(--ink-50);
}

.gt-summary-rates .gt-summary-block-head {
  flex-shrink: 0;
  margin-bottom: 0.75rem;
}

.gt-rates-wrap {
  overflow: auto;
  max-height: min(280px, 38vh);
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  background: var(--white);
}

.gt-rates-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--ink);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.gt-rates-table {
  width: 100%;
  min-width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.gt-rates-table thead {
  background: var(--ink);
}

.gt-rates-table th {
  padding: 0.65rem 0.85rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
  text-align: left;
  border: none;
  white-space: nowrap;
}

.gt-rates-table td {
  padding: 0.7rem 0.85rem;
  color: var(--ink-500);
  border-bottom: 1px solid var(--ink-100);
  vertical-align: middle;
}

.gt-rates-table tbody tr:nth-child(even) {
  background: var(--ink-50);
}

.gt-rates-table tbody tr:last-child td {
  border-bottom: none;
}

.gt-rates-table tbody tr:hover {
  background: var(--blue-50);
}

.gt-rates-hotel {
  font-weight: 600;
  color: var(--ink) !important;
  min-width: 140px;
  max-width: none;
  line-height: 1.4;
  font-size: var(--text-sm);
}

.gt-rates-table th:not(:first-child) {
  text-align: right;
}

.gt-rates-table td:not(.gt-rates-hotel) {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  font-weight: 500;
  color: var(--ink-700);
  text-align: right;
}

.gt-itinerary-wrap {
  padding: 0 0 1.75rem;
}

.gt-transport-wrap {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--ink-200);
}

.gt-transport-wrap .gt-summary-block-title {
  margin-bottom: 1rem;
  padding-top: 1.25rem;
}

#groupTourDetailsModal .gt-transport-wrap {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.gt-itinerary-wrap .gt-summary-block-title {
  margin-bottom: 1rem;
  padding-top: 0.15rem;
}

.gt-itinerary-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: none;
  margin: 0;
}

.gt-itinerary-day {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  animation: gtFadeUp 0.45s var(--ease-out) both;
}

.gt-itinerary-day-badge {
  flex-shrink: 0;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--blue-50);
  color: var(--blue);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.gt-itinerary-day-body h4 {
  margin: 0 0 0.45rem;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--ink);
}

.gt-itinerary-day-body p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--ink-500);
  line-height: 1.6;
}

@media (max-width: 767px) {
  .gp-hero-header { min-height: 260px; }
  .gp-hero-content { padding: 1.5rem 1.25rem 1.75rem; }
  .gp-hero-title { max-width: none; }
  .gp-modal-body { max-height: 58vh; }
  .itinerary-card-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "badge"
      "image"
      "content";
  }
  .itinerary-day-badge {
    border-right: none;
    border-bottom: 1px solid var(--ink-200);
    justify-content: flex-start;
    padding: 0.85rem 1rem;
  }
  .gt-summary-head,
  .gt-summary-block { padding: 1rem 1.15rem; }
  .gt-summary-facts { grid-template-columns: 1fr; }
  #groupTourDetailsModal .gt-details-panel,
  #groupTourDetailsModal .gt-itinerary-wrap { padding-left: 1rem; padding-right: 1rem; }
  #groupTourDetailsModal .gt-hero-content { padding: 1.5rem 1.25rem 1.75rem; }
  .gt-summary-rates { padding: 1rem 1.15rem; }
  .gt-summary-cols { grid-template-columns: 1fr; }
  .gt-summary-cols .gt-summary-block:first-child { border-right: none; border-bottom: 1px solid var(--ink-100); }
  .gt-itinerary-day { grid-template-columns: 1fr; gap: 0.65rem; }
}

/* ═══════════════════════════════════════════════════════════
   FULL-SITE RESPONSIVE POLISH — All Screens & Sizes
   Covers: hero, nav, about, services, cards, modals,
   contact, footer, destination categories, sub-pages
═══════════════════════════════════════════════════════════ */

/* ─── 1. Wider container on very large screens ─── */
@media (min-width: 1400px) {
  .container { max-width: 1320px; }
}

/* ─── 2. Large desktop → smaller (≤1199px) ─── */
@media (max-width: 1199px) {
  .hero-section .container { padding-top: 120px; padding-bottom: 200px; }
  .about-grid { gap: 3rem; }
}

/* ─── 3. Small laptop / large tablet (≤1024px) ─── */
@media (max-width: 1024px) {
  .hero-section .container { padding-top: 110px; padding-bottom: 180px; }
}

/* ─── 4. Tablet portrait (≤991px) ─── */
@media (max-width: 991px) {
  .hero-section .container { padding-top: 106px; padding-bottom: 160px; }

  /* Services header — already single col but ensure layout */
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
  }

  /* Service items — tighter on tablet */
  .service-item { grid-template-columns: 60px 1fr auto; gap: 1.25rem; }
}

/* ─── 5. Mobile landscape / medium phones (≤767px) ─── */
@media (max-width: 767px) {
  /* ── Hero ── */
  .hero-section {
    min-height: 100svh;
    align-items: center;
  }
  .hero-section .row {
    align-items: center !important;
    min-height: 100svh;
  }
  .hero-section .container {
    padding-top: 110px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
  }
  /* Richer mobile overlay — deep navy gradient for contrast */
  .hero-overlay {
    background:
      linear-gradient(
        160deg,
        rgba(5, 10, 30, 0.55) 0%,
        rgba(5, 10, 30, 0.25) 50%,
        transparent 100%
      ),
      linear-gradient(
        to top,
        rgba(5, 10, 30, 0.85) 0%,
        rgba(5, 10, 30, 0.55) 35%,
        rgba(5, 10, 30, 0.15) 65%,
        transparent 100%
      );
  }
  .hero-content {
    max-width: 100%;
    text-align: left;
  }
  /* Eyebrow as a glassy pill badge */
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.68rem;
    letter-spacing: 0.13em;
    margin-bottom: 1.1rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(10px);
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    color: rgba(255,255,255,0.95);
  }
  .hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #60a5fa;
    flex-shrink: 0;
    animation: pulse-dot 2s ease-in-out infinite;
  }
  @keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.75); }
  }
  .hero-headline {
    font-size: clamp(2.4rem, 10.5vw, 3.2rem) !important;
    line-height: 1.04;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 24px rgba(0,0,0,0.65), 0 1px 6px rgba(0,0,0,0.4);
    margin-bottom: 1rem;
  }
  .hero-sub {
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.88);
    margin-bottom: 1.75rem;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  }
  .hero-actions {
    flex-direction: row;
    gap: 0.65rem;
    flex-wrap: wrap;
  }
  .btn-hero-primary {
    flex: 1;
    min-width: 0;
    justify-content: center;
    padding: 0.8rem 1.25rem;
    font-size: 0.9rem;
    background: #fff;
    color: #0f172a !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
  }
  .btn-hero-ghost {
    flex: 1;
    min-width: 0;
    justify-content: center;
    padding: 0.8rem 1.25rem;
    font-size: 0.9rem;
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    backdrop-filter: blur(12px);
  }
  .hero-wave { height: clamp(50px, 8vw, 90px); }

  /* ── Services ── */
  .service-item {
    grid-template-columns: 44px 1fr;
    gap: 0.85rem;
    padding: 1.25rem 0;
  }
  .service-num { font-size: var(--text-xl); }
  .service-icon-wrap { width: 38px; height: 38px; font-size: 1rem; }

  /* ── About ── */
  .about-metrics-board { min-height: 380px; }
  .about-heading {
    font-size: clamp(1.75rem, 5.5vw, 2.5rem);
  }

  /* ── Section typography ── */
  .section-heading { font-size: clamp(1.65rem, 5.5vw, 2.1rem) !important; }
  .section-sub { font-size: var(--text-sm); }

  /* ── Cards: single column on small viewports ── */
  .dest-categories-scroll { padding-inline: 0.75rem; }

  /* ── Modals ── */
  .modern-modal-dialog {
    max-width: calc(100vw - 0.5rem);
    margin: 0.25rem auto;
  }
  .modern-modal-content { border-radius: var(--radius-lg); }
  .modern-modal-body { padding: 1.25rem; }
  .reservation-modal-header { padding: 1rem 1.25rem; }
  .modern-modal-footer {
    padding: 0.85rem 1.25rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .modern-confirm-btn { width: 100%; order: -1; }

  /* Modal row stacking */
  .modern-modal-body .col-lg-7,
  .modern-modal-body .col-lg-5 {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .modern-summary-panel { margin-top: 1rem; }

  /* ── Step indicator ── */
  .step-indicator-container { padding: 0.75rem 1rem; }
  .step-label { font-size: 0.65rem; }

  /* ── Footer ── */
  .footer-modern { padding-top: 3rem; }
  .footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 0.75rem;
    text-align: center;
  }
  .footer-bottom-links .me-3 { margin-right: 0 !important; }
}

/* ─── 6. Standard mobile portrait (≤575px) ─── */
@media (max-width: 575px) {
  :root { --section-y: 3.5rem; }

  /* ── Hero ── */
  .hero-section .container { padding-top: 86px; padding-bottom: 115px; }
  .hero-headline {
    font-size: clamp(1.9rem, 10vw, 2.6rem) !important;
    line-height: 1.08;
  }
  .hero-eyebrow { font-size: 0.65rem; margin-bottom: 0.65rem; }
  .hero-sub { font-size: 0.9375rem; margin-bottom: 1.6rem; }
  .hero-actions { flex-direction: column; gap: 0.65rem; }
  .btn-hero-primary,
  .btn-hero-ghost {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1.5rem;
  }

  /* ── About ── */
  .about-metrics-board { min-height: 300px; padding: 1rem; }
  .about-board-top { flex-direction: column; gap: 0.3rem; align-items: flex-start; }
  .about-metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .about-metric { min-height: 108px; padding: 0.85rem; }
  .about-metric-large { min-height: 140px; }
  .about-stat-num { font-size: clamp(1.6rem, 7vw, 2.5rem) !important; }
  .about-heading { font-size: clamp(1.6rem, 6vw, 2rem); }
  .about-body { font-size: 0.9375rem; }
  .about-proof-card { padding: 0.85rem; }
  .about-service-strip { gap: 0.5rem; }
  .about-service-pill { padding: 0.5rem 0.75rem; font-size: 0.8125rem; }

  /* ── Services ── */
  .service-item {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    padding: 1.1rem 0;
  }
  .service-num { font-size: var(--text-xl); }
  .service-body { gap: 0.75rem; align-items: flex-start; }
  .service-title { font-size: var(--text-base); }
  .service-desc { font-size: var(--text-xs); }

  /* ── Section headings ── */
  .section-heading { font-size: clamp(1.45rem, 6.5vw, 1.8rem) !important; }
  .section-kicker-heading::before,
  .section-kicker-heading::after { display: none; }
  .section-label { font-size: 0.68rem; padding: 0.28rem 0.65rem; }

  /* ── Cards ── */
  .hotel-card-content { min-height: auto; padding: 1rem; }
  .hotel-card-name { font-size: 1.15rem; }
  .package-card-body { padding: 1rem; }
  .flight-elegant-header,
  .transfer-elegant-header { padding: 1rem 1rem 0; }
  .flight-elegant-body,
  .transfer-elegant-body { padding: 1rem; }
  .flight-elegant-footer,
  .transfer-elegant-footer { padding: 0 1rem 1rem; }

  /* ── Destination categories ── */
  .dest-cat-img { width: 72px; height: 96px; }
  .dest-cat-name { font-size: 0.72rem; }

  /* ── Contact ── */
  .contact-info { margin-bottom: 1.5rem; }
  #contact .btn-gold { width: 100%; justify-content: center; }

  /* ── Modals ── */
  .modal-dialog { margin: 0.5rem; }
  .modern-modal-dialog { max-width: calc(100% - 1rem); margin: 0.5rem auto; }
  .modern-modal-body { padding: 0.85rem; }
  .modern-form-panel { padding: 0.9rem; }
  .modern-summary-panel { padding: 0.9rem !important; }
  .step-label { display: none; }
  .step-line { min-width: 1.5rem; }

  /* ── Footer ── */
  .footer-modern { padding-top: 2.75rem; padding-bottom: 1.5rem; }
  .footer-brand-link { gap: 0.7rem !important; }
  .footer-brand-name { font-size: 0.95rem; }
  .footer-logo-stack { width: 92px; height: 62px; }
  .footer-modern .footer-logo { width: 92px; height: 62px; padding: 0; }
  .social-links { gap: 0.45rem; flex-wrap: wrap; }
  .footer-bottom-links {
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
  }
  .footer-modern .row.pt-4 .col-md-6 { text-align: center !important; }

  /* ── About proof cards ── */
  .about-proof-list { gap: 0.65rem; margin: 1rem 0 1.5rem; }

  /* ── Packages/Hotels sub-pages body padding ── */
  body.hotels-page-body,
  body.packages-page-body { padding-top: 4.25rem; }
  .hotels-page-hero,
  .packages-page-hero { padding: 1.25rem 0 0.75rem; margin-bottom: 1.75rem; }
}

/* ─── 7. Small phones (≤430px) ─── */
@media (max-width: 430px) {
  :root { --section-y: 3rem; }

  .hero-section .container { padding-top: 90px; padding-bottom: 80px; }
  .hero-headline { font-size: clamp(2rem, 10.5vw, 2.5rem) !important; }
  .hero-eyebrow { display: inline-flex; font-size: 0.63rem; padding: 0.3rem 0.7rem; }
  .hero-sub { font-size: 0.875rem; margin-bottom: 1.35rem; }

  .about-metrics-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .about-stat-num { font-size: clamp(1.45rem, 7.5vw, 2rem) !important; }
  .about-metrics-board { min-height: 280px; }

  .section-heading { font-size: clamp(1.35rem, 7vw, 1.65rem) !important; }
  .about-heading { font-size: clamp(1.45rem, 7vw, 1.75rem); }

  .service-item { padding: 0.95rem 0; }

  /* Single-column modal on very small phones */
  .booking-details { gap: 0.75rem; }
  .booking-detail-item { gap: 0.6rem; }

  .brand-wordmark { font-size: 0.8rem; max-width: 112px; }
}

/* ─── 8. Very small phones (≤380px) ─── */
@media (max-width: 380px) {
  .hero-headline { font-size: clamp(1.65rem, 11.5vw, 2rem) !important; }
  .about-metrics-grid { grid-template-columns: 1fr; }
  .about-metric { min-height: 96px; }
  .section-heading { font-size: 1.35rem !important; }
  .about-heading { font-size: 1.45rem; }

  .brand-wordmark { max-width: 100px; font-size: 0.78rem; }
}

/* ─── 9. Landscape phone orientation fix ─── */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    min-height: 480px;
  }
  .hero-section .container {
    padding-top: 72px;
    padding-bottom: 80px;
  }
  .hero-headline { font-size: clamp(1.5rem, 5vh, 2.5rem) !important; }
  .hero-sub { display: none; }
  .hero-scroll-indicator { display: none; }
}

/* ─── 10. Sub-page nav responsive ─── */
@media (max-width: 575px) {
  .hotels-page-body,
  .packages-page-body {
    padding-top: 4rem;
  }
}

/* ─── 11. Ensure Bootstrap grid gaps are correct on mobile ─── */
@media (max-width: 575px) {
  .row.g-4 { --bs-gutter-x: 1rem; --bs-gutter-y: 1rem; }
  .row.g-3 { --bs-gutter-x: 0.75rem; --bs-gutter-y: 0.75rem; }
}

/* ─── 12. Reservation/group modal — full-height scroll on mobile ─── */
@media (max-width: 767px) {
  .modal-dialog-centered {
    align-items: flex-start;
    min-height: calc(100% - 1rem);
    margin: 0.5rem auto;
  }
  #reservationModal .modal-dialog,
  #groupReservationModal .modal-dialog,
  #groupProgramDetailsModal .modal-dialog,
  #groupTourDetailsModal .modal-dialog {
    max-width: calc(100vw - 0.5rem);
    margin: 0.25rem auto;
  }
  .gp-modal-body { max-height: 55vh; }
}

/* ─── 13. Touch-friendly minimum tap target ─── */
@media (hover: none) and (pointer: coarse) {
  .nav-link { min-height: 44px; display: flex; align-items: center; }
  .lang-btn { min-height: 34px; min-width: 34px; }
  .btn-hero-primary,
  .btn-hero-ghost,
  .btn-primary-blue,
  .btn-gold,
  .btn-reserve,
  .btn-nav-cta,
  .section-view-action { min-height: 48px; }
  .dest-cat { min-width: 72px; }
  .social-btn { width: 44px; height: 44px; }
}

/* ───────────────────────────
   Trusted Airlines Section
─────────────────────────── */
.airlines-section {
  padding: 5rem 0;
  background: linear-gradient(160deg, #EEF2FF 0%, var(--white) 45%, #F0F7FF 100%);
}

.airlines-header {
  text-align: center;
  margin-bottom: 3rem;
}

.airlines-heading {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--ink);
  margin: 0.25rem 0 0.75rem;
  line-height: 1.2;
}

.airlines-sub {
  font-size: var(--text-base);
  color: var(--ink-400);
  margin: 0;
  max-width: 480px;
  margin-inline: auto;
}

/* marquee container */
.airlines-marquee-wrap {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.airlines-marquee {
  display: flex;
  direction: ltr;
}

@keyframes airlines-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 0.5rem)); }
}

.airlines-marquee-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  direction: ltr;
  padding: 1.25rem 0 2rem;
  animation: airlines-scroll 34s linear infinite;
}

.airlines-marquee-wrap:hover .airlines-marquee-track {
  animation-play-state: running;
}

/* ── Reveal-Strip Card ── */
.airline-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 130px;
  flex-shrink: 0;
  background: none;
  border-radius: 20px;
  overflow: hidden;
  cursor: default;
  transition: transform 0.32s var(--ease-out);
}

.airline-card:hover {
  transform: translateY(-6px);
}

/* logo wrapper — slides up on hover to make room */
.airline-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 1.15rem;
  transition: transform 0.32s var(--ease-out);
}

.airline-card:hover .airline-card-logo {
  transform: translateY(-10px);
}

.airline-card-logo img {
  height: 58px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block;
  filter: grayscale(100%) brightness(0.72) contrast(1.2);
  opacity: 0.72;
  transition: filter 0.5s ease, opacity 0.5s ease;
}

.airline-card-logo img.colorized {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

.airline-card-logo img.airline-logo-boost-wide {
  transform: scale(1.58);
}

.airline-card-logo img.airline-logo-boost-tall {
  transform: scale(1.38);
}

/* blue reveal strip */
.airline-card-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.75rem;
  background: var(--blue);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  transform: translateY(calc(100% + 2px));
  opacity: 0;
  transition: transform 0.32s var(--ease-out), opacity 0.2s ease;
}

.airline-card:hover .airline-card-name {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 991px) {
  .airlines-heading { font-size: var(--text-3xl); }
  .airline-card {
    width: 154px;
    height: 108px;
  }
  .airline-card-logo img {
    height: 46px;
    max-width: 124px;
  }
  .airline-card-logo img.airline-logo-boost-wide {
    transform: scale(1.42);
  }
  .airline-card-logo img.airline-logo-boost-tall {
    transform: scale(1.25);
  }
}

@media (prefers-reduced-motion: reduce) {
  .airlines-marquee-track { animation: none; }
}

/* ─── 14. Print / reduced-data media ─── */
@media print {
  .hero-section { min-height: auto; }
  .hero-video, .hero-overlay, .hero-side-nums, .hero-scroll-indicator { display: none; }
  .navbar, #mainNav { display: none; }
  .footer-modern { padding: 1rem 0; }
}

/* Ensure Arabic/Kurdish fonts win over Playfair Display (and any inline font-family), which lacks those glyphs */
[lang="ar"] * { font-family: 'Ping', sans-serif !important; }
[lang="ku"] * { font-family: 'Rabar', sans-serif !important; }
