﻿/* مستجاب Homepage — scoped redesign (.page-home) */

html:has(.page-home),
html:has(.page-service) {
    scroll-behavior: smooth;
}

.page-home {
    --home-ink: var(--color-ink, #060a12);
    --home-beacon: var(--color-primary, #DC2626);
    --home-beacon-soft: rgba(220, 38, 38, 0.14);
    --home-amber: #ffb020;
    --home-vital: var(--color-success, #059669);
    --home-glass: rgba(8, 14, 28, 0.72);
    --home-display: var(--font-display, 'IBM Plex Sans Arabic', 'Tajawal', sans-serif);
    --home-nav-h: var(--header-h, 76px);
}

/* ── Skip link ── */
.page-home .skip-link, .page-service .skip-link {
    position: fixed;
    top: -100%;
    right: 16px;
    z-index: 10001;
    padding: 12px 20px;
    background: var(--home-beacon);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-red);
    transition: top 0.2s var(--ease-out);
}
.page-home .skip-link:focus, .page-service .skip-link:focus {
    top: 12px;
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.page-home #preloader, .page-service #preloader {
    background: radial-gradient(circle at 50% 40%, #1a0a0a 0%, var(--home-ink) 70%);
}

.page-home .loader-content h3, .page-service .loader-content h3 {
    font-family: var(--home-display);
    letter-spacing: 0.08em;
}

/* ══════════════════════════════════════
   NAV — dark command bar over hero
   ══════════════════════════════════════ */
.page-home #header, .page-service #header {
    top: 38px;
    background: rgba(6, 10, 18, 0.62);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    box-shadow: none;
}
.page-home #header::after, .page-service #header::after {
    background: linear-gradient(90deg, transparent, rgba(255, 59, 59, 0.55), rgba(255, 176, 32, 0.25), transparent);
    opacity: 0.35;
}
.page-home #header.scrolled, .page-service #header.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.97);
    border-bottom-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 40px rgba(6, 10, 18, 0.1);
}
.page-home #header.scrolled::after, .page-service #header.scrolled::after { opacity: 1; }

.page-home .header-container, .page-service .header-container {
    height: var(--home-nav-h);
    gap: 20px;
}

/* Logo stack */
.page-home .logo, .page-service .logo {
    gap: 12px;
    color: #fff;
    min-width: 0;
}
.page-home .logo-copy, .page-service .logo-copy {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}
.page-home .logo-name, .page-service .logo-name {
    font-family: var(--home-display);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #fff;
}
.page-home .logo-muted, .page-service .logo-muted { color: rgba(255, 255, 255, 0.72); font-weight: 600; }
.page-home .logo-tagline, .page-service .logo-tagline {
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.page-home .logo svg, .page-service .logo svg {
    filter: drop-shadow(0 4px 14px rgba(255, 59, 59, 0.45));
}

.page-home #header.scrolled .logo, .page-service #header.scrolled .logo { color: var(--p-red); }
.page-home #header.scrolled .logo-name, .page-service #header.scrolled .logo-name { color: var(--p-red); }
.page-home #header.scrolled .logo-muted, .page-service #header.scrolled .logo-muted { color: var(--text-main); }
.page-home #header.scrolled .logo-tagline, .page-service #header.scrolled .logo-tagline { color: var(--text-muted); }

/* Nav tray */
.page-home .nav-links, .page-service .nav-links {
    gap: 2px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    flex: 0 1 auto;
}
.page-home .nav-links a, .page-service .nav-links a {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
    padding: 8px 13px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}
.page-home .nav-links a:hover, .page-service .nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}
.page-home .nav-links a.active, .page-service .nav-links a.active {
    color: #fff;
    background: rgba(255, 59, 59, 0.22);
    box-shadow: inset 0 0 0 1px rgba(255, 59, 59, 0.35);
}
.page-home .nav-links a::after, .page-service .nav-links a::after { display: none; }
.page-home .nav-links a:focus-visible, .page-service .nav-links a:focus-visible {
    outline: 2px solid var(--home-amber);
    outline-offset: 2px;
}
.page-home .header-phone:focus-visible,, .page-service .header-phone:focus-visible,.header-phone:focus-visible,
.page-home .header-actions .btn-nav:focus-visible, .page-service .header-actions .btn-nav:focus-visible {
    outline: 2px solid var(--home-amber);
    outline-offset: 3px;
}

