/* ===========================
   Berlin Travel Agency
   "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/Ping.ttf') format('truetype');
  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;
}

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

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

/* ───────────────────────────
   4. Island Navbar
─────────────────────────── */
#mainNav {
  padding: 1rem 0;
  background: transparent;
  transition: padding var(--dur-base) var(--ease-out);
  z-index: 1000;
}

.nav-island {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0.55rem 1rem 0.55rem 1rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 24px rgba(10,15,30,0.12);
  transition: all var(--dur-base) var(--ease-out);
}

#mainNav.scrolled .nav-island {
  padding: 0.4rem 1rem 0.4rem 1.25rem;
  box-shadow: 0 8px 32px rgba(10,15,30,0.16);
}

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.navbar-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.brand-wordmark {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* Nav links */
.navbar-nav {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: nowrap;
}
.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-500) !important;
  padding: 0.4rem 0.75rem !important;
  border-radius: var(--radius-pill);
  transition: color var(--dur-fast), background var(--dur-fast);
  white-space: nowrap;
}
.nav-link:hover {
  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: var(--ink-100);
  padding: 3px;
  border-radius: var(--radius-pill);
}
.lang-btn {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink-500);
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-pill);
  transition: all var(--dur-fast);
}
.lang-btn.active,
.lang-btn:hover {
  background: var(--blue);
  color: var(--white);
}

/* CTA button */
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white) !important;
  background: var(--ink);
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-pill);
  transition: background var(--dur-fast), transform var(--dur-fast);
  white-space: nowrap;
}
.btn-nav-cta:hover {
  background: var(--blue);
  transform: translateY(-1px);
}

/* 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: var(--ink);
  border-radius: 2px;
  display: block;
  transition: all var(--dur-fast);
}

/* Collapsed nav on mobile */
@media (max-width: 991px) {
  #mainNav { padding: 0.75rem 1rem; }
  .nav-island {
    width: min(100%, 360px);
    min-height: 52px;
    border-radius: var(--radius-pill);
    flex-wrap: wrap;
    padding: 0.45rem 0.65rem 0.45rem 0.85rem;
    gap: 0.5rem;
  }
  .navbar-brand { gap: 0.4rem; min-width: 0; }
  .navbar-brand img { width: 34px; height: 34px; object-fit: contain; }
  .brand-wordmark { font-size: 0.9rem; max-width: 148px; overflow: hidden; text-overflow: ellipsis; }
  .navbar-toggler {
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0;
    border-radius: 50%;
  }
  .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 var(--ink-100);
  }
  .nav-island:has(.navbar-collapse.show),
  .nav-island:has(.navbar-collapse.collapsing) {
    width: min(100%, 360px);
    border-radius: 24px;
    align-items: flex-start;
  }
  .nav-island:has(.navbar-collapse.show) .navbar-brand,
  .nav-island:has(.navbar-collapse.collapsing) .navbar-brand {
    margin-bottom: 0;
  }
  .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 var(--ink-100);
  }
}

@media (max-width: 380px) {
  #mainNav { padding-inline: 0.65rem; }
  .nav-island { width: 100%; }
  .navbar-brand img { width: 32px; height: 32px; }
  .brand-wordmark { max-width: 118px; font-size: 0.82rem; }
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(10,15,30,0.85) 0%,
    rgba(10,15,30,0.60) 50%,
    rgba(10,15,30,0.30) 100%
  );
}

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

.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.65);
  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;
}
.hero-headline br { display: block; }

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

.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
─────────────────────────── */
.about-section {
  padding: calc(var(--section-y) + 1rem) 0;
  background:
    radial-gradient(circle at 12% 42%, rgba(37,99,235,0.055), transparent 30rem),
    linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 24%, #F7F9FC 100%);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-visual { position: relative; }

.about-metrics-board {
  position: relative;
  min-height: 520px;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02)),
    url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=900&h=1000&fit=crop') center/cover;
  box-shadow: 0 30px 90px rgba(10,15,30,0.22);
  color: var(--white);
  isolation: isolate;
}

.about-metrics-board::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(145deg, rgba(10,15,30,0.88) 0%, rgba(10,15,30,0.58) 55%, rgba(37,99,235,0.28) 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 96px);
}

