/* =====================================================
   VIA LUNA TRAVEL & SERVICES
   Premium Luxury Travel Agency — UAE
   Design System: Midnight Gold Luxury
   ===================================================== */

/* ─── CSS Custom Properties ─── */
:root {
  --navy:        #0B1D3A;
  --navy-mid:    #132342;
  --navy-light:  #1A3060;
  --gold:        #C9A247;
  --gold-light:  #D4B86A;
  --gold-pale:   #F5EDD5;
  --gold-dark:   #A8832E;
  --sky:         #1A6FBF;
  --sky-light:   #E8F2FB;
  --sky-pale:    #F0F7FF;
  --white:       #FFFFFF;
  --off-white:   #F8FAFD;
  --text-dark:   #0F1923;
  --text-mid:    #3D5068;
  --text-light:  #7A8CA0;
  --border:      #DDE6EF;
  --shadow-sm:   0 2px 12px rgba(11,29,58,.06);
  --shadow:      0 6px 28px rgba(11,29,58,.10);
  --shadow-lg:   0 16px 56px rgba(11,29,58,.16);
  --shadow-xl:   0 28px 80px rgba(11,29,58,.22);
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --transition:  0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h:    72px;
  --topbar-h:    42px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--topbar-h));
}

body {
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  direction: rtl;
}

body.lang-en {
  font-family: 'Poppins', sans-serif;
  font-size: 0.975rem;
  line-height: 1.75;
  direction: ltr;
}

body.lang-en h1,
body.lang-en h2,
body.lang-en h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ─── Container ─── */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ─── Section Helpers ─── */
.section { padding: 88px 0; }
.section-light { background: var(--off-white); }
.section-white { background: var(--white); }
.section-navy {
  background: var(--navy);
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 700;
  color: var(--navy);
  margin: 10px 0 16px;
  line-height: 1.25;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.9;
}

.section-header--light h2 { color: var(--white); }
.section-header--light p { color: rgba(255,255,255,.75); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 16px;
  border: 1.5px solid rgba(201,162,71,.3);
  border-radius: 100px;
  background: rgba(201,162,71,.06);
}

.section-eyebrow--gold { color: var(--gold); border-color: rgba(201,162,71,.35); }
.section-eyebrow--white { color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.08); }

/* ─── Utility Classes ─── */
.gold { color: var(--gold); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-full { width: 100%; justify-content: center; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(201,162,71,.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201,162,71,.5);
  color: var(--white);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,.3);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,.45);
  color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-outline-white {
  border-color: rgba(255,255,255,.65);
  color: var(--white);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.18);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-navy {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* ═══════════════════════════════════════
   TOP BAR
═══════════════════════════════════════ */
#top-bar {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  height: var(--topbar-h);
  font-size: 0.82rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-contact-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
  font-size: 0.8rem;
}
.top-contact-item:hover { color: var(--gold); }
.top-contact-item i { font-size: 0.75rem; color: var(--gold); }

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}
.top-socials a {
  color: rgba(255,255,255,.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.top-socials a:hover { color: var(--gold); }

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border-radius: 100px;
  padding: 3px 10px;
  border: 1px solid rgba(255,255,255,.15);
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,.65);
  font-size: 0.78rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 100px;
  transition: all var(--transition);
  letter-spacing: 0.04em;
}
.lang-btn.active {
  color: var(--gold);
  background: rgba(201,162,71,.15);
}
.lang-btn:hover { color: var(--gold); }
.lang-divider { color: rgba(255,255,255,.25); font-size: 0.75rem; }

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
#header {
  position: sticky;
  top: var(--topbar-h);
  z-index: 999;
  height: var(--header-h);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

#header.scrolled {
  box-shadow: 0 4px 24px rgba(11,29,58,.1);
  border-bottom-color: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-svg {
  height: 46px;
  width: auto;
  max-width: 220px;
  display: block;
  /* Ensure logo looks sharp on hi-DPI screens */
  image-rendering: -webkit-optimize-contrast;
}

