﻿/* ========================================
   GRAM ELITE TRAVEL & TOURISM
   Main Stylesheet
   ======================================== */

/* Google Fonts (Cairo + Playfair Display) are loaded via <link> tags in
   each page's <head> — see assets/vendor/README.md — not via @import,
   which is render-blocking and was previously duplicated here. */

@font-face {
  font-family: 'Muslimah';
  src: url('../../font/ArbFONTS-Muslimah-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

body,
p,
span,
a,
li,
button,
input,
textarea,
select,
label,
small,
.footer,
.nav,
.card-text,
.card-description,
.section-description,
.service-description,
.package-description,
.destination-description {
  font-family: 'Cairo', sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo,
.brand-name,
.section-title,
.page-title,
.card-title,
.service-title,
.package-title,
.destination-title {
  font-family: 'Muslimah', 'Cairo', sans-serif !important;
  font-weight: 300 !important;
}

/* Main homepage hero title: locked to the luxury Muslimah font,
   including inner spans, regardless of the global Cairo rule above */
.hero-title,
.hero-title * {
  font-family: 'Muslimah', 'Cairo', sans-serif !important;
  font-weight: 300 !important;
}

/* ---- CSS Variables ---- */
:root {
  --white: #ffffff;
  --off-white: #f8f6f1;
  --gold: #c9a45c;
  --gold-light: #e8d49a;
  --gold-dark: #a07830;
  --dark: #0c0c0c;
  --dark-soft: #151515;
  --dark-mid: #1e1c18;
  --text: #252525;
  --muted: #777777;
  --muted-light: #aaaaaa;
  --border: rgba(201,164,92,0.25);
  --border-light: rgba(201,164,92,0.12);

  --font-ar: 'Muslimah', 'Cairo', 'Tajawal', Arial, sans-serif;
  --font-en: 'Muslimah', 'Playfair Display', 'Georgia', serif;
  --font-body: 'Muslimah', 'Inter', 'Helvetica Neue', sans-serif;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 7rem;

  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow: 0 4px 30px rgba(0,0,0,0.08);
  --shadow-gold: 0 4px 30px rgba(201,164,92,0.15);
  --shadow-dark: 0 8px 40px rgba(0,0,0,0.35);

  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --transition-fast: all 0.2s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- RTL/LTR ---- */
[dir="rtl"] body { font-family: var(--font-ar); }
[dir="ltr"] .display-title { font-family: var(--font-en); letter-spacing: 0.04em; }
[dir="rtl"] .display-title { font-family: var(--font-ar); letter-spacing: 0; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 { line-height: 1.25; font-weight: 700; }
[dir="ltr"] h1, [dir="ltr"] h2, [dir="ltr"] h3 { font-family: var(--font-en); }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3 { font-family: var(--font-ar); }

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
  background: transparent;
}
.site-header.scrolled {
  background: #000000;
  /* backdrop-filter: blur(20px) removed — proven dead weight: the
     scrolled header is fully covered by the opaque white
     .site-header::before overlay below, so this expensive GPU blur was
     never visible (confirmed via a real rendered screenshot). */
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo-placeholder {
  width: 44px; height: 44px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  background: rgba(201,164,92,0.08);
}
.logo-text { color: var(--white); }
.logo-text .logo-en { font-family: var(--font-en); font-size: 1.15rem; font-weight: 700; display: block; letter-spacing: 0.06em; }
.logo-text .logo-ar { font-family: var(--font-ar); font-size: 0.7rem; color: var(--gold); font-weight: 400; display: block; }

.main-nav { display: flex; align-items: center; }
.nav-list {
  display: flex;
  gap: 0.25rem;
  flex-wrap: nowrap;
}
.nav-list a {
  color: rgba(255,255,255,0.82);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius);
  transition: var(--transition-fast);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.nav-list a:hover,
.nav-list a.active { color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.lang-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  letter-spacing: 0.08em;
  transition: var(--transition-fast);
}
.lang-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  display: flex; align-items: center; gap: 0.4rem;
  transition: var(--transition-fast);
  white-space: nowrap;
}
.btn-whatsapp:hover { background: #1ebe5c; transform: translateY(-1px); }
.btn-whatsapp svg { width: 14px; height: 14px; fill: currentColor; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
  cursor: pointer;
}
.menu-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--gold);
  transition: var(--transition-fast);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(12,12,12,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-bottom: 1px solid var(--border-light);
  width: 100%;
  text-align: center;
  transition: var(--transition-fast);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: var(--muted-light);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,164,92,0.35);
}
.btn-outline-gold {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { background: var(--dark-soft); transform: translateY(-2px); }
.btn-sm { padding: 0.55rem 1.4rem; font-size: 0.78rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 0.92rem; }

/* ========================================
   LAYOUT & SECTIONS
   ======================================== */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container-wide { max-width: 1500px; margin: 0 auto; padding: 0 2rem; }

.section { padding: var(--spacing-xl) 0; }
.section-sm { padding: var(--spacing-lg) 0; }

.section-label {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block; width: 30px; height: 1px;
  background: var(--gold);
}
[dir="rtl"] .section-label::before { display: none; }
[dir="rtl"] .section-label::after {
  content: '';
  display: block; width: 30px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.section-title.light { color: var(--white); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.75;
}
.section-subtitle.light { color: rgba(255,255,255,0.65); }
.section-head { margin-bottom: 3.5rem; }
.section-head.center { text-align: center; }
.section-head.center .section-subtitle { margin: 0 auto; }
.section-head.center .section-label { justify-content: center; }
[dir="rtl"] .section-head { text-align: right; }
[dir="rtl"] .section-head.center { text-align: center; }

/* Gold Divider */
.gold-line {
  display: block; width: 60px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem 0;
}
.gold-line.center { margin: 1.5rem auto; background: linear-gradient(90deg, transparent, var(--gold), transparent); width: 80px; }

/* Grid */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; }

/* ========================================
   IMAGE PLACEHOLDERS
   ======================================== */
.img-placeholder {
  background: linear-gradient(135deg, #1a1810 0%, #252218 50%, #1a1810 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
  min-height: 240px;
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,164,92,0.07) 0%, transparent 70%);
}
.img-placeholder-icon { font-size: 2rem; opacity: 0.4; }
.img-placeholder-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  position: relative; z-index: 1;
}
.img-placeholder-sub {
  font-size: 0.65rem;
  color: var(--muted-light);
  text-align: center;
  position: relative; z-index: 1;
}
.img-placeholder.tall { min-height: 380px; }
.img-placeholder.hero-ph { min-height: 100vh; }

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0c0b09 0%, #1a160e 40%, #0f0c06 100%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;

}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(12, 12, 12, 0.659) 40%, rgba(12, 12, 12, 0.5) 100%);
  z-index: 1;
}
[dir="rtl"] .hero-overlay { background: linear-gradient(to left, rgba(12, 12, 12, 0.677) 40%, rgba(12, 12, 12, 0.485) 100%); }
.hero-ph-bg {
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: flex-end;
}
[dir="rtl"] .hero-ph-bg { justify-content: flex-start; }
.hero-ph-inner {
  width: 55%; height: 100%;
  border-left: 1px solid var(--border-light);
  background: linear-gradient(135deg, #1a1810, #221e14, #181510);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
}
[dir="rtl"] .hero-ph-inner { border-left: none; border-right: 1px solid var(--border-light); }
.hero-content {
  position: relative; z-index: 2;
  max-width: 700px;
  padding: 8rem 0 5rem;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-eyebrow-line { display: block; width: 40px; height: 1px; background: var(--gold); }
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title .gold-accent { color: var(--gold); }
.hero-title-line {
  display: block;
  white-space: nowrap;
  line-height: 1.25;
}
.hero-title-white { color: var(--white); }
.hero-title-gold  { color: var(--gold); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; width: 100%; justify-content: flex-start; }

/* ========================================
   CARDS
   ======================================== */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.12);
  border-color: var(--border);
}
.card-body { padding: 1.75rem; }
.card-icon {
  width: 52px; height: 52px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, rgba(201,164,92,0.08), rgba(201,164,92,0.04));
}
.card-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--dark); }
.card-text { font-size: 0.87rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; }

/* Destination Card */
.dest-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
.dest-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-dark); }
.dest-card:hover .dest-overlay { opacity: 1; }
.dest-card .img-placeholder { border-radius: 0; min-height: 280px; }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,12,0.9) 0%, rgba(12,12,12,0.3) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0.85;
  transition: var(--transition);
}
.dest-name { color: var(--white); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.4rem; }
.dest-sub { color: var(--gold-light); font-size: 0.78rem; line-height: 1.55; }

/* Package Card */
.package-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); border-color: var(--border); }
.package-card .img-placeholder { min-height: 220px; border-radius: 0; }
.package-body { padding: 1.5rem; }
.package-duration {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.package-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--dark); }
.package-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }
.package-includes { margin-bottom: 1.25rem; }
.package-includes li {
  font-size: 0.8rem;
  color: var(--muted);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex; align-items: center; gap: 0.5rem;
}
.package-includes li::before { content: '✦'; color: var(--gold); font-size: 0.5rem; }

/* Testimonial Card */
.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--border); box-shadow: var(--shadow-gold); }
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial-text { font-size: 0.92rem; color: var(--text); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.85rem; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: linear-gradient(135deg, rgba(201,164,92,0.15), rgba(201,164,92,0.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.author-name { font-size: 0.85rem; font-weight: 700; color: var(--dark); }
.author-role { font-size: 0.75rem; color: var(--gold); }

/* Partner Card */
.partner-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  background: var(--white);
}
.partner-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); transform: translateY(-3px); }
.partner-logo {
  width: 80px; height: 80px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, rgba(201,164,92,0.1), rgba(201,164,92,0.04));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--gold);
}
.partner-name { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--dark); }
.partner-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.25rem; }

/* ========================================
   DARK SECTIONS
   ======================================== */
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-dark-soft {
  background: var(--dark-soft);
  color: var(--white);
}
.section-off { background: var(--off-white); }
.section-mid { background: var(--dark-mid); color: var(--white); }

/* ========================================
   CTA STRIP
   ======================================== */
.cta-strip {
  background: linear-gradient(135deg, #1a1508, #261e0c, #1a1508);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,164,92,0.12), transparent 70%);
}
.cta-strip .container { position: relative; z-index: 1; }
.cta-strip .section-title { color: var(--white); margin-bottom: 0.75rem; }
.cta-strip .section-subtitle { color: rgba(255,255,255,0.6); margin-bottom: 2rem; text-align: center; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.85rem; }

/* ========================================
   WHY US SECTION
   ======================================== */
.why-item {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-light);
}
.why-item:last-child { border-bottom: none; }
.why-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  background: rgba(201,164,92,0.06);
}
.why-text h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
.why-text p { font-size: 0.82rem; color: var(--muted-light); line-height: 1.65; }

/* ========================================
   PAGE HERO (inner pages)
   ======================================== */
.page-hero {
  background: var(--dark);
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(201,164,92,0.1), transparent 65%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero-sub { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 550px; margin: 0 auto; line-height: 1.75; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
[dir="rtl"] .about-split { direction: rtl; }
.about-features { margin-top: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-feature-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
}
.about-feature-item::before { content: '✦'; color: var(--gold); font-size: 0.55rem; }

/* ========================================
   GALLERY
   ======================================== */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: var(--transition-fast);
  background: var(--white);
}
.filter-btn:hover,
.filter-btn.active { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.gallery-item {
  position: relative; cursor: pointer; border-radius: var(--radius-md); overflow: hidden;
  transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item .img-placeholder { min-height: 260px; border-radius: 0; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,12,0.85), transparent);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item-cat { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.gallery-item-title { font-size: 0.9rem; font-weight: 700; color: var(--white); }

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: #080807;
  border-top: 1px solid var(--border-light);
  padding-top: 5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border-light);
}
.footer-brand .logo-wrap { margin-bottom: 1.25rem; }
.footer-desc { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 280px; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: var(--muted-light);
  transition: var(--transition-fast);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition-fast);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.75rem; }
.footer-contact-item .icon { font-size: 0.8rem; color: var(--gold); margin-top: 0.2rem; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.55; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom a { color: var(--gold); }

/* ========================================
   SERVICES PAGE
   ======================================== */
.service-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  background: var(--white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover { border-color: var(--border); box-shadow: var(--shadow-gold); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-icon { font-size: 2rem; margin-bottom: 1.25rem; }
.service-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.65rem; color: var(--dark); }
.service-text { font-size: 0.84rem; color: var(--muted); line-height: 1.72; margin-bottom: 1rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.25rem; }
.service-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.2rem 0.65rem;
}

/* ========================================
   DISCOVER IRAQ - Magazine Style
   ======================================== */
.iraq-section { padding: var(--spacing-lg) 0; }
.iraq-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 5rem; }

[dir="ltr"] .iraq-split.reverse .iraq-imgs { order: 1; }
[dir="ltr"] .iraq-split.reverse .iraq-text { order: 2; }
.iraq-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.iraq-imgs .img-placeholder:first-child { grid-column: 1 / -1; }

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

/* Stagger children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.08s; }
.stagger > *:nth-child(3) { transition-delay: 0.16s; }
.stagger > *:nth-child(4) { transition-delay: 0.24s; }
.stagger > *:nth-child(5) { transition-delay: 0.32s; }
.stagger > *:nth-child(6) { transition-delay: 0.40s; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-list { gap: 0.15rem; }
  .nav-list a { font-size: 0.75rem; padding: 0.35rem 0.5rem; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .about-split, .iraq-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-ph-bg { display: none; }
  .hero-overlay { background: rgba(12,12,12,0.85); }
  .hero-content { max-width: 100%; padding-top: 7rem; }
}

@media (max-width: 680px) {
  :root { --spacing-xl: 4rem; --spacing-lg: 2.5rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .header-actions .btn-whatsapp span { display: none; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  [dir="rtl"] .hero-btns { align-items: flex-end; }
  .cta-btns { flex-direction: column; align-items: center; }
  .about-features { grid-template-columns: 1fr; }
  .iraq-imgs { grid-template-columns: 1fr; }
  .iraq-imgs .img-placeholder:first-child { grid-column: auto; }
  .footer-bottom { text-align: center; justify-content: center; }
}

/* RTL overrides */
[dir="rtl"] .section-label::before { display: none; }
[dir="ltr"] .hero-btns { justify-content: flex-start; direction: ltr; }
[dir="rtl"] .gold-line { background: linear-gradient(270deg, var(--gold), transparent); }
[dir="rtl"] .gold-line.center { background: linear-gradient(270deg, transparent, var(--gold), transparent); }
[dir="rtl"] .footer-desc { max-width: 100%; }
[dir="rtl"] .service-card::before { background: linear-gradient(270deg, var(--gold), transparent); }
[dir="rtl"] .why-item { flex-direction: row; direction: rtl; }

/* ========================================
   PACKAGES PAGE
   ======================================== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.package-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
  position: relative;
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); border-color: var(--gold); }
.package-featured { border-color: var(--gold); box-shadow: 0 4px 30px rgba(201,164,92,0.15); }
.package-featured-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  z-index: 2;
}
[dir="ltr"] .package-featured-badge { right: auto; left: 1rem; }
.package-img { position: relative; height: 220px; overflow: hidden; }
.package-img .img-ph { height: 100%; border-radius: 0; border: none; }
.package-img .package-card-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}
.package-img .package-card-image-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1810 0%, #252218 50%, #1a1810 100%);
}
.package-badge {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: rgba(12,12,12,0.85);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  border: 1px solid var(--gold);
}
[dir="ltr"] .package-badge { left: auto; right: 1rem; }
.package-body { padding: 1.5rem; }
.package-dest { display: flex; gap: 0.4rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
.dest-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.2rem 0.65rem;
}
.package-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--dark); }
.package-body p { font-size: 0.84rem; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }
.package-includes { list-style: none; margin-bottom: 1.5rem; }
.package-includes li { font-size: 0.82rem; color: var(--text); padding: 0.3rem 0; border-bottom: 1px solid var(--border); }
.package-includes li:last-child { border-bottom: none; }
.btn-full { width: 100%; justify-content: center; }

@media (max-width: 1000px) { .packages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .packages-grid { grid-template-columns: 1fr; } }

/* ========================================
   PARTNERS PAGE
   ======================================== */
.partner-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
  text-align: center;
}
.partner-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-gold); border-color: var(--gold); }
.partner-logo-ph {
  height: 140px;
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.partner-body { padding: 1.5rem; }
.partner-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--dark); }
.partner-body p { font-size: 0.82rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.78rem; }

/* ========================================
   GALLERY PAGE
   ======================================== */
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gallery-item-tall { grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; }
.gallery-ph {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--dark-soft) 0%, #222 100%);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.gallery-ph-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem;
}
.gallery-ph .ph-icon { font-size: 2rem; opacity: 0.6; }
.gallery-ph .ph-label { font-size: 0.6rem; color: var(--gold); opacity: 0.7; text-align: center; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,12,0.9) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-ph { border-color: var(--gold); }
.gallery-cat {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.3rem; display: block;
}
.gallery-overlay h4 { color: var(--white); font-size: 0.85rem; margin: 0; }
.gallery-item.hidden { display: none; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item-wide { grid-column: span 1; }
}
@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item-tall { grid-row: span 1; }
}

/* ========================================
   TESTIMONIALS PAGE
   ======================================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.stat-label { font-size: 0.82rem; color: var(--muted); margin-top: 0.5rem; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); border-color: var(--gold); }
.tst-quote-icon { color: var(--gold); opacity: 0.4; line-height: 1; margin-bottom: 0.75rem; }
.tst-quote-icon svg { width: 32px; height: 32px; stroke-width: 1.5; }
.tst-stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.tst-text { font-size: 0.88rem; color: var(--text); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.tst-author { display: flex; align-items: center; gap: 1rem; }
[dir="rtl"] .tst-author { flex-direction: row-reverse; }
.avatar-ph {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: var(--dark);
  flex-shrink: 0;
}
.tst-info strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--dark); }
.tst-info span { font-size: 0.75rem; color: var(--gold); }

@media (max-width: 700px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }

/* ========================================
   CONTACT PAGE (Luxury redesign)
   ======================================== */
