/* Naqla Pro Landing Page */
:root {
    --navy: #0E2746;
    --navy-2: #12365F;
    --orange: #F28C28;
    --orange-dark: #D87418;
    --green: #22A75A;
    --text: #172033;
    --muted: #64748B;
    --bg: #F7F9FC;
    --white: #FFFFFF;
    --border: #E5EAF0;
    --shadow: 0 20px 60px rgba(14, 39, 70, 0.12);
    --radius: 20px;

    /* Motion */
    --ease-premium: cubic-bezier(.22, .61, .36, 1);
    --transition-fast: 220ms var(--ease-premium);
    --transition-medium: 650ms var(--ease-premium);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.8;
    padding-bottom: 72px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ==========================================================================
   Animation System
   Progressive enhancement: elements only start hidden once main.js has
   confirmed it's running (html.js) and IntersectionObserver has attached.
   Without JS, or with prefers-reduced-motion, everything stays fully
   visible with no transition — content is never lost behind an animation.
   ========================================================================== */

.js .reveal-up,
.js .reveal-fade,
.js .reveal-scale {
    transition: opacity var(--transition-medium), transform var(--transition-medium);
    will-change: opacity, transform;
}

.js .reveal-up {
    opacity: 0;
    transform: translateY(24px);
}

.js .reveal-fade {
    opacity: 0;
}

.js .reveal-scale {
    opacity: 0;
    transform: scale(.96);
}

.js .reveal-up.is-visible,
.js .reveal-fade.is-visible,
.js .reveal-scale.is-visible {
    opacity: 1;
    transform: none;
}

/* Stagger groups: main.js tags each child with .stagger-item and a computed
   transition-delay, then adds .is-visible to the group once it scrolls in. */
.js .stagger-group > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-medium), transform var(--transition-medium);
    will-change: opacity, transform;
}

.js .stagger-group.is-visible > * {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .js .reveal-up,
    .js .reveal-fade,
    .js .reveal-scale,
    .js .stagger-group > * {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    top: -100px;
    right: 16px;
    background: var(--orange);
    color: var(--white);
    padding: 10px 16px;
    z-index: 999;
}

.skip-link:focus {
    top: 16px;
}

.topbar {
    background: var(--navy);
    color: var(--white);
    font-size: 14px;
}

.topbar__inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.topbar a {
    color: #BDF7D4;
    font-weight: 700;
}

.topbar__text {
    margin: 0;
    text-align: center;
}

.topbar__text--short {
    display: none;
}

.site-header {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.94);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    z-index: 50;
}

.header__inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.logo {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
}

.logo .logo__img {
    width: 230px;
    height: 100%;
    min-height: 0;
    max-width: none;
    object-fit: cover;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--muted);
    font-weight: 700;
    font-size: 15px;
}

.main-nav a:hover {
    color: var(--orange);
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 13px 22px;
    min-height: 48px;
    font-weight: 800;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn--primary {
    color: var(--white);
    background: var(--orange);
    box-shadow: 0 14px 30px rgba(242, 140, 40, .25);
}

.btn--primary:hover {
    background: var(--orange-dark);
    box-shadow: 0 18px 36px rgba(242, 140, 40, .32);
}

.btn--whatsapp {
    color: var(--white);
    background: var(--green);
    box-shadow: 0 14px 30px rgba(34, 167, 90, .22);
    overflow: hidden;
}

.btn--whatsapp:hover {
    box-shadow: 0 18px 36px rgba(34, 167, 90, .3);
}

.btn--outline {
    color: var(--navy);
    border-color: var(--border);
    background: var(--white);
}

.btn--light {
    color: var(--navy);
    background: var(--white);
}

/* ==========================================================================
   Premium CTA Buttons
   ========================================================================== */

.btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Shine sweep on hover, scoped to WhatsApp buttons only */
.btn--whatsapp::before {
    content: "";
    position: absolute;
    inset: 0;
    left: -150%;
    width: 60%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
    transform: skewX(-20deg);
    transition: left .6s var(--ease-premium);
    pointer-events: none;
}

.btn--whatsapp:hover::before {
    left: 150%;
}

/* Very subtle recurring ring pulse — only the two highest-priority WhatsApp
   CTAs (Hero + Sticky), not every WhatsApp link on the page. Animates only
   transform/opacity (composite-only, no paint) for a cheap, jank-free loop. */
.btn--whatsapp-pulse::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid rgba(255, 255, 255, .6);
    opacity: 0;
    transform: scale(.88);
    animation: naqla-pulse-ring 4.5s var(--ease-premium) infinite;
    pointer-events: none;
}

