/* ====================================================
   ATGateway.co - Complete Redesign 2026
   Colors: Navy #1e3a5f | Gold #f59e0b | Teal #0d9488
   ==================================================== */

/* ---- Google Fonts (preloaded in HTML) ---- */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;900&family=Inter:wght@400;500;600;700&family=Noto+Sans+Thai:wght@400;500;600;700&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  --navy:         #1e3a5f;
  --navy-dark:    #0f2040;
  --navy-light:   #2a4d7a;
  --gold:         #f59e0b;
  --gold-dark:    #d97706;
  --gold-light:   #fcd34d;
  --teal:         #0d9488;
  --teal-dark:    #0a7060;
  --white:        #ffffff;
  --light:        #f0f4f8;
  --light2:       #e8edf3;
  --text:         #1a2332;
  --text-muted:   #64748b;
  --border:       #dde3ec;
  --shadow-sm:    0 2px 8px rgba(30,58,95,.08);
  --shadow-md:    0 6px 24px rgba(30,58,95,.14);
  --shadow-lg:    0 12px 40px rgba(30,58,95,.18);
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    20px;
  --transition:   all .3s cubic-bezier(.4,0,.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* Prevent double-tap zoom on modern iOS/Android (complements viewport max-scale) */
  touch-action: manipulation;
}
body {
  font-family: 'Cairo', 'Inter', 'Noto Sans Thai', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  touch-action: manipulation;
}
/* Prevent tap-delay & double-tap zoom on interactive elements */
a, button, input, select, textarea, label, [role="button"] {
  touch-action: manipulation;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }

/* ---- Language-specific fonts ---- */
[lang="ar"] body, [lang="ar"] { font-family: 'Cairo', sans-serif; }
[lang="en"] body, [lang="en"] { font-family: 'Inter', sans-serif; }
[lang="th"] body, [lang="th"] { font-family: 'Noto Sans Thai', sans-serif; }

/* ---- RTL / LTR Direction ---- */
[dir="rtl"] { direction: rtl; text-align: right; }
[dir="ltr"] { direction: ltr; text-align: left; }
[dir="rtl"] .ms-auto { margin-right: auto !important; margin-left: 0 !important; }
[dir="rtl"] .me-auto { margin-left: auto !important; margin-right: 0 !important; }
[dir="rtl"] .text-lg-end { text-align: right !important; }
[dir="rtl"] .me-2 { margin-left: .5rem !important; margin-right: 0 !important; }
[dir="rtl"] .me-3 { margin-left: 1rem !important; margin-right: 0 !important; }

/* ====================================================
   ACCENT LINE
   ==================================================== */
.atg-accent-line {
  height: 3px;
  background: linear-gradient(90deg, var(--navy-dark) 0%, var(--gold) 30%, var(--teal) 60%, var(--gold) 80%, var(--navy-dark) 100%);
  background-size: 200% 100%;
  animation: accentShift 5s linear infinite;
}
@keyframes accentShift {
  0%   { background-position: 0%   0; }
  100% { background-position: 200% 0; }
}

/* ====================================================
   TOP BAR
   ==================================================== */
.atg-topbar {
  background: var(--navy-dark);
  padding: 7px 0;
  font-size: .82rem;
}
.atg-tb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* Contact pills */
.atg-tb-contact { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.atg-tb-item {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,.82);
  padding: 3px 10px 3px 5px;
  border-radius: 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
[dir="ltr"] .atg-tb-item { padding: 3px 5px 3px 10px; }
.atg-tb-item:hover {
  color: var(--gold);
  background: rgba(245,158,11,.1);
  border-color: rgba(245,158,11,.3);
}
.atg-tb-ico {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(245,158,11,.2);
  border-radius: 50%;
  color: var(--gold);
  font-size: .7rem;
  flex-shrink: 0;
}
.atg-tb-hours { cursor: default; }
.atg-tb-hours:hover {
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1);
}

/* Right side: social + separator + lang */
.atg-tb-actions { display: flex; align-items: center; gap: 10px; }
.atg-tb-social { display: flex; gap: 2px; }
.atg-tb-social a {
  color: rgba(255,255,255,.55);
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  transition: var(--transition);
}
.atg-tb-social a:hover { color: var(--gold); background: rgba(245,158,11,.12); }
.atg-tb-sep { width: 1px; height: 20px; background: rgba(255,255,255,.15); }