/* Intro + contact method cards */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 28px;
  max-width: 850px;
  margin: 3rem auto 0;
}
.contact-card {
  background: #ffffff;
  border: 1.5px solid #c9a45c;
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 22px 55px rgba(201, 164, 92, 0.12);
  transition: var(--transition);
}
.contact-card:hover { transform: translateY(-5px); box-shadow: 0 28px 65px rgba(201, 164, 92, 0.2); }
.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(201, 164, 92, 0.4);
  background: #f8f6f1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a45c;
  margin-bottom: 1.25rem;
}
.contact-card-icon svg { width: 24px; height: 24px; stroke-width: 1.7; }
.contact-card h3 { font-size: 1.05rem; font-weight: 700; color: #111111; margin-bottom: 0.6rem; }
.contact-card p { font-size: 0.85rem; color: #666666; line-height: 1.7; margin-bottom: 1.5rem; }
.contact-card .btn { margin-top: auto; width: 100%; justify-content: center; }

/* Visa request form */
.contact-form-section { background: #f8f6f1; }
.contact-form-card {
  max-width: 960px;
  margin: 3rem auto 0;
  background: #ffffff;
  border: 1.5px solid #c9a45c;
  border-radius: 22px;
  padding: 44px;
  box-shadow: 0 22px 55px rgba(201, 164, 92, 0.12);
}
.visa-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.84rem; font-weight: 600; color: #111111; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(201, 164, 92, 0.35);
  background: #f8f6f1;
  border-radius: 14px;
  padding: 16px 18px;
  font-family: 'Cairo', sans-serif;
  font-size: 0.9rem;
  color: #111111;
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #c9a45c;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(201, 164, 92, 0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input.field-invalid,
.form-group select.field-invalid { border-color: #c0392b; }

.upload-box {
  position: relative;
  border: 1.5px dashed rgba(201, 164, 92, 0.65);
  background: #f8f6f1;
  border-radius: 18px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  padding: 1.5rem;
}
.upload-box:hover,
.upload-box.dragover { border-color: #c9a45c; background: #ffffff; }
.upload-box.has-file { border-color: #c9a45c; }
.upload-box input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.upload-box-icon { color: #c9a45c; display: flex; }
.upload-box-icon svg { width: 28px; height: 28px; stroke-width: 1.6; }
.upload-box-text { font-size: 0.82rem; color: #666666; }

/* ========================================
   VISA DOCUMENT CAMERA CAPTURE
   Mirrors .upload-box's exact visual language (dashed gold border,
   #f8f6f1 fill, 18px radius, gold icon, muted hint text) — same design
   system, new behavior only.
   ======================================== */
.capture-boxes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 720px) { .capture-boxes { grid-template-columns: 1fr; } }

.capture-box {
  position: relative;
  border: 1.5px dashed rgba(201, 164, 92, 0.65);
  background: #f8f6f1;
  border-radius: 18px;
  min-height: 170px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 1.1rem 1rem;
  text-align: center;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  overflow: hidden;
  transition: var(--transition-fast);
}
.capture-box:hover,
.capture-box:focus-visible { border-color: #c9a45c; background: #ffffff; }
.capture-box:focus-visible { outline: 2px solid #c9a45c; outline-offset: 2px; }
.capture-box.is-captured { border-style: solid; border-color: #c9a45c; padding: 0; min-height: 170px; }

.capture-box-icon { color: #c9a45c; display: flex; }
.capture-box-icon svg { width: 26px; height: 26px; stroke-width: 1.6; }
.capture-box-title { font-size: 0.86rem; font-weight: 700; color: #111111; }
.capture-box-hint { font-size: 0.74rem; color: #666666; line-height: 1.5; }
.capture-box-action { font-size: 0.78rem; color: #c9a45c; font-weight: 600; }

.capture-box-preview-img {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.capture-box.is-captured .capture-box-preview-img { display: block; }
.capture-box.is-captured .capture-box-icon,
.capture-box.is-captured .capture-box-title,
.capture-box.is-captured .capture-box-hint,
.capture-box.is-captured .capture-box-action { display: none; }

.capture-box-badge {
  display: none;
  position: absolute;
  top: 8px;
  inset-inline-end: 8px;
  background: #c9a45c;
  color: #111111;
  border-radius: 999px;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  z-index: 1;
}
.capture-box.is-captured .capture-box-badge { display: flex; }

.capture-box-replace-hint {
  display: none;
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 0.35rem 0.5rem;
  background: rgba(12, 12, 12, 0.55);
  color: #ffffff;
  font-size: 0.68rem;
  text-align: center;
}
.capture-box.is-captured .capture-box-replace-hint { display: block; }

.capture-boxes-error {
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 0.6rem;
  text-align: center;
}

/* ---- Camera modal ---- */
.camera-modal { position: fixed; inset: 0; z-index: 4000; display: none; align-items: center; justify-content: center; padding: 1.25rem; }
.camera-modal.active { display: flex; }
.camera-modal-overlay { position: absolute; inset: 0; background: rgba(12, 12, 12, 0.72); }
.camera-modal-dialog {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 1.25rem;
  max-width: 480px;
  width: 100%;
  max-height: 92vh;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.camera-modal-close {
  position: absolute;
  top: 0.6rem;
  inset-inline-end: 0.6rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(201, 164, 92, 0.4);
  background: #f8f6f1;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  color: #111111;
}
.camera-modal-close:focus-visible { outline: 2px solid #c9a45c; outline-offset: 2px; }
.camera-modal-title { font-size: 1rem; font-weight: 700; color: #111111; margin-inline-end: 2rem; }
.camera-modal-hint { font-size: 0.8rem; color: #666666; }

.camera-modal-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #0c0c0c;
  border-radius: 14px;
  overflow: hidden;
}
.camera-modal-stage video,
.camera-modal-stage img { width: 100%; height: 100%; object-fit: contain; display: block; background: #0c0c0c; }

.camera-frame-guide { position: absolute; pointer-events: none; border: 2px dashed rgba(255, 255, 255, 0.75); border-radius: 8px; }
.camera-frame-guide-rect { inset: 14% 8%; }
.camera-frame-guide-portrait { inset: 10% 30%; border-radius: 999px; }

.camera-modal-error { font-size: 0.8rem; color: #ffb4a2; text-align: center; }

.camera-modal-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.camera-modal-actions .btn { flex: 1 1 auto; min-width: 140px; }

.form-submit-row { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-top: 0.5rem; }
.form-note { font-size: 0.78rem; color: #666666; text-align: center; }

.success-msg { display: none; text-align: center; padding: 3rem 2rem; background: linear-gradient(135deg, rgba(201,164,92,0.05), rgba(201,164,92,0.12)); border: 1px solid var(--gold); border-radius: var(--radius); margin-bottom: 2rem; }
.success-msg.show { display: block; }
.success-icon { font-size: 3rem; margin-bottom: 1rem; color: var(--gold); }
.success-msg h3 { font-size: 1.4rem; color: var(--dark); margin-bottom: 0.75rem; }
.success-msg p { color: var(--muted); font-size: 0.92rem; }

/* Map section */
.map-section .map-placeholder {
  min-height: 380px;
  border: 1.5px solid #c9a45c;
  border-radius: 22px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #8f6d32;
  font-family: 'Cairo', sans-serif;
}
.map-section .map-placeholder svg { width: 40px; height: 40px; stroke-width: 1.5; color: #c9a45c; }
.map-section .map-placeholder span { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

/* Map embed — larger, main-section-sized iframe (desktop default) */
.map-section .map-embed-frame {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
  border-radius: 16px;
}
@media (max-width: 600px) {
  .map-section .map-embed-frame {
    height: 400px;
  }
}

@media (max-width: 992px) {
  .contact-methods { grid-template-columns: repeat(2, 1fr); }
  .visa-form { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .contact-methods { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }
}

/* ========================================
   HERO BUTTONS — FORCED ALIGNMENT (final override)
   ======================================== */
html[dir="rtl"] .hero-actions-right,
html[dir="rtl"] .hero-btns {
  width: 100% !important;
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 16px !important;
  direction: ltr !important;
}

html[dir="ltr"] .hero-actions-right,
html[dir="ltr"] .hero-btns {
  width: 100% !important;
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-start !important;
  align-items: center !important;
  gap: 16px !important;
  direction: ltr !important;
}

@media (max-width: 768px) {
  html[dir="rtl"] .hero-actions-right,
  html[dir="rtl"] .hero-btns,
  html[dir="ltr"] .hero-actions-right,
  html[dir="ltr"] .hero-btns {
    flex-wrap: wrap !important;
  }
}

/* Visa Form */
.form-wrap { max-width: 860px; margin: 0 auto; }
.visa-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 3rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group-full { margin-top: 0.5rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.88rem;
  font-family: inherit;
  color: var(--text);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,164,92,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-uploads { margin-top: 2rem; }
.uploads-title { font-size: 0.88rem; font-weight: 700; color: var(--dark); margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.file-upload-label {
  position: relative;
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1.5px dashed var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  background: var(--off-white);
}
.file-upload-label:hover, .file-upload-label.has-file { border-color: var(--gold); background: var(--white); }
.file-upload-label input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; }
.file-upload-icon { font-size: 1.25rem; flex-shrink: 0; }
.file-upload-text { font-size: 0.8rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.form-submit-row { margin-top: 2rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.form-note { font-size: 0.78rem; color: var(--muted); text-align: center; }
.success-msg {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(201,164,92,0.05), rgba(201,164,92,0.12));
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  margin-bottom: 2rem;
}
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.success-msg h3 { font-size: 1.4rem; color: var(--dark); margin-bottom: 0.75rem; }
.success-msg p { color: var(--muted); font-size: 0.92rem; }

@media (max-width: 900px) {
  .contact-methods-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-row { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 580px) {
  .contact-methods-grid { grid-template-columns: 1fr 1fr; }
  .visa-form { padding: 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
}

/* FIX Why Choose section order */
.why-layout-fixed {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 5rem !important;
  align-items: center !important;
  direction: ltr !important;
}

/* Image must stay on the left */
.why-layout-fixed .why-image-side {
  grid-column: 1 !important;
  order: 1 !important;
}

/* Points must stay on the right */
.why-layout-fixed .why-points-side {
  grid-column: 2 !important;
  order: 2 !important;
  direction: rtl !important;
  text-align: right !important;
}

/* Keep feature rows aligned correctly: icon on the right, text beside it */
.why-layout-fixed .why-points-side .why-item {
  direction: rtl !important;
  flex-direction: row !important;
  justify-content: flex-start !important;
  text-align: right !important;
}
.why-layout-fixed .why-points-side .why-text {
  text-align: right !important;
}

/* Mobile responsive */
@media (max-width: 992px) {
  .why-layout-fixed {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  .why-layout-fixed .why-image-side,
  .why-layout-fixed .why-points-side {
    grid-column: 1 !important;
  }

  .why-layout-fixed .why-image-side {
    order: 1 !important;
  }

  .why-layout-fixed .why-points-side {
    order: 2 !important;
  }
}

/* Fix Why Choose feature points alignment */
html[dir="rtl"] .why-points-side {
  direction: rtl !important;
  text-align: right !important;
  align-items: flex-end !important;
}

/* Each point row must start from the right: icon on the right, text beside it */
html[dir="rtl"] .why-points-side .why-item {
  width: 100% !important;
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  gap: 1.25rem !important;
  direction: rtl !important;
  text-align: right !important;
}

html[dir="rtl"] .why-points-side .why-icon {
  flex: 0 0 auto !important;
  order: 0 !important;
}

html[dir="rtl"] .why-points-side .why-text {
  flex: 1 !important;
  order: 1 !important;
  text-align: right !important;
  direction: rtl !important;
}

html[dir="rtl"] .why-points-side h4,
html[dir="rtl"] .why-points-side p {
  text-align: right !important;
  direction: rtl !important;
}

/* Cairo font for Why Choose Us feature points (titles + descriptions only) */
.why-points-side .why-item,
.why-points-side .why-item * {
  font-family: 'Cairo', sans-serif !important;
}

/* Keep the titles inside the points clean and readable */
.why-points-side .why-item h4 {
  font-family: 'Cairo', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

/* Descriptions inside the points */
.why-points-side .why-item p {
  font-family: 'Cairo', sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

/* Service and card titles should use Cairo */
.service-card h3,
.service-card .card-title,
.feature-card h3,
.feature-card .card-title,
.services-grid h3,
.features-grid h3,
.card h3:not(.hero-title),
.luxury-card h3,
.preview-card h3 {
  font-family: 'Cairo', sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}

/* Featured Destinations section: off-white background */
.featured-destinations {
  background-color: #f8f6f1 !important;
}

.featured-destinations .section-label {
  color: var(--gold-dark) !important;
}

.featured-destinations .section-title.light {
  color: #111111 !important;
}

/* Cards stay elegant on the light background */
.featured-destinations .dest-card {
  border: 1px solid rgba(201, 164, 92, 0.28) !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08) !important;
}

/* Why Choose section: light background */
.why-section {
  background-color: #f1f1f1 !important;
}

/* Section heading and small label */
.why-section .section-title.light {
  color: #111111 !important;
}

.why-section .section-label {
  color: #c9a45c !important;
}

/* Feature point titles */
.why-section .why-text h4 {
  color: #111111 !important;
}

/* Feature point descriptions */
.why-section .why-text p {
  color: #555555 !important;
}

/* Divider lines between points */
.why-section .why-item {
  border-bottom-color: rgba(17, 17, 17, 0.12) !important;
}

/* Icon boxes */
.why-section .why-icon {
  background: #ffffff !important;
  border: 1px solid rgba(201, 164, 92, 0.35) !important;
}

/* Image placeholder box on light background */
.why-section .why-image-side .img-placeholder {
  background: #ffffff !important;
  border: 1px solid rgba(201, 164, 92, 0.35) !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08) !important;
}

.why-section .why-image-side .img-placeholder-icon,
.why-section .why-image-side .img-placeholder-label,
.why-section .why-image-side .img-placeholder-sub {
  color: #111111 !important;
}

/* About page: Vision & Mission section - light background */
.vision-mission-section {
  background-color: #f1f1f1 !important;
}

.vision-mission-section .section-title.light {
  color: #111111 !important;
}

.vision-mission-section .section-label {
  color: #c9a45c !important;
}

.vision-mission-section .fade-in-right p {
  color: #555555 !important;
}

.vision-mission-section .fade-in-left .img-placeholder {
  background: #ffffff !important;
  border: 1px solid rgba(201, 164, 92, 0.35) !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08) !important;
}

.vision-mission-section .fade-in-left .img-placeholder-icon,
.vision-mission-section .fade-in-left .img-placeholder-label,
.vision-mission-section .fade-in-left .img-placeholder-sub {
  color: #111111 !important;
}

/* Stronger service cards visibility (services.html) */
.service-card {
  background: #ffffff !important;
  border: 1.5px solid #c9a45c !important;
  box-shadow: 0 18px 45px rgba(201, 164, 92, 0.12) !important;
  border-radius: 18px !important;
}

.service-card::before {
  opacity: 0.9 !important;
}

.service-card:hover {
  transform: translateY(-6px) !important;
  border-color: #b88b35 !important;
  box-shadow: 0 26px 65px rgba(201, 164, 92, 0.20) !important;
}

/* Icon box clearer */
.service-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 56px !important;
  height: 56px !important;
  background: #f8f6f1 !important;
  border: 1px solid rgba(201, 164, 92, 0.45) !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 25px rgba(201, 164, 92, 0.12) !important;
}

/* Titles clearer */
.service-title {
  color: #111111 !important;
  font-family: 'Cairo', sans-serif !important;
  font-weight: 700 !important;
}

/* Descriptions clearer */
.service-text {
  color: #555555 !important;
  font-family: 'Cairo', sans-serif !important;
  line-height: 1.9 !important;
}

/* Small tags inside service cards */
.service-tag {
  background: #ffffff !important;
  color: #9a7433 !important;
  border: 1px solid rgba(201, 164, 92, 0.35) !important;
}

/* Stronger destination cards visibility (destinations.html) */
.destinations-grid-section .dest-card {
  background: #ffffff !important;
  border: 1.5px solid rgba(201, 164, 92, 0.40) !important;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.10) !important;
  border-radius: 18px !important;
  position: relative !important;
}

/* Gold top accent line */
.destinations-grid-section .dest-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c9a45c, transparent);
  opacity: 0.9;
  z-index: 2;
}

/* Better hover effect */
.destinations-grid-section .dest-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(201, 164, 92, 0.75) !important;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.14) !important;
}

/* Image placeholder area: more elegant gold-edged frame */
.destinations-grid-section .dest-card .img-placeholder {
  border-bottom: 1px solid rgba(201, 164, 92, 0.35) !important;
}

/* Destination titles */
.destinations-grid-section .dest-card h3 {
  color: #111111 !important;
  font-family: 'Cairo', sans-serif !important;
  font-weight: 700 !important;
}

/* Destination descriptions */
.destinations-grid-section .dest-card p {
  color: #555555 !important;
  font-family: 'Cairo', sans-serif !important;
  line-height: 1.9 !important;
}

/* Explore button inside destination cards */
.destinations-grid-section .dest-card .btn {
  color: #9a7433 !important;
  border-color: rgba(201, 164, 92, 0.65) !important;
  font-weight: 600 !important;
}

.destinations-grid-section .dest-card .btn:hover {
  background: #c9a45c !important;
  color: #111111 !important;
  border-color: #c9a45c !important;
}

/* =========================================
   Indonesia "What Indonesia Offers" section - light theme (destinations.html)
========================================= */
.destination-features-section {
  background-color: #f1f1f1 !important;
}

.destination-features-section .section-title.light {
  color: #111111 !important;
  font-family: 'Cairo', sans-serif !important;
}

.destination-features-section .section-label {
  color: #c9a45c !important;
  font-family: 'Cairo', sans-serif !important;
}

.destination-features-section .card {
  background: #ffffff !important;
  border: 1.5px solid #c9a45c !important;
  border-radius: 18px !important;
  box-shadow: 0 22px 55px rgba(201, 164, 92, 0.12) !important;
  color: #111111 !important;
}

.destination-features-section .card:hover {
  border-color: #b88b35 !important;
  box-shadow: 0 28px 65px rgba(201, 164, 92, 0.18) !important;
}

.destination-features-section .card-body {
  padding: 2.25rem 2rem !important;
}

.destination-features-section .card-icon {
  background: #f8f6f1 !important;
  border-color: rgba(201, 164, 92, 0.35) !important;
}

.destination-features-section .card-title {
  color: #111111 !important;
  font-family: 'Cairo', sans-serif !important;
  font-weight: 700 !important;
}

.destination-features-section .card-text {
  color: #555555 !important;
  font-family: 'Cairo', sans-serif !important;
  line-height: 1.9 !important;
}

/* Discover Iraq light content sections */
.light-iraq-section {
  background-color: #f8f6f1 !important;
  color: #111111 !important;
}

.light-iraq-section .section-title.light {
  color: #111111 !important;
}

.light-iraq-section .fade-in-left p,
.light-iraq-section .fade-in-right p {
  color: #555555 !important;
}

/* Image placeholders inside these sections */
.light-iraq-section .img-placeholder {
  background: #ffffff !important;
  border: 1px solid rgba(201, 164, 92, 0.35) !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08) !important;
}

.light-iraq-section .img-placeholder-sub {
  color: #777777 !important;
}

/* ===============================
   Global CTA Section (unified across all pages)
================================ */
.global-cta {
  width: 100%;
  padding: 110px 20px;
  background:
    radial-gradient(circle at center, rgba(201, 164, 92, 0.10), transparent 45%),
    linear-gradient(135deg, #1c1b0f 0%, #111111 55%, #0c0c0c 100%);
  border-top: 1px solid rgba(201, 164, 92, 0.22);
  border-bottom: 1px solid rgba(201, 164, 92, 0.22);
  text-align: center;
  overflow: hidden;
}

.global-cta .container {
  max-width: 980px;
  margin: 0 auto;
}

.global-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
}

.global-cta h2 {
  margin: 0 auto 22px;
  color: #ffffff;
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}

.global-cta p {
  max-width: 760px;
  margin: 0 auto 42px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-family: 'Cairo', sans-serif;
  font-size: 18px;
  line-height: 1.9;
}

.global-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.global-cta .btn {
  min-width: 170px;
  height: 58px;
  padding: 0 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s ease;
}

.global-cta .btn-primary {
  background: #c9a45c;
  color: #111111;
  border: 1px solid #c9a45c;
}

.global-cta .btn-primary:hover {
  background: #ffffff;
  color: #111111;
  border-color: #ffffff;
  transform: translateY(-3px);
}

.global-cta .btn-outline {
  background: transparent;
  color: #c9a45c;
  border: 1px solid rgba(201, 164, 92, 0.75);
}

.global-cta .btn-outline:hover {
  background: #c9a45c;
  color: #111111;
  border-color: #c9a45c;
  transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 768px) {
  .global-cta {
    padding: 80px 18px;
  }

  .global-cta h2 {
    font-size: clamp(28px, 10vw, 40px);
  }

  .global-cta p {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .global-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .global-cta .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* =========================================
   Global Gold Border For All Boxes / Cards
   (.service-card, .destinations-grid-section .dest-card,
   and .destination-features-section .card already have gold borders from
   earlier tasks and are not touched again here)
========================================= */
.package-card,
.partner-card,
.testimonial-card,
.contact-method-card {
  border: 1.5px solid #c9a45c !important;
  background: #ffffff !important;
  box-shadow: 0 18px 45px rgba(201, 164, 92, 0.12) !important;
}

.package-card:hover,
.partner-card:hover,
.testimonial-card:hover,
.contact-method-card:hover {
  border-color: #b88b35 !important;
  box-shadow: 0 26px 65px rgba(201, 164, 92, 0.22) !important;
}

/* Dark placeholder boxes keep their dark background but get a clearer gold edge */
.gallery-ph,
.map-placeholder,
.partner-logo-ph {
  border: 1.5px solid rgba(201, 164, 92, 0.45) !important;
}

/* Icon boxes get a clearer gold edge everywhere */
.card-icon {
  border: 1px solid rgba(201, 164, 92, 0.45) !important;
}

/* Remove top accent line from service cards (services.html) — keep the border */
.service-card::before {
  display: none !important;
}

/* Special font for Indonesia experience heading (destinations.html) */
.destination-features-section .section-title.light.indonesia-experience-title {
  font-family: 'Muslimah', 'Cairo', sans-serif !important;
  font-weight: 300 !important;
  letter-spacing: 0 !important;
  line-height: 1.35 !important;
}

/* =========================================
   Global Lucide Icon Style
   (mapped to the real classes used on this site)
========================================= */
.card-icon svg,
.service-icon svg,
.why-icon svg,
.contact-method-icon svg,
.ph-icon svg,
.partner-icon svg,
.tst-quote-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.7;
  color: #c9a45c;
}

/* ========================================
   Homepage hero background image
   ======================================== */
.hero {
  position: relative !important;
  min-height: 100vh !important;
  overflow: hidden !important;
}
.hero-bg {
  background-image: url('../../img/hero.avif') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
.hero-bg::after {
  background: none !important;
}

/* Hide old placeholder inside hero */
.hero-ph-bg {
  display: none !important;
}

/* Keep hero content above the image */
.hero .container,
.hero .hero-content {
  position: relative !important;
  z-index: 2 !important;
}

.ci-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.7;
  color: #c9a45c;
}

.file-upload-icon {
  display: inline-flex;
}

.file-upload-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.7;
  color: #c9a45c;
}

.success-icon {
  display: flex;
  justify-content: center;
}

.success-icon svg {
  width: 48px;
  height: 48px;
  stroke-width: 1.5;
  color: #c9a45c;
}

/* Boxed icon look for the white-card icon types */
.card-icon,
.service-icon,
.why-icon,
.contact-method-icon {
  color: #c9a45c;
}

.contact-method-icon {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(201, 164, 92, 0.45);
  border-radius: 14px;
  background: rgba(201, 164, 92, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Icons sitting on dark placeholder/overlay backgrounds need explicit gold color
   so they stay visible (emoji used to render their own color regardless of CSS) */
.img-placeholder-icon svg,
.ph-icon svg,
.partner-icon svg {
  color: #c9a45c;
  opacity: 0.9;
}

.partner-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

/* =========================================
   Unify card titles with services.html (Cairo, not the default Muslimah heading font)
========================================= */
.package-card h3,
.partner-card h3,
.contact-method-card h3 {
  font-family: 'Cairo', sans-serif !important;
  font-weight: 700 !important;
}

/* Gallery items: same gold-bordered card frame as the rest of the site */
.gallery-item {
  background: #ffffff;
  border: 1.5px solid #c9a45c;
  box-shadow: 0 18px 45px rgba(201, 164, 92, 0.12);
}

.gallery-item:hover {
  border-color: #b88b35;
  box-shadow: 0 26px 65px rgba(201, 164, 92, 0.2);
}

/* =========================================
   Destinations Page Mobile Card Fix (destinations.html only)
========================================= */
@media (max-width: 768px) {
  /* Full-width single column instead of the cramped 2-column tablet layout */
  .destinations-grid-section .grid-3,
  .destination-features-section .grid-4 {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  /* Destination cards (Bali, Jakarta, Bandung, Yogyakarta, Gili Islands, Coffee Farms) */
  .destinations-grid-section .dest-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  .destinations-grid-section .dest-card > div:last-child {
    padding: 1.5rem !important;
  }

  /* Feature cards (Nature, Islands, Culture, Halal restaurants, Shopping, Luxury resorts, Family trips) */
  .destination-features-section .card {
    width: 100% !important;
    max-width: 100% !important;
  }

  .destination-features-section .card-body {
    padding: 1.5rem !important;
  }

  /* Icon stays at the top, aligned with the text */
  .destinations-grid-section .img-placeholder-icon,
  .destination-features-section .card-icon {
    margin-bottom: 0.75rem;
  }

  /* Buttons: full width on small cards for a balanced look */
  .destinations-grid-section .dest-card .btn {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }
}

/* =========================================
   Unified icon box design (real classes used on this site)
========================================= */
.card-icon,
.service-icon,
.why-icon,
.contact-method-icon,
.partner-icon {
  width: 58px !important;
  height: 58px !important;
  border-radius: 14px !important;
  background: #f8f6f1 !important;
  border: 1.5px solid rgba(201, 164, 92, 0.65) !important;
  color: #c9a45c !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: none !important;
  transform: none !important;
}

.card-icon svg,
.service-icon svg,
.why-icon svg,
.contact-method-icon svg,
.partner-icon svg {
  width: 26px !important;
  height: 26px !important;
  color: #c9a45c !important;
  stroke: #c9a45c !important;
  stroke-width: 1.7 !important;
}

/* No hover color change on any card icon box */
.card:hover .card-icon,
.service-card:hover .service-icon,
.why-item:hover .why-icon,
.contact-method-card:hover .contact-method-icon,
.partner-card:hover .partner-icon {
  background: #f8f6f1 !important;
  border-color: rgba(201, 164, 92, 0.65) !important;
  color: #c9a45c !important;
  transform: none !important;
}

/* =========================================
   Destination cards: real images inside .img-placeholder
========================================= */
.img-placeholder.has-img img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  z-index: 0 !important;
}
.img-placeholder.has-img::before {
  z-index: 1 !important;
}
.img-placeholder.has-img {
  border: none !important;
}
.dest-card:has(.img-placeholder.has-img) {
  border: none !important;
  overflow: hidden !important;
}

/* =========================================
   About page: Vision & Mission real image
========================================= */
.about-vision-image {
  position: relative;
  overflow: hidden !important;
  border-radius: var(--radius-md) !important;
  min-height: 380px;
}
.about-vision-image .about-real-image {
  width: 100% !important;
  height: 100% !important;
  min-height: 380px !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
}

/* About page hero background image */
.about-hero {
  position: relative !important;
  background-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.65) 45%,
      rgba(0, 0, 0, 0.48) 100%
    ),
    url('../../img/about.avif') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  overflow: hidden !important;
}
.about-hero::before {
  background: none !important;
}

/* Keep About hero content above the overlay */
.about-hero .container {
  position: relative !important;
  z-index: 2 !important;
}

/* =========================================
   About page: Company office real image
========================================= */
.about-office-image {
  position: relative !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 18px !important;
  background: none !important;
}

.about-office-image img,
.about-office-image .about-office-real-image {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: inherit !important;
}

/* Remove old placeholder spacing if it exists */
.about-office-image .image-placeholder,
.about-office-image .placeholder-box,
.about-office-image .placeholder-content,
.about-office-image .placeholder-icon,
.about-office-image .placeholder-title,
.about-office-image .placeholder-text {
  display: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
  border: none !important;
}

/* =========================================
   About page: Indonesia partnership real image
========================================= */
.about-partnership-image {
  position: relative !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 18px !important;
  background: none !important;
}

.about-partnership-image img,
.about-partnership-image .about-partnership-real-image {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: inherit !important;
}

/* Remove spacing from any old placeholder wrapper inside the box */
.about-partnership-image .image-placeholder,
.about-partnership-image .placeholder-box,
.about-partnership-image .placeholder-content,
.about-partnership-image .placeholder-icon,
.about-partnership-image .placeholder-title,
.about-partnership-image .placeholder-text {
  display: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
  border: none !important;
}

/* =========================================
   Homepage: Intro/about section real image
========================================= */
.index-intro-image {
  position: relative !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 18px !important;
  background: none !important;
}

.index-intro-image img,
.index-intro-image .index-intro-real-image {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: inherit !important;
}

/* Remove old placeholder spacing if it exists */
.index-intro-image .image-placeholder,
.index-intro-image .placeholder-box,
.index-intro-image .placeholder-content,
.index-intro-image .placeholder-icon,
.index-intro-image .placeholder-title,
.index-intro-image .placeholder-text {
  display: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
  border: none !important;
}

/* =========================================
   Destinations grid: Bali card real image
========================================= */
.dest-card .destination-image {
  position: relative !important;
  width: 100% !important;
  overflow: hidden !important;
}

.dest-card .destination-image .destination-real-image {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
}

/* =========================================
   Discover Iraq: featured hero image box
========================================= */
.featured-image-box {
  position: relative !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 24px !important;
  background: none !important;
}

.featured-image-box .featured-box-image {
  width: 100% !important;
  height: 100% !important;
  min-height: 460px !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 24px !important;
}

.featured-image-box .placeholder,
.featured-image-box .placeholder-content,
.featured-image-box .placeholder-icon,
.featured-image-box .placeholder-text {
  display: none !important;
}

/* Religious tourism shrine image boxes */
.shrine-image-card,
.religious-card,
.iraq-shrine-card,
.light-iraq-section .image-placeholder {
  position: relative !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 18px !important;
  background: none !important;
}

.shrine-image-card img,
.shrine-real-image,
.religious-card img,
.iraq-shrine-card img,
.light-iraq-section .image-placeholder img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: inherit !important;
}

/* Hide old placeholder content if it remains */
.shrine-image-card .placeholder-content,
.shrine-image-card .placeholder-icon,
.shrine-image-card .placeholder-title,
.shrine-image-card .placeholder-text,
.religious-card .placeholder-content,
.religious-card .placeholder-icon,
.religious-card .placeholder-title,
.religious-card .placeholder-text,
.iraq-shrine-card .placeholder-content,
.iraq-shrine-card .placeholder-icon,
.iraq-shrine-card .placeholder-title,
.iraq-shrine-card .placeholder-text {
  display: none !important;
}

/* Historical tourism heritage image boxes */
.heritage-image-box {
  padding: 0 !important;
  overflow: hidden !important;
  background: none !important;
  position: relative !important;
}

.heritage-image-box .heritage-real-image {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: inherit !important;
}

/* Iraqi marshes image box */
.marshes-image-box {
  position: relative !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: none !important;
}

.marshes-image-box img,
.marshes-image-box .marshes-real-image {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: inherit !important;
}

.marshes-image-box .placeholder-content,
.marshes-image-box .placeholder-icon,
.marshes-image-box .placeholder-title,
.marshes-image-box .placeholder-text {
  display: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Modern Baghdad image boxes */
.modern-image-box {
  position: relative !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: none !important;
}

.modern-image-box img,
.modern-image-box .modern-real-image {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: inherit !important;
}

.modern-image-box .placeholder-content,
.modern-image-box .placeholder-icon,
.modern-image-box .placeholder-title,
.modern-image-box .placeholder-text {
  display: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Luxury Package Features Grid */
.package-features-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 12px 18px !important;
  margin: 28px 0 34px !important;
  padding: 22px !important;
  background: #f8f6f1 !important;
  border: 1px solid rgba(201, 164, 92, 0.28) !important;
  border-radius: 18px !important;
}

.package-feature-item {
  position: relative !important;
  padding-inline-start: 18px !important;
  color: #222222 !important;
  font-family: 'Cairo', sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.8 !important;
  text-align: right !important;
}

.package-feature-item::before {
  content: "" !important;
  position: absolute !important;
  inset-inline-start: 0 !important;
  top: 50% !important;
  width: 7px !important;
  height: 7px !important;
  background: #c9a45c !important;
  border-radius: 50% !important;
  transform: translateY(-50%) !important;
}

/* Remove old emoji/list design */
.package-card ul,
.package-card .package-features,
.package-card .features-list,
.package-card .package-features-inline,
.package-card .package-features-clean {
  display: none !important;
}

/* Mobile */
@media (max-width: 768px) {
  .package-features-grid {
    grid-template-columns: 1fr !important;
    padding: 18px !important;
  }

  .package-feature-item {
    font-size: 14px !important;
  }
}

/* Package Info Box: days / nights / price */
.package-info-box {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 10px !important;
  margin: 0 0 18px !important;
  padding: 16px !important;
  background: #f8f6f1 !important;
  border: 1px solid rgba(201, 164, 92, 0.3) !important;
  border-radius: 14px !important;
}

.package-info-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 4px !important;
  text-align: center !important;
}

.package-info-item .info-label {
  font-family: 'Cairo', sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  color: #8f6d32 !important;
}

.package-info-item strong {
  font-family: 'Cairo', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #222222 !important;
}

.package-info-item.price {
  position: relative !important;
}

.package-info-item.price::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  inset-inline-start: -10px !important;
  width: 1px !important;
  height: 100% !important;
  background: rgba(201, 164, 92, 0.3) !important;
}

.package-info-item.price strong {
  color: #c9a45c !important;
}

@media (max-width: 480px) {
  .package-info-box {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .package-info-item.price::before {
    display: none !important;
  }
}

/* ========================================
   ADMIN DASHBOARD (admin.html)
   ======================================== */
.admin-body {
  background: #f8f6f1;
  font-family: 'Cairo', sans-serif;
  color: #222222;
}

.admin-header {
  background: #111111;
  border-bottom: 2px solid #c9a45c;
}

.admin-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.admin-logo {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.admin-logo span {
  color: #c9a45c;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.admin-view-site-btn {
  color: #c9a45c;
  border: 1px solid #c9a45c;
  border-radius: 100px;
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
  white-space: nowrap;
}

.admin-view-site-btn:hover {
  background: #c9a45c;
  color: #111111;
}

.admin-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.admin-form-card,
.admin-list-section {
  background: #ffffff;
  border: 1px solid rgba(201, 164, 92, 0.3);
  border-radius: 18px;
  padding: 1.75rem;
}

.admin-form-card h2,
.admin-list-section h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 1.25rem;
}

/* ========================================
   SERVICES PAGE HERO
   ======================================== */
.services-hero {
  position: relative !important;
  background-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.65) 45%,
      rgba(0, 0, 0, 0.48) 100%
    ),
    url('../../img/ser.avif') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  overflow: hidden !important;
}

.services-hero .container,
.services-hero .hero-content,
.services-hero .page-hero-content {
  position: relative !important;
  z-index: 2 !important;
}

/* ========================================
   DESTINATIONS PAGE HERO
   ======================================== */
.destinations-hero {
  position: relative !important;
  background-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.65) 45%,
      rgba(0, 0, 0, 0.48) 100%
    ),
    url('../../img/des.avif') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  overflow: hidden !important;
}

.destinations-hero .container,
.destinations-hero .hero-content,
.destinations-hero .page-hero-content {
  position: relative !important;
  z-index: 2 !important;
}

/* ========================================
   DISCOVER IRAQ PAGE HERO
   ======================================== */
.discover-iraq-hero {
  position: relative !important;
  background-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.65) 45%,
      rgba(0, 0, 0, 0.48) 100%
    ),
    url('../../img/dis.avif') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  overflow: hidden !important;
}

.discover-iraq-hero .container,
.discover-iraq-hero .hero-content,
.discover-iraq-hero .page-hero-content {
  position: relative !important;
  z-index: 2 !important;
}

/* ========================================
   TOUR PACKAGES PAGE HERO
   ======================================== */
.tour-packages-hero {
  position: relative !important;
  background-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.65) 45%,
      rgba(0, 0, 0, 0.48) 100%
    ),
    url('../../img/br.avif') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  overflow: hidden !important;
}

.tour-packages-hero .container,
.tour-packages-hero .hero-content,
.tour-packages-hero .page-hero-content {
  position: relative !important;
  z-index: 2 !important;
}

/* ========================================
   PARTNERS PAGE HERO
   ======================================== */
.partners-hero {
  position: relative !important;
  background-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.65) 45%,
      rgba(0, 0, 0, 0.48) 100%
    ),
    url('../../img/shr.avif') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  overflow: hidden !important;
}

.partners-hero .container,
.partners-hero .hero-content,
.partners-hero .page-hero-content {
  position: relative !important;
  z-index: 2 !important;
}

/* ========================================
   GALLERY PAGE HERO
   ======================================== */
.gallery-hero {
  position: relative !important;
  background-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.65) 45%,
      rgba(0, 0, 0, 0.50) 100%
    ),
    url('../../img/kam.avif') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  overflow: hidden !important;
}

.gallery-hero .container,
.gallery-hero .hero-content,
.gallery-hero .page-hero-content {
  position: relative !important;
  z-index: 2 !important;
}

/* ========================================
   GALLERY MASONRY SECTION
   ======================================== */
.gallery-section { padding: var(--spacing-lg) 0; }

.gallery-masonry {
  columns: 4;
  column-gap: 1rem;
  margin-top: 3rem;
}

.gallery-photo {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(201, 164, 92, 0.15);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-photo:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
}

.gallery-photo img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1024px) { .gallery-masonry { columns: 3; } }
@media (max-width: 680px)  { .gallery-masonry { columns: 2; } }
@media (max-width: 380px)  { .gallery-masonry { columns: 1; } }

/* ========================================
   GALLERY LIGHTBOX
   ======================================== */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vh 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.gallery-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 8, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 0;
}

.gallery-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: 90vh;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  background: var(--dark);
  border: 1px solid rgba(201, 164, 92, 0.25);
  border-radius: 18px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.65);
}

.gallery-lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--gold);
  color: var(--white);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease;
}

.gallery-lightbox-close:hover {
  background: var(--gold);
  color: var(--dark);
}

.gallery-lightbox-media {
  position: relative;
  line-height: 0;
  flex-shrink: 0;
}

.gallery-lightbox-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(62vh, 640px);
  object-fit: contain;
  background: #050505;
}

.gallery-lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(201, 164, 92, 0.6);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease;
  z-index: 2;
  direction: ltr;
}

