/* ============================================================
   MasaratKM — مساراتكم brand tokens + landing styles
   Keep Lighthouse 100. Zero JS. Pure CSS.
   ============================================================ */

:root {
    --mk-navy: #0B1F3A;
    --mk-navy-2: #13335F;
    --mk-green: #1F8A4E;        /* Saudi green accent */
    --mk-cta: #F39200;          /* orange CTA */
    --mk-cta-2: #C87400;
    --mk-ink: #0F172A;
    --mk-muted: #475569;
    --mk-soft: #F8FAFC;
    --mk-line: #E2E8F0;
    --mk-white: #FFFFFF;
    --mk-radius: 14px;
    --mk-radius-sm: 10px;
    --mk-shadow: 0 10px 30px rgba(11,31,58,.08);
    --mk-shadow-lg: 0 20px 50px rgba(11,31,58,.14);
    --mk-font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Naskh Arabic", "IBM Plex Sans Arabic", Roboto, Helvetica, Arial, sans-serif;
    --mk-max: 1200px;
}

* { box-sizing: border-box; }

html, body.mk-body {
    margin: 0;
    padding: 0;
    color: var(--mk-ink);
    background: var(--mk-white);
    font-family: var(--mk-font);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.mk-body[dir="rtl"] { text-align: right; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--mk-navy); text-decoration: none; }
a:hover { color: var(--mk-cta); }

/* --- container --- */
.mk-container { max-width: var(--mk-max); margin: 0 auto; padding: 0 20px; }

/* --- top nav --- */
.mk-nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,.96);
    backdrop-filter: saturate(180%) blur(8px);
    border-bottom: 1px solid var(--mk-line);
}
.mk-nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
}
.mk-logo {
    font-weight: 800; font-size: 22px; letter-spacing: .2px;
    color: var(--mk-navy); display: inline-flex; align-items: center; gap: 10px;
}
.mk-logo-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: linear-gradient(135deg, var(--mk-cta), var(--mk-green));
    box-shadow: 0 0 0 4px rgba(243,146,0,.15);
}
.mk-nav-links { display: flex; gap: 22px; align-items: center; }
.mk-nav-links a { color: var(--mk-ink); font-weight: 600; font-size: 15px; }
.mk-nav-cta {
    background: var(--mk-cta); color: var(--mk-white) !important;
    padding: 10px 18px; border-radius: 999px; font-weight: 700;
    transition: background .15s ease;
}
.mk-nav-cta:hover { background: var(--mk-cta-2); color: var(--mk-white) !important; }
.mk-lang {
    border: 1px solid var(--mk-line); border-radius: 999px;
    padding: 6px 12px; font-weight: 600; font-size: 14px;
    color: var(--mk-ink); background: var(--mk-white);
}

/* --- hero --- */
.mk-hero {
    background:
        radial-gradient(900px 450px at 85% -10%, rgba(243,146,0,.18), transparent 60%),
        radial-gradient(700px 400px at -10% 20%, rgba(31,138,78,.16), transparent 60%),
        linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    padding: 72px 0 48px;
}
.mk-hero-grid {
    display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center;
}
.mk-hero h1 {
    font-size: clamp(32px, 4.4vw, 54px);
    line-height: 1.1; margin: 0 0 18px; color: var(--mk-navy);
    font-weight: 800; letter-spacing: -.5px;
}
.mk-hero p.lead {
    font-size: clamp(16px, 1.4vw, 19px); color: var(--mk-muted);
    margin: 0 0 28px; max-width: 52ch;
}
.mk-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.mk-badge {
    display: inline-flex; gap: 6px; align-items: center;
    padding: 6px 12px; border-radius: 999px;
    background: rgba(31,138,78,.10); color: var(--mk-green);
    font-size: 13px; font-weight: 700;
}

/* --- booking card --- */
.mk-card {
    background: var(--mk-white); border: 1px solid var(--mk-line);
    border-radius: var(--mk-radius); box-shadow: var(--mk-shadow);
    padding: 22px;
}
.mk-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.mk-field label { font-size: 13px; font-weight: 700; color: var(--mk-ink); }
.mk-field input, .mk-field select, .mk-field textarea {
    width: 100%; padding: 12px 14px; border: 1px solid var(--mk-line);
    border-radius: var(--mk-radius-sm); font-size: 15px; color: var(--mk-ink);
    background: var(--mk-white); font-family: inherit;
}
.mk-field input:focus, .mk-field select:focus, .mk-field textarea:focus {
    outline: none; border-color: var(--mk-navy);
    box-shadow: 0 0 0 3px rgba(11,31,58,.10);
}
.mk-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mk-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 22px; border-radius: 999px; font-weight: 800; font-size: 16px;
    background: var(--mk-cta); color: var(--mk-white); border: none; cursor: pointer;
    width: 100%; transition: background .15s ease, transform .05s ease;
}
.mk-btn:hover { background: var(--mk-cta-2); }
.mk-btn:active { transform: translateY(1px); }
.mk-btn-ghost { background: var(--mk-white); color: var(--mk-navy); border: 1.5px solid var(--mk-navy); }

/* --- sections --- */
section.mk-sec { padding: 64px 0; }
section.mk-sec.alt { background: var(--mk-soft); }
.mk-sec h2 { font-size: clamp(26px,3vw,36px); margin: 0 0 10px; color: var(--mk-navy); font-weight: 800; }
.mk-sec p.sub { color: var(--mk-muted); margin: 0 0 36px; max-width: 70ch; }