/* Language switcher */
.lang-switcher { display: flex; gap: 3px; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.82);
  padding: 3px 9px;
  border-radius: 20px;
  font-size: .75rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  white-space: nowrap;
  line-height: 1.4;
}
.lang-flag { font-size: .8rem; }
.lang-code { font-weight: 700; letter-spacing: .4px; }
.lang-btn:hover, .lang-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
}

/* ====================================================
   NAVBAR
   ==================================================== */
.atg-nav {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.atg-nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 25%, var(--teal) 50%, var(--gold) 75%, transparent 100%);
  opacity: 0;
  transition: opacity .35s;
}
.atg-nav.scrolled {
  box-shadow: 0 6px 32px rgba(30,58,95,.13);
}
.atg-nav.scrolled::after { opacity: 1; }

.atg-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  transition: padding .3s;
}
.atg-nav.scrolled .atg-nav-inner { padding: 9px 0; }

/* Brand */
.atg-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.atg-brand-logo {
  position: relative;
  width: 52px; height: 52px;
  border-radius: 12px;
 /* background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);*/
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(30,58,95,.25);
  overflow: hidden;
  flex-shrink: 0;
  transition: var(--transition);
}
.atg-brand-logo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(245,158,11,.18));
  pointer-events: none;
}
.atg-brand-logo img {
  height: 36px; width: auto;
  object-fit: contain;
  position: relative; z-index: 1;
}
.atg-brand:hover .atg-brand-logo {
  transform: rotate(-4deg) scale(1.06);
  box-shadow: 0 6px 22px rgba(245,158,11,.32);
}
.atg-brand-text { display: flex; flex-direction: column; gap: 1px; }
.atg-brand-ar {
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.atg-brand-ar em { font-style: normal; color: var(--gold); }
.atg-brand-en {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  color: var(--text-muted);
  letter-spacing: .4px;
  font-weight: 500;
}
.atg-nav.scrolled .atg-brand-logo { width: 44px; height: 44px; border-radius: 10px; }
.atg-nav.scrolled .atg-brand-logo img { height: 30px; }
.atg-nav.scrolled .atg-brand-ar { font-size: .9rem; }

/* Desktop nav links */
.atg-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0; padding: 0;
}
.atg-nl {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--navy);
  font-weight: 600;
  font-size: .92rem;
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  font-family: 'Cairo', sans-serif;
  text-decoration: none;
  white-space: nowrap;
}
.atg-nl::before {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: left .25s ease, right .25s ease;
}
.atg-nl:hover::before, .atg-nl.active::before { left: 13px; right: 13px; }
.atg-nl:hover { color: var(--gold-dark); background: rgba(245,158,11,.06); }
.atg-nl.active { color: var(--gold-dark); }

.atg-mega-arrow {
  font-size: .68rem;
  transition: transform .3s;
  opacity: .7;
}
.atg-mega-arrow.rotated { transform: rotate(180deg); }

/* Book CTA button */
.atg-book-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, var(--gold) 0%, #f97316 100%);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: .88rem;
  padding: 9px 22px;
  border-radius: 25px;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(245,158,11,.28);
}
.atg-book-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-20deg);
  animation: bookShimmer 3.5s infinite;
}
@keyframes bookShimmer {
  0%      { left: -100%; }
  55%,100%{ left: 160%;  }
}
.atg-book-btn:hover {
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(245,158,11,.42);
}

/* ====================================================
   MEGA MENU
   ==================================================== */
.atg-has-mega { position: static; }
.atg-mega {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--white);
  border-top: 3px solid var(--gold);
  box-shadow: 0 24px 64px rgba(30,58,95,.16);
  z-index: 999;
  animation: megaDrop .22s ease;
}
.atg-mega.show { display: block; }
@keyframes megaDrop {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.atg-mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 22px 0 14px;
}
.atg-mega-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}
.atg-mega-card:hover {
  background: var(--light);
  border-color: var(--border);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.atg-mega-ico {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  border: 1px solid transparent;
  transition: transform .25s;
}
.atg-mega-card:hover .atg-mega-ico { transform: scale(1.1) rotate(-4deg); }
.atg-mega-info { display: flex; flex-direction: column; gap: 3px; }
.atg-mega-info strong {
  font-size: .88rem; font-weight: 700;
  color: var(--navy); display: block;
}
.atg-mega-info span { font-size: .76rem; color: var(--text-muted); line-height: 1.4; }
.atg-mega-footer {
  border-top: 1px solid var(--border);
  padding: 12px 0;
}
.atg-mega-all {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--navy); font-weight: 700; font-size: .85rem;
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
}
.atg-mega-all:hover { color: var(--gold); background: rgba(245,158,11,.07); }
.atg-all-arrow { font-size: .78rem; transition: transform .25s; }
[dir="rtl"] .atg-all-arrow { transform: rotate(0deg); }
[dir="ltr"] .atg-all-arrow { transform: rotate(180deg); }
.atg-mega-all:hover .atg-all-arrow { transform: translateX(-4px); }
[dir="ltr"] .atg-mega-all:hover .atg-all-arrow { transform: rotate(180deg) translateX(-4px); }