.page-home #header.scrolled .nav-links, .page-service #header.scrolled .nav-links {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(0, 0, 0, 0.06);
}
.page-home #header.scrolled .nav-links a, .page-service #header.scrolled .nav-links a { color: var(--text-main); }
.page-home #header.scrolled .nav-links a:hover, .page-service #header.scrolled .nav-links a:hover {
    color: var(--p-red);
    background: rgba(220, 38, 38, 0.06);
}
.page-home #header.scrolled .nav-links a.active, .page-service #header.scrolled .nav-links a.active {
    color: var(--p-red);
    background: rgba(220, 38, 38, 0.08);
    box-shadow: none;
}

/* Header actions */
.page-home .header-actions, .page-service .header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.page-home .header-phone, .page-service .header-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px 7px 10px;
    border-radius: var(--radius-full);
    background: rgba(255, 59, 59, 0.12);
    border: 1px solid rgba(255, 59, 59, 0.35);
    color: #fff;
    transition: transform 0.25s var(--ease-spring), background 0.25s, box-shadow 0.25s;
}
.page-home .header-phone:hover, .page-service .header-phone:hover {
    background: rgba(255, 59, 59, 0.22);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(255, 59, 59, 0.25);
}
.page-home .header-phone-icon, .page-service .header-phone-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--home-beacon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    box-shadow: 0 0 0 4px rgba(255, 59, 59, 0.18);
    animation: headerPhonePulse 2.4s ease-in-out infinite;
}
@keyframes headerPhonePulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(255, 59, 59, 0.18); }
    50% { box-shadow: 0 0 0 8px rgba(255, 59, 59, 0.08); }
}
.page-home .header-phone-copy, .page-service .header-phone-copy {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1.15;
}
.page-home .header-phone-label, .page-service .header-phone-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.55);
}
.page-home .header-phone-num, .page-service .header-phone-num {
    font-family: var(--home-display);
    font-size: 0.92rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    direction: ltr;
    text-align: right;
    letter-spacing: 0.04em;
}
.page-home .header-actions .btn-nav, .page-service .header-actions .btn-nav {
    padding: 10px 20px;
    background: #fff;
    color: var(--home-ink) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.page-home .header-actions .btn-nav:hover, .page-service .header-actions .btn-nav:hover {
    background: var(--home-amber) !important;
    color: var(--home-ink) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 8px 24px rgba(255, 176, 32, 0.35) !important;
}

.page-home #header.scrolled .header-phone, .page-service #header.scrolled .header-phone {
    background: var(--p-red-light);
    border-color: rgba(220, 38, 38, 0.2);
    color: var(--text-main);
}
.page-home #header.scrolled .header-phone-label, .page-service #header.scrolled .header-phone-label { color: var(--text-muted); }
.page-home #header.scrolled .header-phone-num, .page-service #header.scrolled .header-phone-num { color: var(--p-red); }
.page-home #header.scrolled .header-actions .btn-nav, .page-service #header.scrolled .header-actions .btn-nav {
    background: var(--p-red);
    color: #fff !important;
    box-shadow: var(--shadow-red);
}
.page-home #header.scrolled .header-actions .btn-nav:hover, .page-service #header.scrolled .header-actions .btn-nav:hover {
    background: var(--p-red-hover) !important;
    color: #fff !important;
}