/* --- vehicle grid --- */
.mk-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }
.mk-tile {
    background: var(--mk-white); border: 1px solid var(--mk-line);
    border-radius: var(--mk-radius); padding: 22px; transition: transform .15s ease, box-shadow .15s ease;
}
.mk-tile:hover { transform: translateY(-3px); box-shadow: var(--mk-shadow-lg); }
.mk-tile h3 { margin: 0 0 6px; font-size: 18px; color: var(--mk-navy); }
.mk-tile p { margin: 0; color: var(--mk-muted); font-size: 14px; }
.mk-tile .ico {
    width: 44px; height: 44px; border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(11,31,58,.06); margin-bottom: 12px; font-size: 24px;
}

/* --- steps --- */
.mk-steps { display: grid; gap: 18px; grid-template-columns: repeat(4, 1fr); }
.mk-step {
    padding: 22px; background: var(--mk-white); border: 1px solid var(--mk-line);
    border-radius: var(--mk-radius);
}
.mk-step .n {
    display: inline-flex; width: 36px; height: 36px; border-radius: 50%;
    background: var(--mk-navy); color: var(--mk-white); align-items: center; justify-content: center;
    font-weight: 800; margin-bottom: 10px;
}

/* --- trust strip --- */
.mk-trust { display: flex; flex-wrap: wrap; gap: 18px 34px; align-items: center; justify-content: center; opacity: .8; }
.mk-trust span { font-weight: 700; color: var(--mk-muted); font-size: 14px; }

/* --- CTA band --- */
.mk-cta-band {
    background: linear-gradient(135deg, var(--mk-navy) 0%, var(--mk-navy-2) 100%);
    color: var(--mk-white); padding: 56px 0; text-align: center;
}
.mk-cta-band h2 { color: var(--mk-white); font-size: clamp(24px,3vw,34px); margin: 0 0 10px; }
.mk-cta-band p { color: rgba(255,255,255,.8); margin: 0 0 22px; }
.mk-cta-band .mk-btn { width: auto; min-width: 220px; }

/* --- footer --- */
.mk-footer { background: #0A1A31; color: #CBD5E1; padding: 48px 0 28px; }
.mk-footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 32px; }
.mk-footer h4 { color: var(--mk-white); margin: 0 0 14px; font-size: 15px; }
.mk-footer a { color: #CBD5E1; display: block; padding: 4px 0; font-size: 14px; }
.mk-footer a:hover { color: var(--mk-cta); }
.mk-foot-bar { text-align: center; padding-top: 24px; margin-top: 24px; border-top: 1px solid rgba(255,255,255,.08); font-size: 13px; color: #94A3B8; }

/* --- responsive --- */
@media (max-width: 960px) {
    .mk-hero-grid, .mk-grid, .mk-steps, .mk-footer-grid { grid-template-columns: 1fr; }
    .mk-hero { padding: 48px 0 32px; }
    .mk-nav-links { display: none; }
    .mk-nav-links.mk-visible-mobile { display: flex; }
}
/* ============================================================
   MasaratKM — Booking form v2 additions (append, no overrides)
   Zero JS required for styling. One tiny inline script in the
   blade shows the filename after upload. Keep Lighthouse 100.
   ============================================================ */

/* Booking form — layered card over a soft pattern */
.mk-bform {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
    border: 1px solid var(--mk-line);
    border-radius: 18px;
    box-shadow: 0 22px 44px -18px rgba(11, 31, 58, 0.18), 0 2px 6px rgba(11, 31, 58, 0.05);
    padding: 26px 26px 22px;
    position: relative;
    overflow: hidden;
}
.mk-bform::before {
    content: "";
    position: absolute;
    inset: -1px -1px auto -1px;
    height: 4px;
    background: linear-gradient(90deg, var(--mk-cta), var(--mk-green));
    border-radius: 18px 18px 0 0;
}
.mk-bform h3 {
    margin: 0 0 4px;
    color: var(--mk-navy);
    font-weight: 800;
    font-size: 20px;
}
.mk-bform .sub {
    margin: 0 0 18px;
    color: var(--mk-muted);
    font-size: 13.5px;
}

/* Lane row — two dropdowns joined by a visual swap marker */
.mk-lane-row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    gap: 8px;
    margin-bottom: 14px;
}
.mk-lane-row .mk-field { margin-bottom: 0; }
.mk-lane-row .mk-arrow {
    align-self: end;
    width: 40px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--mk-cta);
    font-size: 22px;
    font-weight: 700;
    user-select: none;
}
body[dir="rtl"] .mk-lane-row .mk-arrow::before { content: "←"; }
body[dir="ltr"] .mk-lane-row .mk-arrow::before { content: "→"; }

