/* ============================================================
   أبو فهد لتأجير الرافعات — Frontend Design System v2
   "Industrial Premium" — dark steel + molten gold
   ============================================================ */

:root {
    /* Core palette */
    --bg-0: #070A14;
    --bg-1: #0A0E1A;
    --bg-2: #0F1424;
    --bg-3: #161B33;
    --bg-4: #1E2440;
    --surface: #12172B;
    --surface-hi: #1A2138;

    --line: #242B4D;
    --line-soft: #1A2038;

    --text-0: #F6F8FD;
    --text-1: #C4CBE0;
    --text-2: #8B93B2;
    --text-3: #5A6184;

    /* Molten gold accent */
    --gold: #FFB800;
    --gold-hi: #FFC628;
    --gold-lo: #D4A857;
    --gold-deep: #B8860B;
    --gold-glow: rgba(255, 184, 0, 0.35);
    --gold-soft: rgba(255, 184, 0, 0.10);
    --gold-line: rgba(255, 184, 0, 0.25);

    /* Support */
    --green: #25D366;
    --green-deep: #128C7E;
    --red: #EF4444;

    /* Typography */
    --font: 'Tajawal', system-ui, sans-serif;
    --font-display: 'Cairo', 'Tajawal', sans-serif;

    /* Radii */
    --r-sm: 8px;
    --r: 14px;
    --r-lg: 20px;
    --r-xl: 28px;

    /* Shadows */
    --sh-sm: 0 2px 8px rgba(0,0,0,.3);
    --sh: 0 8px 24px rgba(0,0,0,.4);
    --sh-lg: 0 20px 50px rgba(0,0,0,.5);
    --sh-gold: 0 8px 32px var(--gold-glow);

    --maxw: 1240px;
    --header-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    background: var(--bg-1);
    color: var(--text-1);
    line-height: 1.7;
    direction: rtl;
    overflow-x: hidden;
    font-size: 16px;
}

/* Atmospheric background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(ellipse 80% 50% at 80% -10%, rgba(255,184,0,.08), transparent 60%),
        radial-gradient(ellipse 60% 50% at 0% 100%, rgba(212,168,87,.06), transparent 55%),
        var(--bg-1);
}
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(36,43,77,.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(36,43,77,.18) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 100% 80% at 50% 0%, #000 30%, transparent 75%);
    pointer-events: none;
}

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

.icon {
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    flex-shrink: 0;
    vertical-align: -0.125em;
}
.icon-fill { fill: currentColor; stroke: none; }

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}
.container-narrow { max-width: 820px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-h);
    background: rgba(10, 14, 26, .8);
    backdrop-filter: blur(16px) saturate(160%);
    border-bottom: 1px solid var(--line-soft);
    transition: border-color .3s, background .3s;
}
.site-header.scrolled {
    background: rgba(7, 10, 20, .94);
    border-bottom-color: var(--gold-line);
    box-shadow: var(--sh-sm);
}

.header-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    height: 100%;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}
.brand-mark {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
}
.brand-words {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.brand-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: var(--text-0);
    letter-spacing: -.3px;
}
.brand-tag {
    font-size: 11.5px;
    font-weight: 500;
    color: var(--gold);
    margin-top: 1px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.main-nav a {
    padding: 9px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-1);
    border-radius: var(--r-sm);
    position: relative;
    transition: color .2s, background .2s;
}
.main-nav a:hover { color: var(--gold); background: var(--gold-soft); }
.main-nav a.active { color: var(--gold); }
.main-nav a.has-mega::after {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    margin-inline-start: 6px;
    opacity: .6;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--gold-hi), var(--gold-lo));
    color: var(--bg-1);
    border-radius: var(--r-sm);
    font-weight: 800;
    font-size: 15px;
    box-shadow: var(--sh-gold);
    transition: transform .2s, box-shadow .2s;
}
.header-phone:hover { transform: translateY(-2px); box-shadow: 0 12px 36px var(--gold-glow); }
.header-phone .icon { width: 18px; height: 18px; }

.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    border-radius: var(--r-sm);
    border: 1px solid var(--line);
    color: var(--text-0);
    align-items: center;
    justify-content: center;
}
.nav-toggle .icon { width: 24px; height: 24px; }

/* Mobile nav */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--bg-0);
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.mobile-nav-close {
    width: 44px; height: 44px;
    border-radius: var(--r-sm);
    border: 1px solid var(--line);
    color: var(--text-0);
    display: flex; align-items: center; justify-content: center;
}
.mobile-nav-close .icon { width: 24px; height: 24px; }
.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-0);
    border-bottom: 1px solid var(--line-soft);
}
.mobile-nav a .icon { width: 22px; height: 22px; color: var(--gold); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--r);
    font-weight: 700;
    font-size: 16px;
    transition: transform .2s, box-shadow .2s, background .2s;
    white-space: nowrap;
}
.btn .icon { width: 20px; height: 20px; }
.btn-gold {
    background: linear-gradient(135deg, var(--gold-hi), var(--gold-lo));
    color: var(--bg-1);
    box-shadow: var(--sh-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 40px var(--gold-glow); }
.btn-whatsapp {
    background: linear-gradient(135deg, var(--green), var(--green-deep));
    color: #fff;
    box-shadow: 0 8px 32px rgba(37,211,102,.3);
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(37,211,102,.4); }
.btn-ghost {
    background: rgba(255,255,255,.04);
    border: 1px solid var(--line);
    color: var(--text-0);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-soft); }