.gallery-lightbox-arrow:hover {
  background: var(--gold);
  color: var(--dark);
}

.gallery-lightbox-prev { left: 0.75rem; }
.gallery-lightbox-next { right: 0.75rem; }

.gallery-lightbox-caption {
  width: 100%;
  flex-shrink: 0;
  padding: 1.1rem 1.5rem 1.4rem;
  text-align: center;
}

.gallery-lightbox-caption h3 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  line-height: 1.3;
}

.gallery-lightbox-caption p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   TESTIMONIALS PAGE HERO
   ======================================== */
.testimonials-hero {
  position: relative !important;
  background-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.65) 45%,
      rgba(0, 0, 0, 0.50) 100%
    ),
    url('../../img/ara.avif') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  overflow: hidden !important;
}

.testimonials-hero .container,
.testimonials-hero .hero-content,
.testimonials-hero .page-hero-content {
  position: relative !important;
  z-index: 2 !important;
}

/* ========================================
   CONTACT PAGE HERO
   ======================================== */
.contact-hero {
  position: relative !important;
  background-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.65) 45%,
      rgba(0, 0, 0, 0.50) 100%
    ),
    url('../../img/tow.avif') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  overflow: hidden !important;
}

.contact-hero .container,
.contact-hero .hero-content,
.contact-hero .page-hero-content {
  position: relative !important;
  z-index: 2 !important;
}

/* ========================================
   IRAQ TOUR DETAIL PAGE HEROES
   ======================================== */
.iraq-tours-hero,
.religious-tours-hero,
.mesopotamia-tours-hero,
.baghdad-tours-hero,
.babylon-tour-hero,
.najaf-karbala-hero,
.basra-marshes-hero,
.airport-transfer-hero,
.visa-support-hero,
.female-friendly-hero,
.business-travel-hero {
  position: relative !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  overflow: hidden !important;
}
.iraq-tours-hero {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.65) 45%, rgba(0,0,0,0.50) 100%),
    url('../../img/tra.avif') !important;
}
.religious-tours-hero {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.65) 45%, rgba(0,0,0,0.50) 100%),
    url('../../img/kar.avif') !important;
}
.mesopotamia-tours-hero {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.65) 45%, rgba(0,0,0,0.50) 100%),
    url('../../img/1.avif') !important;
}
.baghdad-tours-hero {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.65) 45%, rgba(0,0,0,0.50) 100%),
    url('../../img/cs.avif') !important;
}
.babylon-tour-hero {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.65) 45%, rgba(0,0,0,0.50) 100%),
    url('../../img/babl.avif') !important;
}
.najaf-karbala-hero {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.65) 45%, rgba(0,0,0,0.50) 100%),
    url('../../img/ail.avif') !important;
}
.basra-marshes-hero {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.65) 45%, rgba(0,0,0,0.50) 100%),
    url('../../img/ahoar.avif') !important;
}
.airport-transfer-hero {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.65) 45%, rgba(0,0,0,0.50) 100%),
    url('../../img/ara.avif') !important;
}
.visa-support-hero {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.65) 45%, rgba(0,0,0,0.50) 100%),
    url('../../img/ser.avif') !important;
}
.female-friendly-hero {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.65) 45%, rgba(0,0,0,0.50) 100%),
    url('../../img/or.avif') !important;
}
.business-travel-hero {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.65) 45%, rgba(0,0,0,0.50) 100%),
    url('../../img/bag.avif') !important;
}
.iraq-tours-hero .container,
.iraq-tours-hero .hero-content,
.iraq-tours-hero .page-hero-content,
.religious-tours-hero .container,
.religious-tours-hero .hero-content,
.religious-tours-hero .page-hero-content,
.mesopotamia-tours-hero .container,
.mesopotamia-tours-hero .hero-content,
.mesopotamia-tours-hero .page-hero-content,
.baghdad-tours-hero .container,
.baghdad-tours-hero .hero-content,
.baghdad-tours-hero .page-hero-content,
.babylon-tour-hero .container,
.babylon-tour-hero .hero-content,
.babylon-tour-hero .page-hero-content,
.najaf-karbala-hero .container,
.najaf-karbala-hero .hero-content,
.najaf-karbala-hero .page-hero-content,
.basra-marshes-hero .container,
.basra-marshes-hero .hero-content,
.basra-marshes-hero .page-hero-content,
.airport-transfer-hero .container,
.airport-transfer-hero .hero-content,
.airport-transfer-hero .page-hero-content,
.visa-support-hero .container,
.visa-support-hero .hero-content,
.visa-support-hero .page-hero-content,
.female-friendly-hero .container,
.female-friendly-hero .hero-content,
.female-friendly-hero .page-hero-content,
.business-travel-hero .container,
.business-travel-hero .hero-content,
.business-travel-hero .page-hero-content {
  position: relative !important;
  z-index: 2 !important;
}

/* ========================================
   HERO BACKGROUND SLIDER (two-layer crossfade)
   ======================================== */
.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  will-change: transform, opacity;
  animation: heroSlide 8s linear forwards;
  transform-origin: center center;
}

.hero-bg-layer.active {
  opacity: 1;
}

@keyframes heroSlide {
  0%   { transform: scale(1.06) translateX(28px);  }
  100% { transform: scale(1.06) translateX(-28px); }
}

@media (prefers-reduced-motion: reduce) {
  /* Keep the hero crossfade (opacity only) but drop the slow pan/zoom
     motion and any scroll-driven parallax for users who asked for less. */
  .hero-bg-layer { animation: none !important; }
  .hero-bg { transition: none !important; }
}

.admin-list-section h2 span {
  color: #c9a45c;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.25rem;
}

.admin-form-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #555555;
}

.admin-form-grid label.admin-full {
  grid-column: 1 / -1;
}

.admin-form-grid input[type="text"],
.admin-form-grid input[type="checkbox"],
.admin-form-grid textarea {
  font-family: 'Cairo', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #111111;
  border: 1px solid rgba(201, 164, 92, 0.4);
  border-radius: 10px;
  padding: 0.6rem 0.8rem;
  background: #f8f6f1;
  outline: none;
  transition: border-color 0.2s ease;
}

.admin-form-grid textarea {
  resize: vertical;
  line-height: 1.6;
}

.admin-form-grid input[type="text"]:focus,
.admin-form-grid textarea:focus {
  border-color: #c9a45c;
}

.admin-checkbox {
  flex-direction: row !important;
  align-items: center;
  gap: 0.6rem !important;
}

.admin-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  padding: 0;
  flex-shrink: 0;
}

.admin-form-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.admin-btn {
  font-family: 'Cairo', sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  border-radius: 100px;
  padding: 0.7rem 1.5rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
}

.admin-btn-gold {
  background: #c9a45c;
  color: #111111;
}

.admin-btn-gold:hover {
  background: #b3904e;
}

/* ================================================================
   GRAM ELITE — COMPREHENSIVE RESPONSIVE
   Breakpoints: 1200 / 992 / 768 / 576 / 380
================================================================ */

/* ── Global overflow & box-sizing ── */
html, body { max-width: 100%; overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; }
img, video, iframe { max-width: 100%; height: auto; }

/* ================================================================
   @media (max-width: 1200px) — Large Tablet
================================================================ */
@media (max-width: 1200px) {
  .container { padding-inline: 28px; }
}

/* ================================================================
   @media (max-width: 992px) — Tablet
================================================================ */
@media (max-width: 992px) {
  .container { padding-inline: 24px; }

  /* Sections */
  .section { padding: 4rem 0; }

  /* Homepage hero */
  .hero { min-height: 85vh !important; }
  .hero-content { padding-top: 7rem !important; padding-bottom: 4rem; }
  .hero-title { font-size: clamp(2.2rem, 5.5vw, 3.5rem) !important; }
  .hero-sub { font-size: 0.97rem; line-height: 1.8; }

  /* Inner page heroes */
  .page-hero { padding: 8rem 0 4rem; }
  .page-hero-title { font-size: clamp(2rem, 5vw, 3rem); }
  .page-hero-sub { font-size: 0.95rem; }

  /* Stats */
  .stats-row { grid-template-columns: repeat(2, 1fr); }

  /* Admin grid */
  .admin-form-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   @media (max-width: 768px) — Mobile
================================================================ */
@media (max-width: 768px) {
  .container { padding-inline: 18px; }

  /* ── Homepage Hero ── */
  .hero {
    min-height: 80vh !important;
    align-items: center;
  }
  .hero-content {
    max-width: 100%;
    padding-top: 5.5rem !important;
    padding-bottom: 3.5rem;
  }
  .hero-title {
    font-size: clamp(1.9rem, 9vw, 2.8rem) !important;
    line-height: 1.2 !important;
  }
  .hero-sub {
    font-size: 0.92rem !important;
    line-height: 1.8 !important;
    max-width: 100%;
  }
  .hero-eyebrow { font-size: 0.62rem; }

  /* Override the forced row direction on mobile */
  html[dir="rtl"] .hero-actions-right,
  html[dir="rtl"] .hero-btns,
  html[dir="ltr"] .hero-actions-right,
  html[dir="ltr"] .hero-btns {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    gap: 0.75rem !important;
  }
  .hero-btns .btn,
  .hero-actions-right .btn {
    width: 100%;
    max-width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* ── Inner Page Hero ── */
  .page-hero {
    padding: 7rem 0 3.5rem;
    text-align: center;
  }
  .page-hero-title {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
    line-height: 1.25;
  }
  .page-hero-sub {
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 100%;
  }
  .breadcrumb {
    font-size: 0.7rem;
    justify-content: center;
  }

  /* ── Sections ── */
  .section { padding: 3rem 0; }
  .section-head { margin-bottom: 2rem; }
  .section-title {
    font-size: clamp(1.55rem, 7vw, 2.2rem) !important;
    line-height: 1.3 !important;
  }
  .section-subtitle {
    font-size: 0.88rem;
    line-height: 1.8;
    max-width: 100%;
  }
  .section-label { font-size: 0.68rem; }

  /* ── About ── */
  .about-split { gap: 2rem; }
  .img-placeholder.tall { min-height: 240px; }
  .about-features { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .about-feature-item { font-size: 0.8rem; padding: 0.5rem 0.75rem; }
  .why-item { gap: 0.75rem; }
  .why-icon { width: 38px; height: 38px; flex-shrink: 0; }

  /* ── Services ── */
  .service-card { padding: 1.75rem 1.5rem; }
  .service-tags { flex-wrap: wrap; gap: 0.35rem; }
  .service-tag { font-size: 0.7rem; }

  /* ── Destinations ── */
  .dest-card { min-height: auto; }

  /* ── Package cards ── */
  .packages-grid { grid-template-columns: 1fr !important; }
  .package-img { height: 200px; }
  .package-body { padding: 1.25rem; }
  .package-body h3 { font-size: 1rem; }

  /* ── Partner cards ── */
  .partner-logo-ph { height: 120px; }

  /* ── Global CTA ── */
  .global-cta { padding: 3.5rem 0; }
  .global-cta-content { text-align: center; }
  .global-cta-actions {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.75rem;
  }
  .global-cta-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* ── Testimonials ── */
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-num { font-size: 2.1rem; }
  .testimonial-card { padding: 1.5rem 1.25rem; }
  .tst-text { font-size: 0.85rem; }

  /* ── Contact ── */
  .contact-methods { grid-template-columns: 1fr !important; }
  .contact-form-card { padding: 28px 18px !important; border-radius: 16px; }
  .visa-form { grid-template-columns: 1fr !important; }
  .form-grid { grid-template-columns: 1fr !important; }
  .form-group.full { grid-column: 1 / -1; }
  .upload-box { min-height: 120px; }

  /* ── Gallery masonry ── */
  .gallery-masonry { columns: 2 !important; column-gap: 0.75rem !important; }
  .gallery-photo { margin-bottom: 0.75rem; }

  /* ── Gallery lightbox ── */
  .gallery-lightbox { padding: 2vh 0.5rem !important; }
  .gallery-lightbox-dialog {
    width: 96vw !important;
    max-height: 94vh !important;
    border-radius: 14px !important;
  }
  .gallery-lightbox-media img {
    max-height: 52vh !important;
  }
  .gallery-lightbox-close {
    top: 0.6rem !important;
    right: 0.6rem !important;
    width: 34px !important;
    height: 34px !important;
    font-size: 1.1rem !important;
  }
  .gallery-lightbox-arrow {
    width: 38px !important;
    height: 38px !important;
    font-size: 1.4rem !important;
  }
  .gallery-lightbox-prev { left: 0.5rem !important; }
  .gallery-lightbox-next { right: 0.5rem !important; }
  .gallery-lightbox-caption {
    padding: 0.75rem 1rem 1rem !important;
  }
  .gallery-lightbox-caption h3 { font-size: 0.95rem !important; }
  .gallery-lightbox-caption p { font-size: 0.8rem !important; }

  /* ── Footer ── */
  .footer-social { display: flex; justify-content: center; gap: 0.75rem; }
  .footer-contact-item { justify-content: center; }
  .footer-desc { text-align: center; }
  .footer-col { text-align: center; }
  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
    justify-content: center;
  }
}

/* ================================================================
   @media (max-width: 576px) — Small Mobile
================================================================ */
@media (max-width: 576px) {
  .container { padding-inline: 14px; }

  /* Hero */
  .hero { min-height: 72vh !important; }
  .hero-content { padding-top: 5rem !important; }
  .hero-title { font-size: clamp(1.7rem, 11vw, 2.4rem) !important; }

  /* Page hero */
  .page-hero { padding: 6.5rem 0 3rem; }
  .page-hero-title { font-size: clamp(1.5rem, 10vw, 2rem); }

  /* Typography */
  .section-title { font-size: clamp(1.4rem, 8.5vw, 1.9rem) !important; }

  /* Buttons */
  .btn { min-height: 46px; font-size: 0.84rem; }
  .btn-lg { padding: 0.85rem 1.5rem; font-size: 0.88rem; }

  /* Cards */
  .service-card { padding: 1.5rem 1.25rem; }
  .package-body { padding: 1rem 1.25rem; }
  .testimonial-card { padding: 1.25rem 1rem; }

  /* About features: single column */
  .about-features { grid-template-columns: 1fr; }

  /* Stats */
  .stats-row { gap: 0.75rem; }
  .stat-num { font-size: 1.9rem; }

  /* Gallery: single column */
  .gallery-masonry { columns: 1 !important; column-gap: 0 !important; }

  /* Contact form */
  .contact-form-card { padding: 20px 14px !important; }
  .contact-card { padding: 28px 18px; }

  /* Partners */
  .partner-body { padding: 1.25rem; }

  /* Footer gap */
  .footer-inner { gap: 2rem; }
}

/* ================================================================
   @media (max-width: 380px) — Very Small
================================================================ */
@media (max-width: 380px) {
  .hero { min-height: 68vh !important; }
  .hero-title { font-size: clamp(1.5rem, 12vw, 2rem) !important; }
  .page-hero-title { font-size: clamp(1.35rem, 11vw, 1.8rem); }
  .section-title { font-size: clamp(1.25rem, 9.5vw, 1.7rem) !important; }
  .btn-lg { padding: 0.8rem 1.25rem; }
  .gallery-lightbox-prev { left: 0.35rem !important; }
  .gallery-lightbox-next { right: 0.35rem !important; }
}

.admin-btn-outline {
  background: transparent;
  border-color: rgba(201, 164, 92, 0.5);
  color: #111111;
}

.admin-btn-outline:hover {
  border-color: #c9a45c;
  background: rgba(201, 164, 92, 0.08);
}

.admin-btn-danger {
  background: transparent;
  border-color: rgba(200, 60, 60, 0.4);
  color: #c0392b;
}

.admin-btn-danger:hover {
  background: rgba(200, 60, 60, 0.08);
}

.admin-btn-sm {
  font-size: 0.76rem;
  padding: 0.45rem 1rem;
}

/* ── Site Logo Image ── */
.site-logo {
  display: inline-flex !important;
  align-items: center !important;
  flex-direction: row !important;
  gap: 12px !important;
  text-decoration: none !important;
  direction: ltr !important;
  flex-shrink: 0;
}

.site-logo img {
  order: 1 !important;
  height: 48px !important;
  width: auto !important;
  display: block !important;
  object-fit: contain !important;
}

.site-logo-words {
  order: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  line-height: 1.15 !important;
  text-align: left !important;
}

.site-logo-words strong {
  font-family: 'Cairo', sans-serif !important;
  font-size: 19px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  letter-spacing: 0.5px !important;
  white-space: nowrap !important;
}

.site-logo-words small {
  font-family: 'Cairo', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #c9a45c !important;
  margin-top: 4px !important;
  white-space: nowrap !important;
}

@media (max-width: 768px) {
  .site-logo {
    gap: 8px !important;
  }
  .site-logo img {
    height: 38px !important;
  }
  .site-logo-words strong {
    font-size: 15px !important;
  }
  .site-logo-words small {
    font-size: 10px !important;
  }
}

.admin-packages-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.admin-package-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(201, 164, 92, 0.25);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  background: #f8f6f1;
}

.admin-package-thumb {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #1a1810;
}

.admin-package-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.admin-package-thumb-empty {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1810 0%, #252218 50%, #1a1810 100%);
}

.admin-package-info {
  flex: 1;
  min-width: 0;
}

.admin-package-info h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 0.25rem;
}