/* Inputs — icon inside, larger tap targets */
.mk-ifield { position: relative; margin-bottom: 14px; }
.mk-ifield > label {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .2px;
    color: var(--mk-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
}
.mk-ifield .wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid var(--mk-line);
    border-radius: 12px;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.mk-ifield .wrap:focus-within {
    border-color: var(--mk-cta);
    box-shadow: 0 0 0 4px rgba(243, 146, 0, 0.12);
}
.mk-ifield .ico {
    flex: 0 0 auto;
    width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--mk-navy);
    font-size: 16px;
    opacity: .7;
    pointer-events: none;
}
.mk-ifield input,
.mk-ifield select,
.mk-ifield textarea {
    flex: 1;
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    padding: 13px 12px 13px 0;
    font-size: 15px;
    color: var(--mk-ink);
    font-family: inherit;
    appearance: none;
}
body[dir="rtl"] .mk-ifield input,
body[dir="rtl"] .mk-ifield select,
body[dir="rtl"] .mk-ifield textarea {
    padding: 13px 0 13px 12px;
}
.mk-ifield select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%230B1F3A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 16px center;
    background-size: 10px 6px;
    padding-left: 32px;
}
body[dir="rtl"] .mk-ifield select {
    background-position: left 16px center;
    padding-left: 32px;
    padding-right: 0;
}

/* Custom file upload — no default "Choose File" button */
.mk-upload {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border: 1.5px dashed var(--mk-line);
    border-radius: 12px;
    background: #fafbfd;
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease;
}
.mk-upload:hover {
    border-color: var(--mk-cta);
    background: #fff8ee;
}
.mk-upload input[type="file"] {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}
.mk-upload .ico {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mk-cta), #FFB454);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
}
.mk-upload .t { flex: 1; }
.mk-upload .t b { display: block; color: var(--mk-navy); font-weight: 700; font-size: 14.5px; }
.mk-upload .t small { color: var(--mk-muted); font-size: 12.5px; }
.mk-upload.has-file { border-style: solid; border-color: var(--mk-green); background: #f0fdf4; }

/* Pill vehicle selector (radio chips — optional, we keep select for now) */
.mk-pill-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 8px 0 16px;
}
.mk-pill-grid label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    padding: 12px 6px;
    border: 1.5px solid var(--mk-line);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color .15s, background .15s;
    font-size: 12px;
    font-weight: 600;
    color: var(--mk-navy);
    text-align: center;
}
.mk-pill-grid label .ico { font-size: 20px; }
.mk-pill-grid input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.mk-pill-grid label:hover { border-color: var(--mk-cta); }
.mk-pill-grid input[type="radio"]:checked + label {
    border-color: var(--mk-cta);
    background: #fff8ee;
    box-shadow: 0 0 0 3px rgba(243, 146, 0, 0.12);
}

/* CTA button upgrade */
.mk-bform .mk-btn {
    padding: 16px 22px;
    font-size: 16px;
    font-weight: 800;
    margin-top: 4px;
    box-shadow: 0 10px 22px rgba(243, 146, 0, 0.28);
}
.mk-bform .mk-btn:hover { box-shadow: 0 14px 28px rgba(243, 146, 0, 0.36); }
.mk-bform .fineprint {
    margin: 10px 0 0;
    color: var(--mk-muted);
    font-size: 12px;
    text-align: center;
}

/* Trust strip under the form */
.mk-trust-line {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--mk-line);
}
.mk-trust-line .it {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--mk-muted);
    font-size: 12.5px;
    font-weight: 600;
}
.mk-trust-line .it .ic {
    width: 26px; height: 26px; border-radius: 50%;
    background: rgba(31, 138, 78, 0.12);
    color: var(--mk-green);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 13px; flex: 0 0 auto;
}

/* Ship page: wider card, section dividers */
.mk-ship-card { max-width: 760px; margin: 0 auto; }
.mk-ship-section {
    padding: 14px 0 4px;
    margin-top: 10px;
    border-top: 1px solid var(--mk-line);
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--mk-muted);
    letter-spacing: .3px;
}
.mk-ship-section:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }

/* Mobile */
@media (max-width: 640px) {
    .mk-bform { padding: 20px 18px 18px; border-radius: 14px; }
    .mk-pill-grid { grid-template-columns: repeat(2, 1fr); }
    .mk-trust-line { grid-template-columns: 1fr; }
    .mk-lane-row { grid-template-columns: 1fr; }
    .mk-lane-row .mk-arrow { display: none; }
}


/* ============================================================
   MasaratKM SEO pages — minimal additions (grids, cards, chips,
   breadcrumbs, prose). No overrides of existing .mk-* rules.
   Keep small and CSS-only to preserve Lighthouse 100.
   ============================================================ */

/* --- Grids --- */
.mk-grid { display: grid; gap: 16px; }
.mk-grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.mk-grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.mk-grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }

@media (max-width: 960px) {
    .mk-grid-3, .mk-grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 600px) {
    .mk-grid-2, .mk-grid-3, .mk-grid-4 { grid-template-columns: 1fr; }
}

/* --- Cards (anchor or div) --- */
.mk-card {
    display: block;
    background: #fff;
    border: 1px solid var(--mk-line);
    border-radius: 14px;
    padding: 20px 18px;
    color: var(--mk-ink);
    text-decoration: none;
    transition: border-color .15s ease, transform .1s ease, box-shadow .15s ease;
}
.mk-card:hover {
    border-color: var(--mk-cta);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px -10px rgba(11, 31, 58, 0.18);
}
.mk-card .mk-card-ico { font-size: 28px; margin-bottom: 8px; }
.mk-card h3 { margin: 0 0 6px; color: var(--mk-navy); font-size: 18px; font-weight: 800; }
.mk-card h4 { margin: 0 0 6px; color: var(--mk-navy); font-size: 15px; font-weight: 700; }
.mk-card p  { margin: 0 0 10px; color: var(--mk-muted); font-size: 13.5px; line-height: 1.55; }
.mk-card .mk-link { color: var(--mk-cta); font-weight: 700; font-size: 13.5px; }