.btn-lg { padding: 17px 36px; font-size: 17px; }
.btn-block { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line-soft);
    background: radial-gradient(circle at 85% 25%, rgba(255,184,0,.10), transparent 45%), linear-gradient(135deg, var(--bg-1), var(--bg-0));
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: center;
    min-height: min(86vh, 720px);
    padding-top: 40px;
    padding-bottom: 40px;
}
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 360px; }
.hero-img { position: relative; z-index: 2; width: 100%; max-width: 560px; height: auto; border-radius: 20px; object-fit: cover; }
.hero-img-svg { border-radius: 20px; border: 1px solid var(--gold-line); box-shadow: 0 24px 60px rgba(0,0,0,.45); }
.hero-visual-glow { position: absolute; z-index: 1; width: 70%; height: 70%; background: radial-gradient(circle, rgba(255,184,0,.25), transparent 70%); filter: blur(40px); border-radius: 50%; }
.hero-content { position: relative; z-index: 2; }
@media (max-width: 880px) {
    .hero-grid { grid-template-columns: 1fr; gap: 24px; min-height: auto; }
    .hero-visual { order: -1; min-height: 220px; }
    .hero-img { max-width: 400px; }
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--gold-soft);
    border: 1px solid var(--gold-line);
    border-radius: 30px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeUp .6s both;
}
.hero-badge .icon { width: 16px; height: 16px; }
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(34px, 6vw, 60px);
    font-weight: 900;
    line-height: 1.12;
    color: var(--text-0);
    letter-spacing: -.5px;
    margin-bottom: 20px;
    animation: fadeUp .6s .1s both;
}
.hero h1 .accent {
    background: linear-gradient(135deg, var(--gold-hi), var(--gold-lo));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-sub {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--text-1);
    max-width: 560px;
    margin-bottom: 32px;
    animation: fadeUp .6s .2s both;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp .6s .3s both;
}
.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 44px;
    flex-wrap: wrap;
    animation: fadeUp .6s .4s both;
}
.hero-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.hero-stat-label {
    font-size: 13px;
    color: var(--text-2);
    margin-top: 6px;
}

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

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: 80px 0;
    position: relative;
}
.section-alt {
    background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
    border-block: 1px solid var(--line-soft);
}
.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 52px;
}
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 14px;
    text-transform: uppercase;
}
.section-eyebrow::before, .section-eyebrow::after {
    content: '';
    width: 24px; height: 1px;
    background: var(--gold-line);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 900;
    color: var(--text-0);
    line-height: 1.2;
    margin-bottom: 14px;
}
.section-sub {
    font-size: 17px;
    color: var(--text-2);
}

/* ============================================================
   FEATURE BAR (trust strip)
   ============================================================ */