/* ====================================================
   HAMBURGER
   ==================================================== */
.atg-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 42px; height: 42px;
  border: 2px solid var(--navy);
  border-radius: var(--radius-sm);
  background: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
  flex-shrink: 0;
}
.atg-hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s ease, opacity .25s, width .25s, background .25s;
  transform-origin: center;
}
.atg-hamburger.open { border-color: var(--gold); background: rgba(245,158,11,.07); }
.atg-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg);  background: var(--gold); }
.atg-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.atg-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--gold); }

/* ====================================================
   MOBILE DRAWER
   ==================================================== */
.atg-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(15,32,64,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1998;
  opacity: 0;
  transition: opacity .3s;
}
.atg-overlay.show { display: block; opacity: 1; }

.atg-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 86vw);
  height: 100dvh;
  background: var(--white);
  z-index: 1999;
  display: flex; flex-direction: column;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -6px 0 40px rgba(30,58,95,.2);
  overflow-y: auto;
}
[dir="ltr"] .atg-drawer { right: auto; left: -100%; transition: left .35s cubic-bezier(.4,0,.2,1); }
.atg-drawer.open { right: 0; }
[dir="ltr"] .atg-drawer.open { left: 0; right: auto; }

.atg-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  background: var(--navy-dark);
  border-bottom: 2px solid var(--gold);
  flex-shrink: 0;
}
.atg-drawer-logo { display: flex; align-items: center; gap: 10px; }
.atg-drawer-logo span { color: var(--white); font-weight: 700; font-size: .95rem; }
.atg-drawer-close {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: .95rem;
}
.atg-drawer-close:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }

.atg-drawer-nav { list-style: none; margin: 0; padding: 8px 0; flex: 1; }
.atg-dnl {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 20px;
  color: var(--navy);
  font-weight: 600;
  font-size: .94rem;
  border-bottom: 1px solid var(--light2);
  transition: var(--transition);
  text-decoration: none;
  width: 100%;
  background: none;
  border-top: none; border-left: none; border-right: none;
  cursor: pointer;
  font-family: 'Cairo', sans-serif;
}
.atg-dnl:hover, .atg-dnl.active {
  color: var(--gold-dark);
  background: rgba(245,158,11,.05);
  padding-right: 26px;
}
[dir="ltr"] .atg-dnl:hover, [dir="ltr"] .atg-dnl.active { padding-right: 20px; padding-left: 26px; }

.atg-sub-arrow { font-size: .7rem; transition: transform .3s; }
.atg-sub-toggle.open .atg-sub-arrow { transform: rotate(180deg); }

.atg-drawer-sub { display: none; list-style: none; padding: 4px 0; margin: 0; background: var(--light); }
.atg-drawer-sub.open { display: block; }
.atg-dsl {
  display: block;
  padding: 10px 32px;
  color: var(--navy);
  font-size: .87rem;
  border-bottom: 1px solid var(--light2);
  transition: var(--transition);
  text-decoration: none;
}
.atg-dsl:hover { color: var(--gold-dark); background: rgba(245,158,11,.06); }

.atg-drawer-book {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin: 16px 16px 8px;
  padding: 14px;
  background: linear-gradient(135deg, var(--gold) 0%, #f97316 100%);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: .94rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(245,158,11,.28);
  transition: var(--transition);
  flex-shrink: 0;
}
.atg-drawer-book:hover {
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,.42);
}

.atg-drawer-foot {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  background: var(--light);
  flex-shrink: 0;
}
.atg-drawer-foot-label {
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
}
.atg-drawer-foot .lang-switcher { justify-content: center; gap: 6px; }
.atg-drawer-foot .lang-btn {
  background: var(--white);
  border-color: var(--border);
  color: var(--navy);
  padding: 5px 13px;
}
.atg-drawer-foot .lang-btn:hover, .atg-drawer-foot .lang-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
}