/* --- Breadcrumbs --- */
.mk-crumbs {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; color: var(--mk-muted);
    margin-bottom: 10px;
}
.mk-crumbs a { color: var(--mk-muted); text-decoration: none; }
.mk-crumbs a:hover { color: var(--mk-cta); }
.mk-crumbs span { color: var(--mk-line); }

/* --- Chips (for long city/lane lists) --- */
.mk-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.mk-chip {
    display: inline-flex;
    padding: 8px 14px;
    border: 1px solid var(--mk-line);
    border-radius: 999px;
    color: var(--mk-navy);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    background: #fff;
    transition: border-color .15s ease, background .15s ease;
}
.mk-chip:hover { border-color: var(--mk-cta); background: #fff8ee; }
.mk-chip-lg { padding: 12px 20px; font-size: 14.5px; }

/* --- Prose body (for LLM-generated content) --- */
.mk-prose { line-height: 1.75; color: var(--mk-ink); }
.mk-prose h2 { margin: 28px 0 10px; color: var(--mk-navy); font-size: 24px; font-weight: 800; }
.mk-prose h3 { margin: 20px 0 8px; color: var(--mk-navy); font-size: 19px; font-weight: 700; }
.mk-prose p  { margin: 0 0 14px; }
.mk-prose ul, .mk-prose ol { margin: 0 0 14px; padding-inline-start: 24px; }
.mk-prose ul li, .mk-prose ol li { margin-bottom: 6px; }
.mk-prose a { color: var(--mk-cta); text-decoration: underline; }
.mk-prose table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.mk-prose th, .mk-prose td { border: 1px solid var(--mk-line); padding: 10px 12px; text-align: start; }
.mk-prose th { background: #f8fbfd; font-weight: 700; }

/* --- FAQ details/summary --- */
.mk-faq {
    border: 1px solid var(--mk-line);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 8px;
    background: #fff;
}
.mk-faq summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--mk-navy);
    list-style: none;
}
.mk-faq summary::-webkit-details-marker { display: none; }
.mk-faq[open] summary { margin-bottom: 8px; }
.mk-faq p { margin: 0; color: var(--mk-muted); font-size: 14px; }

/* ============================================================
   MK_LUXURY_REDESIGN_v2 — full visual system overhaul
   Adds: refined nav, premium hero, glass form, value props,
   country tiles, lane tiles, testimonials, certifications.
   Replaces v1 entirely. Idempotent (anything below the v2
   marker gets stripped on re-run).
   ============================================================ */

/* ---------- Refined design tokens ---------- */
:root {
    --mk-navy:        #0A1B3D;
    --mk-navy-2:      #112952;
    --mk-gold:        #C9A55C;
    --mk-gold-2:      #B8923D;
    --mk-orange:      #F08C1F;
    --mk-ink:         #0F172A;
    --mk-ink-2:       #475569;
    --mk-ink-soft:    #64748B;
    --mk-line:        rgba(11, 31, 58, 0.08);
    --mk-line-strong: rgba(11, 31, 58, 0.16);
    --mk-cream:       #FAF7F0;
    --mk-bg:          #FFFFFF;
    --mk-bg-soft:     #F8FAFC;
    --mk-shadow-sm:   0 1px 2px rgba(11, 31, 58, 0.04), 0 4px 12px rgba(11, 31, 58, 0.04);
    --mk-shadow-md:   0 4px 12px rgba(11, 31, 58, 0.06), 0 16px 40px rgba(11, 31, 58, 0.08);
    --mk-shadow-lg:   0 12px 32px rgba(11, 31, 58, 0.10), 0 32px 64px rgba(11, 31, 58, 0.14);
    --mk-radius:      14px;
    --mk-radius-lg:   18px;
}

