/* ═══════════════════════════════════════════════════════════
   FADAA LIBYA TRAVEL SERVICES — styles.css
   Professional Bilingual (AR/EN) Static Website
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --color-primary:       #1a3f6f;   /* Deep navy */
  --color-primary-dark:  #122d50;
  --color-primary-light: #2557a7;
  --color-accent:        #c8a94a;   /* Gold */
  --color-accent-dark:   #a88a30;
  --color-white:         #ffffff;
  --color-off-white:     #f8f9fb;
  --color-light-gray:    #eef1f5;
  --color-mid-gray:      #d0d7e2;
  --color-text:          #1e293b;
  --color-text-muted:    #64748b;
  --color-text-light:    #94a3b8;
  --color-danger:        #dc2626;
  --color-danger-light:  #fef2f2;
  --color-warning:       #d97706;
  --color-warning-light: #fffbeb;
  --color-success:       #16a34a;
  --color-success-light: #f0fdf4;
  --color-border:        #e2e8f0;

  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.14);
  --shadow-xl:   0 20px 60px rgba(0,0,0,0.18);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-full: 9999px;

  --transition: 0.25s ease;

  --font-ar: 'Cairo', 'Segoe UI', Arial, sans-serif;
  --font-en: 'Inter', 'Segoe UI', Arial, sans-serif;
  --font-size-base: 16px;

  --header-h: 76px;
  --container-max: 1200px;
  --section-pad: 96px;
}

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

html {
  scroll-behavior: smooth;
  font-size: var(--font-size-base);
}

body {
  font-family: var(--font-ar);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.lang-en {
  font-family: var(--font-en);
  direction: ltr;
}
body.lang-ar {
  font-family: var(--font-ar);
  direction: rtl;
}

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

/* ─── Container ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Section Base ───────────────────────────────────────── */
.section {
  padding: var(--section-pad) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.3;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: var(--color-accent);
  border-radius: var(--radius-full);
  margin: 16px auto;
}

.section-intro {
  max-width: 680px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

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

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

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* ─── HEADER ─────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  width: 100%;
  height: var(--header-h);
  background: var(--color-primary);
  z-index: 1000;
  box-shadow: var(--shadow-md);
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: var(--color-primary-dark);
  box-shadow: var(--shadow-lg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-link { display: flex; align-items: center; }

/* White box wrapper makes logo pop on dark navy header */
.logo-white-box {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.header-logo {
  height: 46px;
  width: auto;
  object-fit: contain;
}

/* VFS Global partner badge in header */
.header-partner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.partner-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.partner-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.partner-label {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.vfs-logo-header {
  height: 26px;
  width: auto;
  background: white;
  border-radius: 4px;
  padding: 2px 6px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
}

.brand-tagline {
  font-size: 0.72rem;
  color: var(--color-accent);
  font-weight: 500;
  opacity: 0.95;
}

/* Nav */
.nav { display: flex; align-items: center; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}

.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--color-white);
  background: rgba(255,255,255,0.12);
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-accent);
  background: transparent;
  color: var(--color-accent);
  font-size: 0.825rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.lang-toggle:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

.lang-sep { opacity: 0.5; }

/* Active lang highlight */
body.lang-ar .lang-ar-label { color: var(--color-accent); font-weight: 700; }
body.lang-ar .lang-en-label { opacity: 0.6; }
body.lang-en .lang-en-label { color: var(--color-accent); font-weight: 700; }
body.lang-en .lang-ar-label { opacity: 0.6; }
body.lang-ar .lang-toggle .lang-ar-label,
body.lang-en .lang-toggle .lang-en-label { opacity: 1; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,0.1); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%);
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,169,74,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--color-white));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px 120px;
  max-width: 860px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(200,169,74,0.18);
  border: 1px solid rgba(200,169,74,0.4);
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.9;
}

.hero-available {
  font-size: 0.9rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 40px;
  letter-spacing: 0.03em;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── ABOUT ──────────────────────────────────────────────── */
.about {
  background: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: center;
}

body.lang-ar .about-grid { direction: rtl; }
body.lang-en .about-grid { direction: ltr; }

.about-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.about-logo {
  width: 100%;
  max-width: 200px;
  object-fit: contain;
}

.about-text p {
  color: var(--color-text-muted);
  font-size: 1.02rem;
  line-height: 1.9;
  margin-bottom: 18px;
}
.about-text p:last-of-type { margin-bottom: 24px; }

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-white);
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.badge-icon { font-size: 1.2rem; }

/* ─── COUNTRIES ──────────────────────────────────────────── */
.countries {
  background: var(--color-off-white);
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.country-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.country-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.country-flag { font-size: 3rem; line-height: 1; }

.country-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary);
}

.country-desc {
  color: var(--color-text-muted);
  font-size: 0.93rem;
  line-height: 1.8;
  flex: 1;
}

.country-contact {
  background: var(--color-off-white);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  border: 1px solid var(--color-border);
}