.page-home .menu-toggle, .page-service .menu-toggle {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}
.page-home #header.scrolled .menu-toggle, .page-service #header.scrolled .menu-toggle {
    border-color: rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.02);
    color: var(--text-main);
}

.page-home .emergency-band .section-eyebrow::before {
    background: var(--home-amber);
}

.page-home .emergency-band .section-eyebrow {
    color: var(--home-amber);
}

.page-home .hero-text h1,
.page-home .section-title h2,
.page-home .trust-title,
.page-home .commit-heading,
.page-home .emergency-band h2 {
    font-family: var(--home-display);
}

/* ══════════════════════════════════════
   HERO — asymmetric dispatch layout
   ══════════════════════════════════════ */
.page-home .hero {
    min-height: 100dvh;
    padding-bottom: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f0f9ff 100%);
}

.page-home .hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,250,252,0.95) 50%, rgba(240,249,255,0.9) 100%);
    transform: scale(1.04);
    z-index: 0;
}

.page-home .hero-grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

/* ── Beacon sweep (signature) ── */
.page-home .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: conic-gradient(
        from 210deg at 72% 38%,
        transparent 0deg,
        rgba(255, 59, 59, 0.08) 18deg,
        transparent 36deg
    );
    animation: beaconSweep 6s ease-in-out infinite;
}

@keyframes beaconSweep {
    0%, 100% { opacity: 0.3; transform: rotate(0deg); }
    50% { opacity: 0.6; transform: rotate(8deg); }
}

.page-home .hero-overlay {
    background:
        linear-gradient(118deg, rgba(255, 255, 255, 0.85) 0%, rgba(248, 250, 252, 0.8) 38%, rgba(240, 249, 255, 0.75) 72%, rgba(255, 255, 255, 0.82) 100%),
        radial-gradient(ellipse 900px 700px at 68% 28%, rgba(255, 59, 59, 0.06) 0%, transparent 58%),
        radial-gradient(ellipse 500px 400px at 12% 88%, rgba(59, 130, 246, 0.04) 0%, transparent 52%);
}

.page-home .hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-top: 8px;
}

.page-home .hero-trust-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-full);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.page-home .hero-trust-badges .icon-accent-red { color: var(--color-primary, #DC2626); }
.page-home .hero-trust-badges .icon-accent-gold { color: #D97706; }

.page-home .fade-in-delay-1 { transition-delay: 0.1s; }
.page-home .fade-in-delay-2 { transition-delay: 0.2s; }

.page-home .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
    padding: calc(var(--home-nav-h) + 88px) 0 48px;
    max-width: 1280px;
}

@media (max-width: 1023px) {
    .page-home .hero-inner {
        grid-template-columns: 1fr;
        padding-top: calc(var(--home-nav-h) + 64px);
    }

    .page-home .hero-image-wrapper {
        order: -1;
        min-height: 280px;
        max-height: 360px;
    }
}


.page-home .hero-text {
    text-align: right;
    position: relative;
    z-index: 3;
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.page-home .hero-text .prestige-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 12px;
    margin-bottom: 28px;
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.22);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0.02em;
}

.page-home .h1-sub {
    display: none;
}

.page-home .h1-main {
    background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #1f2937 100%);
    -webkit-background-clip: text;
    background-clip: text;
    letter-spacing: -0.045em;
    line-height: 1.1;
    text-wrap: balance;
    animation: titlePulse 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 16px rgba(220, 38, 38, 0.15));
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    font-family: var(--home-display);
    margin-bottom: 16px;
}

@keyframes titlePulse {
    0%, 100% { filter: drop-shadow(0 4px 16px rgba(220, 38, 38, 0.15)) brightness(1); }
    50% { filter: drop-shadow(0 8px 24px rgba(220, 38, 38, 0.25)) brightness(1.02); }
}

.page-home .h1-accent {
    display: none;
}