.admin-package-info p {
  font-size: 0.78rem;
  color: #777777;
}

.admin-package-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.admin-empty {
  font-size: 0.86rem;
  color: #777777;
  text-align: center;
  padding: 1.5rem 0;
}

.packages-loading,
.packages-empty,
.packages-error {
  grid-column: 1 / -1;
  font-size: 0.95rem;
  color: var(--muted);
  text-align: center;
  padding: 3rem 1rem;
}

.packages-error { color: #b23b3b; }

@media (max-width: 700px) {
  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-package-item {
    flex-wrap: wrap;
  }
}

/* Admin: package image upload box */
.admin-upload-box {
  position: relative;
  width: 100%;
  min-height: 220px;
  border: 2px dashed rgba(201, 164, 92, 0.45);
  border-radius: 16px;
  background: #f8f6f1;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.admin-upload-box:hover {
  border-color: #c9a45c;
  background: rgba(201, 164, 92, 0.06);
}

.admin-upload-input {
  display: none;
}

.admin-upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: #8f6d32;
  font-family: 'Cairo', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  pointer-events: none;
}

.admin-upload-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 164, 92, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 400;
  color: #c9a45c;
}

.admin-upload-preview {
  display: none;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

.admin-upload-remove {
  display: none;
  position: absolute;
  top: 0.6rem;
  inset-inline-end: 0.6rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: rgba(17, 17, 17, 0.75);
  color: #ffffff;
  font-size: 0.85rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.admin-upload-remove:hover {
  background: #c0392b;
}

/* ===============================
   LANGUAGE DIRECTION FIXES
================================ */

html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}

html[dir="ltr"] body {
  direction: ltr;
  text-align: left;
}

/* Header & nav direction */
html[dir="ltr"] .main-nav { direction: ltr !important; }
html[dir="rtl"] .main-nav { direction: rtl !important; }

/* General content blocks */
html[dir="ltr"] .section,
html[dir="ltr"] .service-card,
html[dir="ltr"] .destination-card,
html[dir="ltr"] .package-card,
html[dir="ltr"] .partner-card,
html[dir="ltr"] .testimonial-card,
html[dir="ltr"] .contact-card,
html[dir="ltr"] .about-split,
html[dir="ltr"] .card,
html[dir="ltr"] .card-body {
  direction: ltr !important;
  text-align: left !important;
}

html[dir="rtl"] .section,
html[dir="rtl"] .service-card,
html[dir="rtl"] .destination-card,
html[dir="rtl"] .package-card,
html[dir="rtl"] .partner-card,
html[dir="rtl"] .testimonial-card,
html[dir="rtl"] .contact-card,
html[dir="rtl"] .about-split,
html[dir="rtl"] .card,
html[dir="rtl"] .card-body {
  direction: rtl !important;
  text-align: right !important;
}

/* Keep section headings centered in both directions */
.section-head.center,
.section-head.center *,
.global-cta-content,
.gallery-section .section-head {
  text-align: center !important;
}

/* Page heroes (inner pages) stay centered */
.page-hero-content {
  text-align: center !important;
}

/* Footer */
html[dir="ltr"] .site-footer { direction: ltr !important; text-align: left !important; }
html[dir="rtl"] .site-footer { direction: rtl !important; text-align: right !important; }

html[dir="ltr"] .footer-contact-item {
  flex-direction: row !important;
  justify-content: flex-start !important;
  text-align: left !important;
}
html[dir="rtl"] .footer-contact-item {
  flex-direction: row !important;
  justify-content: flex-start !important;
  text-align: right !important;
}

/* Forms */
html[dir="ltr"] input,
html[dir="ltr"] textarea,
html[dir="ltr"] select,
html[dir="ltr"] label {
  direction: ltr !important;
  text-align: left !important;
}
html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select,
html[dir="rtl"] label {
  direction: rtl !important;
  text-align: right !important;
}

/* Buttons stay centered */
.btn, .button { text-align: center !important; }

/* Logo always LTR */
.site-logo { direction: ltr !important; }
.site-logo-words { text-align: left !important; align-items: flex-start !important; }

/* Lists */
html[dir="ltr"] li { direction: ltr !important; text-align: left !important; }
html[dir="rtl"] li { direction: rtl !important; text-align: right !important; }

/* service tags / feature badges */
html[dir="ltr"] .service-tags,
html[dir="ltr"] .service-tag {
  direction: ltr !important;
  text-align: left !important;
}
html[dir="rtl"] .service-tags,
html[dir="rtl"] .service-tag {
  direction: rtl !important;
  text-align: right !important;
}

/* ===============================
   English Alignment Fix - Why Us / Feature Rows
================================ */

/* LTR — English mode */
html[dir="ltr"] .why-section {
  direction: ltr !important;
}

html[dir="ltr"] .why-item {
  direction: ltr !important;
  text-align: left !important;
  flex-direction: row !important;
}

html[dir="ltr"] .why-text {
  direction: ltr !important;
  text-align: left !important;
}

html[dir="ltr"] .why-text h4,
html[dir="ltr"] .why-text h3,
html[dir="ltr"] .why-text p {
  direction: ltr !important;
  text-align: left !important;
}

/* Icon on the left in English */
html[dir="ltr"] .why-icon {
  order: 1 !important;
  margin-left: 0 !important;
  margin-right: 16px !important;
  flex-shrink: 0 !important;
}

html[dir="ltr"] .why-text {
  order: 2 !important;
}

/* RTL — Arabic mode (unchanged) */
html[dir="rtl"] .why-item {
  direction: rtl !important;
  text-align: right !important;
  flex-direction: row !important;
}

html[dir="rtl"] .why-text {
  direction: rtl !important;
  text-align: right !important;
}

html[dir="rtl"] .why-text h4,
html[dir="rtl"] .why-text h3,
html[dir="rtl"] .why-text p {
  direction: rtl !important;
  text-align: right !important;
}

html[dir="rtl"] .why-icon {
  order: 1 !important;
  margin-right: 0 !important;
  margin-left: 16px !important;
  flex-shrink: 0 !important;
}

html[dir="rtl"] .why-text {
  order: 2 !important;
}

/* ===============================
   WHY CHOOSE - ENGLISH LAYOUT FIX
   English: Text Left (col 1) / Image Right (col 2)
================================ */

/* Swap grid columns in LTR */
html[dir="ltr"] .why-layout-fixed .why-image-side {
  grid-column: 2 !important;
  order: 2 !important;
}

html[dir="ltr"] .why-layout-fixed .why-points-side {
  grid-column: 1 !important;
  order: 1 !important;
  direction: ltr !important;
  text-align: left !important;
  align-items: flex-start !important;
}

/* Section label / title alignment */
html[dir="ltr"] .why-points-side .section-label,
html[dir="ltr"] .why-points-side .section-title,
html[dir="ltr"] .why-points-side .gold-line {
  align-self: flex-start !important;
  text-align: left !important;
}

/* Why items - LTR row */
html[dir="ltr"] .why-layout-fixed .why-points-side .why-item {
  direction: ltr !important;
  flex-direction: row !important;
  justify-content: flex-start !important;
  text-align: left !important;
}

/* Icon left, text right in LTR */
html[dir="ltr"] .why-layout-fixed .why-points-side .why-icon {
  flex: 0 0 auto !important;
  order: 0 !important;
  margin-right: 16px !important;
  margin-left: 0 !important;
}

html[dir="ltr"] .why-layout-fixed .why-points-side .why-text {
  flex: 1 !important;
  order: 1 !important;
  direction: ltr !important;
  text-align: left !important;
}

html[dir="ltr"] .why-layout-fixed .why-points-side h4,
html[dir="ltr"] .why-layout-fixed .why-points-side p {
  direction: ltr !important;
  text-align: left !important;
}

/* Mobile: stack vertically, text on top */
@media (max-width: 992px) {
  html[dir="ltr"] .why-layout-fixed .why-image-side,
  html[dir="ltr"] .why-layout-fixed .why-points-side {
    grid-column: 1 !important;
  }
  html[dir="ltr"] .why-layout-fixed .why-points-side { order: 1 !important; }
  html[dir="ltr"] .why-layout-fixed .why-image-side  { order: 2 !important; }
}

/* ================================================
   HERO — ENGLISH (LTR): LEFT-ALIGNED LAYOUT
================================================= */

html[dir="ltr"] .hero .hero-content {
  direction: ltr !important;
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

html[dir="ltr"] .hero-content .hero-eyebrow {
  justify-content: flex-start !important;
}

html[dir="ltr"] .hero-actions-right,
html[dir="ltr"] .hero-btns {
  direction: ltr !important;
  justify-content: flex-start !important;
  width: 100% !important;
}

html[dir="ltr"] .hero-title {
  align-items: flex-start !important;
}

/* ================================================
   HERO — ARABIC (RTL): RIGHT-ALIGNED LAYOUT
================================================= */

html[dir="rtl"] .hero .hero-content {
  direction: rtl !important;
  text-align: right !important;
  margin-right: 0 !important;
  margin-left: auto !important;
}

/* Eyebrow row: from the right */
html[dir="rtl"] .hero-content .hero-eyebrow {
  justify-content: flex-end !important;
  flex-direction: row-reverse !important;
}

/* Title: right-aligned, flex items from right */
html[dir="rtl"] .hero-content .hero-title {
  align-items: flex-end !important;
  text-align: right !important;
}

html[dir="rtl"] .hero-content .hero-title-line {
  text-align: right !important;
}

/* Subtitle: right-aligned */
html[dir="rtl"] .hero-content .hero-sub {
  text-align: right !important;
  direction: rtl !important;
}

/* Buttons: start from the right */
html[dir="rtl"] .hero-actions-right,
html[dir="rtl"] .hero-btns {
  direction: ltr !important;
  justify-content: flex-end !important;
  width: 100% !important;
}

/* ================================================
   ARABIC RTL — PAGE CONTENT RIGHT ALIGNMENT
   Applies to all OTHER sections (not hero)
================================================= */

/* ── General sections: right in Arabic ── */
html[dir="rtl"] .section-head:not(.center) {
  text-align: right !important;
}

html[dir="rtl"] .section-head:not(.center) .section-label,
html[dir="rtl"] .section-head:not(.center) .section-title,
html[dir="rtl"] .section-head:not(.center) .section-subtitle {
  text-align: right !important;
}

html[dir="rtl"] .page-hero-content {
  text-align: right !important;
}

/* ── Cards, service cards, partners ── */
html[dir="rtl"] .service-card,
html[dir="rtl"] .card-body,
html[dir="rtl"] .package-card .package-body,
html[dir="rtl"] .partner-card {
  text-align: right !important;
  direction: rtl !important;
}

/* ── About split sections ── */
html[dir="rtl"] .about-split,
html[dir="rtl"] .about-split p,
html[dir="rtl"] .about-split h2,
html[dir="rtl"] .about-split .section-label {
  text-align: right !important;
  direction: rtl !important;
}

/* ── Destination cards / gallery ── */
html[dir="rtl"] .dest-card,
html[dir="rtl"] .dest-body,
html[dir="rtl"] .dest-title,
html[dir="rtl"] .dest-sub {
  text-align: right !important;
  direction: rtl !important;
}

/* ── Global CTA stays centered in Arabic ── */
html[dir="rtl"] .global-cta-content {
  text-align: center !important;
}

/* ── Section headings with .center class stay centered in Arabic ── */
html[dir="rtl"] .section-head.center,
html[dir="rtl"] .section-head.center .section-label,
html[dir="rtl"] .section-head.center .section-title,
html[dir="rtl"] .section-head.center .section-subtitle {
  text-align: center !important;
}

/* ================================================
   HERO TITLE — NO-WRAP LINES FIX
   Prevents "From Iraq to the\nworld…" line breaks
================================================= */

@media (max-width: 900px) {
  .hero-title {
    font-size: clamp(1.9rem, 4.8vw, 3rem) !important;
  }
}

@media (max-width: 600px) {
  .hero-title-line {
    white-space: normal !important;   /* allow wrap on very small screens */
  }
  .hero-title {
    font-size: clamp(1.5rem, 6.5vw, 2.2rem) !important;
  }
}

/* ================================================
   HERO — ENGLISH: SHIFT CONTENT LEFT FOR BALANCE
================================================= */

html[dir="ltr"] .hero .hero-content {
  transform: translateX(-120px) !important;
}

@media (max-width: 991px) {
  html[dir="ltr"] .hero .hero-content {
    transform: translateX(0) !important;
  }
}

/* ================================================
   HEADER & FOOTER — WHITE BACKGROUND THEME
   Applies to all pages, both AR and EN modes
================================================= */

/* ── Header: transparent base, ::before handles white bg via opacity ── */
.site-header {
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: none !important;
}

/* White background layer — fades in/out via opacity */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.42s ease, box-shadow 0.42s ease;
}

.site-header.header-scrolled::before,
.site-header.scrolled::before {
  opacity: 1;
}

/* Shadow on the header element itself when scrolled */
.site-header.header-scrolled,
.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(0,0,0,0.08) !important;
}

/* Nav links: smooth color transition */
.nav-list a {
  color: rgba(255,255,255,0.88) !important;
  transition: color 0.4s ease !important;
}
.site-header.header-scrolled .nav-list a,
.site-header.scrolled .nav-list a {
  color: #2c2c2c !important;
}
.nav-list a:hover,
.nav-list a.active {
  color: var(--gold) !important;
}

/* Logo text */
.site-logo-words strong {
  color: #ffffff !important;
  transition: color 0.4s ease !important;
}
.site-header.header-scrolled .site-logo-words strong,
.site-header.scrolled .site-logo-words strong {
  color: #111111 !important;
}

/* Language button */
.lang-btn {
  border: 1px solid rgba(255,255,255,0.35) !important;
  color: var(--gold) !important;
  background: transparent !important;
  transition: border-color 0.4s ease, background 0.35s ease !important;
}
.site-header.header-scrolled .lang-btn,
.site-header.scrolled .lang-btn {
  border: 1px solid rgba(0,0,0,0.15) !important;
}
.lang-btn:hover {
  border-color: var(--gold) !important;
  background: rgba(201,164,92,0.07) !important;
}

/* Hamburger bars */
.menu-toggle span {
  background: rgba(255,255,255,0.9) !important;
  transition: background 0.4s ease !important;
}
.site-header.header-scrolled .menu-toggle span,
.site-header.scrolled .menu-toggle span {
  background: #111111 !important;
}

/* ── Footer: white background ── */
.site-footer {
  background: #ffffff !important;
  border-top: 1px solid rgba(0,0,0,0.08) !important;
}
.footer-inner {
  border-bottom-color: rgba(0,0,0,0.08) !important;
}

/* Footer column headings */
.footer-col h4 {
  color: #111111 !important;
  border-bottom: none !important;
  letter-spacing: 0.12em;
}

/* Footer body text */
.footer-desc {
  color: #666666 !important;
}

/* Footer quick links */
.footer-links a {
  color: #555555 !important;
}
.footer-links a:hover {
  color: var(--gold) !important;
}

/* Footer contact items */
.footer-contact-item .icon {
  color: var(--gold) !important;
}
.footer-contact-item span {
  color: #555555 !important;
}

/* Footer bottom bar */
.footer-bottom {
  color: #888888 !important;
}
.footer-bottom a {
  color: var(--gold) !important;
}