/* ---------- Premium navigation refinement ---------- */
.mk-nav {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid var(--mk-line);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background .25s, box-shadow .25s;
}
.mk-nav.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 2px 16px rgba(11, 31, 58, 0.08);
}
.mk-nav-inner {
    padding-block: 14px;
}
.mk-logo {
    font-weight: 800;
    font-size: 19px;
    color: var(--mk-navy);
    letter-spacing: -0.01em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.mk-logo-dot {
    width: 12px; height: 12px;
    background: linear-gradient(135deg, var(--mk-gold), var(--mk-orange));
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(201,165,92,.18);
}
.mk-nav-links a {
    color: var(--mk-ink);
    font-weight: 600;
    font-size: 14.5px;
    text-decoration: none;
    padding: 8px 4px;
    position: relative;
    transition: color .15s;
}
.mk-nav-links a:hover { color: var(--mk-gold-2); }
.mk-nav-links a:not(.mk-nav-cta):not(.mk-lang)::after {
    content: '';
    position: absolute;
    left: 4px; right: 4px; bottom: 4px;
    height: 2px;
    background: var(--mk-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}
.mk-nav-links a:not(.mk-nav-cta):not(.mk-lang):hover::after { transform: scaleX(1); }
.mk-nav-links .mk-nav-cta {
    background: linear-gradient(135deg, var(--mk-orange), #d97706);
    color: #fff;
    padding: 11px 22px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(240,140,31,0.32);
    transition: transform .15s, box-shadow .15s;
}
.mk-nav-links .mk-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(240,140,31,0.42);
    color: #fff;
}
.mk-nav-links .mk-lang {
    border: 1px solid var(--mk-line-strong);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

/* ---------- Premium photographic hero ---------- */
.mk-luxhero {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background: var(--mk-navy);
}
.mk-luxhero .mk-lh-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 40%;
    z-index: 0;
    transform: scale(1.04);
    animation: mk-hero-zoom 18s ease-in-out infinite alternate;
}
@keyframes mk-hero-zoom {
    from { transform: scale(1.0); }
    to   { transform: scale(1.08); }
}
.mk-luxhero .mk-lh-veil {
    position: absolute; inset: 0;
    background:
        linear-gradient(105deg, rgba(10,27,61,.85) 0%, rgba(10,27,61,.55) 45%, rgba(10,27,61,.20) 100%),
        linear-gradient(0deg, rgba(10,27,61,.45) 0%, transparent 60%);
    z-index: 1;
}
[dir="rtl"] .mk-luxhero .mk-lh-veil {
    background:
        linear-gradient(255deg, rgba(10,27,61,.85) 0%, rgba(10,27,61,.55) 45%, rgba(10,27,61,.20) 100%),
        linear-gradient(0deg, rgba(10,27,61,.45) 0%, transparent 60%);
}
.mk-luxhero .mk-container {
    position: relative;
    z-index: 2;
    padding-block: 72px 96px;
}
.mk-luxhero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    align-items: center;
}
.mk-luxhero-copy .mk-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--mk-gold);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.mk-luxhero-copy .mk-eyebrow::before {
    content: ''; width: 24px; height: 2px;
    background: var(--mk-gold);
    display: inline-block;
}
.mk-luxhero-copy h1 {
    color: #fff;
    font-size: clamp(34px, 5.2vw, 60px);
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 22px;
    text-shadow: 0 2px 16px rgba(0,0,0,.18);
}
.mk-luxhero-copy h1 .accent {
    color: var(--mk-gold);
    background: linear-gradient(120deg, #DDB76E 0%, #F5DA9A 50%, #C49A4D 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.mk-luxhero-copy .lead {
    color: rgba(255,255,255,.92);
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 1.6;
    max-width: 560px;
    margin-bottom: 28px;
}
.mk-luxhero-meta {
    display: flex; flex-wrap: wrap; gap: 26px 36px;
    margin-top: 32px;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,.18);
}
.mk-luxhero-meta .it {
    color: #fff;
}
.mk-luxhero-meta .it .n {
    font-size: 28px;
    font-weight: 800;
    color: var(--mk-gold);
    line-height: 1;
    letter-spacing: -0.02em;
}
.mk-luxhero-meta .it .l {
    font-size: 13px;
    color: rgba(255,255,255,.76);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

/* ---------- Glass quote form ---------- */
.mk-quote-form {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 28px;
    box-shadow:
        0 1px 3px rgba(0,0,0,.04),
        0 24px 60px rgba(0,0,0,.30),
        inset 0 1px 0 rgba(255,255,255,.6);
    border: 1px solid rgba(255,255,255,.4);
}
.mk-quote-form h3 {
    margin: 0 0 4px;
    color: var(--mk-navy);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.01em;
}
.mk-quote-form .sub {
    margin: 0 0 22px;
    color: var(--mk-ink-soft);
    font-size: 14px;
}
.mk-qf-field {
    margin-bottom: 14px;
}
.mk-qf-field label {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--mk-ink-2);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}
.mk-qf-field .wrap {
    position: relative;
    background: var(--mk-bg-soft);
    border: 1.5px solid var(--mk-line);
    border-radius: 11px;
    transition: border-color .15s, background .15s;
}
.mk-qf-field .wrap:focus-within {
    border-color: var(--mk-gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(201,165,92,.16);
}
.mk-qf-field .wrap select,
.mk-qf-field .wrap input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 13px 16px;
    font-size: 15px;
    color: var(--mk-ink);
    font-weight: 500;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
[dir="rtl"] .mk-qf-field .wrap select,
[dir="rtl"] .mk-qf-field .wrap input {
    text-align: right;
}
.mk-qf-field .wrap .ico {
    position: absolute;
    inset-inline-end: 14px;
    top: 50%; transform: translateY(-50%);
    color: var(--mk-gold-2);
    font-size: 16px;
    pointer-events: none;
}
.mk-qf-lane {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    align-items: end;
}
.mk-qf-lane .arr {
    align-self: end;
    margin-bottom: 12px;
    color: var(--mk-orange);
    font-size: 22px;
    font-weight: 700;
}
.mk-qf-cta {
    width: 100%;
    background: linear-gradient(135deg, var(--mk-orange), #d97706);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(240,140,31,.36);
    transition: transform .12s, box-shadow .12s;
    margin-top: 8px;
}
.mk-qf-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(240,140,31,.46);
}
.mk-qf-trustline {
    display: flex; flex-wrap: wrap; gap: 10px 18px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--mk-line);
    font-size: 12.5px;
    color: var(--mk-ink-soft);
}
.mk-qf-trustline .it { display: inline-flex; align-items: center; gap: 6px; }
.mk-qf-trustline .it .ic {
    color: #16A34A;
    font-weight: 800;
    width: 16px; height: 16px;
    display: inline-grid; place-items: center;
    background: rgba(34,197,94,.12);
    border-radius: 50%;
    font-size: 10px;
}