@keyframes naqla-pulse-ring {
    0%, 75%, 100% { transform: scale(.88); opacity: 0; }
    88% { transform: scale(1); opacity: .55; }
}

.btn--whatsapp-pulse:hover::after {
    animation-play-state: paused;
    opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
    .btn--whatsapp-pulse::after,
    .sticky-cta__call::after {
        animation: none;
        display: none;
    }

    .btn--whatsapp::before {
        display: none;
    }
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--white);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--navy);
}

.section {
    padding: 82px 0;
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 0%, rgba(242, 140, 40, .14), transparent 28%),
        linear-gradient(180deg, #fff 0%, #F7F9FC 100%);
}

.hero__grid,
.two-col {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    color: var(--orange-dark);
    background: rgba(242, 140, 40, .12);
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 800;
    margin: 0 0 16px;
}

h1, h2, h3, p {
    margin-top: 0;
}

h1 {
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.2;
    margin-bottom: 18px;
    color: var(--navy);
    letter-spacing: -1px;
}

h2 {
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.25;
    color: var(--navy);
    margin-bottom: 16px;
}

h3 {
    color: var(--navy);
}

.hero__lead {
    font-size: 20px;
    color: #3D4A5F;
    max-width: 720px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 30px 0 18px;
}

.hero__trust {
    color: var(--muted);
    font-weight: 700;
}

.hero__visual {
    min-height: 420px;
    display: grid;
    place-items: center;
}

.visual-card {
    position: relative;
    width: min(100%, 460px);
    min-height: 360px;
    background: var(--white);
    border-radius: 34px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border);
}

.visual-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(14,39,70,.95), rgba(18,54,95,.9)),
        repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 8px, transparent 8px 16px);
    clip-path: polygon(0 0, 100% 0, 100% 55%, 0 74%);
}

.truck-shape {
    position: absolute;
    bottom: 76px;
    right: 42px;
    width: 330px;
    height: 150px;
}

.truck-box {
    position: absolute;
    right: 0;
    bottom: 36px;
    width: 210px;
    height: 96px;
    background: var(--orange);
    color: var(--white);
    border-radius: 14px 14px 8px 8px;
    display: grid;
    place-items: center;
    font-size: 30px;
    font-weight: 900;
}

.truck-front {
    position: absolute;
    right: 208px;
    bottom: 36px;
    width: 95px;
    height: 78px;
    background: var(--navy);
    border-radius: 14px 20px 8px 8px;
}

.wheel {
    position: absolute;
    bottom: 16px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #1C2635;
    border: 8px solid #E7ECF4;
}

.wheel--1 { right: 38px; }
.wheel--2 { right: 230px; }

.boxes {
    position: absolute;
    top: 84px;
    right: 52px;
    display: flex;
    gap: 10px;
}

.boxes span {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    background: #F4C08A;
    border: 2px solid rgba(255,255,255,.5);
}

.visual-badge {
    position: absolute;
    left: 24px;
    bottom: 28px;
    background: var(--white);
    color: var(--navy);
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

/* Real hero photo, shown once assets/img/hero-moving-team.webp exists */
.visual-card--photo {
    background: var(--navy);
}

.visual-card--photo::before {
    display: none;
}

.hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease-premium);
}