.nav-logo-fallback {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 480px) {
  .nav-logo-svg { max-width: 160px; height: 38px; }
}

.logo-emblem {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(11,29,58,.2);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

body.lang-en .logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-tagline {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Navigation */
.main-nav { flex: 1; }

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  inset-inline-start: 50%;
  transform: translateX(50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--transition);
}

html[dir="ltr"] .nav-link::after {
  inset-inline-start: auto;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 22px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 100px;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,.25);
  flex-shrink: 0;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  width: 42px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 20px 28px 28px;
  box-shadow: 0 16px 40px rgba(11,29,58,.12);
}

.mobile-nav.open { display: block; }

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.mobile-link {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.mobile-link:hover {
  background: var(--sky-pale);
  color: var(--navy);
}

.mobile-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.42;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.10); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(11,29,58,.88) 0%,
    rgba(11,29,58,.72) 40%,
    rgba(11,29,58,.55) 70%,
    rgba(11,29,58,.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding-top: 60px;
  padding-bottom: 100px;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(201,162,71,.18);
  border: 1px solid rgba(201,162,71,.4);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.hero-badge i { font-size: 0.7rem; }

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(11,29,58,.5);
}

body.lang-en .hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 600;
  font-style: normal;
}

.hero-title em {
  font-style: normal;
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.82);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 22px 36px;
  gap: 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
}

.stat-number {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  transition: color var(--transition);
}
.hero-scroll-indicator:hover { color: var(--gold); }

.scroll-arrow {
  animation: bounceDown 1.8s ease-in-out infinite;
}
@keyframes bounceDown {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ═══════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px 30px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--gold), var(--sky));
  border-radius: 0 2px 2px 0;
  transition: height var(--transition);
}

html[dir="ltr"] .service-card::before {
  border-radius: 2px 0 0 2px;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,162,71,.35);
  transform: translateY(-4px);
}

.service-card:hover::before { height: 100%; }

.service-card--featured {
  border-color: rgba(201,162,71,.4);
  background: linear-gradient(145deg, #FFFDF5 0%, var(--white) 100%);
}

.service-icon {
  width: 58px;
  height: 58px;
  background: var(--sky-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.35rem;
  color: var(--sky);
  transition: all var(--transition);
}

.service-card--featured .service-icon {
  background: var(--gold-pale);
  color: var(--gold-dark);
}

.service-card:hover .service-icon {
  background: var(--navy);
  color: var(--gold);
  transform: rotate(-5deg) scale(1.05);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sky);
  transition: gap var(--transition), color var(--transition);
}
.service-link:hover { gap: 12px; color: var(--gold-dark); }
.service-link i { font-size: 0.75rem; }

/* RTL arrow flip */
html[dir="ltr"] .service-link i { transform: rotate(180deg); }

/* ═══════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(201,162,71,.35);
  transform: translateY(-4px);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: rgba(201,162,71,.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 20px;
  transition: all var(--transition);
}

.why-card:hover .why-icon {
  background: var(--gold);
  color: var(--navy);
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,.68);
  line-height: 1.8;
}

/* ═══════════════════════════════════════
   DESTINATIONS
═══════════════════════════════════════ */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.dest-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.dest-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
  border-color: rgba(201,162,71,.3);
}

.dest-image-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--sky));
}

.dest-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.dest-card:hover .dest-image-wrap img {
  transform: scale(1.08);
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11,29,58,.7) 0%,
    rgba(11,29,58,.1) 55%,
    transparent 100%
  );
}

.dest-badge {
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.dest-badge--blue { background: var(--sky); }
.dest-badge--gold { background: var(--gold); }

.dest-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dest-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dest-location i { font-size: 0.72rem; }

.dest-body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}

.dest-body p {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
  flex: 1;
}

.dest-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.dest-features span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--sky-pale);
  color: var(--sky);
  border-radius: 100px;
  border: 1px solid rgba(26,111,191,.15);
}