.contact-label {
  display: block;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-number {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  direction: ltr;
  display: block;
}

/* ─── SERVICES ───────────────────────────────────────────── */
.services {
  background: var(--color-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--color-off-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 4px;
  height: 100%;
  background: var(--color-primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}
.service-card:hover {
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover::before {
  transform: scaleY(1);
}

.service-icon { font-size: 2rem; margin-bottom: 14px; }

.service-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
  line-height: 1.4;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* ─── BEFORE VISIT ───────────────────────────────────────── */
.before-visit {
  background: var(--color-off-white);
}

.checklist-grid {
  max-width: 780px;
  margin: 0 auto 32px;
}

.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-size: 0.93rem;
  color: var(--color-text);
  font-weight: 500;
  transition: all var(--transition);
}
.checklist-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}
.checklist-item::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  background: var(--color-success-light);
  color: var(--color-success);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.before-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--color-warning-light);
  border: 1px solid rgba(217,119,6,0.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  max-width: 780px;
  margin: 0 auto;
}

.note-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }

.before-note p {
  color: var(--color-warning);
  font-size: 0.92rem;
  line-height: 1.8;
  font-weight: 500;
}

/* ─── WHAT WE DON'T PROVIDE ──────────────────────────────── */
.not-provide {
  background: var(--color-white);
}

.not-provide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.not-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--color-danger-light);
  border: 1px solid rgba(220,38,38,0.15);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-size: 0.9rem;
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.5;
  transition: all var(--transition);
}
.not-item:hover {
  border-color: rgba(220,38,38,0.35);
  box-shadow: var(--shadow-sm);
}
.not-item::before {
  content: '✕';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  background: var(--color-danger);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── NOTICE STRIP (compact collapsible) ────────────────────── */
.notice-strip-wrap {
  background: #fffbeb;
  border-top: 1px solid rgba(217,119,6,0.2);
  border-bottom: 1px solid rgba(217,119,6,0.2);
  padding: 0;
}

.notice-strip {
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* Collapsed header row — always visible */
.notice-strip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  cursor: pointer;
  user-select: none;
  transition: opacity var(--transition);
}
.notice-strip-header:hover { opacity: 0.85; }

.notice-strip-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.notice-strip-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
}

.notice-strip-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-warning);
  white-space: nowrap;
}

.notice-strip-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.notice-strip-summary {
  font-size: 0.83rem;
  color: var(--color-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.notice-chevron {
  font-size: 1rem;
  color: var(--color-warning);
  transition: transform var(--transition);
  flex-shrink: 0;
  line-height: 1;
}
.notice-chevron.rotated { transform: rotate(-180deg); }

/* Expandable body */
.notice-strip-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
}
.notice-strip-body.open {
  max-height: 400px;
  padding-bottom: 20px;
}

.notice-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.notice-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--color-white);
  border: 1px solid rgba(217,119,6,0.18);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 0.855rem;
  color: var(--color-text);
  line-height: 1.65;
  transition: border-color var(--transition);
}
.notice-point:hover { border-color: rgba(217,119,6,0.4); }

.np-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── CONTACT ────────────────────────────────────────────── */
.contact {
  background: var(--color-off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-company {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 16px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.detail-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }

.detail-label {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.detail-value {
  display: block;
  font-size: 0.98rem;
  color: var(--color-text);
  font-weight: 500;
  transition: color var(--transition);
}
a.detail-value:hover { color: var(--color-primary-light); }

.phone-list { display: flex; flex-direction: column; gap: 8px; }

.phone-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
}

.phone-country {
  font-weight: 600;
  color: var(--color-text);
  min-width: 120px;
}

.phone-number {
  color: var(--color-primary-light);
  font-weight: 600;
  direction: ltr;
  display: inline-block;
  transition: color var(--transition);
}
.phone-number:hover { color: var(--color-primary); text-decoration: underline; }

/* Contact Buttons */
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.cbtn-flag { font-size: 1.4rem; flex-shrink: 0; }

.contact-btn-malta {
  background: var(--color-primary);
  color: var(--color-white);
}
.contact-btn-malta:hover {
  background: var(--color-primary-light);
  transform: translateX(-4px);
}
body.lang-en .contact-btn-malta:hover { transform: translateX(4px); }

.contact-btn-greece {
  background: #1d4ed8;
  color: var(--color-white);
}
.contact-btn-greece:hover {
  background: #1e40af;
  transform: translateX(-4px);
}
body.lang-en .contact-btn-greece:hover { transform: translateX(4px); }

.contact-btn-korea {
  background: #b91c1c;
  color: var(--color-white);
}
.contact-btn-korea:hover {
  background: #991b1b;
  transform: translateX(-4px);
}
body.lang-en .contact-btn-korea:hover { transform: translateX(4px); }

.contact-btn-email {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}
.contact-btn-email:hover {
  background: var(--color-accent-dark);
  transform: translateX(-4px);
}
body.lang-en .contact-btn-email:hover { transform: translateX(4px); }

.contact-btn-map {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-border);
}
.contact-btn-map:hover {
  background: var(--color-off-white);
  border-color: var(--color-primary);
  transform: translateX(-4px);
}
body.lang-en .contact-btn-map:hover { transform: translateX(4px); }

/* Map Section */
.map-section { margin-top: 24px; }

.map-header {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  padding: 16px 20px;
  border-bottom: none;
}

.map-header-icon { font-size: 1.5rem; flex-shrink: 0; }

.map-header-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2px;
}