/* ====================================================
   RESPONSIVE — HEADER
   ==================================================== */
@media (max-width: 991px) {
  .atg-nav-links { display: none; }
  .atg-hamburger { display: flex; }
  .atg-tb-hours  { display: none; }
}
@media (max-width: 575px) {
  .atg-tb-contact { display: none; }
  .atg-tb-inner   { justify-content: flex-end; }
}

/* ====================================================
   HERO SECTION
   ==================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/atg12.jpg') center/cover no-repeat;
  opacity: .25;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,32,64,.95) 0%, rgba(30,58,95,.8) 60%, rgba(13,148,136,.3) 100%);
}
/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: float 8s ease-in-out infinite;
}
.hero-orb-1 { width: 400px; height: 400px; background: rgba(245,158,11,.12); top: -100px; right: -100px; animation-delay: 0s; }
.hero-orb-2 { width: 300px; height: 300px; background: rgba(13,148,136,.1); bottom: -50px; left: -50px; animation-delay: 3s; }
.hero-orb-3 { width: 200px; height: 200px; background: rgba(245,158,11,.08); top: 40%; left: 30%; animation-delay: 5s; }
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

/* ─── Split layout: image left / text right ─── */
.hero-layout {
  flex: 1;
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 90px);
}

/* Text side ── RIGHT in RTL, flex-start = push to top */
.hero-text-panel {
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding: 80px clamp(24px, 5vw, 80px) 50px clamp(20px, 3vw, 50px);
}
.hero-content {
  color: var(--white);
  max-width: 560px;
}

/* Image side ── LEFT in RTL, full-bleed top to bottom */
.hero-img-panel {
  width: 42%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  /* Hidden on mobile via CSS, not d-none (easier to control) */
}
.hero-img-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* Gradient that blends RIGHT edge of photo into the dark text side */
.hero-img-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 30%,
    rgba(15, 32, 64, 0.75) 85%,
    rgba(15, 32, 64, 0.95) 100%
  );
}
/* In LTR the veil flips */
[dir="ltr"] .hero-img-veil {
  background: linear-gradient(
    to left,
    transparent 30%,
    rgba(15, 32, 64, 0.75) 85%,
    rgba(15, 32, 64, 0.95) 100%
  );
}

/* ─── Badge ─── */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,.15);
  border: 1px solid rgba(245,158,11,.4);
  color: var(--gold-light);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}

/* ─── Title: GOLD ─── */
.hero-title {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 20px;
  font-family: 'Cairo', cursive;
  color: var(--gold);
}

/* ─── Subtitle ─── */
.hero-subtitle {
  font-size: clamp(.95rem, 1.6vw, 1.1rem);
  color: rgba(255,255,255,.88);
  margin-bottom: 36px;
  line-height: 1.85;
}

/* ─── Buttons ─── */
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── Mobile: hide image, center text, tighten padding ─── */
@media (max-width: 991px) {
  .hero-layout {
    min-height: auto;
    align-items: center;
    padding: 36px 0 28px;
  }
  .hero-img-panel   { display: none; }
  .hero-text-panel  { padding: 0 20px; justify-content: center; width: 100%; }
  .hero-content     { text-align: center; max-width: 100%; }
  .hero-buttons     { justify-content: center; }
  .hero-subtitle    { margin-left: auto; margin-right: auto; }
}

/* ─── Small phones ─── */
@media (max-width: 575px) {
  .hero-layout      { padding: 28px 0 20px; }
  .hero-text-panel  { padding: 0 16px; }
  .hero-badge       { font-size: .76rem; padding: 5px 13px; margin-bottom: 16px; }
  .hero-title       { font-size: clamp(1.6rem, 7vw, 2.2rem); margin-bottom: 14px; }
  .hero-subtitle    { font-size: .9rem; margin-bottom: 26px; }
  .btn-hero-primary,
  .btn-hero-outline { padding: 12px 20px; font-size: .9rem; width: 100%; justify-content: center; }
  .hero-buttons     { gap: 10px; }
}
.btn-hero-primary {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(245,158,11,.4);
}
.btn-hero-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,158,11,.5);
}
.btn-hero-outline {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
  backdrop-filter: blur(6px);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,.18);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}