.dest-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 100px;
  transition: all var(--transition);
  width: 100%;
  text-align: center;
}
.dest-cta:hover {
  background: var(--gold);
  color: var(--white);
  transform: none;
}

/* ═══════════════════════════════════════
   HONEYMOON SECTION
═══════════════════════════════════════ */
.section-honeymoon {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
  color: var(--white);
}

.honeymoon-bg {
  position: absolute;
  inset: 0;
}

.honeymoon-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.honeymoon-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,29,58,.88) 0%, rgba(11,29,58,.7) 100%);
}

.honeymoon-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.honeymoon-icon {
  width: 70px;
  height: 70px;
  background: rgba(201,162,71,.2);
  border: 2px solid rgba(201,162,71,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 auto 20px;
}

.honeymoon-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 12px 0 20px;
  text-shadow: 0 2px 12px rgba(11,29,58,.5);
}

body.lang-en .honeymoon-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.honeymoon-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  line-height: 1.9;
  margin-bottom: 36px;
}

.honeymoon-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.h-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  backdrop-filter: blur(8px);
}
.h-feature i { color: var(--gold); font-size: 0.85rem; }

/* ═══════════════════════════════════════
   AIRLINES SECTION
═══════════════════════════════════════ */
.airlines-track-wrapper {
  overflow: hidden;
  padding: 12px 0;
  position: relative;
}

.airlines-track-wrapper::before,
.airlines-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.airlines-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--off-white), transparent);
}
.airlines-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--off-white), transparent);
}

.airlines-track {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: scrollAirlines 42s linear infinite;
  width: max-content;
}

.airlines-track:hover { animation-play-state: paused; }

@keyframes scrollAirlines {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

html[dir="rtl"] .airlines-track {
  animation-name: scrollAirlinesRTL;
}

@keyframes scrollAirlinesRTL {
  0%   { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

.airline-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 130px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  flex-shrink: 0;
}

.airline-logo-item:hover {
  box-shadow: var(--shadow);
  border-color: rgba(201,162,71,.3);
  transform: translateY(-3px);
}

.airline-logo-item img {
  width: 90px;
  height: 46px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter var(--transition);
}

.airline-logo-item:hover img { filter: grayscale(0%); }

.airline-logo-item span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
}

.airline-logo-fallback {
  width: 90px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

html[dir="ltr"] .about-grid {
  direction: ltr;
}

.about-visual {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 5;
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--navy), var(--sky));
}

.about-image-accent {
  position: absolute;
  bottom: -16px;
  inset-inline-end: -16px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--gold);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.4;
}

.about-trust-badges {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.trust-badge {
  flex: 1;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  box-shadow: var(--shadow);
}

.trust-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}

.trust-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
}

.about-content .section-eyebrow { display: inline-flex; }

.about-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  margin: 12px 0 28px;
  line-height: 1.3;
}

body.lang-en .about-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
}

.about-text p {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.95;
  margin-bottom: 18px;
}

.about-text strong { color: var(--navy); font-weight: 700; }

.about-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 30px 0;
  padding: 20px 24px;
  background: var(--sky-pale);
  border-radius: var(--radius);
  border: 1px solid rgba(26,111,191,.15);
}

.signature-line {
  width: 3px;
  height: 44px;
  background: linear-gradient(180deg, var(--gold), var(--sky));
  border-radius: 2px;
  flex-shrink: 0;
}

.signature-name {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
}

.signature-title {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 3px;
}

.about-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  inset-inline-end: 28px;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold-pale);
  font-family: Georgia, serif;
  pointer-events: none;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,162,71,.3);
  transform: translateY(-4px);
}

.testi-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.testi-quote {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 24px;
  font-style: italic;
}

body.lang-en .testi-quote { font-style: italic; }

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.testi-author span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ═══════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════ */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.faq-header .section-eyebrow { margin-bottom: 14px; }

.faq-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

body.lang-en .faq-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.faq-header p {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.85;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: rgba(201,162,71,.35);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  font-family: inherit;
  text-align: start;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--gold-dark); }