.about-metrics-board::after {
  content: '';
  position: absolute;
  left: 2rem;
  right: 2rem;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.42), transparent);
  transform: rotate(-8deg);
}

.about-board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.about-board-kicker,
.about-board-year {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
}

.about-board-year {
  color: var(--white);
}

.about-metric {
  position: relative;
  z-index: 1;
  padding: 1.25rem;
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  border-radius: 18px;
}

.about-metric-large {
  min-height: 190px;
  margin-bottom: 1rem;
}

.about-metrics-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.about-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.35rem, 5vw, 4.85rem);
  font-weight: 700;
  color: var(--white);
  line-height: 0.95;
}

.about-metrics-grid .about-stat-num {
  font-size: clamp(2rem, 3vw, 3.25rem);
}

.about-stat-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.64);
  margin-top: 0.65rem;
  line-height: 1.35;
}

.about-route-card {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  font-size: var(--text-sm);
  font-weight: 700;
  box-shadow: 0 14px 36px rgba(0,0,0,0.18);
}

.about-route-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(37,99,235,0.14);
}

.about-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 4.4vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.about-body {
  font-size: var(--text-lg);
  color: var(--ink-500);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-service-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0;
}

.about-service-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--ink-500);
  font-size: var(--text-sm);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.about-service-pill i {
  color: var(--blue);
}

.about-proof-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0 2rem;
}

.about-proof-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid rgba(10,15,30,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow-sm);
  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.22);
  box-shadow: var(--shadow-md);
}

.about-proof-icon {
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--blue);
  color: var(--white);
  flex-shrink: 0;
}

.about-proof-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.about-proof-desc {
  font-size: var(--text-sm);
  line-height: 1.55;
  color: var(--ink-400);
  margin: 0;
}

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

@media (max-width: 991px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { order: -1; }
  .about-metrics-board { min-height: auto; }
}

@media (max-width: 575px) {
  .about-metrics-grid { grid-template-columns: 1fr; }
  .about-metric,
  .about-metric-large { min-height: 126px; }
  .about-board-top { align-items: flex-start; flex-direction: column; }
}

/* ───────────────────────────
   8. Services Section
─────────────────────────── */
.services-section {
  padding: var(--section-y) 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(37,99,235,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.services-header {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
}
.services-header .section-label {
  color: var(--amber-light);
  border-color: rgba(245,158,11,0.22);
  background: rgba(245,158,11,0.08);
}
.services-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.services-section .section-heading,
.services-section .section-sub {
  color: var(--white);
}

.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(255,255,255,0.08);
  transition: background var(--dur-fast);
  cursor: default;
}
.service-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.service-item:hover { background: rgba(255,255,255,0.03); border-radius: var(--radius-md); }

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

.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(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--amber-light);
  flex-shrink: 0;
  transition: all var(--dur-fast);
}
.service-item:hover .service-icon-wrap {
  background: rgba(37,99,235,0.25);
  color: #FFFFFF;
}

.service-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.service-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.50);
  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: rgba(255,255,255,0.40) !important;
  white-space: nowrap;
  transition: color var(--dur-fast);
  flex-shrink: 0;
}
.service-item:hover .service-link { color: var(--amber-light) !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: var(--ink);
}
.transfers-section .section-label {
  color: var(--white);
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
}
.transfers-section .section-heading { color: var(--white); }
.transfers-section .section-sub { color: rgba(255,255,255,0.55); }

/* ───────────────────────────
   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.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  color: var(--white);
}

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

.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);
}

.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;
}
.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: var(--ink) !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-modern .footer-logo {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--white);
}
.footer-brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}
.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(--ink-300, #D1D5DB); 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; }
}

/* ───────────────────────────
   24. Hero Side Numbers (Visit Indonesia)
─────────────────────────── */
.hero-side-nums {
  position: absolute;
  right: 2.25rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.hero-side-num {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.30);
  transition: color var(--dur-fast), transform var(--dur-fast);
  cursor: default;
  line-height: 1;
}
.hero-side-num.active {
  color: rgba(255,255,255,0.95);
  font-size: var(--text-sm);
  transform: scale(1.15);
}
.hero-side-num::before {
  content: '';
  display: block;
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto 0.4rem;
}
.hero-side-num:first-child::before { display: none; }

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

/* ───────────────────────────
   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);
}
.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 {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
}
.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;
}