/* ---------- Section titles (refined) ---------- */
.mk-sec {
    padding: 88px 0;
}
.mk-sec.alt { background: var(--mk-bg-soft); }
.mk-sec.dark {
    background: var(--mk-navy);
    color: #fff;
}
.mk-sec.dark h2,
.mk-sec.dark .mk-sec-eyebrow { color: #fff; }
.mk-sec.dark .mk-sec-sub { color: rgba(255,255,255,.78); }
.mk-sec-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.mk-sec-head.left { text-align: start; margin-inline-start: 0; }
.mk-sec-eyebrow {
    display: inline-block;
    color: var(--mk-gold-2);
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.mk-sec h2 {
    font-size: clamp(26px, 3.4vw, 38px);
    font-weight: 800;
    color: var(--mk-navy);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 14px;
}
.mk-sec-sub {
    color: var(--mk-ink-soft);
    font-size: 16.5px;
    line-height: 1.6;
    margin: 0;
}

/* ---------- Trust strip (clients band) ---------- */
.mk-trust-strip {
    background: var(--mk-cream);
    border-top: 1px solid var(--mk-line);
    border-bottom: 1px solid var(--mk-line);
    padding: 28px 0;
}
.mk-trust-strip .lbl {
    text-align: center;
    color: var(--mk-ink-soft);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.mk-trust-strip .row {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 36px 64px; align-items: center;
    opacity: 0.78;
}
.mk-trust-strip .row .item {
    font-weight: 700;
    color: var(--mk-navy);
    font-size: 16px;
    letter-spacing: 0.02em;
    display: inline-flex; align-items: center; gap: 8px;
    filter: grayscale(0.4);
}
.mk-trust-strip .row .item .em { color: var(--mk-gold-2); }

/* ---------- Value props (4-card icon row) ---------- */
.mk-value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.mk-value-card {
    background: #fff;
    border: 1px solid var(--mk-line);
    border-radius: var(--mk-radius-lg);
    padding: 26px 22px;
    text-align: start;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.mk-value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--mk-shadow-md);
    border-color: rgba(201,165,92,.45);
}
.mk-value-card .vico {
    width: 48px; height: 48px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, var(--mk-cream), #fff);
    border: 1px solid rgba(201,165,92,.32);
    color: var(--mk-gold-2);
    border-radius: 12px;
    font-size: 22px;
    margin-bottom: 18px;
}
.mk-value-card h3 {
    font-size: 17px;
    color: var(--mk-navy);
    font-weight: 800;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}
.mk-value-card p {
    font-size: 14.5px;
    color: var(--mk-ink-soft);
    line-height: 1.55;
    margin: 0;
}

/* ---------- GCC country tile ---------- */
.mk-country-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.mk-country-tile {
    position: relative;
    aspect-ratio: 16 / 11;
    border-radius: var(--mk-radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    background: var(--mk-navy);
    display: block;
    box-shadow: var(--mk-shadow-sm);
    transition: transform .35s, box-shadow .35s;
}
.mk-country-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--mk-shadow-md);
}
.mk-country-tile img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .65s ease;
}
.mk-country-tile:hover img { transform: scale(1.08); }
.mk-country-tile .ct-veil {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,27,61,.10) 0%, rgba(10,27,61,.85) 100%);
}
.mk-country-tile .ct-body {
    position: absolute;
    inset-inline-start: 0; inset-inline-end: 0; bottom: 0;
    padding: 22px 22px 22px;
    color: #fff;
}
.mk-country-tile .ct-flag { font-size: 32px; display: block; margin-bottom: 6px; }
.mk-country-tile .ct-name {
    font-size: 22px; font-weight: 800;
    margin: 0 0 4px;
    letter-spacing: -0.01em;
}
.mk-country-tile .ct-cities {
    font-size: 13px;
    color: var(--mk-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ---------- Lane tile ---------- */
.mk-lane-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.mk-lane-tile {
    background: #fff;
    border: 1px solid var(--mk-line);
    border-radius: var(--mk-radius);
    padding: 22px 22px;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    display: block;
}
.mk-lane-tile:hover {
    transform: translateY(-3px);
    border-color: rgba(201,165,92,.45);
    box-shadow: var(--mk-shadow-sm);
}
.mk-lane-tile .ln-route {
    color: var(--mk-navy);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.01em;
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 6px;
}
.mk-lane-tile .ln-route .arr {
    color: var(--mk-orange);
    font-weight: 700;
    font-size: 18px;
}
.mk-lane-tile .ln-meta {
    color: var(--mk-ink-soft);
    font-size: 13px;
    display: flex; gap: 14px;
    margin-top: 6px;
}
.mk-lane-tile .ln-meta .it { display: inline-flex; align-items: center; gap: 4px; }
.mk-lane-tile .ln-cta {
    color: var(--mk-gold-2);
    font-size: 13px;
    font-weight: 700;
    margin-top: 12px;
    display: inline-block;
}

/* ---------- Step row ---------- */
.mk-step-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    counter-reset: mk-step;
}
.mk-step-card {
    position: relative;
    padding: 26px 22px 24px;
    border-radius: var(--mk-radius-lg);
    background: #fff;
    border: 1px solid var(--mk-line);
}
.mk-step-card .num {
    width: 38px; height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--mk-gold), var(--mk-gold-2));
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    display: grid; place-items: center;
    margin-bottom: 16px;
    box-shadow: 0 6px 16px rgba(201,165,92,.32);
}
.mk-step-card h3 {
    margin: 0 0 6px;
    font-size: 17px;
    color: var(--mk-navy);
    font-weight: 800;
}
.mk-step-card p {
    margin: 0;
    font-size: 14px;
    color: var(--mk-ink-soft);
    line-height: 1.55;
}