/* Footer social links */
.social-link {
  border-color: rgba(0,0,0,0.12) !important;
  color: #555555 !important;
}
.social-link:hover {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

/* Footer logo placeholder (GE circle) */
.footer-brand .logo-placeholder {
  background: rgba(201,164,92,0.06) !important;
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}
.footer-brand .logo-text { color: #111111 !important; }
.footer-brand .logo-text .logo-ar { color: var(--gold) !important; }

/* ================================================
   GLOBAL CTA — WHITE + GOLD REDESIGN
   Replaces dark background with elegant white/gold
================================================= */

.global-cta {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(201, 162, 77, 0.07) 0%, transparent 55%),
    linear-gradient(160deg, #ffffff 0%, #fdf9f0 50%, #faf5e8 100%) !important;
  border-top: 1px solid rgba(201, 164, 92, 0.28) !important;
  border-bottom: 1px solid rgba(201, 164, 92, 0.28) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 0 60px rgba(201, 164, 92, 0.06) !important;
  position: relative !important;
}

/* Subtle decorative gold line at top */
.global-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 2px;
  background: linear-gradient(90deg, transparent, #c9a45c, transparent);
  border-radius: 999px;
}

/* Heading: dark on white */
.global-cta h2 {
  color: #111111 !important;
}

/* Body text: medium grey */
.global-cta p {
  color: #555555 !important;
}

/* Primary button: gold fill, dark text */
.global-cta .btn-primary {
  background: #c9a45c !important;
  color: #111111 !important;
  border-color: #c9a45c !important;
  box-shadow: 0 4px 18px rgba(201, 164, 92, 0.30) !important;
}
.global-cta .btn-primary:hover {
  background: #b8913f !important;
  border-color: #b8913f !important;
  color: #ffffff !important;
  box-shadow: 0 6px 24px rgba(201, 164, 92, 0.40) !important;
  transform: translateY(-3px) !important;
}

/* Outline button: transparent, gold border & text */
.global-cta .btn-outline {
  background: transparent !important;
  color: #c9a45c !important;
  border: 1.5px solid rgba(201, 164, 92, 0.70) !important;
}
.global-cta .btn-outline:hover {
  background: rgba(201, 164, 92, 0.08) !important;
  border-color: #c9a45c !important;
  color: #a07830 !important;
  transform: translateY(-3px) !important;
}

/* ================================================
   HERO — MOBILE FIX (max-width: 768px)
   Applies to all pages, both AR and EN
   Does NOT affect desktop
================================================= */

@media (max-width: 768px) {

  /* ── Hero section ── */
  .hero {
    min-height: 100vh !important;
    align-items: center !important;
  }

  /* Full-width block with horizontal padding so text never touches the edge */
  .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    padding-inline: 24px !important;
    padding-top: 7rem !important;     /* clears the fixed header */
    padding-bottom: 4rem !important;
    box-sizing: border-box !important;
  }

  /* Remove desktop left-shift transform on LTR (EN) */
  html[dir="ltr"] .hero .hero-content {
    transform: translateX(0) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* RTL: keep content flush left (no extra margin) */
  html[dir="rtl"] .hero .hero-content {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Allow title lines to wrap on narrow screens
     (overrides the desktop nowrap we added for EN layout) */
  .hero-title-line {
    white-space: normal !important;
  }

  /* Title size & spacing */
  .hero-title {
    font-size: clamp(1.85rem, 10vw, 2.7rem) !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    margin-bottom: 1rem !important;
  }

  /* Eyebrow label */
  .hero-eyebrow {
    font-size: 0.6rem !important;
    letter-spacing: 0.14em !important;
    margin-bottom: 1rem !important;
  }

  /* Subtitle */
  .hero-sub {
    font-size: 0.92rem !important;
    line-height: 1.78 !important;
    max-width: 100% !important;
    margin-bottom: 2rem !important;
  }

  /* ── Hero buttons: full-width column ── */
  html[dir="rtl"] .hero-actions-right,
  html[dir="rtl"] .hero-btns,
  html[dir="ltr"] .hero-actions-right,
  html[dir="ltr"] .hero-btns {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    gap: 12px !important;
  }

  .hero-btns .btn,
  .hero-actions-right .btn {
    width: 100% !important;
    height: 52px !important;
    min-width: 0 !important;
    justify-content: center !important;
    text-align: center !important;
    font-size: 0.95rem !important;
    border-radius: 8px !important;
  }

  /* ── Header: tighter on mobile ── */
  .site-header {
    padding: 0.9rem 0 !important;
  }
  .site-header.scrolled,
  .site-header.header-scrolled {
    padding: 0.7rem 0 !important;
  }
  .header-inner {
    padding: 0 1.25rem !important;
  }
  .site-logo img {
    height: 36px !important;
  }
  .site-logo-words strong {
    font-size: 14px !important;
  }
  .site-logo-words small {
    font-size: 10px !important;
  }

}

/* ================================================
   HERO SLIDER — MOBILE FIX
   Removes translate (causes black gaps on mobile).
   Scale-only zoom from center. No horizontal drift.
================================================= */

@media (max-width: 768px) {

  html, body { overflow-x: hidden; }

  .hero,
  .hero-bg-slider {
    overflow: hidden;
    width: 100%;
  }

  .hero-bg-layer {
    width: 100% !important;
    transform-origin: center center !important;
  }

  /* Override kenBurnsA on mobile: scale only, no translate */
  @keyframes kenBurnsA {
    0%   { transform: scale(1.04); }
    50%  { transform: scale(1.10); }
    100% { transform: scale(1.04); }
  }

  /* Override kenBurnsB on mobile: scale only, offset start */
  @keyframes kenBurnsB {
    0%   { transform: scale(1.10); }
    50%  { transform: scale(1.04); }
    100% { transform: scale(1.10); }
  }

  /* Slower duration so zoom is smooth and not jarring */
  .hero-bg-layer-a { animation-duration: 22s !important; }
  .hero-bg-layer-b { animation-duration: 24s !important; }

}

/* ================================================
   HERO MOBILE — PREVENT EDGE GAPS (FINAL FIX)
   Scale-only zoom, oversized layer, no translate.
   max-width: 768px only — desktop untouched.
================================================= */

@media (max-width: 768px) {

  /* Clip everything: no overflow can escape */
  .hero                { overflow: hidden !important; }
  .hero-bg-slider      { overflow: hidden !important; width: 100% !important; height: 100% !important; }
  .hero-bg-layer       { overflow: hidden !important; }

  /* Oversized inner image: always larger than viewport.
     12% bleed on every side → gap-free at any zoom level. */
  .hero-bg-img {
    position: absolute !important;
    inset: -12% !important;
    width: calc(100% + 24%) !important;
    height: calc(100% + 24%) !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    transform-origin: center center !important;
    /* Scale-only — absolutely no translate */
    animation: heroMobileZoom 20s ease-in-out infinite !important;
  }

  @keyframes heroMobileZoom {
    0%   { transform: scale(1.00); }
    50%  { transform: scale(1.08); }
    100% { transform: scale(1.00); }
  }

}

/* ================================================
   HERO MOBILE — CORRECT TARGETED FIX
   Target: .hero-bg-layer (the real element in HTML)
   Replace heroSlide (has translateX) with scale-only.
   Layer oversized 120% → no edge visible at any zoom.
   max-width: 768px only — desktop not touched.
================================================= */

@media (max-width: 768px) {

  html, body { overflow-x: hidden !important; }

  .hero          { overflow: hidden !important; }
  .hero-bg-slider{ overflow: hidden !important; }

  /* Override: bigger than viewport so scale never shows edge */
  .hero-bg-layer {
    inset: -10% !important;
    width: 120% !important;
    height: 120% !important;
    background-size: cover !important;
    background-position: center center !important;
    transform-origin: center center !important;
    /* Replace heroSlide (has translateX) with scale-only */
    animation: heroLayerMobileZoom 10s ease-in-out infinite alternate !important;
  }

  @keyframes heroLayerMobileZoom {
    0%   { transform: scale(1.00); }
    100% { transform: scale(1.08); }
  }

}

/* ================================================
   HERO MOBILE — LEFT TO RIGHT PAN (index.html)
   .hero-bg-layer is the real element in the HTML.
   inset:-12% makes layer 124% wide → pan never
   reveals an edge even at translateX(±6%).
================================================= */

@media (max-width: 768px) {

  html, body { overflow-x: hidden !important; }
  .hero       { overflow: hidden !important;  }

  .hero-bg-layer {
    inset: -12% !important;
    width: 124% !important;
    height: 124% !important;
    background-size: cover !important;
    background-position: center center !important;
    transform-origin: center center !important;
    will-change: transform !important;
    /* Left-to-right pan with gentle scale */
    animation: heroLayerMobilePan 14s ease-in-out infinite alternate !important;
  }

  @keyframes heroLayerMobilePan {
    0%   { transform: scale(1.08) translateX(-6%); }
    100% { transform: scale(1.08) translateX(6%); }
  }

}

/* ================================================
   HERO OVERLAY — UNIFIED (AR = EN)
   Removes directional gradient difference.
   Same overlay in Arabic and English modes.
================================================= */

.hero-overlay,
html[dir="rtl"] .hero-overlay,
html[dir="ltr"] .hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(12, 12, 12, 0.70) 0%,
    rgba(12, 12, 12, 0.55) 60%,
    rgba(12, 12, 12, 0.45) 100%
  ) !important;
}

/* Mobile: same overlay in both languages */
@media (max-width: 992px) {
  .hero-overlay,
  html[dir="rtl"] .hero-overlay,
  html[dir="ltr"] .hero-overlay {
    background: rgba(12, 12, 12, 0.75) !important;
  }
}

/* ================================================
   HERO BUTTONS MOBILE — SIDE BY SIDE (index only)
   Overrides previous flex-direction:column rules.
   Both AR and EN: buttons in one row, smaller size.
================================================= */

@media (max-width: 768px) {

  /* Row layout — override all previous column rules */
  html[dir="rtl"] .hero-actions-right,
  html[dir="rtl"] .hero-btns,
  html[dir="ltr"] .hero-actions-right,
  html[dir="ltr"] .hero-btns {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    margin-top: 24px;
  }

  /* RTL: right button first visually, row starts from the right */
  html[dir="rtl"] .hero-actions-right,
  html[dir="rtl"] .hero-btns {
    direction: rtl !important;
    justify-content: flex-end !important;
  }

  /* LTR: left button first visually, row starts from the left */
  html[dir="ltr"] .hero-actions-right,
  html[dir="ltr"] .hero-btns {
    direction: ltr !important;
    justify-content: flex-start !important;
  }

  /* Each button: smaller, shared width */
  .hero-btns .btn,
  .hero-actions-right .btn {
    flex: 1 1 auto !important;
    width: auto !important;
    max-width: 155px !important;
    min-width: 110px !important;
    height: 46px !important;
    min-height: 46px !important;
    padding: 0 14px !important;
    font-size: 0.88rem !important;
    white-space: nowrap !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

}

/* ================================================
   INTRO SECTION ("بوابتك للفخامة") — MOBILE FIX
   Image above text on mobile. Desktop untouched.
   Classes from index.html:
     wrapper   = .about-split
     text col  = .fade-in-left  (first in DOM)
     image col = .fade-in-right (second in DOM)
================================================= */

@media (max-width: 768px) {

  /* Stack vertically */
  .section-off .about-split {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
  }

  /* Image column: move to top */
  .section-off .about-split .fade-in-right {
    order: 1 !important;
    width: 100% !important;
  }

  /* Text column: below the image */
  .section-off .about-split .fade-in-left {
    order: 2 !important;
    width: 100% !important;
  }

  /* Image fills its container */
  .section-off .about-split .img-placeholder,
  .section-off .about-split .index-intro-image {
    width: 100% !important;
    min-height: 240px !important;
    height: auto !important;
    margin-bottom: 0 !important;
  }

  .section-off .about-split .index-intro-real-image {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover !important;
  }

}

/* ================================================
   INTRO SECTION — REMOVE IMAGE WHITESPACE (MOBILE)
   .img-placeholder.tall has min-height:380px which
   creates gap below the image on mobile. Override
   only for this specific section's image box.
================================================= */

@media (max-width: 768px) {

  .section-off .about-split .img-placeholder.tall {
    min-height: unset !important;
    height: auto !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  .section-off .about-split .index-intro-real-image {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover !important;
    position: static !important;
  }

}

/* ================================================
   HOME SERVICES SECTION — MOBILE RESIZE
   Only .home-services in index.html, ≤768px.
   Classes: .service-card / .service-icon / .service-title
================================================= */

@media (max-width: 768px) {

  /* Card padding & gap */
  .home-services .service-card {
    padding: 1.25rem 1rem !important;
    gap: 0.75rem !important;
  }

  /* Icon box */
  .home-services .service-icon {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    border-radius: 14px !important;
    flex-shrink: 0 !important;
  }

  /* Icon inside the box */
  .home-services .service-icon i,
  .home-services .service-icon svg {
    width: 24px !important;
    height: 24px !important;
    font-size: 24px !important;
    stroke-width: 1.6 !important;
  }

  /* Card title */
  .home-services .service-title {
    font-size: 1rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0.35rem !important;
  }

  /* Card description */
  .home-services .service-card p {
    font-size: 0.85rem !important;
    line-height: 1.75 !important;
    margin-bottom: 0.75rem !important;
  }

  /* Grid: single column on mobile */
  .home-services .grid-3 {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }

}

/* ================================================
   FOOTER MOBILE — ALIGNMENT FIX
   Arabic (RTL): right-aligned.
   English (LTR): left-aligned.
   Overrides previous center-only rules (line 3417).
================================================= */

@media (max-width: 768px) {

  /* ── Arabic (RTL) ── */
  html[dir="rtl"] .site-footer {
    direction: rtl !important;
    text-align: right !important;
  }

  html[dir="rtl"] .footer-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    gap: 1.5rem !important;
  }

  html[dir="rtl"] .footer-brand {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    text-align: right !important;
  }

  html[dir="rtl"] .footer-desc {
    text-align: right !important;
    max-width: 100% !important;
  }

  html[dir="rtl"] .footer-social {
    justify-content: flex-end !important;
    width: 100% !important;
  }

  html[dir="rtl"] .footer-col {
    width: 100% !important;
    text-align: right !important;
  }

  html[dir="rtl"] .footer-col h4 {
    text-align: right !important;
  }

  html[dir="rtl"] .footer-links {
    align-items: flex-end !important;
    text-align: right !important;
  }

  html[dir="rtl"] .footer-contact-item {
    justify-content: flex-end !important;
    flex-direction: row-reverse !important;
  }

  html[dir="rtl"] .footer-bottom {
    text-align: right !important;
    justify-content: space-between !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
  }

  /* ── English (LTR) ── */
  html[dir="ltr"] .site-footer {
    direction: ltr !important;
    text-align: left !important;
  }

  html[dir="ltr"] .footer-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1.5rem !important;
  }

  html[dir="ltr"] .footer-brand {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  html[dir="ltr"] .footer-desc {
    text-align: left !important;
  }

  html[dir="ltr"] .footer-social {
    justify-content: flex-start !important;
    width: 100% !important;
  }

  html[dir="ltr"] .footer-col {
    width: 100% !important;
    text-align: left !important;
  }

  html[dir="ltr"] .footer-col h4 {
    text-align: left !important;
  }

  html[dir="ltr"] .footer-links {
    align-items: flex-start !important;
    text-align: left !important;
  }

  html[dir="ltr"] .footer-contact-item {
    justify-content: flex-start !important;
    flex-direction: row !important;
  }

  html[dir="ltr"] .footer-bottom {
    text-align: left !important;
    justify-content: space-between !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
  }

}

/* ================================================
   FOOTER — DIRECTION-AWARE ALIGNMENT
   Arabic (RTL): right-aligned
   English (LTR): left-aligned
   Works on all screen sizes, triggers on lang switch.
================================================= */

/* ── Arabic (RTL) ── */
html[dir="rtl"] .site-footer,
html[dir="rtl"] .footer-inner,
html[dir="rtl"] .footer-brand,
html[dir="rtl"] .footer-col,
html[dir="rtl"] .footer-desc,
html[dir="rtl"] .footer-links,
html[dir="rtl"] .footer-bottom {
  text-align: right !important;
  direction: rtl !important;
}

html[dir="rtl"] .footer-brand {
  align-items: flex-end !important;
}

html[dir="rtl"] .footer-col h4 {
  text-align: right !important;
}

html[dir="rtl"] .footer-links {
  align-items: flex-end !important;
}

html[dir="rtl"] .footer-links a {
  text-align: right !important;
}

html[dir="rtl"] .footer-social {
  justify-content: flex-end !important;
}

html[dir="rtl"] .footer-contact-item {
  flex-direction: row-reverse !important;
  justify-content: flex-end !important;
  text-align: right !important;
}

html[dir="rtl"] .footer-bottom {
  flex-direction: row-reverse !important;
}

/* ── English (LTR) ── */
html[dir="ltr"] .site-footer,
html[dir="ltr"] .footer-inner,
html[dir="ltr"] .footer-brand,
html[dir="ltr"] .footer-col,
html[dir="ltr"] .footer-desc,
html[dir="ltr"] .footer-links,
html[dir="ltr"] .footer-bottom {
  text-align: left !important;
  direction: ltr !important;
}

html[dir="ltr"] .footer-brand {
  align-items: flex-start !important;
}

html[dir="ltr"] .footer-col h4 {
  text-align: left !important;
}

html[dir="ltr"] .footer-links {
  align-items: flex-start !important;
}

html[dir="ltr"] .footer-links a {
  text-align: left !important;
}

html[dir="ltr"] .footer-social {
  justify-content: flex-start !important;
}

html[dir="ltr"] .footer-contact-item {
  flex-direction: row !important;
  justify-content: flex-start !important;
  text-align: left !important;
}

html[dir="ltr"] .footer-bottom {
  flex-direction: row !important;
}

/* ================================================
   FOOTER — ARABIC RTL FINAL FIX
   Comprehensive right-alignment for Arabic mode.
   Does NOT touch English (LTR) mode at all.
================================================= */

/* Base direction */
html[dir="rtl"] .site-footer {
  direction: rtl !important;
  text-align: right !important;
}

/* All direct text inside footer → right */
html[dir="rtl"] .site-footer * {
  text-align: right !important;
}

/* Footer grid direction */
html[dir="rtl"] .footer-inner {
  direction: rtl !important;
}

/* Brand column */
html[dir="rtl"] .footer-brand {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
}

html[dir="rtl"] .footer-desc {
  text-align: right !important;
  max-width: 100% !important;
}

/* Social icons: right side, horizontal row */
html[dir="rtl"] .footer-social {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-end !important;
  gap: 0.75rem !important;
}

/* Each footer column */
html[dir="rtl"] .footer-col {
  text-align: right !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
}

html[dir="rtl"] .footer-col h4 {
  text-align: right !important;
  width: 100% !important;
}

/* Links inside columns */
html[dir="rtl"] .footer-links {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  text-align: right !important;
}

html[dir="rtl"] .footer-links a {
  text-align: right !important;
  width: 100% !important;
}

/* Contact items: icon on right, text beside it */
html[dir="rtl"] .footer-contact-item {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
  gap: 0.6rem !important;
  text-align: right !important;
}

/* Footer bottom bar */
html[dir="rtl"] .footer-bottom {
  direction: rtl !important;
  text-align: right !important;
  flex-direction: row-reverse !important;
}

/* ── Mobile: stack columns, all right-aligned ── */
@media (max-width: 768px) {

  html[dir="rtl"] .footer-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 1.5rem !important;
  }

  html[dir="rtl"] .footer-brand,
  html[dir="rtl"] .footer-col {
    width: 100% !important;
    align-items: flex-end !important;
    text-align: right !important;
  }

  html[dir="rtl"] .footer-links {
    align-items: flex-end !important;
    width: 100% !important;
  }

  html[dir="rtl"] .footer-social {
    justify-content: flex-end !important;
    width: 100% !important;
  }

  html[dir="rtl"] .footer-bottom {
    flex-direction: column !important;
    align-items: flex-end !important;
    gap: 0.4rem !important;
  }

}

/* ================================================
   FOOTER — ARABIC RTL CORRECTED FINAL FIX
   Previous blocks had wrong flex-end in RTL context.
   This block uses direction:rtl so flex-start = right.
================================================= */

/* ── Base: force RTL context on whole footer ── */
html[dir="rtl"] .site-footer {
  direction: rtl !important;
  text-align: right !important;
}

/* ── footer-inner grid stays as-is (desktop 4-col grid) ── */
html[dir="rtl"] .footer-inner {
  direction: rtl !important;
}

/* ── Brand column ── */
html[dir="rtl"] .footer-brand {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important; /* flex-start in RTL = right */
  text-align: right !important;
}

html[dir="rtl"] .footer-desc {
  text-align: right !important;
}

/* ── Social icons: direction:ltr + flex-end = right side visually ── */
html[dir="rtl"] .footer-social {
  display: flex !important;
  flex-direction: row !important;
  direction: ltr !important;          /* keeps emoji order correct */
  justify-content: flex-end !important; /* right side in LTR context */
  gap: 0.75rem !important;
}

/* ── Footer columns ── */
html[dir="rtl"] .footer-col {
  text-align: right !important;
}

html[dir="rtl"] .footer-col h4 {
  text-align: right !important;
}

/* ── Links: right-aligned, text starts from right ── */
html[dir="rtl"] .footer-links {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important; /* flex-start in RTL = right */
  text-align: right !important;
}

html[dir="rtl"] .footer-links a {
  text-align: right !important;
  direction: rtl !important;
}

/* ── Contact items: icon on right, text beside it ──
   HTML order: <span.icon> then <span>text</span>
   With direction:rtl, first child (icon) goes to the right. ── */
html[dir="rtl"] .footer-contact-item {
  display: flex !important;
  flex-direction: row !important;     /* NO row-reverse */
  direction: rtl !important;          /* icon → right, text → left of icon */
  justify-content: flex-start !important; /* flex-start in RTL = right */
  align-items: center !important;
  gap: 0.6rem !important;
  text-align: right !important;
}

html[dir="rtl"] .footer-contact-item span {
  text-align: right !important;
}

/* ── Bottom bar ── */
html[dir="rtl"] .footer-bottom {
  direction: rtl !important;
  text-align: right !important;
  flex-direction: row !important;
  justify-content: space-between !important;
}

/* ── Mobile override ── */
@media (max-width: 768px) {
  html[dir="rtl"] .footer-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
  }
  html[dir="rtl"] .footer-brand,
  html[dir="rtl"] .footer-col {
    width: 100% !important;
  }
  html[dir="rtl"] .footer-bottom {
    flex-direction: column !important;
    gap: 0.4rem !important;
    align-items: flex-start !important; /* flex-start in RTL = right */
  }
}

/* ================================================
   FOOTER CONTACT ITEMS + BOTTOM BAR — ARABIC FIX
   Specifically targets the contact column and
   the copyright bar. Arabic only.
================================================= */

/* Contact column heading */
html[dir="rtl"] .footer-col h4 {
  text-align: right !important;
  width: 100% !important;
}

/*
  Contact items — HTML: <span.icon> then <span>text</span>
  direction:rtl  → items flow right-to-left inside the flex row
  flex-start     → pack items toward the right (RTL start)
  Result: 📞 on the far right, number text to its left ✓
*/
html[dir="rtl"] .footer-contact-item {
  display: flex !important;
  flex-direction: row !important;
  direction: rtl !important;
  justify-content: flex-start !important;
  align-items: center !important;
  gap: 0.55rem !important;
  margin-bottom: 0.65rem !important;
  width: 100% !important;
}

html[dir="rtl"] .footer-contact-item .icon {
  flex-shrink: 0 !important;
  order: 0 !important;        /* icon stays first = rightmost in RTL */
}

html[dir="rtl"] .footer-contact-item span:not(.icon) {
  direction: ltr !important;   /* phone/email stays LTR for readability */
  text-align: right !important;
}

/* Bottom copyright bar */
html[dir="rtl"] .footer-bottom {
  display: flex !important;
  flex-direction: row-reverse !important;  /* © 2024 on left, copyright on right */
  justify-content: space-between !important;
  align-items: center !important;
  direction: rtl !important;
  text-align: right !important;
  width: 100% !important;
}

html[dir="rtl"] .footer-bottom span,
html[dir="rtl"] .footer-bottom a {
  text-align: right !important;
}

/* Mobile: stack bottom bar */
@media (max-width: 768px) {
  html[dir="rtl"] .footer-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;   /* flex-start in RTL = right */
    gap: 0.35rem !important;
  }
  html[dir="rtl"] .footer-contact-item {
    justify-content: flex-start !important;
  }
}

/* ================================================
   MOBILE NAV — LUXURY LIGHT REDESIGN (≤900px)
   Classes: .mobile-nav / .mobile-nav-header /
   .mobile-nav-logo / .mobile-nav-links /
   .mobile-nav-footer / .mobile-nav-cta / .mobile-nav-close
================================================= */

@media (max-width: 900px) {

  /* ── Panel base ── */
  .mobile-nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    position: fixed !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    z-index: 1200 !important;
    background: #f8f6f1 !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 0 !important;
    overflow-y: auto !important;
    /* Hidden state */
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-14px) !important;
    transition: opacity 0.32s ease, transform 0.32s ease, visibility 0.32s !important;
  }

  .mobile-nav.open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  /* ── Header row: logo + close ── */
  .mobile-nav-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    flex: 0 0 auto !important;
    padding: 1.25rem 1.5rem !important;
    border-bottom: 1px solid rgba(201,164,92,0.22) !important;
  }

  .mobile-nav-logo {
    display: flex !important;
    align-items: center !important;
  }

  .mobile-nav-logo img {
    height: 46px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    display: block !important;
  }

  .mobile-nav-close {
    position: static !important;
    width: 38px !important;
    height: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: rgba(201,164,92,0.08) !important;
    border: 1px solid rgba(201,164,92,0.35) !important;
    color: #111111 !important;
    font-size: 1.1rem !important;
    line-height: 1 !important;
    cursor: pointer !important;
    transition: background 0.2s ease, color 0.2s ease !important;
  }

  .mobile-nav-close:hover {
    background: #c9a45c !important;
    color: #ffffff !important;
    border-color: #c9a45c !important;
  }

  /* ── Links list ── */
  .mobile-nav-links {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    flex: 1 1 auto !important;
    padding: 0.5rem 1.5rem 2rem !important;
  }

  .mobile-nav-links a {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    color: #1a1a1a !important;
    font-size: 1.05rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em !important;
    padding: 1rem 0.25rem !important;
    margin: 0 !important;
    border-radius: 0 !important;
    border-bottom: 1px solid rgba(201,164,92,0.18) !important;
    transition: color 0.2s ease !important;
  }

  .mobile-nav-links a:last-child {
    border-bottom: none !important;
  }

  .mobile-nav-links a:hover,
  .mobile-nav-links a:focus,
  .mobile-nav-links a.active {
    color: #c9a45c !important;
    background: transparent !important;
  }

  /* ── Staggered entrance ── */
  .mobile-nav.open .mobile-nav-links a:nth-child(1)  { animation: mNavIn 0.3s 0.05s both; }
  .mobile-nav.open .mobile-nav-links a:nth-child(2)  { animation: mNavIn 0.3s 0.08s both; }
  .mobile-nav.open .mobile-nav-links a:nth-child(3)  { animation: mNavIn 0.3s 0.11s both; }
  .mobile-nav.open .mobile-nav-links a:nth-child(4)  { animation: mNavIn 0.3s 0.14s both; }
  .mobile-nav.open .mobile-nav-links a:nth-child(5)  { animation: mNavIn 0.3s 0.17s both; }
  .mobile-nav.open .mobile-nav-links a:nth-child(6)  { animation: mNavIn 0.3s 0.20s both; }
  .mobile-nav.open .mobile-nav-links a:nth-child(7)  { animation: mNavIn 0.3s 0.23s both; }
  .mobile-nav.open .mobile-nav-links a:nth-child(8)  { animation: mNavIn 0.3s 0.26s both; }
  .mobile-nav.open .mobile-nav-links a:nth-child(9)  { animation: mNavIn 0.3s 0.29s both; }
  .mobile-nav.open .mobile-nav-links a:nth-child(10) { animation: mNavIn 0.3s 0.32s both; }

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

  /* ── RTL: right-aligned ── */
  html[dir="rtl"] .mobile-nav {
    direction: rtl !important;
  }
  html[dir="rtl"] .mobile-nav-links a {
    text-align: right !important;
  }

  /* ── LTR: left-aligned ── */
  html[dir="ltr"] .mobile-nav-links a {
    text-align: left !important;
  }
}

/* ================================================
   HEADER LOGO — ICON ONLY (hide text beside logo)
================================================= */

.site-logo-words {
  display: none !important;
}

/* ================================================
   HEADER LOGO — LARGER SIZE (icon-only mode)
================================================= */