.page-home .title-accent {
    color: #DC2626;
    font-weight: 900;
    position: relative;
    background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-home .hero-desc {
    display: none;
}

.page-home .hero-beacon {
    display: none;
}

.page-home .hero-service-tags {
    display: none;
}

.page-home .hero-proof-chips {
    display: none;
}

.page-home .hero-tagline {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 32px;
    max-width: 400px;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
    opacity: 0;
}

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

.page-home .hero-title {
    margin: 0;
    padding: 0;
    text-align: right;
}

.page-home .hero-stats-bar {
    display: none;
}

.page-home .hero-scroll-hint {
    display: none;
}

.page-home .hero-ecg-line {
    display: none;
}

.page-home .hero-buttons {
    margin-bottom: 20px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.page-home .hero-btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 800;
    transition: all 0.3s var(--ease-spring);
    cursor: pointer;
    white-space: nowrap;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.page-home .hero-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.page-home .hero-btn i {
    font-size: 1.2rem;
    order: 0;
}

.page-home .btn-call {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.page-home .btn-call:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(220, 38, 38, 0.4);
}

.page-home .btn-call:active {
    transform: scale(0.98) translateY(2px);
}

.page-home .btn-call .btn-label {
    display: none;
}

.page-home .btn-whatsapp {
    background: #fff;
    color: #059669;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border: none;
}

.page-home .btn-whatsapp:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.page-home .btn-whatsapp:active {
    transform: scale(0.98) translateY(2px);
}

.page-home .btn-label {
    font-weight: 900;
    font-family: var(--home-display);
    font-size: 0.95rem;
}

.page-home .btn-number {
    font-size: 0.78rem;
    font-weight: 700;
    opacity: 0.95;
}

.page-home .hero-service-tags {
    gap: 6px;
    display: none;
}
.page-home .svc-tag {
    border-radius: var(--radius-sm);
    font-size: 0.76rem;
    padding: 7px 12px;
}

.page-home .hero-proof-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.page-home .hero-proof-chips li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
}
.page-home .hero-proof-chips li i {
    color: var(--home-vital);
    font-size: 0.8rem;
}

.page-home .trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 130px;
}

.page-home .trust-badge-item span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--p-navy);
    line-height: 1.3;
}

@media (max-width: 600px) {
    .page-home .trust-badge-item { min-width: 100px; }
    .page-home .trust-badge-item span { font-size: 0.75rem; }
}

.page-home .hero-glass-card {
    display: none;
}


.page-home .prestige-badge {
    display: none;
}

.page-home .nav-book-mobile { display: none; }

/* Dispatch radar ring behind glass card */
.page-home .dispatch-radar {
    position: absolute;
    inset: -20px;
    pointer-events: none;
    z-index: 0;
}

.page-home .radar-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(255, 59, 59, 0.12);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.page-home .radar-ring.r1 { width: 120%; height: 120%; animation: radarPulse 4s ease-out infinite; }
.page-home .radar-ring.r2 { width: 145%; height: 145%; animation: radarPulse 4s ease-out 1.3s infinite; }
.page-home .radar-ring.r3 { width: 170%; height: 170%; animation: radarPulse 4s ease-out 2.6s infinite; }

@keyframes radarPulse {
    0% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.85); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.05); }
}

.page-home .radar-blip {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--home-vital);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--home-vital);
    animation: blipPulse 2s ease-in-out infinite;
}

.page-home .radar-blip:nth-child(4) { top: 22%; right: 28%; animation-delay: 0s; }
.page-home .radar-blip:nth-child(5) { top: 58%; right: 12%; animation-delay: 0.7s; }
.page-home .radar-blip:nth-child(6) { top: 38%; left: 18%; animation-delay: 1.4s; }

@keyframes blipPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

.page-home .hero-visual {
    display: none;
}

.page-home .dispatch-radar {
    display: none;
}