/* ---------- Testimonial ---------- */
.mk-test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.mk-test-card {
    background: #fff;
    border: 1px solid var(--mk-line);
    border-radius: var(--mk-radius-lg);
    padding: 28px;
    position: relative;
}
.mk-test-card .quote-ico {
    color: var(--mk-gold);
    font-size: 42px;
    line-height: 0.6;
    font-family: Georgia, serif;
    margin-bottom: 8px;
}
.mk-test-card blockquote {
    margin: 0 0 18px;
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--mk-ink);
}
.mk-test-card .who { display: flex; align-items: center; gap: 12px; }
.mk-test-card .who .av {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mk-gold), var(--mk-gold-2));
    color: #fff;
    font-weight: 800;
    display: grid; place-items: center;
    font-size: 16px;
}
.mk-test-card .who .meta { line-height: 1.3; }
.mk-test-card .who .nm {
    font-weight: 700; color: var(--mk-navy); font-size: 14.5px;
}
.mk-test-card .who .role {
    font-size: 12.5px; color: var(--mk-ink-soft);
}

/* ---------- Certifications band ---------- */
.mk-cert-band {
    background: var(--mk-bg-soft);
    border-top: 1px solid var(--mk-line);
    border-bottom: 1px solid var(--mk-line);
    padding: 36px 0;
}
.mk-cert-band .lbl {
    text-align: center;
    color: var(--mk-ink-soft);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.mk-cert-band .row {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 18px;
}
.mk-cert-badge {
    border: 1px solid var(--mk-line-strong);
    background: #fff;
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--mk-navy);
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: var(--mk-shadow-sm);
}
.mk-cert-badge .ic { color: var(--mk-gold-2); font-size: 14px; }

/* ---------- Image-driven card (kept from v1, refined) ---------- */
.mk-card-photo {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--mk-radius-lg);
    background: #fff;
    box-shadow: var(--mk-shadow-sm);
    border: 1px solid var(--mk-line);
    text-decoration: none;
    color: inherit;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.mk-card-photo:hover {
    transform: translateY(-4px);
    box-shadow: var(--mk-shadow-md);
    border-color: rgba(201,165,92,.45);
}
.mk-card-photo .mk-cp-img {
    aspect-ratio: 16 / 10;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--mk-navy-2), var(--mk-navy));
}
.mk-card-photo .mk-cp-img img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .55s ease;
}
.mk-card-photo:hover .mk-cp-img img { transform: scale(1.05); }
.mk-card-photo .mk-cp-body {
    padding: 18px 20px 22px;
    display: flex; flex-direction: column; gap: 8px;
    flex: 1;
}
.mk-card-photo h3, .mk-card-photo h4 {
    margin: 0; font-size: 17px; font-weight: 800;
    color: var(--mk-navy); line-height: 1.3;
    letter-spacing: -0.01em;
}
.mk-card-photo p {
    margin: 0; font-size: 14px;
    color: var(--mk-ink-soft); line-height: 1.55;
    flex: 1;
}
.mk-card-photo .mk-cp-cta {
    margin-top: 6px;
    color: var(--mk-gold-2);
    font-weight: 700;
    font-size: 13.5px;
}