/* Stats bar */
.hero-stats-bar {
  position: relative; z-index: 2;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  margin-top: auto;
}
.stat-card {
  text-align: center;
  padding: 10px 20px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat-card:last-child { border-right: none; }
[dir="rtl"] .stat-card { border-right: none; border-left: 1px solid rgba(255,255,255,.12); }
[dir="rtl"] .stat-card:last-child { border-left: none; }
.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-label { font-size: .82rem; color: rgba(255,255,255,.75); margin-top: 4px; }

/* ====================================================
   SECTION UTILITIES
   ==================================================== */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.bg-light-section { background: var(--light); }
.bg-white-section { background: var(--white); }
.bg-navy { background: var(--navy-dark); color: var(--white); }

.section-label {
  display: inline-block;
  background: rgba(245,158,11,.12);
  color: var(--gold-dark);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 14px;
  font-family: 'Cairo', sans-serif;
}
.section-title.white { color: var(--white); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-subtitle.white { color: rgba(255,255,255,.75); }

/* ====================================================
   SECTORS GRID
   ==================================================== */
.sectors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.sector-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.sector-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--card-color, var(--gold));
  transform: scaleX(0);
  transition: transform .35s ease;
}
.sector-card:hover::before { transform: scaleX(1); }
.sector-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.sector-icon-wrap {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 18px;
  background: var(--icon-bg, rgba(245,158,11,.1));
  color: var(--icon-color, var(--gold));
}
.sector-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.sector-card p {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.65;
  flex: 1;
}
.sector-services { margin-bottom: 20px; }
.sector-service-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .82rem;
  color: var(--text);
  margin-bottom: 7px;
  line-height: 1.5;
}
.sector-service-item .bi-check-circle-fill {
  color: var(--teal);
  flex-shrink: 0;
  font-size: .9rem;
  margin-top: 2px;
}
.sector-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--card-color, var(--gold-dark));
  font-weight: 700;
  font-size: .88rem;
  margin-top: auto;
  transition: var(--transition);
}
.sector-link:hover { gap: 12px; }