.site-logo img {
  height: 64px !important;
  width: auto !important;
  max-height: 64px !important;
  display: block !important;
  object-fit: contain !important;
}

@media (max-width: 768px) {
  .site-logo img {
    height: 52px !important;
    max-height: 52px !important;
  }
}

/* ================================================
   FOOTER LOGO
================================================= */

.footer-logo {
  display: flex;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 70px;
  height: auto;
  display: block;
  object-fit: contain;
}

html[dir="rtl"] .footer-logo { justify-content: flex-end; }
html[dir="ltr"] .footer-logo { justify-content: flex-start; }

@media (max-width: 768px) {
  .footer-logo img { width: 60px; }
}

/* ================================================
   FOOTER v3 — LUXURY LIGHT REDESIGN
   HTML: .site-footer > .footer-container > .footer-main (4-col grid)
         .footer-column (.footer-brand / .footer-links / .footer-services / .footer-contact)
         .footer-contact-list  .footer-social-link
         .footer-logo-link  .footer-logo-text  .footer-description
         .footer-bottom
================================================= */

/* Override old dark footer */
.site-footer {
  background: #f8f6f1 !important;
  border-top: 2px solid var(--gold) !important;
  padding-top: 0 !important;
}

/* Container */
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* 4-column responsive grid */
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem 4rem;
  padding: 4rem 0 3rem;
  border-bottom: 1px solid #e0d5bc;
}
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
  .footer-main { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 0 2rem; }
}
html[dir="rtl"] .footer-main { direction: rtl; }
html[dir="ltr"] .footer-main { direction: ltr; }

/* Column base */
.footer-column {
  display: flex !important;
  flex-direction: column !important;
}

/* ---- Brand column ---- */
.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1.25rem;
}
.footer-logo-link img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.footer-logo-text strong {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.footer-logo-text small {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
}
.footer-description {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

/* Social icon row */
.footer-social {
  display: flex !important;
  flex-direction: row !important;
  direction: ltr !important;
  gap: 0.5rem !important;
  flex-wrap: wrap !important;
}
.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ddd5bf;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  background: #fff;
  flex-shrink: 0;
}
.footer-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: #fffdf5;
}
.footer-social-link svg,
.footer-social-link i {
  width: 15px;
  height: 15px;
  pointer-events: none;
}

/* ---- Column headings ---- */
.footer-column > h4 {
  font-size: 0.69rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.15em !important;
  color: #1a1a1a !important;
  margin-bottom: 1.25rem !important;
  padding-bottom: 0.55rem !important;
  border-bottom: 1px solid #e0d5bc !important;
  width: 100% !important;
}

/* ---- Nav link lists ---- */
.footer-column > ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.6rem !important;
}
.footer-column > ul > li > a {
  font-size: 0.82rem;
  color: #777;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
  line-height: 1.45;
}
.footer-column > ul > li > a:hover { color: var(--gold); }

/* ---- RTL alignment ---- */
html[dir="rtl"] .footer-column {
  align-items: flex-end !important;
  text-align: right !important;
}
html[dir="rtl"] .footer-logo-link { flex-direction: row-reverse; }
html[dir="rtl"] .footer-logo-text { align-items: flex-end; }
html[dir="rtl"] .footer-description { text-align: right; }
html[dir="rtl"] .footer-social { justify-content: flex-end !important; }
html[dir="rtl"] .footer-column > h4 { text-align: right !important; }
html[dir="rtl"] .footer-column > ul { align-items: flex-end !important; }
html[dir="rtl"] .footer-column > ul > li > a { text-align: right !important; }

/* ---- LTR alignment ---- */
html[dir="ltr"] .footer-column {
  align-items: flex-start !important;
  text-align: left !important;
}
html[dir="ltr"] .footer-logo-link { flex-direction: row; }
html[dir="ltr"] .footer-logo-text { align-items: flex-start; }
html[dir="ltr"] .footer-description { text-align: left; }
html[dir="ltr"] .footer-social { justify-content: flex-start !important; }
html[dir="ltr"] .footer-column > h4 { text-align: left !important; }
html[dir="ltr"] .footer-column > ul { align-items: flex-start !important; }
html[dir="ltr"] .footer-column > ul > li > a { text-align: left !important; }

/* ---- Contact list ---- */
.footer-contact-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
}
.footer-contact-list > li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.55rem !important;
  font-size: 0.82rem !important;
  color: #777 !important;
}
.footer-contact-list > li svg,
.footer-contact-list > li i {
  width: 14px !important;
  height: 14px !important;
  color: var(--gold) !important;
  flex-shrink: 0 !important;
  margin-top: 0.18rem !important;
}
.footer-contact-list > li a {
  color: #777;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-list > li a:hover { color: var(--gold); }
html[dir="rtl"] .footer-contact-list { align-items: flex-end !important; }
html[dir="rtl"] .footer-contact-list > li {
  flex-direction: row-reverse !important;
  justify-content: flex-end !important;
  text-align: right !important;
}
html[dir="ltr"] .footer-contact-list { align-items: flex-start !important; }
html[dir="ltr"] .footer-contact-list > li {
  flex-direction: row !important;
  justify-content: flex-start !important;
  text-align: left !important;
}

/* ---- Footer bottom bar ---- */
.footer-bottom {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 1.25rem 0 !important;
  flex-wrap: wrap !important;
  gap: 0.75rem !important;
}
.footer-bottom p {
  font-size: 0.76rem !important;
  color: #999 !important;
  margin: 0 !important;
}
html[dir="rtl"] .footer-bottom { direction: rtl !important; }
html[dir="ltr"] .footer-bottom { direction: ltr !important; }

@media (max-width: 640px) {
  .footer-container { padding: 0 1.25rem; }
  .footer-bottom {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.4rem !important;
  }
  .footer-description { max-width: 100%; }
}

/* ===============================
   FOOTER RTL FULL ALIGNMENT FIX
   Arabic only
================================ */

html[dir="rtl"] .site-footer {
  direction: rtl !important;
  text-align: right !important;
}

html[dir="rtl"] .site-footer .footer-container,
html[dir="rtl"] .site-footer .footer-main,
html[dir="rtl"] .site-footer .footer-column,
html[dir="rtl"] .site-footer .footer-brand,
html[dir="rtl"] .site-footer .footer-links,
html[dir="rtl"] .site-footer .footer-services,
html[dir="rtl"] .site-footer .footer-contact {
  direction: rtl !important;
  text-align: right !important;
}

html[dir="rtl"] .site-footer .footer-main {
  display: grid !important;
  direction: rtl !important;
}

/* Brand */
html[dir="rtl"] .site-footer .footer-logo {
  justify-content: flex-start !important;
  direction: ltr !important;
  margin-right: 0 !important;
  margin-left: auto !important;
}

html[dir="rtl"] .site-footer .footer-brand {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

html[dir="rtl"] .site-footer .footer-logo-text {
  text-align: left !important;
  align-items: flex-start !important;
}

html[dir="rtl"] .site-footer .footer-description {
  text-align: right !important;
  margin-right: 0 !important;
  margin-left: auto !important;
}

/* Social icons */
html[dir="rtl"] .site-footer .footer-social {
  justify-content: flex-start !important;
  direction: rtl !important;
}

/* Headings */
html[dir="rtl"] .site-footer .footer-column h4 {
  text-align: right !important;
  width: 100% !important;
}

html[dir="rtl"] .site-footer .footer-column h4::after {
  right: 0 !important;
  left: auto !important;
  transform: none !important;
}

/* Lists */
html[dir="rtl"] .site-footer .footer-column ul {
  padding-right: 0 !important;
  padding-left: 0 !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  text-align: right !important;
}

html[dir="rtl"] .site-footer .footer-column li {
  text-align: right !important;
  direction: rtl !important;
}

html[dir="rtl"] .site-footer .footer-column a {
  text-align: right !important;
}

/* Contact list */
html[dir="rtl"] .site-footer .footer-contact-list li {
  display: flex !important;
  flex-direction: row-reverse !important;
  justify-content: flex-start !important;
  align-items: center !important;
  gap: 12px !important;
  text-align: right !important;
}

html[dir="rtl"] .site-footer .footer-contact-list svg,
html[dir="rtl"] .site-footer .footer-contact-list i {
  flex: 0 0 auto !important;
}

/* Footer bottom */
html[dir="rtl"] .site-footer .footer-bottom {
  direction: rtl !important;
  text-align: right !important;
}

html[dir="rtl"] .site-footer .footer-bottom p {
  text-align: right !important;
}

/* Mobile Arabic footer */
@media (max-width: 650px) {
  html[dir="rtl"] .site-footer .footer-column,
  html[dir="rtl"] .site-footer .footer-brand,
  html[dir="rtl"] .site-footer .footer-links,
  html[dir="rtl"] .site-footer .footer-services,
  html[dir="rtl"] .site-footer .footer-contact {
    text-align: right !important;
    align-items: flex-start !important;
  }

  html[dir="rtl"] .site-footer .footer-logo {
    justify-content: flex-start !important;
    margin-right: 0 !important;
    margin-left: auto !important;
  }

  html[dir="rtl"] .site-footer .footer-description {
    text-align: right !important;
    margin-right: 0 !important;
    margin-left: auto !important;
  }

  html[dir="rtl"] .site-footer .footer-social {
    justify-content: flex-start !important;
  }

  html[dir="rtl"] .site-footer .footer-column h4 {
    text-align: right !important;
  }

  html[dir="rtl"] .site-footer .footer-column h4::after {
    right: 0 !important;
    left: auto !important;
    transform: none !important;
  }

  html[dir="rtl"] .site-footer .footer-column li {
    text-align: right !important;
    justify-content: flex-start !important;
  }

  html[dir="rtl"] .site-footer .footer-contact-list li {
    justify-content: flex-start !important;
    flex-direction: row-reverse !important;
  }

  html[dir="rtl"] .site-footer .footer-bottom {
    align-items: flex-start !important;
    text-align: right !important;
  }

  html[dir="rtl"] .site-footer .footer-bottom p {
    width: 100% !important;
    text-align: right !important;
  }
}

/* ==================================================
   FINAL RTL FOOTER ALIGNMENT FIX
   Arabic footer must be physically right aligned
================================================== */

html[dir="rtl"] .site-footer {
  direction: rtl !important;
  text-align: right !important;
}

html[dir="rtl"] .site-footer .footer-main {
  direction: rtl !important;
  justify-items: end !important;
  text-align: right !important;
}

html[dir="rtl"] .site-footer .footer-column,
html[dir="rtl"] .site-footer .footer-brand,
html[dir="rtl"] .site-footer .footer-links,
html[dir="rtl"] .site-footer .footer-services,
html[dir="rtl"] .site-footer .footer-contact {
  direction: rtl !important;
  text-align: right !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
}

html[dir="rtl"] .site-footer .footer-column {
  display: flex !important;
  flex-direction: column !important;
}

html[dir="rtl"] .site-footer .footer-logo-link {
  display: inline-flex !important;
  flex-direction: row-reverse !important;
  justify-content: flex-end !important;
  align-items: center !important;
  width: 100% !important;
}

html[dir="rtl"] .site-footer .footer-logo-text {
  align-items: flex-end !important;
  text-align: right !important;
}

html[dir="rtl"] .site-footer .footer-description {
  direction: rtl !important;
  text-align: right !important;
  margin-right: 0 !important;
  margin-left: auto !important;
  max-width: 430px !important;
}

html[dir="rtl"] .site-footer .footer-social {
  direction: ltr !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  width: 100% !important;
}

html[dir="rtl"] .site-footer .footer-column h4 {
  direction: rtl !important;
  text-align: right !important;
  width: 100% !important;
  align-self: stretch !important;
}

html[dir="rtl"] .site-footer .footer-column h4::after {
  right: 0 !important;
  left: auto !important;
  transform: none !important;
}

html[dir="rtl"] .site-footer .footer-column ul {
  direction: rtl !important;
  text-align: right !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  align-items: flex-end !important;
}

html[dir="rtl"] .site-footer .footer-column li {
  direction: rtl !important;
  text-align: right !important;
  width: 100% !important;
  justify-content: flex-end !important;
}

html[dir="rtl"] .site-footer .footer-column a,
html[dir="rtl"] .site-footer .footer-column span {
  direction: rtl !important;
  text-align: right !important;
}

html[dir="rtl"] .site-footer .footer-contact-list li {
  display: flex !important;
  flex-direction: row-reverse !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 12px !important;
  text-align: right !important;
}

html[dir="rtl"] .site-footer .footer-contact-list svg,
html[dir="rtl"] .site-footer .footer-contact-list i {
  flex: 0 0 auto !important;
}

html[dir="rtl"] .site-footer .footer-bottom {
  direction: rtl !important;
  text-align: right !important;
  justify-content: space-between !important;
}

html[dir="rtl"] .site-footer .footer-bottom p {
  direction: rtl !important;
  text-align: right !important;
}

@media (max-width: 650px) {
  html[dir="rtl"] .site-footer .footer-main {
    justify-items: end !important;
  }

  html[dir="rtl"] .site-footer .footer-column,
  html[dir="rtl"] .site-footer .footer-brand,
  html[dir="rtl"] .site-footer .footer-links,
  html[dir="rtl"] .site-footer .footer-services,
  html[dir="rtl"] .site-footer .footer-contact {
    text-align: right !important;
    align-items: flex-end !important;
    width: 100% !important;
  }

  html[dir="rtl"] .site-footer .footer-logo-link {
    justify-content: flex-end !important;
    width: 100% !important;
  }

  html[dir="rtl"] .site-footer .footer-description {
    text-align: right !important;
    margin-right: 0 !important;
    margin-left: auto !important;
  }

  html[dir="rtl"] .site-footer .footer-social {
    justify-content: flex-end !important;
  }

  html[dir="rtl"] .site-footer .footer-column h4 {
    text-align: right !important;
  }

  html[dir="rtl"] .site-footer .footer-column h4::after {
    right: 0 !important;
    left: auto !important;
    transform: none !important;
  }

  html[dir="rtl"] .site-footer .footer-column ul,
  html[dir="rtl"] .site-footer .footer-column li {
    text-align: right !important;
    justify-content: flex-end !important;
  }

  html[dir="rtl"] .site-footer .footer-contact-list li {
    justify-content: flex-end !important;
    flex-direction: row-reverse !important;
  }

  html[dir="rtl"] .site-footer .footer-bottom {
    align-items: flex-end !important;
    text-align: right !important;
  }

  html[dir="rtl"] .site-footer .footer-bottom p {
    width: 100% !important;
    text-align: right !important;
  }
}

/* ==================================================
   MOBILE IMAGE FIRST LAYOUT FIX
   Images should appear above text on mobile
================================================== */

@media (max-width: 768px) {

  /* General two-column sections */
  .split-section,
  .section-row,
  .content-image-row,
  .image-content-row,
  .about-row,
  .destination-row,
  .discover-row,
  .service-row,
  .feature-row-large,
  .two-column,
  .two-col,
  .content-wrapper,
  .section-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
  }

  /* Image blocks always first on mobile */
  .section-image,
  .image-box,
  .image-wrapper,
  .media-box,
  .visual-box,
  .gallery-box,
  .photos-box,
  .discover-images,
  .destination-images,
  .about-image,
  .service-image,
  .feature-image {
    order: 1 !important;
    width: 100% !important;
  }

  /* Text/content blocks always second on mobile */
  .section-content,
  .content-box,
  .text-box,
  .content-text,
  .about-content,
  .destination-content,
  .discover-content,
  .service-content,
  .feature-content {
    order: 2 !important;
    width: 100% !important;
  }

  /* Images should keep natural proportions */
  .section-image img,
  .image-box img,
  .image-wrapper img,
  .media-box img,
  .visual-box img,
  .gallery-box img,
  .photos-box img,
  .discover-images img,
  .destination-images img,
  .about-image img,
  .service-image img,
  .feature-image img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }

  /* Small image galleries on mobile */
  .image-grid,
  .gallery-grid-small,
  .discover-gallery,
  .destination-gallery,
  .holy-cities-gallery,
  .iraq-gallery,
  .photos-grid {
    order: 1 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    width: 100% !important;
  }

  .image-grid img,
  .gallery-grid-small img,
  .discover-gallery img,
  .destination-gallery img,
  .holy-cities-gallery img,
  .iraq-gallery img,
  .photos-grid img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
    border-radius: 18px !important;
    display: block !important;
  }

  /* If there are forced desktop heights, cancel them on mobile */
  .image-card,
  .gallery-card,
  .photo-card,
  .discover-image-card,
  .destination-image-card {
    height: auto !important;
    min-height: unset !important;
    max-height: none !important;
  }

  .image-card img,
  .gallery-card img,
  .photo-card img,
  .discover-image-card img,
  .destination-image-card img {
    height: auto !important;
    min-height: unset !important;
    max-height: none !important;
  }

  /* ================================================
     PROJECT-SPECIFIC: about-split image-first fix
     Uses :has() to detect image vs text children
  ================================================= */

  /* Convert about-split to flex for order control */
  .about-split {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }

  /* Any direct child of about-split that CONTAINS images → appear first */
  .about-split > *:has(.img-placeholder),
  .about-split > *:has(.iraq-imgs) {
    order: 1 !important;
    width: 100% !important;
  }

  /* Any direct child of about-split WITHOUT images (text/content) → appear second */
  .about-split > *:not(:has(.img-placeholder)):not(:has(.iraq-imgs)) {
    order: 2 !important;
    width: 100% !important;
  }

  /* Keep 4-image grids as 2x2 on mobile (shrine, modern images etc) */
  .about-split .grid-2 {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
    width: 100% !important;
  }

  /* Image natural proportions inside about-split */
  .about-split .img-placeholder {
    width: 100% !important;
    height: auto !important;
  }

  .about-split .img-placeholder img,
  .about-split .iraq-imgs img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    display: block !important;
  }

  /* Reduce forced min-heights on image cards to prevent distortion */
  .shrine-image-card,
  .heritage-image-box,
  .modern-image-box {
    min-height: 130px !important;
  }
}

/* ==================================================
   MOBILE IMAGE + CONTENT SECTION FIX
   Fix spacing after moving images above content
================================================== */