.trust-strip {
    background: var(--bg-3);
    border-block: 1px solid var(--line);
    padding: 28px 0;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.trust-icon {
    width: 48px; height: 48px;
    flex-shrink: 0;
    border-radius: var(--r-sm);
    background: var(--gold-soft);
    border: 1px solid var(--gold-line);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
}
.trust-icon .icon { width: 26px; height: 26px; }
.trust-text strong { display: block; color: var(--text-0); font-size: 16px; font-weight: 800; }
.trust-text span { font-size: 13px; color: var(--text-2); }

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.cat-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform .3s, border-color .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
}
.cat-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-line);
    box-shadow: var(--sh-lg);
}
.cat-card-media {
    position: relative;
    aspect-ratio: 16/11;
    overflow: hidden;
    background: var(--bg-3);
}
.cat-card-media picture, .cat-card-media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s;
}
.cat-card:hover .cat-card-media img { transform: scale(1.07); }
.cat-card-media::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(0deg, var(--surface) 2%, transparent 50%);
}
.cat-card-icon {
    position: absolute;
    top: 16px; inset-inline-start: 16px;
    z-index: 2;
    width: 52px; height: 52px;
    border-radius: var(--r-sm);
    background: rgba(10,14,26,.7);
    backdrop-filter: blur(8px);
    border: 1px solid var(--gold-line);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
}
.cat-card-icon .icon { width: 32px; height: 32px; }
.cat-card-placeholder {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    opacity: .3;
}
.cat-card-placeholder .icon { width: 80px; height: 80px; }
.cat-card-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.cat-card-title {
    font-family: var(--font-display);
    font-size: 23px;
    font-weight: 800;
    color: var(--text-0);
    margin-bottom: 8px;
}
.cat-card-desc {
    font-size: 14.5px;
    color: var(--text-2);
    flex: 1;
    margin-bottom: 16px;
}
.cat-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--line-soft);
}
.cat-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-weight: 700;
    font-size: 15px;
}
.cat-card-link .icon { width: 18px; height: 18px; transition: transform .2s; }
.cat-card:hover .cat-card-link .icon { transform: translateX(-4px); }
.cat-card-tag {
    font-size: 12px;
    color: var(--text-3);
    background: var(--bg-3);
    padding: 4px 10px;
    border-radius: 20px;
}

/* ============================================================
   CITIES
   ============================================================ */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
}
.city-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r);
    transition: all .25s;
}
.city-card:hover {
    border-color: var(--gold);
    background: var(--gold-soft);
    transform: translateY(-3px);
}
.city-card .icon { width: 22px; height: 22px; color: var(--gold); }
.city-name { font-weight: 700; color: var(--text-0); font-size: 15px; }
.city-card:hover .city-name { color: var(--gold); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color .25s;
}
.faq-item[open] { border-color: var(--gold-line); }
.faq-q {
    padding: 20px 22px;
    font-weight: 700;
    font-size: 16.5px;
    color: var(--text-0);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q .icon {
    width: 22px; height: 22px;
    color: var(--gold);
    transition: transform .3s;
    flex-shrink: 0;
}
.faq-item[open] .faq-q .icon { transform: rotate(180deg); }
.faq-a {
    padding: 0 22px 20px;
    color: var(--text-1);
    font-size: 15.5px;
    line-height: 1.8;
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
    position: relative;
    padding: 72px 0;
    overflow: hidden;
    border-top: 1px solid var(--gold-line);
    background:
        radial-gradient(ellipse 60% 100% at 50% 0%, rgba(255,184,0,.12), transparent 60%),
        linear-gradient(180deg, var(--bg-2), var(--bg-0));
}
.cta-inner { text-align: center; max-width: 680px; margin: 0 auto; }
.cta h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 900;
    color: var(--text-0);
    margin-bottom: 14px;
}
.cta p { font-size: 18px; color: var(--text-1); margin-bottom: 30px; }
.cta .hero-actions { justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--bg-0);
    border-top: 1px solid var(--line);
    padding: 56px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 44px;
}
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    margin-bottom: 18px;
}
.footer-brand-mark { width: 46px; height: 46px; flex-shrink: 0; }
.footer-brand-words { display: flex; flex-direction: column; line-height: 1.1; }
.footer-brand-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: var(--text-0);
    letter-spacing: -.3px;
}
.footer-brand-tag {
    font-size: 11.5px;
    font-weight: 500;
    color: var(--gold);
    margin-top: 1px;
}
.footer-about { color: var(--text-2); font-size: 14.5px; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 42px; height: 42px;
    border-radius: var(--r-sm);
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-1);
    transition: all .2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-soft); }
