:root {
  --bg: #f5f9ff;
  --paper: #ffffff;
  --ink: #0b2239;
  --muted: #5a6b7b;
  --line: rgba(9, 45, 77, 0.12);
  --brand: #0b60b0;
  --brand-2: #2a93d5;
  --brand-3: #86c9f4;
  --accent: #ffb703;
  --success: #16a34a;
  --danger: #ef4444;
  --shadow: 0 20px 60px rgba(11, 96, 176, 0.12);
  --shadow-strong: 0 26px 80px rgba(7, 37, 72, 0.20);
  --radius: 26px;
  --radius-sm: 16px;
  --max: 1180px;
  --nav-h: 96px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, rgba(134, 201, 244, .36), transparent 36rem), var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
body[data-lang="ar"] {
  direction: rtl;
  font-family: "Noto Kufi Arabic", "Noto Sans Arabic", Tahoma, Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 9999;
  transform: translateY(-140%); background: var(--ink); color: white;
  padding: 10px 14px; border-radius: 12px; transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.en, .ar { display: inline; }
body[data-lang="en"] .ar { display: none !important; }
body[data-lang="ar"] .en { display: none !important; }

.site-header {
  position: sticky; top: 0; z-index: 80;
  height: var(--nav-h);
  display: grid; place-items: center;
  background: rgba(245, 249, 255, 0.78);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(11,96,176,.10);
}
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logo-link { display: flex; align-items: center; gap: 10px; min-width: 120px; }
.logo { width: auto; height: 78px; display: block; object-fit: contain; filter: drop-shadow(0 10px 20px rgba(11,96,176,.12)); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 10px 14px; border-radius: 999px; color: #24435c; font-weight: 700; font-size: .96rem;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}
.nav-links a:hover, .nav-links a.active { background: #e5f2ff; color: var(--brand); transform: translateY(-1px); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang-toggle, .mobile-toggle {
  border: 1px solid var(--line); background: white; color: var(--ink); border-radius: 999px;
  padding: 10px 13px; cursor: pointer; font-weight: 800;
  box-shadow: 0 10px 24px rgba(11,96,176,.08);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.lang-toggle:hover, .mobile-toggle:hover { transform: translateY(-2px); border-color: rgba(11,96,176,.32); }
.mobile-toggle { display: none; width: 44px; height: 44px; padding: 0; place-items: center; }
.mobile-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px auto; border-radius: 999px; transition: transform .2s ease, opacity .2s ease; }
body.nav-open .mobile-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .mobile-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .mobile-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: 0; border-radius: 999px; padding: 13px 20px; cursor: pointer;
  font-weight: 900; letter-spacing: -.01em; transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
  min-height: 48px;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { color: white; background: linear-gradient(135deg, var(--brand), var(--brand-2)); box-shadow: 0 16px 34px rgba(11,96,176,.28); }
.btn-primary:hover { box-shadow: 0 24px 44px rgba(11,96,176,.34); }
.btn-ghost { background: white; color: var(--brand); border: 1px solid rgba(11,96,176,.18); }
.btn-ghost:hover { box-shadow: 0 18px 38px rgba(11,96,176,.12); }
.btn-whatsapp { background: linear-gradient(135deg, #13b86a, #0c9e5b); color: white; box-shadow: 0 16px 34px rgba(19,184,106,.26); }
.btn-block { width: 100%; }

.hero {
  position: relative; overflow: hidden; padding: 76px 0 54px;
}
.hero::before {
  content: ""; position: absolute; inset: -18% -8% auto auto; width: 54vw; height: 54vw; min-width: 530px;
  background: radial-gradient(circle, rgba(42,147,213,.25), transparent 61%); pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.kicker {
  display: inline-flex; gap: 9px; align-items: center; padding: 8px 12px; border-radius: 999px;
  background: rgba(11,96,176,.09); color: var(--brand); font-weight: 900; margin-bottom: 18px;
}
.kicker::before { content: ""; width: 10px; height: 10px; border-radius: 999px; background: var(--success); box-shadow: 0 0 0 6px rgba(22,163,74,.13); }
h1, h2, h3 { line-height: 1.08; margin: 0; letter-spacing: -.04em; }
h1 { font-size: clamp(2.55rem, 7vw, 5.5rem); max-width: 780px; }
h2 { font-size: clamp(2rem, 4.6vw, 3.6rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.65rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); margin: 22px 0 0; max-width: 650px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.trust-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 28px; max-width: 660px; }
.trust-pill { background: rgba(255,255,255,.84); border: 1px solid rgba(11,96,176,.10); border-radius: 18px; padding: 13px; box-shadow: 0 14px 30px rgba(11,96,176,.08); }
.trust-pill strong { display: block; font-size: .95rem; }
.trust-pill small { color: var(--muted); font-weight: 700; }
.hero-card {
  position: relative; min-height: 610px; border-radius: 40px; overflow: hidden;
  box-shadow: var(--shadow-strong); background: #dfeefa; isolation: isolate;
}
.hero-card::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.28), transparent 28%),
    linear-gradient(180deg, rgba(5,38,70,.18), rgba(5,38,70,.68)),
    url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=1400&q=85') center/cover;
  transform: scale(1.02); transition: transform .8s ease;
}
.hero-card:hover::before { transform: scale(1.08); }
.hero-card::after {
  content: ""; position: absolute; width: 320px; height: 320px; right: -50px; top: -70px; border-radius: 50%;
  background: rgba(255,255,255,.14); z-index: 0;
}
body[data-lang="ar"] .hero-card::after { right: auto; left: -50px; }
.hero-visual {
  position: absolute; inset: 22px 22px 190px; z-index: 1;
}
.hero-flag {
  position: absolute; top: 0; display: flex; align-items: center; gap: 12px; padding: 12px 16px;
  background: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.72); border-radius: 20px;
  box-shadow: 0 16px 30px rgba(0,0,0,.14); backdrop-filter: blur(10px);
}
.hero-flag strong, .hero-flag small { display: block; }
.hero-flag strong { font-size: .95rem; color: #14324d; }
.hero-flag small { color: var(--muted); font-size: .78rem; font-weight: 800; }
.flag-emoji { font-size: 1.55rem; line-height: 1; }
.flag-kw { left: 0; }
.flag-uk { right: 0; }
body[data-lang="ar"] .flag-kw { left: auto; right: 0; }
body[data-lang="ar"] .flag-uk { right: auto; left: 0; }
.hero-route-card {
  position: absolute; top: 84px; left: 50%; transform: translateX(-50%); width: min(100%, 470px);
  background: rgba(8,26,50,.56); color: white; border: 1px solid rgba(255,255,255,.16); border-radius: 30px; padding: 24px;
  box-shadow: 0 18px 50px rgba(0,0,0,.22); backdrop-filter: blur(12px);
}
.route-top {
  display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; margin-bottom: 16px;
}
.route-chip, .route-online {
  display: inline-flex; align-items: center; padding: 7px 12px; border-radius: 999px; font-size: .76rem; font-weight: 900;
}
.route-chip { background: rgba(255,183,3,.18); color: #ffe08a; }
.route-online { background: rgba(255,255,255,.14); color: rgba(255,255,255,.92); }
.hero-route-card h3 { margin-bottom: 10px; font-size: clamp(1.45rem, 2vw, 1.95rem); }
.hero-route-card p { margin: 0 0 18px; color: rgba(255,255,255,.82); }
.route-line {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px;
}
.line-stop {
  display: grid; justify-items: center; gap: 6px; font-size: .78rem; font-weight: 800; color: rgba(255,255,255,.88);
}
.line-track {
  height: 4px; border-radius: 999px; background: linear-gradient(90deg, rgba(255,255,255,.25), rgba(255,183,3,.95)); position: relative; overflow: hidden;
}
.line-track::after {
  content: ""; position: absolute; top: -4px; left: 38%; width: 14px; height: 14px; border-radius: 50%; background: white; box-shadow: 0 0 0 6px rgba(255,255,255,.18);
}
.hero-mini-cards {
  position: absolute; left: 24px; right: 24px; bottom: 0; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px;
}
.mini-card {
  background: rgba(255,255,255,.92); border-radius: 22px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.65); box-shadow: 0 16px 26px rgba(0,0,0,.12);
  transform: translateY(0); transition: transform .25s ease, box-shadow .25s ease;
}
.hero-card:hover .mini-card { transform: translateY(-4px); box-shadow: 0 22px 34px rgba(0,0,0,.18); }
.mini-card b { display: block; color: #14324d; margin-bottom: 5px; font-size: .95rem; }
.mini-card span { display: block; color: var(--muted); font-size: .8rem; font-weight: 800; }
.floating-panel {
  position: absolute; left: 26px; right: 26px; bottom: 26px; z-index: 2;
  background: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.65); backdrop-filter: blur(18px);
  border-radius: 28px; padding: 24px; box-shadow: 0 18px 42px rgba(0,0,0,.16);
}
body[data-lang="ar"] .floating-panel { text-align: right; }
.floating-panel h3 { margin-bottom: 10px; }
.floating-panel p { margin: 0 0 18px; color: var(--muted); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.stat { padding: 12px; background: rgba(11,96,176,.08); border-radius: 16px; text-align: center; }
.stat b { display: block; color: var(--brand); font-size: 1.3rem; }
.stat span { color: var(--muted); font-size: .82rem; font-weight: 800; }

.section { padding: 84px 0; }
.section.soft { background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(224,241,255,.55)); }
.section-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 32px; }
.section-head p { max-width: 620px; color: var(--muted); margin: 0; font-size: 1.05rem; }
.center { text-align: center; max-width: 760px; margin-inline: auto; }
.center p { margin: 18px auto 0; color: var(--muted); }

.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.service-card {
  position: relative; min-height: 390px; border-radius: var(--radius); overflow: hidden; padding: 20px;
  background: var(--paper); box-shadow: var(--shadow); border: 1px solid rgba(11,96,176,.09);
  display: flex; align-items: end; isolation: isolate; transform-style: preserve-3d;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.service-card:hover { transform: translateY(-12px) scale(1.01); box-shadow: 0 32px 64px rgba(11,96,176,.22); border-color: rgba(11,96,176,.22); }
.service-card::before { content: ""; position: absolute; inset: 0; background: var(--image) center/cover; z-index: -2; transition: transform .8s ease; }
.service-card:hover::before { transform: scale(1.08); }
.service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,38,72,.06), rgba(7,38,72,.84)); z-index: -1; }
.service-card .badge { position: absolute; top: 18px; left: 18px; background: rgba(255,255,255,.9); border-radius: 999px; color: var(--brand); padding: 8px 12px; font-weight: 900; box-shadow: 0 10px 24px rgba(0,0,0,.12); }
body[data-lang="ar"] .service-card .badge { left: auto; right: 18px; }
.service-content { color: white; }
.service-content h3 { margin-bottom: 10px; }
.service-content p { margin: 0; color: rgba(255,255,255,.84); font-weight: 600; }
.service-card.ielts { --image: url('https://images.unsplash.com/photo-1524995997946-a1c2e315a42f?auto=format&fit=crop&w=900&q=85'); }
.service-card.driver { --image: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=900&q=85'); }
.service-card.home { --image: url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?auto=format&fit=crop&w=900&q=85'); }
.service-card.uni { --image: url('https://images.unsplash.com/photo-1541339907198-e08756dedf3f?auto=format&fit=crop&w=900&q=85'); }

.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step {
  position: relative; background: white; border: 1px solid rgba(11,96,176,.09); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow);
  transition: transform .24s ease, box-shadow .24s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: 0 24px 58px rgba(11,96,176,.16); }
.step::before {
  counter-increment: step; content: counter(step); display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 14px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: white; font-weight: 900; margin-bottom: 18px;
}
.step p { color: var(--muted); margin: 12px 0 0; }

.feature-band {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 24px; align-items: stretch;
  background: #061c32; border-radius: 38px; color: white; overflow: hidden; box-shadow: var(--shadow-strong);
}
.feature-copy { padding: clamp(28px, 5vw, 54px); }
.feature-copy p { color: rgba(255,255,255,.76); }
.feature-list { display: grid; gap: 13px; margin-top: 24px; }
.feature-item { display: flex; gap: 13px; align-items: start; padding: 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.06); }
.feature-item i { font-style: normal; width: 30px; height: 30px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,183,3,.18); color: var(--accent); flex: 0 0 auto; }
.feature-media { min-height: 460px; background: linear-gradient(180deg, rgba(6,28,50,.1), rgba(6,28,50,.38)), url('https://images.unsplash.com/photo-1571260899304-425eee4c7efc?auto=format&fit=crop&w=1200&q=85') center/cover; }