.page-home .hero-image-wrapper {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: var(--radius-2xl, 28px);
    height: 100%;
    min-height: clamp(320px, 42vw, 480px);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow:
        0 24px 60px rgba(15, 23, 42, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
    animation: imageFloat 5s ease-in-out infinite;
}

.page-home .hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 80px rgba(220, 38, 38, 0.08);
    pointer-events: none;
    z-index: 2;
}

@keyframes imageFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.page-home .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.page-home .hero-image-wrapper:hover .hero-image {
    transform: scale(1.05);
}

.page-home .hgc-eta-num {
    font-family: var(--home-display);
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(180deg, #fff 0%, #fecaca 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Coverage marquee */
.page-home .coverage-marquee {
    display: none;
}

.page-home .coverage-marquee-label {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: none;
    align-items: center;
    padding: 0 24px;
    background: linear-gradient(270deg, var(--home-ink) 60%, transparent);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--home-amber);
    letter-spacing: 0.12em;
    z-index: 2;
    white-space: nowrap;
}

.page-home .coverage-track {
    display: flex;
    gap: 48px;
    animation: marqueeScroll 35s linear infinite;
    white-space: nowrap;
    padding-right: 140px;
}

.page-home .coverage-track span {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.page-home .coverage-track span i {
    color: var(--home-beacon);
    font-size: 0.65rem;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

/* Section intro eyebrow */
.page-home .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--p-red);
    margin-bottom: 12px;
}

.page-home .section-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--p-red);
    border-radius: 2px;
}

.page-home #services-grid {
    background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
}

.page-home #services-grid .section-title h2 {
    font-size: clamp(1.85rem, 4.5vw, 2.65rem);
}

/* Bento services grid */
.page-home .bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.page-home .bento-grid .service-card {
    text-align: right;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    border: 1px solid rgba(15, 23, 42, 0.07);
    box-shadow: 0 8px 32px rgba(6, 10, 18, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s var(--ease-out);
}

.page-home .bento-grid .service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(220, 38, 38, 0.14);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.page-home .bento-featured {
    grid-column: span 7;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    text-align: right;
    align-items: stretch;
}

.page-home .bento-featured .card-image {
    height: 100%;
    min-height: 300px;
    object-fit: cover;
}

.page-home .bento-featured .card-content {
    padding: 0;
}

.page-home .bento-featured-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 28px;
}

.page-home .bento-featured .card-icon {
    margin: 0 0 12px auto !important;
}

.page-home .bento-wide {
    grid-column: span 5;
}

.page-home .bento-half {
    grid-column: span 4;
}

.page-home .bento-card-label {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--p-red);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    letter-spacing: 0.06em;
    z-index: 3;
}

.page-home .bento-grid .card-content h3 {
    font-family: var(--home-display);
    font-size: 1.22rem;
}

/* Commitment — subtle upgrade */
.page-home .commitment-section {
    position: relative;
    overflow: hidden;
}

.page-home .commit-heading {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
}

/* Emergency band */
.page-home .emergency-band {
    position: relative;
    margin: 0;
    padding: 72px 0;
    background: var(--home-ink);
    overflow: hidden;
}