.footer-social .icon { width: 20px; height: 20px; }
.footer-col h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-0);
    margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-2); font-size: 14.5px; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-2);
    font-size: 14.5px;
    margin-bottom: 14px;
}
.footer-contact-item .icon { width: 18px; height: 18px; color: var(--gold); margin-top: 4px; flex-shrink: 0; }
.footer-bottom {
    border-top: 1px solid var(--line-soft);
    padding: 22px 0;
    text-align: center;
    color: var(--text-3);
    font-size: 13.5px;
}

/* ============================================================
   FLOATING CONTACT (call on top of whatsapp, right side)
   ============================================================ */
.float-stack {
    position: fixed;
    bottom: 24px;
    inset-inline-end: 20px;
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.float-btn {
    width: 58px; height: 58px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
}
.float-btn .icon { width: 30px; height: 30px; }
.float-call {
    background: linear-gradient(135deg, var(--gold-hi), var(--gold-lo));
    color: var(--bg-1);
    box-shadow: 0 8px 28px var(--gold-glow);
}
.float-wa {
    background: linear-gradient(135deg, var(--green), var(--green-deep));
    box-shadow: 0 8px 28px rgba(37,211,102,.45);
    animation: waPulse 2.5s infinite;
}
@keyframes waPulse {
    0%,100% { box-shadow: 0 8px 28px rgba(37,211,102,.45); }
    50% { box-shadow: 0 8px 28px rgba(37,211,102,.7), 0 0 0 12px rgba(37,211,102,0); }
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
    padding: 18px 0;
    border-bottom: 1px solid var(--line-soft);
}
.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 14px;
}
.breadcrumb a { color: var(--text-2); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb li { display: flex; align-items: center; gap: 8px; color: var(--text-3); }
.breadcrumb li[aria-current] { color: var(--gold); font-weight: 600; }
.breadcrumb .sep { color: var(--text-3); }

/* ============================================================
   REVEAL ANIMATION (progressive — only hides when JS active)
   ============================================================ */
.js-reveal .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s, transform .6s;
}
.js-reveal .reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
    .main-nav, .header-phone span { display: none; }
    .nav-toggle { display: flex; }
    .cat-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 680px) {
    .section { padding: 56px 0; }
    .container { padding: 0 18px; }
    .trust-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
    .cat-grid { grid-template-columns: 1fr; gap: 16px; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 24px; }
    .hero-stat-num { font-size: 26px; }
    .btn { width: 100%; }
    .hero-actions { width: 100%; }
    .header-phone { padding: 10px 14px; }

    /* Category cards: horizontal compact layout on mobile (cleaner) */
    .cat-grid .cat-card {
        flex-direction: row;
        align-items: stretch;
    }
    .cat-grid .cat-card .cat-card-media {
        width: 42%;
        aspect-ratio: auto;
        flex-shrink: 0;
    }
    .cat-grid .cat-card .cat-card-media::after { display: none; }
    .cat-grid .cat-card .cat-card-icon {
        width: 40px; height: 40px;
        top: 10px; inset-inline-start: 10px;
    }
    .cat-grid .cat-card .cat-card-icon .icon { width: 24px; height: 24px; }
    .cat-grid .cat-card .cat-card-body { padding: 16px; }
    .cat-grid .cat-card .cat-card-title { font-size: 19px; }
    .cat-grid .cat-card .cat-card-desc { font-size: 13px; -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
    .cat-grid .cat-card .cat-card-foot { padding-top: 10px; }
    .brand-tag { display: none; }
}

/* ============================================================
   INTERNAL PAGES (category / city / category-city)
   ============================================================ */
.cat-hero {
    padding: 56px 0;
    background:
        radial-gradient(ellipse 70% 60% at 85% 20%, rgba(255,184,0,.10), transparent 55%),
        linear-gradient(180deg, var(--bg-2), var(--bg-1));
    border-bottom: 1px solid var(--line-soft);
}
.cat-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
}
.cat-hero-icon {
    width: 64px; height: 64px;
    border-radius: var(--r);
    background: var(--gold-soft);
    border: 1px solid var(--gold-line);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    margin-bottom: 20px;
}
.cat-hero-icon .icon { width: 40px; height: 40px; }
.cat-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 900;
    color: var(--text-0);
    line-height: 1.15;
    margin-bottom: 16px;
}
.cat-hero-desc { font-size: 17px; color: var(--text-1); line-height: 1.8; }
.cat-synonyms {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.cat-synonyms > span:first-child { color: var(--text-3); font-size: 14px; }
.syn-tag {
    padding: 5px 12px;
    background: var(--bg-3);
    border: 1px solid var(--line);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-1);
}
.cat-hero-media {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--sh-lg);
    aspect-ratio: 4/3;
}
.cat-hero-media picture, .cat-hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* Prose content */
.prose { color: var(--text-1); font-size: 16.5px; line-height: 1.9; }
.prose h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-0);
    margin: 0 0 18px;
}
.prose h3 {
    font-size: 21px;
    font-weight: 700;
    color: var(--text-0);
    margin: 28px 0 12px;
}
.prose p { margin-bottom: 16px; }
.prose strong { color: var(--gold-lo); }