/* Sector color variants */
.s-tourism     { --card-color: #f59e0b; --icon-bg: rgba(245,158,11,.1);  --icon-color: #f59e0b; }
.s-medical     { --card-color: #ef4444; --icon-bg: rgba(239,68,68,.1);   --icon-color: #ef4444; }
.s-translation { --card-color: #8b5cf6; --icon-bg: rgba(139,92,246,.1);  --icon-color: #8b5cf6; }
.s-business    { --card-color: #0d9488; --icon-bg: rgba(13,148,136,.1);  --icon-color: #0d9488; }
.s-academic    { --card-color: #3b82f6; --icon-bg: rgba(59,130,246,.1);  --icon-color: #3b82f6; }
.s-external    { --card-color: #22c55e; --icon-bg: rgba(34,197,94,.1);   --icon-color: #22c55e; }
.s-legal       { --card-color: #dc2626; --icon-bg: rgba(220,38,38,.1);   --icon-color: #dc2626; }
.s-arabmarket  { --card-color: #f97316; --icon-bg: rgba(249,115,22,.1);  --icon-color: #f97316; }
.s-embassy     { --card-color: #1d4ed8; --icon-bg: rgba(29,78,216,.1);   --icon-color: #1d4ed8; }

/* Fast Track card — special gold shimmer card */
.sector-card.s-fasttrack {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1a3356 60%, #0f2040 100%);
  border: 2px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.sector-card.s-fasttrack::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,158,11,.08) 0%, transparent 60%);
  pointer-events: none;
}
.sector-card.s-fasttrack h3,
.sector-card.s-fasttrack p,
.sector-card.s-fasttrack .sector-service-item span { color: #fff; }
.sector-card.s-fasttrack .sector-service-item i { color: var(--gold); }
.sector-card.s-fasttrack .sector-link { color: var(--gold); }
.sector-card.s-fasttrack { --card-color: var(--gold); --icon-bg: rgba(245,158,11,.15); --icon-color: var(--gold); }
.sector-card.s-fasttrack .sector-icon-wrap { font-size: 2rem; }
.ft-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: .65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ====================================================
   BUTTONS (General)
   ==================================================== */
.btn-primary-atg {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary-atg:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,158,11,.4);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 11px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-white:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
  padding: 11px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ====================================================
   WHY US
   ==================================================== */
.why-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.why-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: 1.6rem;
}
.why-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-card p  { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* ====================================================
   ABOUT PREVIEW
   ==================================================== */
.about-img-wrap { position: relative; }
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img img { width: 100%; height: 430px; object-fit: cover; }
.about-exp-badge {
  position: absolute;
  bottom: 30px; right: -20px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  min-width: 130px;
}
[dir="rtl"] .about-exp-badge { right: auto; left: -20px; }
.about-exp-badge .exp-num { font-size: 2.5rem; font-weight: 900; line-height: 1; display: block; }
.about-exp-badge .exp-lbl { font-size: .78rem; font-weight: 600; margin-top: 4px; opacity: .9; }
.about-content-wrap { padding: 20px 0; }
.about-mission-box, .about-vision-box {
  background: var(--light);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 14px;
  border-right: 4px solid var(--gold);
}
[dir="ltr"] .about-mission-box, [dir="ltr"] .about-vision-box { border-right: none; border-left: 4px solid var(--gold); }
.about-mission-box h5, .about-vision-box h5 {
  font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: 4px;
}
.about-mission-box p, .about-vision-box p {
  font-size: .85rem; color: var(--text-muted); line-height: 1.6;
}

/* ====================================================
   BOOKING CTA
   ==================================================== */
.booking-cta {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--teal-dark) 100%);
  position: relative; overflow: hidden;
}
.booking-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="40" fill="rgba(245,158,11,0.05)"/><circle cx="80" cy="80" r="50" fill="rgba(13,148,136,0.05)"/></svg>');
  background-size: cover;
}
.booking-cta-content { position: relative; z-index: 1; }
.booking-cta h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--white); font-weight: 900; margin-bottom: 14px; }
.booking-cta p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 500px; line-height: 1.7; margin-bottom: 30px; }
.booking-features { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 34px; }
.booking-feature {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.85); font-size: .88rem;
}
.booking-feature .bi { color: var(--gold); font-size: 1.1rem; }

/* ====================================================
   TESTIMONIALS
   ==================================================== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '"';
  position: absolute; top: 16px;
  font-size: 5rem; color: rgba(245,158,11,.15);
  font-family: Georgia, serif; line-height: 1;
}
[dir="rtl"] .testimonial-card::before { right: 20px; }
[dir="ltr"] .testimonial-card::before { left: 20px; }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: .92rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.2rem; font-weight: 700;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: .92rem; color: var(--navy); }
.author-country { font-size: .78rem; color: var(--text-muted); }

/* ====================================================
   CONTACT SECTION
   ==================================================== */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.contact-info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.contact-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  color: var(--white); font-size: 1.4rem;
}
.contact-info-card h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.contact-info-card a, .contact-info-card p { color: var(--text-muted); font-size: .9rem; }
.contact-info-card a:hover { color: var(--gold); }

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-label { font-weight: 600; font-size: .9rem; color: var(--navy); margin-bottom: 6px; display: block; }
.form-control {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: .92rem;
  transition: var(--transition);
  width: 100%;
  background: var(--white);
  color: var(--text);
  font-family: inherit;
  margin-bottom: 18px;
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,158,11,.12);
}
.form-control::placeholder { color: #a8b3c0; }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-group { margin-bottom: 0; }

/* ====================================================
   BOOKING PAGE
   ==================================================== */
.booking-steps {
  display: flex; gap: 0;
  margin-bottom: 40px;
  background: var(--light);
  border-radius: var(--radius-md);
  padding: 6px;
}
.booking-step {
  flex: 1; text-align: center; padding: 14px 10px;
  border-radius: var(--radius-sm);
  font-size: .82rem; color: var(--text-muted); font-weight: 600;
  cursor: pointer; transition: var(--transition);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.booking-step.active {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.booking-step .step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--light2); color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700;
}
.booking-step.active .step-num { background: var(--gold); color: var(--navy-dark); }

.sector-select-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 30px; }
.sector-select-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}
.sector-select-card:hover, .sector-select-card.selected {
  border-color: var(--gold);
  background: rgba(245,158,11,.05);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.sector-select-card .s-icon { font-size: 2rem; margin-bottom: 10px; }
.sector-select-card .s-name { font-size: .85rem; font-weight: 700; color: var(--navy); }

.booking-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

/* ====================================================
   SERVICES PAGE
   ==================================================== */
.service-page-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 80px 0 60px;
  position: relative; overflow: hidden;
}
.service-page-header::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0; height: 50px;
  background: var(--white);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.page-header-title { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 10px; }