.faq-icon {
  font-size: 0.75rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 22px 18px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.9;
}

/* ═══════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════ */
.section-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #0F2D5E 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: -80px;
  inset-inline-end: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,162,71,.12) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

body.lang-en .cta-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.cta-text p {
  font-size: 1rem;
  color: rgba(255,255,255,.72);
}

.cta-buttons {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--sky-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.contact-detail a,
.contact-detail span {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 600;
  transition: color var(--transition);
}
.contact-detail a:hover { color: var(--gold-dark); }

.contact-socials { margin-top: 32px; }

.contact-socials h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 14px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.social-wa  { background: #E7FAF0; color: #25D366; }
.social-fb  { background: #E7EFFE; color: #1877F2; }
.social-ig  { background: #FDE8F2; color: #E1306C; }

.social-wa:hover  { background: #25D366; color: var(--white); }
.social-fb:hover  { background: #1877F2; color: var(--white); }
.social-ig:hover  { background: linear-gradient(135deg,#f9ce34,#ee2a7b,#6228d7); color: var(--white); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: all var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sky);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,111,191,.1);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.select-wrap { position: relative; }
.select-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-end: 16px;
  pointer-events: none;
  color: var(--text-light);
  font-size: 0.8rem;
}

.form-wa-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 24px;
  font-size: 0.88rem;
  color: #1a7a3c;
}
.form-wa-note .fab.fa-whatsapp {
  font-size: 1.25rem;
  color: #25D366;
  flex-shrink: 0;
}

.form-success {
  text-align: center;
  padding: 48px 32px;
}

.success-icon {
  font-size: 3.5rem;
  color: #25D366;
  margin-bottom: 20px;
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.form-success h3 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.form-success p {
  color: var(--text-mid);
  margin-bottom: 28px;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
#footer {
  background: var(--navy);
  color: rgba(255,255,255,.8);
}

.footer-top { padding: 72px 0 56px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand .logo-emblem {
  background: rgba(201,162,71,.15);
  border: 1px solid rgba(201,162,71,.3);
  color: var(--gold);
}

/* Footer SVG logo — invert to white for dark background */
.footer-logo-svg {
  height: 50px;
  width: auto;
  max-width: 240px;
  opacity: 0.92;
  display: block;
  margin-bottom: 4px;
}
.footer-logo-svg:hover { opacity: 1; }

.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tagline { color: var(--gold); }

.footer-brand-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.85;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.87rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-contact-item:hover { color: var(--gold); }
.footer-contact-item i {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}

.footer-lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,.4);
}

.footer-lang-btn {
  color: rgba(255,255,255,.65);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  padding: 3px 8px;
  border-radius: 4px;
  transition: all var(--transition);
}
.footer-lang-btn:hover { color: var(--gold); }
.footer-lang-btn.active { color: var(--gold); background: rgba(201,162,71,.12); }

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,.45);
}

.powered-by {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,.4);
}

.codrex-link {
  display: flex;
  align-items: center;
  transition: opacity var(--transition);
}
.codrex-link:hover { opacity: 0.85; }

.codrex-logo {
  height: 22px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(0.65);
  transition: filter var(--transition);
}
.codrex-link:hover .codrex-logo { filter: brightness(0) invert(1); }

#codrex-text {
  color: rgba(255,255,255,.65);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════
   FLOATING WHATSAPP BUTTON
═══════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  inset-inline-end: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.7rem;
  box-shadow: 0 6px 28px rgba(37,211,102,.45);
  animation: waPulse 2.5s ease-in-out infinite;
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
}

.whatsapp-float.visible {
  opacity: 1;
  pointer-events: all;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,.6);
  animation-play-state: paused;
}

@keyframes waPulse {
  0%   { box-shadow: 0 6px 28px rgba(37,211,102,.45); }
  50%  { box-shadow: 0 6px 28px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,.08); }
  100% { box-shadow: 0 6px 28px rgba(37,211,102,.45); }
}