@media (max-width: 768px) {

  /* Parent sections that contain image grid + text */
  .split-section,
  .section-row,
  .content-image-row,
  .image-content-row,
  .about-row,
  .destination-row,
  .discover-row,
  .service-row,
  .two-column,
  .two-col,
  .mobile-image-first {
    display: flex !important;
    flex-direction: column !important;
    gap: 26px !important;
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  /* Image area must be first */
  .section-image,
  .image-box,
  .image-wrapper,
  .media-box,
  .visual-box,
  .gallery-box,
  .photos-box,
  .discover-images,
  .destination-images,
  .holy-cities-gallery,
  .iraq-gallery,
  .about-image,
  .service-image {
    order: 1 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Text area must be below images */
  .section-content,
  .content-box,
  .text-box,
  .content-text,
  .about-content,
  .destination-content,
  .discover-content,
  .service-content {
    order: 2 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Remove large top spacing before text */
  .section-content,
  .content-box,
  .text-box,
  .content-text,
  .destination-content,
  .discover-content {
    margin-top: 0 !important;
  }

  /* Image grid 2x2 on mobile */
  .image-grid,
  .gallery-grid-small,
  .discover-gallery,
  .destination-gallery,
  .holy-cities-gallery,
  .iraq-gallery,
  .photos-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    width: 100% !important;
    margin: 0 0 28px 0 !important;
    padding: 0 !important;
  }

  /* Image cards: remove empty white height */
  .image-card,
  .gallery-card,
  .photo-card,
  .discover-image-card,
  .destination-image-card,
  .holy-city-card,
  .iraq-image-card {
    height: auto !important;
    min-height: unset !important;
    max-height: none !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    border-radius: 18px !important;
    background: transparent !important;
  }

  /* Images must fill their cards nicely */
  .image-grid img,
  .gallery-grid-small img,
  .discover-gallery img,
  .destination-gallery img,
  .holy-cities-gallery img,
  .iraq-gallery img,
  .photos-grid img,
  .image-card img,
  .gallery-card img,
  .photo-card img,
  .discover-image-card img,
  .destination-image-card img {
    width: 100% !important;
    height: 150px !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 18px !important;
  }

  /* Text alignment on Arabic mobile */
  html[dir="rtl"] .section-content,
  html[dir="rtl"] .content-box,
  html[dir="rtl"] .text-box,
  html[dir="rtl"] .content-text,
  html[dir="rtl"] .destination-content,
  html[dir="rtl"] .discover-content {
    text-align: right !important;
    direction: rtl !important;
  }

  /* Section label */
  .section-label,
  .eyebrow,
  .section-kicker {
    margin-bottom: 14px !important;
    justify-content: flex-start !important;
  }

  html[dir="rtl"] .section-label,
  html[dir="rtl"] .eyebrow,
  html[dir="rtl"] .section-kicker {
    text-align: right !important;
    justify-content: flex-end !important;
  }

  /* Main title on mobile */
  .section-title,
  .content-title,
  .destination-content h2,
  .discover-content h2,
  .section-content h2,
  .text-box h2 {
    font-size: clamp(34px, 10vw, 46px) !important;
    line-height: 1.35 !important;
    margin: 0 0 22px 0 !important;
    max-width: 100% !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  /* Paragraph */
  .section-content p,
  .content-text p,
  .destination-content p,
  .discover-content p,
  .text-box p {
    font-size: 16px !important;
    line-height: 2 !important;
    margin: 0 0 26px 0 !important;
  }

  /* Button spacing */
  .section-content .btn,
  .content-text .btn,
  .destination-content .btn,
  .discover-content .btn,
  .text-box .btn {
    margin-top: 10px !important;
  }

  /* ================================================
     PROJECT-SPECIFIC FIX: about-split spacing &
     image card white space (actual HTML classes)
  ================================================= */

  /* Tighter gap between image block and content block */
  .about-split {
    gap: 1.25rem !important;
  }

  /* Fix white background in image cards inside light sections
     .light-iraq-section .img-placeholder sets background:#fff
     We override with higher specificity + !important */
  .about-split .img-placeholder.shrine-image-card,
  .about-split .img-placeholder.heritage-image-box,
  .about-split .img-placeholder.modern-image-box {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    min-height: 0 !important;
    aspect-ratio: 4 / 3 !important;
  }

  /* Single tall images: natural aspect ratio instead of fixed min-height */
  .about-split .img-placeholder.tall {
    min-height: 0 !important;
    aspect-ratio: 3 / 2 !important;
  }

  /* Section title: clean wrapping on mobile */
  .about-split .section-title {
    word-break: normal !important;
    overflow-wrap: break-word !important;
  }
}

/* Smaller phones */
@media (max-width: 430px) {
  .image-grid img,
  .gallery-grid-small img,
  .discover-gallery img,
  .destination-gallery img,
  .holy-cities-gallery img,
  .iraq-gallery img,
  .photos-grid img,
  .image-card img,
  .gallery-card img,
  .photo-card img,
  .discover-image-card img,
  .destination-image-card img {
    height: 135px !important;
  }

  .section-title,
  .content-title,
  .destination-content h2,
  .discover-content h2,
  .section-content h2,
  .text-box h2 {
    font-size: 36px !important;
    line-height: 1.35 !important;
  }
}

/* ==================================================
   MOBILE HISTORY SECTION IMAGE FIRST FIX
================================================== */

@media (max-width: 768px) {
  .history-mobile-section,
  .historical-section,
  .history-section,
  .discover-history,
  .iraq-history-section,
  .ancient-section,
  .history-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 26px !important;
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }

  .history-mobile-section .history-image,
  .historical-section .history-image,
  .history-section .history-image,
  .discover-history .history-image,
  .iraq-history-section .history-image,
  .ancient-section .history-image,
  .history-row .history-image,
  .history-mobile-section .section-image {
    order: 1 !important;
    width: 100% !important;
    margin: 0 0 22px 0 !important;
    padding: 0 !important;
  }

  .history-mobile-section .history-content,
  .historical-section .history-content,
  .history-section .history-content,
  .discover-history .history-content,
  .iraq-history-section .history-content,
  .ancient-section .history-content,
  .history-row .history-content,
  .history-mobile-section .section-content {
    order: 2 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .history-image img,
  .history-mobile-section .section-image img,
  .historical-section img,
  .history-section img,
  .discover-history img,
  .iraq-history-section img,
  .ancient-section img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 18px !important;
  }

  html[dir="rtl"] .history-content,
  html[dir="rtl"] .history-mobile-section .section-content,
  html[dir="rtl"] .historical-section .section-content,
  html[dir="rtl"] .history-section .section-content,
  html[dir="rtl"] .discover-history .section-content {
    direction: rtl !important;
    text-align: right !important;
  }

  .history-content .section-label,
  .history-content .eyebrow,
  .history-content .section-kicker {
    margin-bottom: 14px !important;
  }

  html[dir="rtl"] .history-content .section-label,
  html[dir="rtl"] .history-content .eyebrow,
  html[dir="rtl"] .history-content .section-kicker {
    justify-content: flex-end !important;
    text-align: right !important;
  }

  .history-content h2,
  .history-mobile-section h2,
  .historical-section h2,
  .history-section h2,
  .discover-history h2,
  .iraq-history-section h2,
  .ancient-section h2 {
    font-size: clamp(34px, 10vw, 46px) !important;
    line-height: 1.35 !important;
    margin: 0 0 22px 0 !important;
    max-width: 100% !important;
    text-align: inherit !important;
  }

  .history-content p,
  .history-mobile-section p,
  .historical-section p,
  .history-section p,
  .discover-history p,
  .iraq-history-section p,
  .ancient-section p {
    font-size: 16px !important;
    line-height: 2 !important;
    margin: 0 0 26px 0 !important;
    text-align: inherit !important;
  }

  .history-content ul,
  .history-mobile-section ul,
  .historical-section ul,
  .history-section ul,
  .discover-history ul {
    margin: 20px 0 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .history-content li,
  .history-mobile-section li,
  .historical-section li,
  .history-section li,
  .discover-history li {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 16px !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
  }

  html[dir="rtl"] .history-content li,
  html[dir="rtl"] .history-mobile-section li,
  html[dir="rtl"] .historical-section li,
  html[dir="rtl"] .history-section li,
  html[dir="rtl"] .discover-history li {
    flex-direction: row-reverse !important;
    justify-content: flex-start !important;
    text-align: right !important;
  }

  /* Project-specific: iraq-imgs grid inside history section */
  .iraq-history-section .iraq-imgs {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
    width: 100% !important;
  }

  /* First image spans full width (Babylon) */
  .iraq-history-section .iraq-imgs .img-placeholder:first-child {
    grid-column: 1 / -1 !important;
    aspect-ratio: 16 / 7 !important;
    min-height: 0 !important;
  }

  /* Second and third images as 2-column row */
  .iraq-history-section .iraq-imgs .img-placeholder:not(:first-child) {
    aspect-ratio: 4 / 3 !important;
    min-height: 0 !important;
  }

  /* Heritage image cards: remove white space */
  .iraq-history-section .heritage-image-box {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
  }

  /* Feature items list alignment */
  html[dir="rtl"] .iraq-history-section .history-content .about-feature-item {
    text-align: right !important;
    direction: rtl !important;
  }
}

/* ==================================================
   PACKAGE CARD: DUAL BOXES SIDE BY SIDE ON MOBILE
   package-info-box + package-features-grid in one row
================================================== */

/* Desktop: wrapper is transparent — boxes stack as before */
.package-dual-boxes {
  display: contents;
}

@media (max-width: 768px) {
  /* Activate flex row on mobile */
  .package-dual-boxes {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    align-items: stretch !important;
    margin: 0 0 22px !important;
  }

  /* Each box takes ~48% */
  .package-dual-boxes .package-info-box,
  .package-dual-boxes .package-features-grid {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    width: 48% !important;
    margin: 0 !important;
  }

  /* Info box: stack Days / Nights / Price vertically to fit narrow width */
  .package-dual-boxes .package-info-box {
    grid-template-columns: 1fr !important;
    padding: 14px 12px !important;
    gap: 10px !important;
  }

  /* Features grid: single column to fit narrow width */
  .package-dual-boxes .package-features-grid {
    grid-template-columns: 1fr !important;
    padding: 14px 12px !important;
    gap: 8px 0 !important;
    margin: 0 !important;
  }

  /* Slightly smaller text inside the tight boxes */
  .package-dual-boxes .info-label {
    font-size: 10px !important;
  }

  .package-dual-boxes .package-info-item strong {
    font-size: 12px !important;
  }

  .package-dual-boxes .package-feature-item {
    font-size: 13px !important;
    padding-inline-start: 14px !important;
  }

  /* Divider on price item: hide it (doesn't work in tight column layout) */
  .package-dual-boxes .package-info-item.price::before {
    display: none !important;
  }

  /* RTL alignment */
  html[dir="rtl"] .package-dual-boxes .package-info-item {
    align-items: flex-end !important;
    text-align: right !important;
  }

  html[dir="rtl"] .package-dual-boxes .package-feature-item {
    text-align: right !important;
    direction: rtl !important;
  }

  /* LTR alignment */
  html[dir="ltr"] .package-dual-boxes .package-info-item {
    align-items: flex-start !important;
    text-align: left !important;
  }

  html[dir="ltr"] .package-dual-boxes .package-feature-item {
    text-align: left !important;
    direction: ltr !important;
  }
}

/* Very small phones: keep side by side but reduce padding further */
@media (max-width: 380px) {
  .package-dual-boxes {
    gap: 8px !important;
  }

  .package-dual-boxes .package-info-box,
  .package-dual-boxes .package-features-grid {
    padding: 10px 8px !important;
  }

  .package-dual-boxes .info-label {
    font-size: 9px !important;
  }

  .package-dual-boxes .package-info-item strong {
    font-size: 11px !important;
  }

  .package-dual-boxes .package-feature-item {
    font-size: 12px !important;
  }
}

/* ==================================================
   PACKAGE DUAL BOXES — CLEAN REDESIGN v2
   Overrides previous rules for cleaner mobile layout
================================================== */

/* Desktop: wrapper transparent — no layout change */
.package-dual-boxes {
  display: contents;
}

@media (max-width: 768px) {
  /* Row layout: RTL first item = right side (info), second = left (features) */
  .package-dual-boxes {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 10px !important;
    margin: 0 0 20px !important;
    width: 100% !important;
  }

  /* Equal width for both boxes */
  .package-dual-boxes .package-info-box,
  .package-dual-boxes .package-features-grid {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    width: 0 !important;
    margin: 0 !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
  }

  /* ── Info box (days / nights / price) ── */
  .package-dual-boxes .package-info-box {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 12px 10px !important;
    background: #f8f6f1 !important;
    border: 1px solid rgba(201, 164, 92, 0.28) !important;
  }

  .package-dual-boxes .package-info-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1px !important;
    padding: 7px 0 !important;
    border-bottom: 1px solid rgba(201, 164, 92, 0.15) !important;
    text-align: center !important;
  }

  .package-dual-boxes .package-info-item:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
  }

  .package-dual-boxes .package-info-item:first-child {
    padding-top: 0 !important;
  }

  /* Label: small gold */
  .package-dual-boxes .info-label {
    font-size: 9.5px !important;
    font-weight: 700 !important;
    color: #c9a45c !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    line-height: 1.2 !important;
  }

  /* Value: clear and readable */
  .package-dual-boxes .package-info-item strong {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    line-height: 1.3 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100% !important;
  }

  /* Price value: gold */
  .package-dual-boxes .package-info-item.price strong {
    color: #c9a45c !important;
    font-size: 11.5px !important;
  }

  /* Hide the old inline vertical divider */
  .package-dual-boxes .package-info-item.price::before {
    display: none !important;
  }

  /* ── Features box ── */
  .package-dual-boxes .package-features-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 12px 10px !important;
    background: #f8f6f1 !important;
    border: 1px solid rgba(201, 164, 92, 0.28) !important;
  }

  /* Each feature as a flex row with dot */
  .package-dual-boxes .package-feature-item {
    position: relative !important;
    font-size: 12.5px !important;
    font-weight: 500 !important;
    color: #333 !important;
    line-height: 1.5 !important;
    padding: 5px 0 !important;
    padding-inline-start: 14px !important;
    border-bottom: 1px solid rgba(201, 164, 92, 0.1) !important;
  }

  .package-dual-boxes .package-feature-item:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
  }

  .package-dual-boxes .package-feature-item:first-child {
    padding-top: 0 !important;
  }

  /* Dot stays at inline-start (right in RTL, left in LTR) */
  .package-dual-boxes .package-feature-item::before {
    width: 6px !important;
    height: 6px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  /* RTL: info items right-aligned */
  html[dir="rtl"] .package-dual-boxes .package-info-item {
    align-items: flex-end !important;
    text-align: right !important;
  }

  html[dir="rtl"] .package-dual-boxes .package-feature-item {
    text-align: right !important;
    direction: rtl !important;
  }

  /* LTR: info items left-aligned */
  html[dir="ltr"] .package-dual-boxes .package-info-item {
    align-items: flex-start !important;
    text-align: left !important;
  }

  html[dir="ltr"] .package-dual-boxes .package-feature-item {
    text-align: left !important;
    direction: ltr !important;
  }
}

/* Very small phones ≤380px */
@media (max-width: 380px) {
  .package-dual-boxes {
    gap: 7px !important;
  }

  .package-dual-boxes .package-info-box,
  .package-dual-boxes .package-features-grid {
    padding: 10px 8px !important;
  }

  .package-dual-boxes .info-label {
    font-size: 8.5px !important;
  }

  .package-dual-boxes .package-info-item strong {
    font-size: 12px !important;
  }

  .package-dual-boxes .package-feature-item {
    font-size: 11.5px !important;
    padding-inline-start: 12px !important;
  }
}

/* ==================================================
   PACKAGE DUAL BOXES — RTL FULL RIGHT ALIGNMENT
   Arabic mode only
================================================== */

html[dir="rtl"] .package-dual-boxes,
html[dir="rtl"] .package-dual-boxes .package-info-box,
html[dir="rtl"] .package-dual-boxes .package-features-grid {
  direction: rtl !important;
  text-align: right !important;
}

/* Info items: label + value right-aligned */
html[dir="rtl"] .package-dual-boxes .package-info-item {
  align-items: flex-end !important;
  text-align: right !important;
  direction: rtl !important;
}

html[dir="rtl"] .package-dual-boxes .info-label,
html[dir="rtl"] .package-dual-boxes .package-info-item strong {
  text-align: right !important;
  align-self: flex-end !important;
  width: 100% !important;
}

/* Features: each item right-aligned with dot on the right */
html[dir="rtl"] .package-dual-boxes .package-feature-item {
  text-align: right !important;
  direction: rtl !important;
  padding-right: 14px !important;
  padding-left: 0 !important;
  padding-inline-start: 0 !important;
}

/* Dot: position on the right side for RTL */
html[dir="rtl"] .package-dual-boxes .package-feature-item::before {
  right: 0 !important;
  left: auto !important;
  inset-inline-start: auto !important;
}

/* LTR stays natural (left-aligned) */
html[dir="ltr"] .package-dual-boxes .package-info-item {
  align-items: flex-start !important;
  text-align: left !important;
}

html[dir="ltr"] .package-dual-boxes .package-feature-item {
  text-align: left !important;
  direction: ltr !important;
}

/* =========================================
   FIX PACKAGE FEATURES DOTS
   Use span.feature-dot only — disable ::before
========================================= */

/* Disable old ::before dot on ALL feature items (now using span.feature-dot) */
.package-feature-item::before,
.package-features-grid .package-feature-item::before,
.package-features-box .package-feature-item::before,
.package-dual-boxes .package-feature-item::before {
  content: none !important;
  display: none !important;
}

/* Reset padding that was reserved for ::before */
.package-features-grid .package-feature-item,
.package-features-box .package-feature-item,
.package-dual-boxes .package-feature-item {
  padding-inline-start: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  position: relative !important;
}

/* The dot span */
.package-feature-item .feature-dot {
  width: 7px !important;
  height: 7px !important;
  min-width: 7px !important;
  min-height: 7px !important;
  border-radius: 50% !important;
  background: #c9a45c !important;
  display: inline-block !important;
  flex: 0 0 7px !important;
}

/* Arabic: dot on the right, text after it */
html[dir="rtl"] .package-feature-item {
  direction: rtl !important;
  flex-direction: row !important;
  text-align: right !important;
}

html[dir="rtl"] .package-feature-item .feature-dot {
  order: 1 !important;
}

html[dir="rtl"] .package-feature-item span:last-child {
  order: 2 !important;
  text-align: right !important;
}

/* English: dot on the left, text after it */
html[dir="ltr"] .package-feature-item {
  direction: ltr !important;
  flex-direction: row !important;
  text-align: left !important;
}

html[dir="ltr"] .package-feature-item .feature-dot {
  order: 1 !important;
}

html[dir="ltr"] .package-feature-item span:last-child {
  order: 2 !important;
  text-align: left !important;
}

/* ===== Equal bottom boxes in package cards ===== */

/* Wrapper: both boxes side by side, equal height */
.package-dual-boxes,
.package-card-bottom {
  display: flex !important;
  flex-direction: row !important;
  gap: 14px !important;
  align-items: stretch !important;
  margin: 0 0 20px !important;
  width: 100% !important;
}

/* Each box fills equal space and stretches to match sibling height */
.package-dual-boxes .package-info-box,
.package-dual-boxes .package-features-grid,
.package-features-box,
.package-meta-box {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  width: 0 !important;
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  min-height: 180px !important;
  margin: 0 !important;
}

/* Info box (days/nights/price) */
.package-dual-boxes .package-info-box,
.package-meta-box {
  padding: 14px 12px !important;
  background: #f8f6f1 !important;
  border: 1px solid rgba(201, 164, 92, 0.28) !important;
  border-radius: 12px !important;
  gap: 0 !important;
}

/* Features box */
.package-dual-boxes .package-features-grid,
.package-features-box {
  padding: 14px 12px !important;
  background: #f8f6f1 !important;
  border: 1px solid rgba(201, 164, 92, 0.28) !important;
  border-radius: 12px !important;
  gap: 0 !important;
}

/* Info items fill available height evenly */
.package-dual-boxes .package-info-box .package-info-item {
  flex: 1 !important;
  justify-content: center !important;
  border-bottom: 1px solid rgba(201, 164, 92, 0.15) !important;
  padding: 6px 0 !important;
}

.package-dual-boxes .package-info-box .package-info-item:first-child {
  padding-top: 0 !important;
}