.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote { background: white; border: 1px solid rgba(11,96,176,.09); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.quote p { color: var(--muted); margin: 0 0 18px; }
.quote b { display: block; }
.stars { color: #f59e0b; letter-spacing: 2px; margin-bottom: 12px; }

.cta-card {
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: white; border-radius: 38px; padding: clamp(28px, 5vw, 56px);
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; align-items: center; box-shadow: var(--shadow-strong); position: relative; overflow: hidden;
}
.cta-card::after { content: ""; position: absolute; right: -90px; top: -120px; width: 330px; height: 330px; background: rgba(255,255,255,.14); border-radius: 50%; }
body[data-lang="ar"] .cta-card::after { right: auto; left: -90px; }
.cta-card p { color: rgba(255,255,255,.78); max-width: 680px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; position: relative; z-index: 2; }
body[data-lang="ar"] .cta-actions { justify-content: flex-start; }

.page-hero { padding: 76px 0 54px; background: linear-gradient(180deg, rgba(213,235,255,.8), rgba(245,249,255,0)); }
.page-hero p { max-width: 720px; color: var(--muted); font-size: 1.1rem; }
.breadcrumbs { display: inline-flex; gap: 8px; font-weight: 800; color: var(--brand); margin-bottom: 18px; }

.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.detail-card { background: white; border-radius: var(--radius); padding: 26px; border: 1px solid rgba(11,96,176,.09); box-shadow: var(--shadow); transition: transform .24s ease, box-shadow .24s ease; }
.detail-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }
.detail-icon { width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center; background: #e8f4ff; color: var(--brand); font-size: 1.45rem; margin-bottom: 18px; }
.detail-card p { color: var(--muted); }
.check-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 10px; }
.check-list li { position: relative; padding-inline-start: 30px; color: #28455e; font-weight: 700; }
.check-list li::before { content: "✓"; position: absolute; inset-inline-start: 0; color: var(--success); font-weight: 900; }

.contact-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 24px; align-items: start; }
.contact-card, .form-card, .legal-card { background: white; border: 1px solid rgba(11,96,176,.09); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.contact-list { display: grid; gap: 14px; margin-top: 22px; }
.contact-item { display: flex; gap: 14px; align-items: center; padding: 15px; border-radius: 18px; background: #f2f8ff; border: 1px solid rgba(11,96,176,.08); }
.contact-item i { font-style: normal; width: 38px; height: 38px; border-radius: 14px; display: grid; place-items: center; background: white; color: var(--brand); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: grid; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
label { font-weight: 900; color: #233d55; }
input, textarea, select {
  width: 100%; border: 1px solid rgba(11,96,176,.18); border-radius: 16px; padding: 13px 14px; background: #fbfdff; outline: none;
  transition: box-shadow .2s ease, border-color .2s ease;
}
textarea { min-height: 140px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--brand-2); box-shadow: 0 0 0 5px rgba(42,147,213,.14); }
.form-note { color: var(--muted); font-size: .92rem; margin-top: 12px; }

.legal-card { max-width: 900px; margin-inline: auto; }
.legal-card h2 { font-size: 1.55rem; margin-top: 30px; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p, .legal-card li { color: var(--muted); }

.site-footer { background: #061c32; color: white; padding: 58px 0 26px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .7fr .7fr .9fr; gap: 28px; align-items: start; }
.footer-logo { width: 210px; max-height: 190px; object-fit: contain; background: white; border-radius: 22px; padding: 12px; }
.footer-grid p, .footer-grid a, .footer-bottom { color: rgba(255,255,255,.74); }
.footer-links { display: grid; gap: 9px; }
.footer-links a:hover { color: white; }
.footer-title { font-weight: 900; margin-bottom: 14px; color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 34px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

.floating-whatsapp {
  position: fixed; right: 20px; bottom: 20px; z-index: 70; width: 58px; height: 58px; border-radius: 20px; display: grid; place-items: center;
  background: linear-gradient(135deg, #16a34a, #22c55e); color: white; box-shadow: 0 18px 44px rgba(22,163,74,.34); font-size: 1.65rem;
  transition: transform .22s ease, box-shadow .22s ease;
}
body[data-lang="ar"] .floating-whatsapp { right: auto; left: 20px; }
.floating-whatsapp:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 26px 55px rgba(22,163,74,.42); }

.reveal { opacity: 0; transform: translateY(26px) scale(.985); filter: blur(6px); transition: opacity .75s ease, transform .75s cubic-bezier(.22,1,.36,1), filter .75s ease; transition-delay: var(--reveal-delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }

@media (max-width: 1050px) {
  .hero-visual { inset: 18px 18px 210px; }
  .hero-route-card { width: min(100%, 440px); }
}
@media (max-width: 1050px) {
  .hero-grid, .feature-band, .cta-card, .contact-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline, .testimonials { grid-template-columns: repeat(2, 1fr); }
  .hero-card { min-height: 520px; }
  .cta-actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .mobile-toggle { display: grid; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 78;
    display: grid; gap: 6px; padding: 16px 20px 22px; background: rgba(245,249,255,.98); border-bottom: 1px solid rgba(11,96,176,.10);
    transform: translateY(-110%); opacity: 0; pointer-events: none; transition: transform .25s ease, opacity .25s ease;
    box-shadow: 0 30px 50px rgba(11,96,176,.12);
  }
  body.nav-open .nav-links { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 13px 16px; background: white; border: 1px solid rgba(11,96,176,.08); }
  .logo { height: 66px; width: auto; }
  .logo-link { min-width: auto; }
  .hero { padding-top: 50px; }
  .hero-visual { inset: 18px 18px 175px; }
  .hero-route-card { top: 84px; width: calc(100% - 12px); }
  .hero-mini-cards { left: 18px; right: 18px; }
  .section { padding: 62px 0; }
  .section-head { display: grid; align-items: start; }
  .detail-grid { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--max)); }
  .service-grid, .timeline, .testimonials, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-card { min-height: 790px; border-radius: 30px; }
  .hero-visual { inset: 14px 14px 240px; }
  .hero-flag { position: static; margin-bottom: 12px; }
  .hero-route-card { position: static; transform: none; width: 100%; margin-top: 6px; }
  .hero-mini-cards { position: static; margin-top: 14px; left: auto; right: auto; grid-template-columns: 1fr; }
  .floating-panel { left: 14px; right: 14px; bottom: 14px; padding: 18px; }
  .stats { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .logo { height: 58px; }
  .nav-actions .btn { display: none; }
  .page-hero { padding-top: 52px; }
  .footer-bottom { display: grid; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}


.showcase-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px;
}
.showcase-card {
  --px: 0px; --py: 0px; position: relative; min-height: 340px; border-radius: 34px; overflow: hidden; isolation: isolate;
  box-shadow: var(--shadow-strong); border: 1px solid rgba(255,255,255,.25);
  transform: translate3d(0,0,0); transition: transform .35s ease, box-shadow .35s ease;
}
.showcase-card::before {
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,38,72,.08), rgba(7,38,72,.82)), var(--showcase) center/cover;
  transform: translate(var(--px), var(--py)) scale(1.06); transition: transform .28s ease; z-index: -1;
}
.showcase-card:hover { transform: translateY(-8px); box-shadow: 0 34px 70px rgba(11,96,176,.24); }
.showcase-overlay { position: absolute; inset: auto 22px 22px 22px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); border-radius: 26px; padding: 22px; color: white; backdrop-filter: blur(10px); }
.showcase-overlay p { color: rgba(255,255,255,.86); margin: 8px 0 0; }
.showcase-tag { display: inline-flex; align-items: center; padding: 7px 12px; border-radius: 999px; background: rgba(255,255,255,.92); color: var(--brand); font-size: .78rem; font-weight: 900; margin-bottom: 12px; }

.service-feature-stack { display: grid; gap: 24px; }
.service-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; background: white; border-radius: 34px; overflow: hidden; border: 1px solid rgba(11,96,176,.09); box-shadow: var(--shadow); }
.service-feature.reverse { direction: rtl; }
.service-feature.reverse > * { direction: ltr; }
.feature-photo { min-height: 340px; background: linear-gradient(180deg, rgba(7,38,72,.04), rgba(7,38,72,.22)), var(--feature) center/cover; }
.feature-info { padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.feature-info p { color: var(--muted); }
.feature-info .check-list { margin-top: 16px; }
.service-feature:hover { box-shadow: 0 32px 68px rgba(11,96,176,.17); transform: translateY(-4px); transition: transform .28s ease, box-shadow .28s ease; }

body[data-lang="ar"] .showcase-overlay, body[data-lang="ar"] .feature-info { text-align: right; }
body[data-lang="ar"] .service-feature.reverse { direction: ltr; }
body[data-lang="ar"] .service-feature.reverse > * { direction: rtl; }

@media (max-width: 1050px) {
  .showcase-grid, .service-feature { grid-template-columns: 1fr; }
  .service-feature.reverse { direction: ltr; }
  .service-feature.reverse > * { direction: ltr; }
}
@media (max-width: 620px) {
  .showcase-card { min-height: 300px; border-radius: 26px; }
  .showcase-overlay { inset: auto 14px 14px 14px; padding: 18px; }
  .service-feature { border-radius: 28px; }
  .feature-info { padding: 20px; }
}


.btn-instagram {
  color: white;
  background: linear-gradient(135deg, #833ab4, #fd1d1d 52%, #fcb045);
  box-shadow: 0 18px 36px rgba(253,29,29,.22);
}
.btn-instagram:hover { transform: translateY(-3px); box-shadow: 0 25px 48px rgba(131,58,180,.28); }
.nav-instagram { padding-inline: 18px; }
.social-proof-card {
  margin-top: 18px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(131,58,180,.10), rgba(253,29,29,.08), rgba(252,176,69,.10));
  border: 1px solid rgba(131,58,180,.16);
}
.social-proof-card p { color: var(--muted); margin: 8px 0 14px; }
.form-status {
  display: none;
  margin-top: 14px;
  padding: 13px 15px;
  border-radius: 16px;
  font-weight: 800;
}
.form-status.success { display: block; color: #166534; background: #dcfce7; border: 1px solid #86efac; }
.form-status.error { display: block; color: #991b1b; background: #fee2e2; border: 1px solid #fecaca; }
.form-status.loading { display: block; color: #075985; background: #e0f2fe; border: 1px solid #bae6fd; }
.floating-social {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  display: grid;
  gap: 12px;
}
body[data-lang="ar"] .floating-social { right: auto; left: 20px; }
.floating-btn {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.65rem;
  transition: transform .22s ease, box-shadow .22s ease;
}
.floating-btn.whatsapp { background: linear-gradient(135deg, #16a34a, #22c55e); box-shadow: 0 18px 44px rgba(22,163,74,.34); }
.floating-btn.instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d 52%, #fcb045); box-shadow: 0 18px 44px rgba(253,29,29,.26); }
.floating-btn:hover { transform: translateY(-4px) scale(1.04); }
@media (max-width: 820px) { .nav-instagram { display: none; } }
@media (max-width: 620px) { .floating-social { right: 14px; bottom: 14px; } body[data-lang="ar"] .floating-social { left: 14px; } }

/* Premium application-first UX updates */
.btn-apply {
  color: #07243d;
  background: linear-gradient(135deg, #ffe08a, #ffb703 58%, #ff8a00);
  box-shadow: 0 18px 40px rgba(255,183,3,.34);
}
.btn-apply:hover { box-shadow: 0 28px 58px rgba(255,183,3,.42); }
.btn-xl { min-height: 64px; padding: 18px 34px; font-size: 1.08rem; }
.nav-apply { padding-inline: 20px; }
.section-tight { padding: 20px 0 42px; }
.apply-panel {
  display: grid; grid-template-columns: 1.25fr .75fr; gap: 24px; align-items: center;
  border-radius: 34px; padding: 30px; color: white;
  background: radial-gradient(circle at top right, rgba(255,183,3,.28), transparent 36%), linear-gradient(135deg, #071d35, #0b60b0 70%, #2a93d5);
  box-shadow: var(--shadow-strong); overflow: hidden; position: relative;
}
.apply-panel::after { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; right: -70px; bottom: -110px; background: rgba(255,255,255,.1); }
.apply-panel h2 { color: white; }
.apply-panel p { color: rgba(255,255,255,.82); max-width: 700px; }
.apply-panel .kicker { background: rgba(255,255,255,.12); color: white; }
.apply-panel-actions { display: grid; gap: 12px; position: relative; z-index: 2; }
.hero-actions-premium .btn-apply { min-width: 210px; }
.mini-card-featured { background: linear-gradient(135deg, #fff8df, #ffffff); border-color: rgba(255,183,3,.48); }
.service-card-featured { min-height: 415px; }
.service-card-featured::after { background: linear-gradient(180deg, rgba(7,38,72,.04), rgba(7,38,72,.78)); }
.mini-link, .showcase-cta { display: inline-flex; margin-top: 12px; color: white; font-weight: 900; text-decoration: underline; text-underline-offset: 4px; }
.showcase-featured { min-height: 420px; }
.application-primary { border: 2px solid rgba(255,183,3,.58); box-shadow: 0 34px 80px rgba(11,96,176,.18); }
.service-apply-btn { margin-top: 20px; align-self: flex-start; }
.page-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: center; }
.application-summary-card { background: white; border-radius: 30px; padding: 26px; border: 1px solid rgba(11,96,176,.10); box-shadow: var(--shadow); }
.application-summary-card strong { display: block; font-size: 1.18rem; margin-bottom: 10px; }
.highlighted-detail { border: 2px solid rgba(255,183,3,.5); background: linear-gradient(180deg, #fffdf7, #ffffff); }
.highlighted-detail .btn { margin-top: 18px; }
body[data-lang="ar"] .apply-panel::after { right: auto; left: -70px; }
@media (max-width: 1050px) {
  .apply-panel, .page-hero-grid { grid-template-columns: 1fr; }
  .service-card-featured, .showcase-featured { min-height: 360px; }
}