.whatsapp-float-tooltip {
  position: absolute;
  inset-inline-end: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  box-shadow: var(--shadow);
}

.whatsapp-float-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  inset-inline-start: 100%;
  transform: translateY(-50%);
  border: 5px solid transparent;
}

html[dir="rtl"] .whatsapp-float-tooltip::after {
  border-right-color: var(--navy);
}

html[dir="ltr"] .whatsapp-float-tooltip::after {
  inset-inline-start: auto;
  right: 100%;
  border-left-color: var(--navy);
}

.whatsapp-float:hover .whatsapp-float-tooltip { opacity: 1; }

/* ─── Back to Top ─── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  inset-inline-start: 28px;
  z-index: 9999;
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand .footer-brand-desc { max-width: 100%; }
}

@media (max-width: 960px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-visual { order: -1; }
  .about-image-frame { aspect-ratio: 16 / 9; }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --header-h: 64px; --topbar-h: 0px; }

  #top-bar { display: none; }

  #header { top: 0; }

  html { scroll-padding-top: var(--header-h); }

  .main-nav { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-stats {
    gap: 0;
    padding: 16px 20px;
  }
  .hero-stat { padding: 0 16px; }
  .stat-number { font-size: 1.4rem; }

  .hero-actions { gap: 10px; }
  .hero-actions .btn { padding: 11px 20px; font-size: 0.88rem; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-buttons { justify-content: center; }

  .about-trust-badges { gap: 8px; }
  .trust-badge { padding: 14px 10px; }
  .trust-number { font-size: 1.3rem; }

  .contact-form-wrap { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { padding: 48px 0 40px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 14px; }

  .whatsapp-float { bottom: 24px; inset-inline-end: 20px; width: 54px; height: 54px; font-size: 1.5rem; }
  .back-to-top { bottom: 24px; inset-inline-start: 20px; }

  .section { padding: 64px 0; }

  .h-feature { padding: 8px 14px; font-size: 0.8rem; }

  .about-actions { flex-direction: column; }
  .about-actions .btn { justify-content: center; }
}

@media (max-width: 500px) {
  .hero-stats { flex-wrap: wrap; }
  .hero-stat-divider { display: none; }
  .hero-stat { width: 50%; padding: 12px 0; }

  .top-bar-left .top-contact-item:last-child { display: none; }

  .container { padding: 0 18px; }

  .dest-image-wrap { height: 200px; }

  .section-header { margin-bottom: 40px; }
}

/* ═══════════════════════════════════════
   LANGUAGE DIRECTION ADJUSTMENTS
═══════════════════════════════════════ */
html[dir="ltr"] .footer-links a { flex-direction: row-reverse; justify-content: flex-end; }
html[dir="ltr"] .logo-emblem { border-radius: 12px; }

/* Ensure select options respect dir */
html[dir="rtl"] select option { direction: rtl; }
html[dir="ltr"] select option { direction: ltr; }

/* AOS Overrides for RTL */
html[dir="rtl"] [data-aos="fade-right"] { transform: translate3d(40px, 0, 0); }
html[dir="rtl"] [data-aos="fade-left"]  { transform: translate3d(-40px, 0, 0); }

/* ─── Phone Number Direction Fix ───
   Phone numbers always render LTR regardless of page direction.
   IMPORTANT: Only target the inner <span> or <a> that IS the text node.
   Never set direction:ltr on a flex container — it reverses the icon order. */

/* The dir="ltr" HTML attribute on each span is the primary fix.
   These rules reinforce it with unicode isolation: */
html[dir="rtl"] span[dir="ltr"],
html[dir="rtl"] a[dir="ltr"] {
  direction: ltr;
  unicode-bidi: isolate;
  /* Keep display:inline so the flex/block context of the parent is not disturbed */
  display: inline;
}

/* Safety-net for any bare <a href="tel:"> that sits alone (not inside a flex row) */
html[dir="rtl"] a[href^="tel:"]:not(.footer-contact-item):not(.top-contact-item) {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}