.map-header-address {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.map-open-btn {
  margin-inline-start: auto;
  font-size: 0.85rem;
  padding: 9px 18px;
  flex-shrink: 0;
}

.map-embed-wrap {
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-top: none;
}

.map-embed-wrap iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
}

/* Old map content — kept for reference but unused */
.map-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px;
}

.map-pin { font-size: 3rem; display: block; margin-bottom: 12px; }

.map-address {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-bottom: 24px;
  font-weight: 500;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--color-primary-dark);
  color: var(--color-white);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.footer-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.footer-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-white);
}

.footer-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 2px;
}

/* VFS partner block in footer */
.footer-partner {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-partner-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  white-space: nowrap;
}

.vfs-logo-footer {
  height: 22px;
  width: auto;
  background: white;
  border-radius: 3px;
  padding: 2px 5px;
  object-fit: contain;
}

.footer-col-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer-destinations {
  color: rgba(255,255,255,0.75);
  font-size: 0.93rem;
  line-height: 1.7;
}

.footer-link {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 0.93rem;
  margin-bottom: 8px;
  transition: color var(--transition);
}
.footer-link:hover { color: var(--color-accent); }

.footer-address {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-disclaimer {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-disclaimer p {
  color: rgba(255,255,255,0.5);
  font-size: 0.825rem;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
}

/* ─── COUNTRY MORE INFO LINK ─────────────────────────────── */
.country-more-info {
  margin-top: 4px;
  padding: 12px 14px;
  background: var(--color-off-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.more-info-label {
  font-size: 0.775rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.more-info-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-primary-light);
  word-break: break-all;
  transition: color var(--transition);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(37,87,167,0.35);
}
.more-info-link:hover {
  color: var(--color-primary);
  text-decoration-color: var(--color-primary);
}

/* ─── BACK TO TOP ────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  inset-inline-end: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 900;
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  border: none;
  cursor: pointer;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--color-primary-light);
  transform: translateY(-3px);
}

/* ─── SCROLL ANIMATIONS ──────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RTL SPECIFICS ──────────────────────────────────────── */
body.lang-ar .section-divider { margin: 16px auto; }

/* Notice strip RTL: summary on right, title on left */
body.lang-ar .notice-strip-right { flex-direction: row-reverse; }
body.lang-ar .notice-strip-summary { text-align: right; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */

/* Large tablet */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  .services-grid       { grid-template-columns: repeat(2, 1fr); }
  .countries-grid      { grid-template-columns: repeat(3, 1fr); }
  .about-grid          { grid-template-columns: 220px 1fr; gap: 40px; }
  .footer-grid         { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand        { grid-column: 1 / -1; }
}

/* Tablet */
@media (max-width: 768px) {
  :root {
    --section-pad: 60px;
    --header-h: 68px;
  }

  /* Header */
  .hamburger { display: flex; }
  .brand-tagline { display: none; }
  .brand-name { font-size: 0.9rem; }
  .header-logo { height: 42px; }

  .nav {
    position: fixed;
    top: var(--header-h);
    inset-inline: 0;
    background: var(--color-primary-dark);
    padding: 20px;
    flex-direction: column;
    gap: 8px;
    transform: translateY(-110%);
    opacity: 0;
    transition: all var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
  }
  .nav-link {
    display: block;
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: var(--radius-md);
  }
  .lang-toggle { width: 100%; justify-content: center; margin-top: 8px; }

  /* Hero */
  .hero-content { padding: 60px 16px 100px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-logo-wrap { max-width: 240px; margin: 0 auto; }

  /* Countries */
  .countries-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr 1fr; }

  /* Before */
  .checklist { grid-template-columns: 1fr; }

  /* Not Provide */
  .not-provide-grid { grid-template-columns: 1fr 1fr; }

  /* Notice strip */
  .notice-points { grid-template-columns: 1fr; }
  .notice-strip-summary { display: none; }
  .map-header { flex-wrap: wrap; gap: 10px; }
  .map-open-btn { margin-inline-start: 0; width: 100%; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { flex-direction: column; align-items: flex-start; }
}

/* Mobile */
@media (max-width: 480px) {
  :root { --section-pad: 48px; }

  .services-grid    { grid-template-columns: 1fr; }
  .not-provide-grid { grid-template-columns: 1fr; }

  .brand-name { font-size: 0.82rem; }
  .header-partner { display: none; } /* hide VFS badge on very small screens */

  .back-to-top { bottom: 20px; inset-inline-end: 20px; }

  .hero-title { font-size: 1.7rem; }
  .hero-desc  { font-size: 0.9rem; }

  .map-embed-wrap iframe { height: 260px; }
}

/* Very small */
@media (max-width: 360px) {
  .brand-name { font-size: 0.75rem; }
  .header-logo { height: 36px; }
}