/* Subtle hover zoom on the hero photo — desktop pointer devices only, so
   mobile taps never trigger a stuck "hover" zoom state. */
@media (hover: hover) and (pointer: fine) {
    .visual-card--photo:hover .hero-photo {
        transform: scale(1.045);
    }
}

/*
 * Image + fallback placeholder system (naqla_media() in index.php).
 * A real <img> and the placeholder share sizing so nothing shifts once
 * real photos are uploaded to assets/img/.
 */
.media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(14,39,70,.94), rgba(18,54,95,.88)),
        repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 8px, transparent 8px 16px);
    color: rgba(255,255,255,.55);
}

.img-placeholder__icon {
    width: 34px;
    height: 34px;
}

.media-caption {
    display: block;
    padding: 12px 16px;
    font-weight: 800;
    color: var(--navy);
    font-size: 15px;
    text-align: center;
}

/* Micro trust badges directly under the Hero content */
.trust-badges {
    list-style: none;
    margin: 8px 0 0;
    padding: 18px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    border-top: 1px solid var(--border);
}

.trust-badges li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: var(--navy);
    font-size: 15px;
}

.trust-badges__icon {
    font-size: 17px;
}

.intro,
.pricing,
.testimonials {
    background: var(--bg);
}

.check-card,
.contact-card,
.solution-card,
.service-card,
.area-card,
.why-grid div,
blockquote {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 12px 32px rgba(14,39,70,.06);
    padding: 28px;
}

.check-list,
.solution-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.check-list li,
.solution-card li {
    position: relative;
    padding-right: 30px;
    margin-bottom: 12px;
    color: #334155;
    font-weight: 700;
}

.check-list li::before,
.solution-card li::before {
    content: "✓";
    position: absolute;
    right: 0;
    top: 0;
    color: var(--green);
    font-weight: 900;
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 42px;
}

.section-head p:not(.eyebrow) {
    color: var(--muted);
    font-size: 18px;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.solution-card--highlight {
    border-color: rgba(34,167,90,.25);
    background: linear-gradient(180deg, #fff, #F0FFF6);
}

.cards-grid,
.area-grid,
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.cards-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.service-card .icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    background: rgba(242,140,40,.12);
    border-radius: 18px;
    font-size: 28px;
    margin-bottom: 18px;
}

.service-card p,
.area-card p,
.why-grid p,
blockquote {
    color: var(--muted);
}

.process {
    background: linear-gradient(180deg, #FFFFFF 0%, #F7F9FC 100%);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 10px 28px rgba(14,39,70,.05);
}

.step span {
    min-width: 42px;
    height: 42px;
    border-radius: 999px;
    background: var(--orange);
    color: var(--white);
    display: grid;
    place-items: center;
    font-weight: 900;
}

.step p {
    font-weight: 800;
    color: var(--navy);
    margin: 0;
}

.center {
    text-align: center;
    margin-top: 28px;
}

/* "اختار حالتك" intent cards */
.intent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.intent-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: 0 12px 32px rgba(14,39,70,.06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.intent-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(14,39,70,.10);
}

.intent-card p {
    color: var(--muted);
    margin-bottom: 16px;
}

.intent-card__cta {
    display: inline-block;
    color: var(--orange-dark);
    font-weight: 900;
}

/* Areas section decorative banner image */
.area-banner {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 28px;
    border: 1px solid var(--border);
}

.area-banner__img {
    width: 100%;
    height: auto;
    aspect-ratio: 21 / 6;
}

/* Subtle overlay gradient so any future caption/text reads clearly on top */
.area-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(14,39,70,.28) 100%);
    pointer-events: none;
}

/* Why / trust reasons icon */
.why-grid__icon {
    display: block;
    font-size: 26px;
    margin-bottom: 12px;
}