.check-list { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-1);
    font-size: 16px;
    font-weight: 500;
}
.check-list .icon {
    width: 24px; height: 24px;
    color: var(--gold);
    flex-shrink: 0;
    background: var(--gold-soft);
    border-radius: 50%;
    padding: 4px;
}

/* Spec cards */
.spec-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 26px;
    transition: all .3s;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.spec-card:hover {
    border-color: var(--gold-line);
    transform: translateY(-4px);
    box-shadow: var(--sh);
}
.spec-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-0);
}
.spec-rows { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.spec-row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-2);
    font-size: 14.5px;
}
.spec-row .icon { width: 18px; height: 18px; color: var(--gold); }

/* Image gallery */
.img-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.img-gallery-item {
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--line);
    aspect-ratio: 4/3;
    transition: transform .3s, border-color .3s;
}
.img-gallery-item:hover { transform: scale(1.02); border-color: var(--gold-line); }
.img-gallery-item picture, .img-gallery-item img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 860px) {
    .cat-hero-inner { grid-template-columns: 1fr; gap: 32px; }
    .cat-hero-media { order: -1; }
}
@media (max-width: 680px) {
    .img-gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
    .cat-hero { padding: 36px 0; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: start;
}
.contact-form-wrap {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 36px;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 14px; font-weight: 600; color: var(--text-1); }
.field input, .field select, .field textarea {
    width: 100%;
    padding: 13px 16px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    color: var(--text-0);
    font-family: inherit;
    font-size: 16px; /* يمنع التكبير على iOS */
    transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-soft);
}
.field select { cursor: pointer; }
.field textarea { resize: vertical; min-height: 100px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 30px;
}
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
    transition: transform .2s;
}
.contact-info-item:last-child { border-bottom: none; }
a.contact-info-item:hover { transform: translateX(-4px); }
a.contact-info-item:hover .trust-icon { background: var(--gold); color: var(--bg-1); }
.contact-info-item .trust-icon { width: 44px; height: 44px; transition: all .2s; }
.contact-info-item strong { display: block; color: var(--text-0); font-size: 15px; }
.contact-info-item span { color: var(--text-2); font-size: 14px; }

.alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 18px;
    border-radius: var(--r);
    margin-bottom: 22px;
    font-weight: 600;
    font-size: 15px;
}
.alert .icon { width: 22px; height: 22px; flex-shrink: 0; }
.alert-success {
    background: rgba(37,211,102,.12);
    border: 1px solid rgba(37,211,102,.35);
    color: #4ade80;
}
.alert-error {
    background: rgba(239,68,68,.12);
    border: 1px solid rgba(239,68,68,.35);
    color: #f87171;
}

@media (max-width: 860px) {
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
    .contact-form-wrap, .contact-info { padding: 24px; }
    .field-row { grid-template-columns: 1fr; }
}

/* ============================================================
   BOOKING SECTION (reusable)
   ============================================================ */