.page-header-sub { color: rgba(255,255,255,.75); font-size: 1.05rem; }
.breadcrumb-custom { display: flex; gap: 10px; align-items: center; margin-top: 16px; }
.breadcrumb-custom a { color: rgba(255,255,255,.6); font-size: .88rem; }
.breadcrumb-custom a:hover { color: var(--gold); }
.breadcrumb-custom .sep { color: rgba(255,255,255,.4); font-size: .8rem; }
.breadcrumb-custom .current { color: var(--gold); font-size: .88rem; font-weight: 600; }

/* Full sector section */
.sector-full-section { padding: 70px 0; border-bottom: 1px solid var(--border); }
.sector-full-section:last-child { border-bottom: none; }
.sector-full-section.alt { background: var(--light); }

.sector-full-icon {
  width: 80px; height: 80px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; margin-bottom: 20px;
}
.sector-full-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; color: var(--navy); margin-bottom: 12px; }
.sector-full-desc { font-size: 1rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; }
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}
.service-list-item {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  border: 1px solid var(--border);
  transition: var(--transition);
  font-size: .9rem;
  color: var(--text);
}
.service-list-item:hover { border-color: var(--gold); transform: translateX(-3px); }
[dir="ltr"] .service-list-item:hover { transform: translateX(3px); }
.service-list-item .bi { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

/* ====================================================
   ABOUT PAGE
   ==================================================== */
.about-page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 80px 0 60px;
  position: relative; overflow: hidden;
}
.about-page-hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0; height: 50px;
  background: var(--white);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 30px; }
.value-item {
  text-align: center; padding: 28px 20px;
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--border); transition: var(--transition);
}
.value-item:hover { border-color: var(--gold); transform: translateY(-4px); }
.value-icon { font-size: 2rem; margin-bottom: 12px; }
.value-item h4 { font-weight: 700; color: var(--navy); font-size: .95rem; }

/* ====================================================
   FOOTER
   ==================================================== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  padding: 70px 0 0;
}
.footer-brand { margin-bottom: 20px; }
.footer-logo { height: 50px; width: auto; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.6); max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }

.footer-col-title {
  font-size: .95rem; font-weight: 700;
  color: var(--white); margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(245,158,11,.3);
  display: inline-block;
}
.footer-links-list li { margin-bottom: 10px; }
.footer-links-list a {
  color: rgba(255,255,255,.6);
  font-size: .87rem;
  transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-links-list a:hover { color: var(--gold); gap: 12px; }
.footer-links-list a .bi { font-size: .75rem; }

.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px; font-size: .87rem; color: rgba(255,255,255,.65);
}
.footer-contact-list .bi { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-list a { color: rgba(255,255,255,.65); transition: var(--transition); }
.footer-contact-list a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  margin-top: 50px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom-text { font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .82rem; color: rgba(255,255,255,.45); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ====================================================
   WHATSAPP BUTTON
   ==================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  z-index: 999;
  animation: waPulse 3s infinite;
}
[dir="rtl"] .whatsapp-float { left: 28px; }
[dir="ltr"] .whatsapp-float { right: 28px; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.4); }
  50% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}
.whatsapp-link {
  display: flex; align-items: center; gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .92rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: var(--transition);
}
.whatsapp-link:hover {
  background: #128C7E;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
}
.whatsapp-link .bi-whatsapp { font-size: 1.4rem; }

/* Back to top */
.back-to-top {
  position: fixed;
  z-index: 999;
  bottom: 90px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
}
[dir="rtl"] .back-to-top { left: 28px; }
[dir="ltr"] .back-to-top { right: 28px; }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }

/* ====================================================
   ANIMATIONS (scroll-triggered via JS class)
   ==================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* Counter animation */
.count-up { font-variant-numeric: tabular-nums; }

/* ====================================================
   PROJECTS PAGE
   ==================================================== */