.package-dual-boxes .package-info-box .package-info-item:last-child {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

/* Feature items fill available height evenly */
.package-dual-boxes .package-features-grid .package-feature-item {
  flex: 1 !important;
  border-bottom: 1px solid rgba(201, 164, 92, 0.1) !important;
  padding: 5px 0 !important;
  padding-inline-start: 0 !important;
  align-items: center !important;
}

.package-dual-boxes .package-features-grid .package-feature-item:first-child {
  padding-top: 0 !important;
}

.package-dual-boxes .package-features-grid .package-feature-item:last-child {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

/* RTL alignment */
html[dir="rtl"] .package-dual-boxes .package-info-box,
html[dir="rtl"] .package-dual-boxes .package-features-grid {
  text-align: right !important;
  direction: rtl !important;
}

html[dir="rtl"] .package-dual-boxes .package-info-item {
  align-items: flex-end !important;
}

/* LTR alignment */
html[dir="ltr"] .package-dual-boxes .package-info-box,
html[dir="ltr"] .package-dual-boxes .package-features-grid {
  text-align: left !important;
  direction: ltr !important;
}

html[dir="ltr"] .package-dual-boxes .package-info-item {
  align-items: flex-start !important;
}

/* Mobile */
@media (max-width: 768px) {
  .package-dual-boxes,
  .package-card-bottom {
    gap: 10px !important;
  }

  .package-dual-boxes .package-info-box,
  .package-dual-boxes .package-features-grid,
  .package-features-box,
  .package-meta-box {
    min-height: 160px !important;
    padding: 12px 10px !important;
  }
}

/* ===== NAV ACTIVE UNDERLINE ===== */
.nav-list a {
  position: relative !important;
}
.nav-list a::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 0 !important;
  height: 2px !important;
  background: var(--gold) !important;
  border-radius: 2px !important;
  transition: width 0.25s ease !important;
}
.nav-list a:hover::after,
.nav-list a.active::after {
  width: 60% !important;
}

/* ==================================================
   MOBILE TYPOGRAPHY CONSISTENCY FIX
   Fix inconsistent heading sizes on mobile
================================================== */

@media (max-width: 768px) {

  /* Main section titles */
  .section-title,
  .content-title,
  .page-title,
  .page-hero-title,
  .inner-page-title,
  .destination-title,
  .discover-title,
  .about-title,
  .hero-title,
  .main-title,
  .section-content h1,
  .section-content h2,
  .content-box h1,
  .content-box h2,
  .text-box h1,
  .text-box h2,
  .about-content h1,
  .about-content h2,
  .destination-content h1,
  .destination-content h2,
  .discover-content h1,
  .discover-content h2,
  .service-content h1,
  .service-content h2 {
    font-size: clamp(34px, 8.5vw, 44px) !important;
    line-height: 1.35 !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    margin: 0 0 22px !important;
    max-width: 100% !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  /* Smaller labels above titles */
  .section-label,
  .section-kicker,
  .eyebrow,
  .subtitle-label,
  .small-title,
  .gold-label {
    font-size: 14px !important;
    line-height: 1.5 !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 14px !important;
  }

  /* Paragraphs under titles */
  .section-content p,
  .content-box p,
  .text-box p,
  .about-content p,
  .destination-content p,
  .discover-content p,
  .service-content p,
  .hero-content p,
  .page-description,
  .section-description,
  .section-subtitle,
  .page-hero-sub {
    font-size: 17px !important;
    line-height: 2 !important;
    margin: 0 0 24px !important;
  }

  /* Arabic mobile alignment */
  html[dir="rtl"] .section-content,
  html[dir="rtl"] .content-box,
  html[dir="rtl"] .text-box,
  html[dir="rtl"] .about-content,
  html[dir="rtl"] .destination-content,
  html[dir="rtl"] .discover-content,
  html[dir="rtl"] .service-content {
    text-align: right !important;
    direction: rtl !important;
  }

  html[dir="rtl"] .section-title,
  html[dir="rtl"] .content-title,
  html[dir="rtl"] .page-title,
  html[dir="rtl"] .inner-page-title,
  html[dir="rtl"] .destination-title,
  html[dir="rtl"] .discover-title,
  html[dir="rtl"] .about-title,
  html[dir="rtl"] .service-title,
  html[dir="rtl"] .section-content h1,
  html[dir="rtl"] .section-content h2,
  html[dir="rtl"] .content-box h1,
  html[dir="rtl"] .content-box h2,
  html[dir="rtl"] .text-box h1,
  html[dir="rtl"] .text-box h2 {
    text-align: right !important;
  }

  /* English mobile alignment */
  html[dir="ltr"] .section-content,
  html[dir="ltr"] .content-box,
  html[dir="ltr"] .text-box,
  html[dir="ltr"] .about-content,
  html[dir="ltr"] .destination-content,
  html[dir="ltr"] .discover-content,
  html[dir="ltr"] .service-content {
    text-align: left !important;
    direction: ltr !important;
  }

  html[dir="ltr"] .section-title,
  html[dir="ltr"] .content-title,
  html[dir="ltr"] .page-title,
  html[dir="ltr"] .inner-page-title,
  html[dir="ltr"] .destination-title,
  html[dir="ltr"] .discover-title,
  html[dir="ltr"] .about-title,
  html[dir="ltr"] .service-title,
  html[dir="ltr"] .section-content h1,
  html[dir="ltr"] .section-content h2,
  html[dir="ltr"] .content-box h1,
  html[dir="ltr"] .content-box h2,
  html[dir="ltr"] .text-box h1,
  html[dir="ltr"] .text-box h2 {
    text-align: left !important;
  }

  /* Prevent huge gaps around titles */
  section,
  .section,
  .content-section,
  .about-section,
  .destination-section,
  .discover-section,
  .service-section {
    overflow: hidden !important;
  }
}

/* Smaller phones */
@media (max-width: 430px) {
  .section-title,
  .content-title,
  .page-title,
  .page-hero-title,
  .inner-page-title,
  .destination-title,
  .discover-title,
  .about-title,
  .hero-title,
  .main-title,
  .section-content h1,
  .section-content h2,
  .content-box h1,
  .content-box h2,
  .text-box h1,
  .text-box h2,
  .about-content h1,
  .about-content h2,
  .destination-content h1,
  .destination-content h2,
  .discover-content h1,
  .discover-content h2,
  .service-content h1,
  .service-content h2 {
    font-size: 36px !important;
    line-height: 1.35 !important;
  }

  .section-content p,
  .content-box p,
  .text-box p,
  .about-content p,
  .destination-content p,
  .discover-content p,
  .service-content p,
  .hero-content p,
  .section-subtitle,
  .page-hero-sub {
    font-size: 16px !important;
    line-height: 2 !important;
  }
}

/* =========================================
   MOBILE SECTION TITLES BIGGER FIX
========================================= */

@media (max-width: 768px) {
  .section-title,
  .content-title,
  .destination-title,
  .discover-title,
  .about-title,
  .page-title,
  .page-hero-title,
  .inner-page-title,
  .section-content h2,
  .content-box h2,
  .text-box h2,
  .about-content h2,
  .destination-content h2,
  .discover-content h2,
  .service-content h2 {
    font-size: clamp(42px, 11vw, 54px) !important;
    line-height: 1.28 !important;
    font-weight: 400 !important;
    margin-bottom: 26px !important;
    letter-spacing: 0 !important;
  }

  .section-label,
  .section-kicker,
  .eyebrow,
  .gold-label {
    font-size: 15px !important;
    margin-bottom: 16px !important;
  }

  .section-content p,
  .content-box p,
  .text-box p,
  .about-content p,
  .destination-content p,
  .discover-content p,
  .service-content p,
  .section-subtitle,
  .page-hero-sub {
    font-size: 17px !important;
    line-height: 2.05 !important;
  }

  html[dir="rtl"] .section-title,
  html[dir="rtl"] .content-title,
  html[dir="rtl"] .destination-title,
  html[dir="rtl"] .discover-title,
  html[dir="rtl"] .about-title,
  html[dir="rtl"] .section-content h2,
  html[dir="rtl"] .content-box h2,
  html[dir="rtl"] .text-box h2 {
    text-align: right !important;
  }

  html[dir="ltr"] .section-title,
  html[dir="ltr"] .content-title,
  html[dir="ltr"] .destination-title,
  html[dir="ltr"] .discover-title,
  html[dir="ltr"] .about-title,
  html[dir="ltr"] .section-content h2,
  html[dir="ltr"] .content-box h2,
  html[dir="ltr"] .text-box h2 {
    text-align: left !important;
  }
}

@media (max-width: 430px) {
  .section-title,
  .content-title,
  .destination-title,
  .discover-title,
  .about-title,
  .page-title,
  .page-hero-title,
  .inner-page-title,
  .section-content h2,
  .content-box h2,
  .text-box h2,
  .about-content h2,
  .destination-content h2,
  .discover-content h2,
  .service-content h2 {
    font-size: 44px !important;
    line-height: 1.3 !important;
  }
}

/* =========================================
   MOBILE SECTION TITLES — SLIGHT REDUCTION
========================================= */

@media (max-width: 768px) {
  .section-title,
  .content-title,
  .about-title,
  .mission-title,
  .vision-title,
  .section-content h2,
  .content-box h2,
  .text-box h2,
  .about-content h2,
  .about-section h2,
  .vision-section h2,
  .mission-section h2 {
    font-size: clamp(31px, 7.2vw, 38px) !important;
    line-height: 1.38 !important;
    font-weight: 400 !important;
    margin-bottom: 20px !important;
  }
}

@media (max-width: 430px) {
  .section-title,
  .content-title,
  .about-title,
  .mission-title,
  .vision-title,
  .section-content h2,
  .content-box h2,
  .text-box h2,
  .about-content h2,
  .about-section h2,
  .vision-section h2,
  .mission-section h2 {
    font-size: 33px !important;
    line-height: 1.38 !important;
  }
}

/* =========================================
   FINAL MOBILE TITLES SIZE - ALL WEBSITE
   Same size for all mobile section titles
========================================= */

@media (max-width: 768px) {
  h1,
  h2,
  .hero-title,
  .page-title,
  .page-hero-title,
  .inner-page-title,
  .section-title,
  .content-title,
  .main-title,
  .about-title,
  .destination-title,
  .discover-title,
  .mission-title,
  .vision-title,
  .why-title,
  .gallery-title,
  .partners-title,
  .testimonials-title,
  .contact-title,
  .section-content h1,
  .section-content h2,
  .content-box h1,
  .content-box h2,
  .text-box h1,
  .text-box h2,
  .about-content h1,
  .about-content h2,
  .service-content h1,
  .service-content h2,
  .destination-content h1,
  .destination-content h2,
  .discover-content h1,
  .discover-content h2,
  .feature-content h1,
  .feature-content h2 {
    font-size: 29px !important;
    line-height: 1.45 !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    margin-bottom: 18px !important;
    max-width: 100% !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  html[dir="rtl"] h1,
  html[dir="rtl"] h2,
  html[dir="rtl"] .hero-title,
  html[dir="rtl"] .page-title,
  html[dir="rtl"] .inner-page-title,
  html[dir="rtl"] .section-title,
  html[dir="rtl"] .content-title,
  html[dir="rtl"] .main-title,
  html[dir="rtl"] .about-title,
  html[dir="rtl"] .destination-title,
  html[dir="rtl"] .discover-title,
  html[dir="rtl"] .mission-title,
  html[dir="rtl"] .vision-title {
    text-align: right !important;
  }

  html[dir="ltr"] h1,
  html[dir="ltr"] h2,
  html[dir="ltr"] .hero-title,
  html[dir="ltr"] .page-title,
  html[dir="ltr"] .inner-page-title,
  html[dir="ltr"] .section-title,
  html[dir="ltr"] .content-title,
  html[dir="ltr"] .main-title,
  html[dir="ltr"] .about-title,
  html[dir="ltr"] .destination-title,
  html[dir="ltr"] .discover-title,
  html[dir="ltr"] .mission-title,
  html[dir="ltr"] .vision-title {
    text-align: left !important;
  }
}

/* =========================================
   MOBILE INNER HERO FIX
   (about / services / destinations / discover-iraq /
   tour-packages / partners / gallery / testimonials / contact)
========================================= */

@media (max-width: 768px) {
  .page-hero {
    position: relative !important;
    min-height: 420px !important;
    padding: 120px 24px 70px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    background-size: cover !important;
    background-position: center center !important;
  }

  /* Reuse the existing decorative ::before as a readability overlay on mobile */
  .page-hero::before {
    background: rgba(0, 0, 0, 0.52) !important;
    z-index: 1 !important;
  }

  .page-hero .container {
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    max-width: 520px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .page-hero .breadcrumb {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 0 18px !important;
  }

  .page-hero .page-hero-title {
    width: 100% !important;
    margin: 0 0 18px !important;
    text-align: center !important;
    color: #ffffff !important;
  }

  .page-hero .page-hero-sub {
    width: 100% !important;
    max-width: 420px !important;
    margin: 0 auto !important;
    text-align: center !important;
    color: rgba(255, 255, 255, 0.88) !important;
  }

  html[dir="rtl"] .page-hero .container,
  html[dir="rtl"] .page-hero .breadcrumb,
  html[dir="rtl"] .page-hero .page-hero-title,
  html[dir="rtl"] .page-hero .page-hero-sub {
    text-align: center !important;
    direction: rtl !important;
  }

  html[dir="ltr"] .page-hero .container,
  html[dir="ltr"] .page-hero .breadcrumb,
  html[dir="ltr"] .page-hero .page-hero-title,
  html[dir="ltr"] .page-hero .page-hero-sub {
    text-align: center !important;
    direction: ltr !important;
  }
}

/* =========================================
   MOBILE CTA SECTION — SMALLER TEXT
========================================= */

@media (max-width: 768px) {
  .global-cta h2 {
    font-size: 26px !important;
    line-height: 1.35 !important;
    margin-bottom: 16px !important;
  }

  .global-cta p {
    font-size: 14px !important;
    line-height: 1.8 !important;
  }

  .global-cta .btn {
    font-size: 14px !important;
  }
}

/* =========================================
   MOBILE MENU LOGO GAP FIX
========================================= */

@media (max-width: 900px) {
  .mobile-nav-header {
    padding: 14px 1.5rem !important;
    margin: 0 !important;
    min-height: auto !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .mobile-nav-logo {
    margin: 0 !important;
    padding: 0 !important;
  }

  .mobile-nav-logo img {
    margin: 0 !important;
    padding: 0 !important;
    vertical-align: middle !important;
  }

  .mobile-nav-close {
    margin: 0 !important;
    flex: 0 0 auto !important;
  }

  .mobile-nav-links {
    margin-top: 0 !important;
    padding-top: 8px !important;
  }

  .mobile-nav-links a:first-child {
    padding-top: 0.5rem !important;
  }
}

/* =========================================
   MOBILE FIX — RESTORE CENTERED SECTION TITLES
   IN ENGLISH (LTR)
   Earlier mobile-typography rules forced
   html[dir="ltr"] .section-title to text-align:left
   site-wide, which (due to specificity) overrode
   the site's own .section-head.center centering —
   e.g. "Our Premium Services" on index.html.
   Restore centering wherever .section-head.center
   is used, in both languages.
========================================= */

@media (max-width: 768px) {
  html[dir="ltr"] .section-head.center,
  html[dir="ltr"] .section-head.center .section-label,
  html[dir="ltr"] .section-head.center .section-title,
  html[dir="ltr"] .section-head.center .section-subtitle,
  html[dir="ltr"] .section-head.center h1,
  html[dir="ltr"] .section-head.center h2 {
    text-align: center !important;
  }

  html[dir="ltr"] .section-head.center .section-label {
    justify-content: center !important;
  }

  .home-services .container,
  .home-services .section-head {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .home-services {
    overflow-x: hidden !important;
  }
}

/* =========================================
   HOME HERO — FINAL LANGUAGE-BASED ALIGNMENT
   (index.html only: .hero / .home-hero / .main-hero)
   Arabic (rtl) = right-aligned, English (ltr) = left-aligned.
   .hero-content is kept a plain full-width block (not a
   flex column) so every child sits at its natural width —
   alignment comes purely from text-align / justify-content,
   with no width:100% child able to swallow it.
========================================= */

html[dir="rtl"] .hero .hero-content,
html[dir="rtl"] .home-hero .hero-content,
html[dir="rtl"] .main-hero .hero-content {
  text-align: right !important;
}

html[dir="ltr"] .hero .hero-content,
html[dir="ltr"] .home-hero .hero-content,
html[dir="ltr"] .main-hero .hero-content {
  text-align: left !important;
}

@media (max-width: 768px) {
  .hero,
  .home-hero,
  .main-hero {
    min-height: 100svh !important;
    padding-inline: 24px !important;
    box-sizing: border-box !important;
  }

  .hero .hero-content,
  .home-hero .hero-content,
  .main-hero .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 112px 0 48px !important;
    box-sizing: border-box !important;
    display: block !important;
  }

  html[dir="rtl"] .hero-content .hero-eyebrow {
    display: inline-flex !important;
    justify-content: flex-end !important;
    flex-direction: row-reverse !important;
    margin: 0 0 16px !important;
  }

  html[dir="ltr"] .hero-content .hero-eyebrow {
    display: inline-flex !important;
    justify-content: flex-start !important;
    flex-direction: row !important;
    margin: 0 0 16px !important;
  }

  html[dir="rtl"] .hero-content .hero-title {
    /* .hero-title is a column flex box that inherits direction:rtl,
       so its cross-axis "start" (flex-start) is the RIGHT edge —
       NOT flex-end. Using flex-end here was pushing it left. */
    align-items: flex-start !important;
    text-align: right !important;
    font-size: clamp(28px, 8vw, 36px) !important;
    line-height: 1.4 !important;
    margin: 0 0 18px !important;
    width: 100% !important;
  }

  html[dir="ltr"] .hero-content .hero-title {
    align-items: flex-start !important;
    text-align: left !important;
    font-size: clamp(28px, 8vw, 36px) !important;
    line-height: 1.4 !important;
    margin: 0 0 18px !important;
    width: 100% !important;
  }

  html[dir="rtl"] .hero-content .hero-title-line {
    text-align: right !important;
    white-space: normal !important;
  }

  html[dir="ltr"] .hero-content .hero-title-line {
    text-align: left !important;
    white-space: normal !important;
  }

  html[dir="rtl"] .hero-content .hero-sub {
    text-align: right !important;
    max-width: 100% !important;
    margin: 0 0 28px !important;
    font-size: 15.5px !important;
    line-height: 1.85 !important;
  }

  html[dir="ltr"] .hero-content .hero-sub {
    text-align: left !important;
    max-width: 100% !important;
    margin: 0 0 28px !important;
    font-size: 15.5px !important;
    line-height: 1.85 !important;
  }

  html[dir="rtl"] .hero-content .hero-btns,
  html[dir="rtl"] .hero-content .hero-actions-right {
    /* This container already has direction:rtl (set elsewhere),
       so its main-axis "start" (flex-start) is the RIGHT edge —
       NOT flex-end. Using flex-end here was pushing buttons left. */
    justify-content: flex-start !important;
    margin: 0 !important;
  }

  html[dir="ltr"] .hero-content .hero-btns,
  html[dir="ltr"] .hero-content .hero-actions-right {
    justify-content: flex-start !important;
    margin: 0 !important;
  }
}

/* ========================================
   IRAQ INTERNATIONAL TOURS SECTION (discover-iraq.html)
   ======================================== */
.iraq-international-tours-section { background: var(--off-white); }

.iraq-tour-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}

.iraq-tour-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.iraq-tour-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.iraq-tour-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.iraq-tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.iraq-tour-card:hover .iraq-tour-card-image img {
  transform: scale(1.06);
}

.iraq-tour-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.75rem 2rem 2rem;
}

.iraq-tour-card h3 {
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 0.85rem;
}

.iraq-tour-card p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.iraq-tour-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

@media (max-width: 992px) {
  .iraq-tour-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .iraq-tour-cards-grid {
    grid-template-columns: 1fr;
  }
  .iraq-tour-card-image {
    height: 190px;
  }
  .iraq-tour-card-content {
    padding: 1.5rem 1.25rem 1.75rem;
  }
}

/* ==================================================
   DISCOVER IRAQ FAQ
================================================== */

.iraq-faq-section {
  position: relative;
  background: #f8f6f1;
  overflow: hidden;
}

.iraq-faq-section .section-head {
  width: min(900px, 100%);
  margin-inline: auto;
  text-align: center;
}

.iraq-faq-section .section-subtitle {
  width: min(760px, 100%);
  margin-inline: auto;
}

.iraq-faq-list {
  width: min(1040px, 100%);
  margin: 50px auto 0;
  display: grid;
  gap: 14px;
}

.iraq-faq-item {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(201, 164, 92, 0.3);
  border-radius: 18px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.iraq-faq-item:hover {
  border-color: rgba(201, 164, 92, 0.65);
}

.iraq-faq-item[open] {
  border-color: #c9a45c;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.05);
}

.iraq-faq-item summary {
  min-height: 76px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #111111;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.65;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.iraq-faq-item summary::-webkit-details-marker {
  display: none;
}

.iraq-faq-item summary::marker {
  display: none;
  content: "";
}

.iraq-faq-icon {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border: 1px solid rgba(201, 164, 92, 0.58);
  border-radius: 50%;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.iraq-faq-item[open] .iraq-faq-icon {
  background: #c9a45c;
  border-color: #c9a45c;
}

.iraq-faq-icon::before,
.iraq-faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.5px;
  background: #c9a45c;
  transform: translate(-50%, -50%);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.iraq-faq-icon::after {
  transform:
    translate(-50%, -50%)
    rotate(90deg);
}

.iraq-faq-item[open] .iraq-faq-icon::before,
.iraq-faq-item[open] .iraq-faq-icon::after {
  background: #111111;
}

.iraq-faq-item[open] .iraq-faq-icon::after {
  transform:
    translate(-50%, -50%)
    rotate(0deg);
}

.iraq-faq-answer {
  padding: 0 24px 24px;
}

.iraq-faq-answer p {
  width: min(900px, 100%);
  margin: 0;
  color: #777777;
  font-size: 16px;
  line-height: 2;
}

html[dir="rtl"] .iraq-faq-item,
html[dir="rtl"] .iraq-faq-item summary,
html[dir="rtl"] .iraq-faq-answer {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .iraq-faq-item summary {
  flex-direction: row;
}

html[dir="ltr"] .iraq-faq-item,
html[dir="ltr"] .iraq-faq-item summary,
html[dir="ltr"] .iraq-faq-answer {
  direction: ltr;
  text-align: left;
}

html[dir="ltr"] .iraq-faq-item summary {
  flex-direction: row;
}

.iraq-faq-contact {
  width: min(1040px, 100%);
  margin: 30px auto 0;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  background: #111111;
  border: 1px solid rgba(201, 164, 92, 0.45);
  border-radius: 22px;
}

.iraq-faq-contact > div {
  flex: 1;
}

.iraq-faq-contact h3 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}

.iraq-faq-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.8;
}

.iraq-faq-contact .btn {
  flex: 0 0 auto;
  min-width: 170px;
  justify-content: center;
}

html[dir="rtl"] .iraq-faq-contact {
  direction: rtl;
  text-align: right;
}

html[dir="ltr"] .iraq-faq-contact {
  direction: ltr;
  text-align: left;
}

@media (max-width: 992px) {
  .iraq-faq-list {
    width: 100%;
    margin-top: 42px;
  }

  .iraq-faq-contact {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .iraq-faq-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .iraq-faq-section .section-head {
    text-align: inherit;
  }

  html[dir="rtl"] .iraq-faq-section .section-head {
    text-align: right;
  }

  html[dir="ltr"] .iraq-faq-section .section-head {
    text-align: left;
  }

  .iraq-faq-list {
    margin-top: 34px;
    gap: 11px;
  }

  .iraq-faq-item {
    border-radius: 15px;
  }

  .iraq-faq-item summary {
    min-height: 68px;
    padding: 17px 18px;
    gap: 14px;
    font-size: 16px;
    line-height: 1.7;
  }

  .iraq-faq-icon {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .iraq-faq-answer {
    padding: 0 18px 19px;
  }

  .iraq-faq-answer p {
    font-size: 15px;
    line-height: 1.9;
  }

  .iraq-faq-contact {
    margin-top: 22px;
    padding: 24px 20px;
    flex-direction: column;
    align-items: stretch;
    border-radius: 18px;
  }

  .iraq-faq-contact h3 {
    font-size: 20px;
  }

  .iraq-faq-contact .btn {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }
}

@media (max-width: 390px) {
  .iraq-faq-item summary {
    padding: 16px;
    font-size: 15px;
  }

  .iraq-faq-answer {
    padding: 0 16px 18px;
  }

  .iraq-faq-contact {
    padding: 22px 17px;
  }
}

/* ==================================================
   PARTNERS — REAL PARTNER CARDS
================================================== */

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.partner-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  min-height: 100%;
}

.partner-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(201, 164, 92, 0.08), rgba(201, 164, 92, 0.02));
  border-bottom: 1px solid rgba(201, 164, 92, 0.25);
}

.partner-card-logo-img {
  display: block;
  max-width: 80%;
  max-height: 80%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-logo-placeholder {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 164, 92, 0.12);
  border: 1px solid rgba(201, 164, 92, 0.45);
  color: #c9a45c;
  font-family: 'Cairo', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.partner-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 1.5rem 1.75rem;
}

.partner-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 0.5rem;
  line-height: 1.4;
}

.partner-card-location {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--muted);
}

.partner-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.partner-card-icon svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
}

.partner-card-description {
  flex: 1;
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 1.1rem;
}

.partner-card-contact {
  margin: 0 0 1rem;
  font-size: 0.85rem;
}

.partner-card-contact a {
  display: inline-block;
  direction: ltr;
  color: var(--dark);
  font-weight: 700;
  text-decoration: none;
}

.partner-card-contact a:hover { color: var(--gold); }

.partner-card-actions {
  margin-top: auto;
}

.partner-card-actions .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 992px) {
  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .partner-card-logo {
    height: 130px;
  }
  .partner-logo-placeholder {
    width: 76px;
    height: 76px;
    font-size: 1.35rem;
  }
  .partner-card-content {
    padding: 1.25rem 1.25rem 1.5rem;
  }
}

/* ==================================================
   TRAVEL QUOTE FORM (contact.html)
================================================== */

.travel-quote-section {
  position: relative;
  background: #f8f6f1;
}

.travel-quote-form {
  width: min(1160px, 100%);
  margin: 48px auto 0;
  padding: 44px;
  background: #ffffff;
  border: 1px solid rgba(201, 164, 92, 0.55);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
}

.travel-quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.travel-quote-form .form-group {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.travel-quote-form .form-group-full {
  margin-top: 24px;
}

.travel-quote-form label,
.travel-choice-group legend {
  color: var(--dark);
  font-size: 16px;
  font-weight: 700;
}

.travel-quote-form input,
.travel-quote-form select,
.travel-quote-form textarea {
  width: 100%;
  min-height: 58px;
  padding: 14px 17px;
  color: #222222;
  background: #faf8f3;
  border: 1px solid rgba(201, 164, 92, 0.38);
  border-radius: 13px;
  outline: none;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.travel-quote-form textarea {
  min-height: 150px;
  resize: vertical;
}

.travel-quote-form input:focus,
.travel-quote-form select:focus,
.travel-quote-form textarea:focus {
  background: #ffffff;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 164, 92, 0.12);
}

.travel-quote-form input.is-invalid,
.travel-quote-form select.is-invalid,
.travel-quote-form textarea.is-invalid {
  border-color: #c0392b;
}

.travel-quote-form .field-error {
  min-height: 18px;
  color: #c0392b;
  font-size: 13px;
  line-height: 1.5;
}

.budget-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px;
  gap: 10px;
}

.children-ages-section {
  margin: 28px 0;
  padding: 25px;
  background: #faf8f3;
  border: 1px solid rgba(201, 164, 92, 0.3);
  border-radius: 18px;
}

.children-ages-section[hidden] {
  display: none;
}

.children-ages-header h3 {
  margin: 0 0 5px;
  font-size: 18px;
  color: var(--dark);
}

.children-ages-header p {
  margin: 0 0 20px;
  color: var(--muted);
}

.children-ages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.child-age-field {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.child-age-field label {
  color: var(--dark);
  font-size: 14px;
  font-weight: 700;
}

.travel-choice-group {
  margin: 28px 0 0;
  padding: 0;
  border: 0;
}

.travel-choice-options {
  margin-top: 13px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.travel-choice-card {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  background: #faf8f3;
  border: 1px solid rgba(201, 164, 92, 0.38);
  border-radius: 13px;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.travel-choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.travel-choice-card:has(input:checked),
.travel-choice-card.is-selected {
  color: var(--dark);
  background: #d1aa58;
  border-color: #d1aa58;
}

.textarea-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: #888888;
}

.travel-quote-submit {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.travel-quote-submit .btn {
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.travel-quote-submit .btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

.travel-quote-submit p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.button-loader {
  display: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.25);
  border-top-color: #0d0c07;
  animation: travel-quote-spin 0.7s linear infinite;
}

.travel-quote-submit .btn.is-loading .button-loader {
  display: inline-block;
}

@keyframes travel-quote-spin {
  to { transform: rotate(360deg); }
}

.travel-form-message {
  display: none;
  margin-top: 25px;
  padding: 16px 18px;
  border-radius: 12px;
  text-align: center;
}

.travel-form-message.is-success {
  display: block;
  color: #17633c;
  background: #edf8f1;
  border: 1px solid #b8dfc6;
}

.travel-form-message.is-error {
  display: block;
  color: #8a2929;
  background: #fff1f1;
  border: 1px solid #ecc5c5;
}

html[dir="rtl"] .travel-quote-form {
  direction: rtl;
  text-align: right;
}

html[dir="ltr"] .travel-quote-form {
  direction: ltr;
  text-align: left;
}

@media (max-width: 900px) {
  .travel-quote-form {
    padding: 34px 28px;
  }
  .children-ages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .travel-quote-form {
    margin-top: 34px;
    padding: 26px 18px;
    border-radius: 20px;
  }
  .travel-quote-grid {
    grid-template-columns: 1fr;
    gap: 19px;
  }
  .children-ages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .travel-choice-options {
    grid-template-columns: 1fr;
  }
  .budget-field {
    grid-template-columns: minmax(0, 1fr) 90px;
  }
  .travel-quote-submit .btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 390px) {
  .children-ages-grid {
    grid-template-columns: 1fr;
  }
  .travel-quote-form {
    padding-inline: 15px;
  }
}
/* =========================================
   ANTI-SPAM HONEYPOT (visa + travel quote forms)
   Visually hidden without display:none so basic bots still fill it in;
   real users never see or interact with it.
========================================= */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

/* =========================================
   FOOTER CONTACT LIST — RTL ICON ALIGNMENT FIX
   Earlier rules in this file set flex-direction:
   row-reverse on html[dir="rtl"] .site-footer
   .footer-contact-list li, which pushes the icon
   (first DOM child: phone/mail/map-pin/instagram)
   to the TRAILING side and the text to the
   LEADING side — the opposite of the LTR layout,
   where flex-direction:row keeps the icon leading.
   This override (same selector/specificity,
   placed last so it wins) restores plain "row" so
   RTL's own native right-to-left main axis puts the
   icon at the reading-start (right) side, exactly
   mirroring LTR's icon-then-text order. Only these
   two properties are touched — spacing (gap),
   alignment (align-items), and text-align are left
   exactly as already set by the existing rules.
========================================= */
html[dir="rtl"] .site-footer .footer-contact-list li {
  flex-direction: row !important;
  justify-content: flex-start !important;
}

@media (max-width: 650px) {
  html[dir="rtl"] .site-footer .footer-contact-list li {
    flex-direction: row !important;
    justify-content: flex-start !important;
  }
}

/* =========================================
   FOOTER PHONE NUMBER — FORCE LTR DIGIT ORDER
   The HTML dir="ltr" attribute on the phone link
   alone is not enough: an earlier rule,
   html[dir="rtl"] .site-footer .footer-column a,
   .site-footer .footer-column span { direction:
   rtl !important; ... }, matches this same <a>
   (it lives inside .footer-column.footer-contact)
   and its !important direction:rtl overrides the
   HTML attribute, which is why the digit groups
   were still showing reordered. This rule targets
   the phone link specifically via its own class
   and out-specifies that earlier rule (one extra
   class in the selector), so it wins regardless of
   source order. unicode-bidi:isolate is added as a
   second, independent guarantee that the digits are
   never reordered by the surrounding RTL paragraph.
========================================= */
html[dir="rtl"] .site-footer .footer-contact-list a.phone-ltr {
  direction: ltr !important;
  unicode-bidi: isolate !important;
}