/* ---------- Show-page hero (kept from v1, refined) ---------- */
.mk-show-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9;
    max-height: 520px;
    overflow: hidden;
    background: var(--mk-navy);
}
.mk-show-hero .mk-sh-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mk-show-hero .mk-sh-veil {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(10,27,61,.20) 0%, rgba(10,27,61,.78) 100%);
}
.mk-show-hero .mk-sh-content {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 36px 0 44px;
    color: #fff;
}
.mk-show-hero h1 {
    color: #fff; margin: 8px 0 12px;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.mk-show-hero p {
    color: rgba(255,255,255,.92);
    max-width: 720px; font-size: clamp(14px, 1.6vw, 18px);
    margin: 8px 0 22px;
}
.mk-show-hero .mk-crumbs a, .mk-show-hero .mk-crumbs span { color: rgba(255,255,255,.85); }
.mk-show-hero .mk-btn {
    display: inline-flex;
    background: linear-gradient(135deg, var(--mk-orange), #d97706);
    color: #fff; padding: 13px 28px;
    border-radius: 11px; font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(240,140,31,.42);
}

/* ---------- Sitewide trust bar (refined) ---------- */
.mk-trust-bar {
    background: var(--mk-cream);
    border-top: 1px solid var(--mk-line);
    border-bottom: 1px solid var(--mk-line);
    padding: 36px 0;
}
.mk-trust-bar .mk-trust-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 28px; text-align: center;
}
.mk-trust-bar .mk-trust-item .mk-trust-num {
    font-size: 30px; font-weight: 800;
    color: var(--mk-navy); line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.mk-trust-bar .mk-trust-item .mk-trust-num .accent {
    color: var(--mk-gold-2);
}
.mk-trust-bar .mk-trust-item .mk-trust-lbl {
    font-size: 13px;
    color: var(--mk-ink-soft);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ---------- City card variant (kept from v1) ---------- */
.mk-card-city {
    position: relative; aspect-ratio: 4 / 5; overflow: hidden;
    border-radius: var(--mk-radius); text-decoration: none;
    color: #fff; background: var(--mk-navy); display: block;
}
.mk-card-city img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.mk-card-city:hover img { transform: scale(1.07); }
.mk-card-city .mk-cc-veil {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(10,27,61,.88) 100%);
}
.mk-card-city .mk-cc-name {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 16px 18px 20px;
}
.mk-card-city .mk-cc-name h3 {
    margin: 0; font-size: 19px; font-weight: 800;
    color: #fff; line-height: 1.2;
    letter-spacing: -0.01em;
}
.mk-card-city .mk-cc-name .mk-cc-country {
    font-size: 12px; color: var(--mk-gold);
    margin-top: 4px; display: block;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
}

/* ---------- Country tabs (cities index) ---------- */
.mk-country-tabs {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin: 0 0 28px;
}
.mk-country-tabs a {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #fff;
    color: var(--mk-navy);
    text-decoration: none;
    font-weight: 700; font-size: 14px;
    transition: background .2s, color .2s, border-color .2s;
    border: 1.5px solid var(--mk-line-strong);
}
.mk-country-tabs a:hover { background: var(--mk-cream); border-color: var(--mk-gold); }
.mk-country-tabs a.is-active { background: var(--mk-navy); color: #fff; border-color: var(--mk-navy); }
.mk-country-tabs .mk-flag { font-size: 16px; }

/* ---------- Mobile responsiveness ---------- */
@media (max-width: 960px) {
    .mk-luxhero { min-height: auto; }
    .mk-luxhero-grid { grid-template-columns: 1fr; gap: 32px; }
    .mk-luxhero .mk-container { padding-block: 56px 64px; }
    .mk-value-grid { grid-template-columns: repeat(2, 1fr); }
    .mk-country-grid { grid-template-columns: repeat(2, 1fr); }
    .mk-lane-grid { grid-template-columns: repeat(2, 1fr); }
    .mk-step-grid { grid-template-columns: repeat(2, 1fr); }
    .mk-test-grid { grid-template-columns: 1fr; }
    .mk-trust-bar .mk-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .mk-trust-bar .mk-trust-item .mk-trust-num { font-size: 22px; }
    .mk-sec { padding: 56px 0; }
}
@media (max-width: 560px) {
    .mk-value-grid { grid-template-columns: 1fr; }
    .mk-country-grid { grid-template-columns: 1fr; }
    .mk-lane-grid { grid-template-columns: 1fr; }
    .mk-step-grid { grid-template-columns: 1fr; }
}

/* === GCC Country picker dropdown (header) === */
.mk-country-dd {
    position: relative;
    display: inline-block;
}
.mk-country-dd > summary {
    list-style: none;
    cursor: pointer;
}
.mk-country-dd > summary::-webkit-details-marker { display: none; }
.mk-country-dd > summary::marker { content: ''; }

.mk-country-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid var(--mk-line);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: var(--mk-ink);
    background: var(--mk-white);
    transition: border-color .15s ease, color .15s ease, box-shadow .15s ease;
    user-select: none;
}
.mk-country-toggle:hover { border-color: var(--mk-cta); color: var(--mk-cta); }
.mk-country-dd[open] > .mk-country-toggle {
    border-color: var(--mk-cta);
    color: var(--mk-cta);
    box-shadow: 0 0 0 3px rgba(243,146,0,.10);
}
.mk-country-flag { font-size: 16px; line-height: 1; }
.mk-country-chev {
    transition: transform .2s ease;
    color: currentColor;
    flex: 0 0 auto;
}
.mk-country-dd[open] .mk-country-chev { transform: rotate(180deg); }

.mk-country-menu {
    position: absolute;
    top: calc(100% + 8px);
    inset-inline-end: 0;
    min-width: 220px;
    background: var(--mk-white);
    border: 1px solid var(--mk-line);
    border-radius: 14px;
    box-shadow: var(--mk-shadow-lg);
    padding: 8px;
    z-index: 60;
    display: flex;
    flex-direction: column;
    gap: 2px;
    animation: mkCountryFadeIn .15s ease-out;
}
@keyframes mkCountryFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.mk-country-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 10px;
    color: var(--mk-ink);
    font-weight: 600;
    font-size: 14.5px;
    line-height: 1.2;
    transition: background .12s ease, color .12s ease;
}
.mk-country-item:hover {
    background: rgba(243,146,0,.08);
    color: var(--mk-navy);
}
.mk-country-item .flag {
    font-size: 18px;
    line-height: 1;
    flex: 0 0 auto;
}

/* RTL: open menu toward the start (left in RTL) */
[dir="rtl"] .mk-country-menu { inset-inline-end: auto; inset-inline-start: 0; }

/* Mobile: show country chips inline; hide the chevron text label */
@media (max-width: 720px) {
    .mk-country-label { display: none; }
    .mk-country-toggle { padding: 6px 10px; }
    .mk-country-menu {
        position: fixed;
        top: 64px;
        inset-inline: 12px;
        inset-inline-end: 12px;
        min-width: 0;
    }
}

/* Close-on-outside-click is browser-native for <details>, but we add a
   small UX nicety: clicking any item should close the menu. Because
   <details> stays open after click on <a>, we use a tiny inline script
   in master.blade.php's @yield('mk_body_end') section if needed. */