.page-home .emergency-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 50% 50%, rgba(255, 59, 59, 0.15) 0%, transparent 70%),
        linear-gradient(180deg, rgba(255, 176, 32, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.page-home .emergency-band-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.page-home .emergency-band h2 {
    font-size: clamp(1.75rem, 4.5vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1.2;
}

.page-home .emergency-band p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 28px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.page-home .emergency-band-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.page-home .emergency-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: var(--p-red);
    padding: 18px 36px;
    border-radius: var(--radius-full);
    font-size: 1.2rem;
    font-weight: 900;
    font-family: var(--home-display);
    box-shadow: 0 8px 32px rgba(255, 59, 59, 0.35);
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

.page-home .emergency-phone-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 48px rgba(255, 59, 59, 0.45);
    color: var(--p-red-hover);
}

.page-home .emergency-pills {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.page-home .emergency-pills span {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.page-home .emergency-pills span i {
    color: var(--home-amber);
    margin-left: 6px;
}

.page-home .section-process .grid.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    margin-top: 20px;
}

.page-home .section-process .grid.grid-3::before {
    content: '';
    position: absolute;
    top: 36px;
    right: 16%;
    left: 16%;
    height: 2px;
    background: linear-gradient(90deg, var(--p-red), rgba(220, 38, 38, 0.2), var(--p-red));
    z-index: 0;
}

.page-home .section-process .card {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px 32px;
    background: transparent;
    border: none;
    box-shadow: none;
}

.page-home .section-process .card:hover {
    transform: none;
    box-shadow: none;
}

.page-home .section-process .card > div[style*="border-radius: 50%"] {
    width: 72px !important;
    height: 72px !important;
    margin: 0 auto 20px !important;
    border: 3px solid var(--p-red) !important;
    background: #fff !important;
    color: var(--p-red) !important;
    font-family: var(--home-display) !important;
    font-size: 1.5rem !important;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.15);
    transition: transform 0.35s var(--ease-spring), background 0.35s, color 0.35s;
}

.page-home .section-process .card:hover > div[style*="border-radius: 50%"] {
    background: var(--p-red) !important;
    color: #fff !important;
    transform: scale(1.08);
}

.page-home .section-process .card h3 {
    font-family: var(--home-display);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .page-home .section-process .grid.grid-3::before {
        display: none;
    }

    .page-home .section-process .grid.grid-3 {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Testimonials strip accent */
.page-home #testimonials {
    background: linear-gradient(180deg, #fff 0%, var(--bg-warm) 100%);
}

.page-home .reviews-slider-container {
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-md);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .page-home .hero::before,
    .page-home .coverage-track,
    .page-home .radar-ring,
    .page-home .radar-blip,
    .page-home .hero-beacon-ring,
    .page-home .header-phone-icon {
        animation: none !important;
    }
}

/* Nav + hero responsive */
@media (max-width: 1180px) {
    .page-home .nav-links a {
        padding: 7px 10px;
        font-size: 0.78rem;
    }
    .page-home .logo-tagline { display: none; }
}

@media (max-width: 1024px) {
    .page-home .header-phone-copy { display: none; }
    .page-home .header-phone {
        padding: 6px;
        border-radius: 50%;
    }
    .page-home .header-phone-icon {
        width: 38px;
        height: 38px;
    }
    .page-home .nav-links {
        border-radius: var(--radius-lg);
    }
}

@media (max-width: 900px) {
    .page-home .hero-inner {
        grid-template-columns: 1fr;
        padding-top: calc(var(--home-nav-h) + 72px);
        align-items: stretch;
    }
    .page-home .hero-image-wrapper {
        min-height: 320px;
        order: -1;
    }
    .page-home .hero-text {
        text-align: right;
    }
    .page-home .hero-buttons {
        justify-content: flex-end;
    }
}

@media (max-width: 768px) {
    .page-home .header-actions .btn-nav { display: none; }
    .page-home .header-container { height: 64px; }
    .page-home #header { top: 38px; }
    .page-home .hero-inner {
        padding: calc(64px + 64px) 0 40px;
    }
    .page-home .hero-text {
        text-align: center;
    }
    .page-home .hero-tagline {
        margin-left: auto;
        margin-right: auto;
    }
    .page-home .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    .page-home .hero-btn {
        width: 100%;
        justify-content: center;
    }
    .page-home .nav-links {
        background: rgba(6, 10, 18, 0.98);
        border: none;
        border-radius: 0;
        padding-top: 8px;
    }
    .page-home .nav-links a {
        color: rgba(255, 255, 255, 0.85);
        border-radius: var(--radius-sm);
    }
    .page-home #header.scrolled .nav-links {
        background: rgba(255, 255, 255, 0.98);
    }
    .page-home #header.scrolled .nav-links a { color: var(--text-main); }
    .page-home .header-actions {
        margin-right: auto;
    }
    .page-home .nav-book-mobile {
        display: flex !important;
        justify-content: center;
        margin: 12px 16px 8px;
        border-radius: var(--radius-full) !important;
        background: var(--p-red) !important;
        color: #fff !important;
    }
}

/* Responsive bento */
@media (max-width: 1024px) {
    .page-home .bento-featured {
        grid-column: span 12;
        grid-template-columns: 1fr;
    }

    .page-home .bento-featured .card-image {
        min-height: 220px;
        grid-row: auto;
    }

    .page-home .bento-wide,
    .page-home .bento-half {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .page-home .bento-wide,
    .page-home .bento-half {
        grid-column: span 12;
    }

    .page-home .coverage-marquee-label {
        display: none;
    }

    .page-home .coverage-track {
        padding-right: 0;
    }

    .page-home .dispatch-radar {
        display: none;
    }
}

/* ══════════════════════════════════════
   COVERAGE ZONES — light panel grid
   ══════════════════════════════════════ */
.coverage-section {
    background: linear-gradient(180deg, #e8f0fe 0%, #f4f7fb 48%, var(--bg-soft) 100%);
    padding: 88px 0 96px;
    position: relative;
}

.coverage-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 10%, rgba(59, 130, 246, 0.06) 0%, transparent 42%);
    pointer-events: none;
}

.coverage-panel {
    position: relative;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.coverage-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 22px 24px;
    margin-bottom: 22px;
    background: #fff;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.coverage-header-main {
    display: flex;
    align-items: center;
    gap: 16px;
}

.coverage-header-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #2563eb, #1d4ed8);
    color: #fff;
    font-size: 1.25rem;
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.28);
    flex-shrink: 0;
}