/* "صور من شغلنا" work gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.gallery-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(14,39,70,.06);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    margin: 0;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(14,39,70,.10);
}

.gallery-item__img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    transition: transform .5s var(--ease-premium);
}

/* Zoom the photo inside the card on hover, not the card itself — the card
   keeps overflow:hidden so the zoom never spills outside its rounded corners. */
@media (hover: hover) and (pointer: fine) {
    .gallery-item:hover .gallery-item__img {
        transform: scale(1.08);
    }
}

.lead-form {
    display: grid;
    gap: 14px;
}

.lead-form label {
    display: grid;
    gap: 6px;
    color: var(--navy);
    font-weight: 800;
}

input, select, textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 13px 14px;
    font: inherit;
    background: var(--white);
    color: var(--text);
}

input:focus, select:focus, textarea:focus {
    outline: 3px solid rgba(242, 140, 40, .18);
    border-color: var(--orange);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.hidden-field {
    display: none;
}

.form-microcopy {
    margin: -4px 0 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.alert {
    margin: 18px 0;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 800;
}

.alert p {
    margin: 0;
}

.alert__cta {
    margin-top: 12px;
    width: 100%;
}

.alert--success {
    color: #0D6B39;
    background: #EAFBF1;
    border: 1px solid #BDEECC;
}

.alert--error {
    color: #8B1D1D;
    background: #FFF0F0;
    border: 1px solid #F5C2C2;
}

.contact-card {
    align-self: start;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    color: var(--white);
}

.contact-card h3 {
    color: var(--white);
}

.contact-card p {
    color: rgba(255,255,255,.82);
}

.contact-card .btn {
    width: 100%;
    margin-top: 12px;
}

blockquote {
    margin: 0;
    font-weight: 700;
    color: #334155;
}

.testimonial-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: var(--navy);
    color: var(--white);
    font-weight: 900;
    font-size: 15px;
    margin-bottom: 16px;
}

blockquote p {
    margin: 0;
}

blockquote cite {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
    color: var(--orange-dark);
    font-style: normal;
    font-weight: 900;
}

.testimonial-meta {
    color: var(--muted);
    font-weight: 700;
    font-size: 14px;
}

.testimonial-meta::before {
    content: "—";
    margin-inline-end: 8px;
    color: var(--border);
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

details {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px 22px;
    box-shadow: 0 10px 24px rgba(14,39,70,.05);
    transition: box-shadow .2s ease;
}

details[open] {
    box-shadow: 0 14px 32px rgba(14,39,70,.08);
}

summary {
    cursor: pointer;
    font-weight: 900;
    color: var(--navy);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";
    flex-shrink: 0;
    color: var(--orange-dark);
    font-size: 20px;
    font-weight: 900;
    transition: transform .2s ease;
}

details[open] summary::after {
    transform: rotate(45deg);
}

details p {
    color: var(--muted);
    margin: 12px 0 0;
}

.final-cta {
    background:
        radial-gradient(circle at top left, rgba(242,140,40,.28), transparent 28%),
        linear-gradient(135deg, var(--navy), #091A30);
    color: var(--white);
    padding: 74px 0;
}

.final-cta__inner {
    text-align: center;
    max-width: 780px;
}

.final-cta h2 {
    color: var(--white);
}

.final-cta p {
    color: rgba(255,255,255,.84);
    font-size: 19px;
}

.final-cta .hero__actions {
    justify-content: center;
}

.final-cta__note {
    margin: 18px 0 0;
    color: rgba(255,255,255,.66);
    font-weight: 700;
    font-size: 14px;
}

.site-footer {
    background: #061526;
    color: rgba(255,255,255,.78);
    padding: 46px 0;
}

/* Fluid grid: 2 columns whenever there's room for both at a readable width,
   collapses to 1 column automatically as the viewport narrows — no hard
   breakpoint needed, so it holds up cleanly at every screen size. */
.footer__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px 28px;
    align-items: start;
}

.footer__inner > div:first-child p {
    max-width: 420px;
    color: rgba(255,255,255,.7);
}

.logo--footer {
    margin-bottom: 14px;
}

.site-footer h3 {
    color: var(--white);
    font-size: 17px;
    margin-bottom: 12px;
}

.site-footer a {
    color: var(--white);
    font-weight: 800;
}

.site-footer p {
    margin: 0 0 10px;
}

.site-footer p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Mobile Sticky CTA Enhancements
   ========================================================================== */

.sticky-cta {
    position: fixed;
    right: 16px;
    left: 16px;
    bottom: 14px;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    z-index: 99;
}

.sticky-cta a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 52px;
    border-radius: 999px;
    color: var(--white);
    font-weight: 900;
    box-shadow: 0 12px 32px rgba(0,0,0,.24);
    transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.sticky-cta.is-active a {
    box-shadow: 0 16px 38px rgba(0,0,0,.3);
}

.sticky-cta__whatsapp {
    background: var(--green);
    overflow: hidden;
}

.sticky-cta__call {
    background: var(--orange);
}

/* Subtle recurring ring on the sticky call button only — a gentle nudge
   toward the secondary CTA without the constant-vibration feel. */
.sticky-cta__call::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid rgba(255,255,255,.6);
    opacity: 0;
    transform: scale(.88);
    animation: naqla-pulse-ring 5.5s var(--ease-premium) 2s infinite;
    pointer-events: none;
}

@media (max-width: 980px) {
    .nav-toggle {
        display: inline-block;
    }

    .main-nav {
        position: absolute;
        top: 76px;
        right: 16px;
        left: 16px;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 18px;
        box-shadow: var(--shadow);
        padding: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
    }

    .main-nav.is-open {
        display: flex;
    }

    .header-call {
        display: none;
    }

    .hero__grid,
    .two-col,
    .solution-grid {
        grid-template-columns: 1fr;
    }

    .hero__visual {
        min-height: 320px;
    }

    .visual-card {
        min-height: 300px;
    }

    .cards-grid,
    .area-grid,
    .why-grid,
    .steps,
    .cards-grid--3,
    .intent-grid,
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .area-banner__img {
        aspect-ratio: 16 / 7;
    }

    .sticky-cta {
        display: grid;
        animation: naqla-sticky-enter .6s var(--ease-premium) both;
    }
}

@keyframes naqla-sticky-enter {
    from { transform: translateY(120%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .sticky-cta {
        animation: none;
    }
}

@media (max-width: 640px) {
    body {
        padding-bottom: 82px;
    }

    .container {
        width: min(100% - 24px, 1120px);
    }

    .topbar {
        font-size: 12px;
    }

    .topbar__inner {
        gap: 8px;
    }

    .topbar__text--full {
        display: none;
    }

    .topbar__text--short {
        display: block;
    }

    .header__inner {
        min-height: 66px;
    }

    .logo {
        height: 62px;
    }

    .logo .logo__img {
        width: 260px;
    }

    .section {
        padding: 58px 0;
    }

    .hero {
        padding-top: 42px;
    }

    .hero__lead {
        font-size: 17px;
    }

    .hero__actions,
    .final-cta .hero__actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .cards-grid,
    .area-grid,
    .why-grid,
    .steps,
    .cards-grid--3,
    .form-row,
    .intent-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        justify-content: center;
        text-align: center;
    }

    .area-banner__img {
        aspect-ratio: 4 / 3;
    }

    /* Keep the real hero photo visible on mobile — only the decorative
       CSS truck illustration (no photo uploaded yet) stays hidden here to
       avoid clutter above the fold. */
    .hero__visual {
        min-height: 0;
    }

    .visual-card:not(.visual-card--photo) {
        display: none;
    }

    .visual-card--photo {
        height: 220px;
        min-height: 0;
    }

    h1 {
        font-size: 33px;
    }
}