.projects-filter {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px;
}
.filter-btn {
  background: var(--white); border: 2px solid var(--border);
  color: var(--text); padding: 9px 22px; border-radius: 25px;
  cursor: pointer; transition: var(--transition); font-weight: 600; font-size: .88rem;
  font-family: inherit;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy); border-color: var(--navy); color: var(--white);
}
.project-card {
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  background: var(--white); border: 1px solid var(--border);
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-image { width: 100%; height: 220px; object-fit: cover; }
.project-body { padding: 20px; }
.project-category {
  background: var(--gold); color: var(--navy-dark);
  padding: 3px 12px; border-radius: 15px; font-size: .75rem; font-weight: 700;
  display: inline-block; margin-bottom: 10px;
}
.project-title { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.5; }
.project-desc { font-size: .82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.project-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: .78rem; color: var(--text-muted); }
.project-meta span { display: flex; align-items: center; gap: 4px; }

/* New project card style (2026 redesign) */
.project-card-new {
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  background: var(--white); border: 1px solid var(--border);
}
.project-card-new:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-img { position: relative; overflow: hidden; height: 230px; }
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.project-card-new:hover .project-img img { transform: scale(1.06); }
.project-badge {
  position: absolute; top: 14px; inset-inline-start: 14px;
  padding: 4px 14px; border-radius: 20px; font-size: .75rem; font-weight: 700;
  color: var(--white);
}
.project-badge.s-translation  { background: #0e7490; }
.project-badge.s-tourism      { background: #0d9488; }
.project-badge.s-medical      { background: #059669; }
.project-badge.s-business     { background: #d97706; }
.project-badge.s-academic     { background: #7c3aed; }
.project-badge.s-external     { background: #be185d; }
.project-badge.s-legal        { background: #dc2626; }
.project-badge.s-arabmarket   { background: #ea580c; }
.project-badge.s-embassy      { background: #1d4ed8; }
.project-card-new .project-body { padding: 20px; }
.project-card-new .project-body h3 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.55; }
.project-card-new .project-body p { font-size: .82rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.project-meta-row { display: flex; gap: 14px; flex-wrap: wrap; font-size: .78rem; color: var(--text-muted); }
.project-meta-row span { display: flex; align-items: center; gap: 5px; }

/* Achievement stats */
.ach-card {
  text-align: center; padding: 36px 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
}
.ach-number { font-size: 2.8rem; font-weight: 900; color: var(--gold); display: block; line-height: 1; }
.ach-label { font-size: .88rem; color: rgba(255,255,255,.7); margin-top: 6px; }

/* ====================================================
   SOCIAL SHARE BAR
   ==================================================== */
.social-share-bar {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px;
}
.share-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 25px; font-size: .82rem; font-weight: 600;
  transition: var(--transition); border: none; cursor: pointer;
}
.share-fb { background: #1877f2; color: #fff; }
.share-wa { background: #25D366; color: #fff; }
.share-tw { background: #000; color: #fff; }
.share-li { background: #0077b5; color: #fff; }
.share-btn:hover { opacity: .88; transform: translateY(-2px); }

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 992px) {
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .sector-select-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-img-frame img { height: 360px; }
  .about-exp-badge { right: 10px; }
  [dir="rtl"] .about-exp-badge { left: 10px; }
  .navbar .container { flex-wrap: wrap; }
  .mega-menu { top: auto; }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .sectors-grid { grid-template-columns: 1fr; }
  .sector-select-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 2.2rem; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  [dir="rtl"] .hero-buttons { align-items: flex-end; }
  .hero-img-frame { margin-top: 40px; }
  .hero-img-frame img { height: 280px; }
  .hero-img-badge { display: none; }
  .stat-card { border: none; padding: 12px; }
  .top-bar .top-bar-info { justify-content: center; }
  .top-bar .top-bar-right { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .contact-form-wrap { padding: 24px 20px; }
  .booking-form-wrap { padding: 24px 20px; }
  .booking-steps { flex-wrap: wrap; }
  .booking-step { min-width: 45%; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .whatsapp-text { display: none; }
  .whatsapp-link { padding: 12px; }
}

@media (max-width: 576px) {
  .hero { min-height: auto; padding: 100px 0 40px; }
  .hero-stats-bar .row { flex-direction: row; }
  .stat-number { font-size: 1.8rem; }
  .sectors-grid { grid-template-columns: 1fr; }
  .sector-select-grid { grid-template-columns: 1fr; }
  .about-img img { height: 260px; }
  .section-title { font-size: 1.7rem; }
  .hero-title { font-size: 1.9rem; }
  .booking-steps { gap: 4px; }
  .booking-step { font-size: .72rem; padding: 10px 6px; }
  .values-grid { grid-template-columns: 1fr; }
  .projects-filter { gap: 6px; }
  .filter-btn { padding: 7px 14px; font-size: .8rem; }
}

/* ====================================================
   PRINT
   ==================================================== */
@media print {
  .top-bar, .navbar, .whatsapp-float, .back-to-top, .site-footer { display: none !important; }
  .hero { min-height: auto; }
}