.booking-wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: start;
}
.booking-info .section-title { text-align: right; margin-bottom: 14px; }
.booking-info > p { color: var(--text-2); margin-bottom: 22px; line-height: 1.8; }
.booking-contacts { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.booking-contact {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 18px;
    background: var(--bg-2);
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    transition: .2s;
}
.booking-contact:hover { border-color: var(--gold-line); transform: translateY(-2px); }
.booking-contact .icon { width: 26px; height: 26px; color: var(--gold); flex-shrink: 0; }
.booking-contact-wa .icon { color: var(--green); }
.booking-contact div { display: flex; flex-direction: column; }
.booking-contact span { font-size: 12px; color: var(--text-3); }
.booking-contact strong { font-size: 16px; color: var(--text-0); }
.booking-perks { list-style: none; display: flex; flex-wrap: wrap; gap: 16px; }
.booking-perks li { display: flex; align-items: center; gap: 7px; color: var(--text-2); font-size: 14px; }
.booking-perks .icon { width: 18px; height: 18px; color: var(--gold); }

.booking-form-card {
    background: linear-gradient(160deg, var(--bg-2), var(--bg-1));
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
}
.booking-form-title { font-size: 22px; margin-bottom: 20px; color: var(--text-0); }
.booking-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.booking-form .form-group { margin-bottom: 16px; display: flex; flex-direction: column; }
.booking-form label { font-size: 13.5px; color: var(--text-2); margin-bottom: 7px; font-weight: 600; }
.booking-form label span { color: var(--gold); }
.booking-form input, .booking-form select, .booking-form textarea {
    background: var(--bg-0);
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 12px 14px;
    color: var(--text-0);
    font-family: inherit;
    font-size: 16px; /* يمنع الزوم على iOS */
    width: 100%;
    transition: .15s;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
    outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft);
}
.booking-form textarea { resize: vertical; }
.btn-block { width: 100%; justify-content: center; }
.form-error {
    display: flex; align-items: center; gap: 8px;
    background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3);
    color: #fca5a5; padding: 12px 14px; border-radius: 11px; margin-bottom: 16px; font-size: 14px;
}
.form-error .icon { width: 18px; height: 18px; flex-shrink: 0; }
.booking-success { text-align: center; padding: 30px 10px; }
.booking-success-icon {
    width: 64px; height: 64px; margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--green), var(--green-deep));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.booking-success-icon .icon { width: 34px; height: 34px; color: #fff; }
.booking-success h3 { font-size: 22px; color: var(--text-0); margin-bottom: 12px; }
.booking-success p { color: var(--text-2); margin-bottom: 8px; }
.booking-success strong { color: var(--gold); }

/* ============================================================
   REVIEWS SECTION (reusable)
   ============================================================ */
.reviews-rating-summary { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-top: 14px; }
.stars-big { display: flex; gap: 4px; }
.stars-big .icon { width: 24px; height: 24px; }
.star-on { color: var(--gold); }
.star-off { color: var(--line); }
.reviews-avg { font-size: 18px; font-weight: 700; color: var(--text-0); }
.reviews-count { font-size: 13px; color: var(--text-3); }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
    margin-top: 36px;
}
.review-card {
    background: var(--bg-2);
    border: 1px solid var(--line-soft);
    border-radius: 18px;
    padding: 26px;
    transition: .2s;
}
.review-card:hover { border-color: var(--gold-line); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-stars .icon { width: 18px; height: 18px; }
.review-text { color: var(--text-1); line-height: 1.85; margin-bottom: 20px; font-size: 15px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-hi), var(--gold-lo));
    color: var(--bg-0); display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 20px; flex-shrink: 0;
}
.review-meta { display: flex; flex-direction: column; }
.review-meta strong { color: var(--text-0); font-size: 15px; }
.review-meta span { color: var(--text-3); font-size: 13px; }

@media (max-width: 760px) {
    .booking-wrap { grid-template-columns: 1fr; gap: 28px; }
    .booking-form .form-row { grid-template-columns: 1fr; }
    .booking-form-card { padding: 22px; }
}

.hp-field { position:absolute !important; left:-9999px !important; width:1px; height:1px; overflow:hidden; opacity:0; pointer-events:none; }