.coverage-header-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.coverage-count {
    font-family: var(--home-display, 'IBM Plex Sans Arabic', 'Tajawal', sans-serif);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.coverage-sub {
    font-size: 0.92rem;
    color: var(--text-muted);
    font-weight: 600;
}

.coverage-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.14);
    color: #1d4ed8;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
}

.coverage-header-badge i {
    color: #2563eb;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.coverage-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 14px;
    text-decoration: none;
    color: var(--text-main);
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s, background 0.25s;
    direction: ltr;
    min-height: 52px;
}

.coverage-chip:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.28);
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.1);
    background: #fafbff;
}

.coverage-chip:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.35);
    outline-offset: 2px;
}

.coverage-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
    flex-shrink: 0;
}

.coverage-name {
    flex: 1;
    direction: rtl;
    text-align: right;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.35;
    color: #334155;
}

.coverage-chip:hover .coverage-name {
    color: #1e293b;
}

@media (max-width: 1100px) {
    .coverage-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .coverage-section {
        padding: 64px 0 72px;
    }

    .coverage-panel {
        padding: 18px;
        border-radius: 18px;
    }

    .coverage-header {
        padding: 18px;
    }

    .coverage-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .coverage-chip {
        padding: 12px 14px;
        min-height: 48px;
    }

    .coverage-name {
        font-size: 0.82rem;
    }
}

@media (max-width: 420px) {
    .coverage-grid {
        grid-template-columns: 1fr;
    }
}

/* legacy locations grid (unused on homepage) */
.locations-premium-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    margin: 50px 0;
}

/* Featured Location Cards (2 rows, larger) */
.location-card--featured {
    grid-column: span 6;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    padding: 32px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid rgba(220, 38, 38, 0.08);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s var(--ease-out) backwards;
    animation-delay: var(--card-delay, 0);
}

.location-card--featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.location-card--featured:hover {
    border-color: rgba(220, 38, 38, 0.2);
    box-shadow: 0 16px 48px rgba(220, 38, 38, 0.15);
    transform: translateY(-4px);
}

.location-card--featured.location-east {
    border-left: 4px solid #DC2626;
}

.location-card--featured.location-west {
    border-left: 4px solid #059669;
}

.location-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 12px;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 38, 38, 0.08);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #DC2626;
}

.location-badge i {
    font-size: 1rem;
}

.location-coverage {
    background: rgba(5, 150, 101, 0.1);
    color: #059669;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.location-card-content {
    flex: 1;
}

.location-card-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.3;
    color: var(--text-main);
}

.location-card-content > p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 500;
}

.locations-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.locations-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: all 0.3s var(--ease-out);
}

.locations-list li:hover {
    color: var(--p-red);
    transform: translateX(-4px);
}

.locations-list i {
    color: var(--p-red);
    font-size: 0.8rem;
}

.location-card-cta {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--p-red);
    font-size: 0.95rem;
    transition: all 0.3s var(--ease-out);
}

.location-card--featured:hover .location-card-cta {
    gap: 12px;
}

/* Secondary Location Cards (smaller) */
.location-card--secondary {
    grid-column: span 6;
    padding: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border: 1px solid rgba(220, 38, 38, 0.06);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
    animation: fadeInUp 0.6s var(--ease-out) backwards;
    animation-delay: var(--card-delay, 0);
}

.location-card--secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s var(--ease-out);
}

.location-card--secondary:hover {
    border-color: rgba(220, 38, 38, 0.15);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.12);
    transform: translateY(-3px);
}

.location-card--secondary:hover::before {
    opacity: 1;
}

.location-card--secondary h4 {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 12px 0 4px;
    color: var(--text-main);
}

.location-card--secondary p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.location-badge-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(220, 38, 38, 0.08);
    padding: 6px 12px;
    border-radius: 18px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #DC2626;
    width: fit-content;
}

.location-badge-sm i {
    font-size: 0.9rem;
}

.location-card-header-sm {
    margin-bottom: 8px;
}

.location-badge-coverage {
    display: inline-block;
    background: rgba(5, 150, 101, 0.1);
    color: #059669;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-top: auto;
}

.location-south {
    border-right: 4px solid #059669;
}

.location-newcities {
    border-right: 4px solid #FF8A00;
}

/* Stats Card */
.location-stats-card {
    grid-column: span 12;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(5, 150, 101, 0.04) 100%);
    border: 1px solid rgba(220, 38, 38, 0.1);
    border-radius: 20px;
    animation: fadeInUp 0.6s var(--ease-out) backwards;
    animation-delay: var(--card-delay, 0);
}

.stat-item-mini {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #DC2626, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(220, 38, 38, 0.15);
}

/* Quick Navigation Links */
.locations-quick-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(220, 38, 38, 0.1);
}

.quick-link-btn {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(220, 38, 38, 0.06);
    border: 1px solid rgba(220, 38, 38, 0.15);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--p-red);
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
}

.quick-link-btn:hover {
    background: var(--p-red);
    color: white;
    border-color: var(--p-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.25);
}

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

/* Responsive: Tablet */
@media (max-width: 1024px) {
    .location-card--featured {
        grid-column: span 12;
        grid-row: span 1;
    }

    .location-card--secondary {
        grid-column: span 6;
    }

    .location-stats-card {
        grid-column: span 12;
    }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
    .locations-premium-grid {
        gap: 16px;
        margin: 40px 0;
    }

    .location-card--featured {
        grid-column: span 12;
        padding: 24px;
    }

    .location-card--secondary {
        grid-column: span 12;
    }

    .location-card-header {
        flex-direction: column;
        gap: 8px;
    }

    .location-card-content h3 {
        font-size: 1.2rem;
    }

    .location-coverage {
        align-self: flex-start;
    }

    .location-stats-card {
        flex-direction: column;
        gap: 24px;
        padding: 24px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .locations-quick-nav {
        gap: 8px;
        margin-top: 30px;
    }

    .quick-link-btn {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}
