/* ================================================
   DMP Website — style.css
   Theme: Navy-Dark + Oman Gold + Logo Blue
   ================================================ */
/* Logo white‑bg removal strategy:
   The logo PNG has a white square background. We use
   border-radius:50% + overflow:hidden on its wrapper to
   clip it into a circle — hiding the white corners.
   On dark sections we additionally use mix-blend-mode:multiply
   so remaining white areas blend into the dark surface.
*/

/* ===== VARIABLES ===== */
:root {
    --gold:        #C8A028;
    --gold-light:  #E8B839;
    --gold-dark:   #9A7A1A;
    --blue:        #1B6CA8;
    --blue-light:  #3E82FC;
    --navy:        #0D1B2A;
    --navy-mid:    #152233;
    --navy-card:   #1A2B3C;
    --navy-border: rgba(255,255,255,0.07);
    --white:       #FFFFFF;
    --off-white:   #F5F7FA;
    --text-dark:   #1A1A2E;
    --text-body:   #4A5568;
    --text-muted:  #8A9BB0;
    --card-bg:     #FFFFFF;
    --section-alt: #F0F4F8;

    --font-en: 'Outfit', sans-serif;
    --font-ar: 'Cairo', sans-serif;

    --radius:  10px;
    --radius-lg: 16px;
    --shadow:  0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
    --t: 0.3s ease;
    --t-slow: 0.6s cubic-bezier(0.16,1,0.3,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-en); color: var(--text-dark); background: var(--white); line-height: 1.65; overflow-x: hidden; }
body[dir="rtl"] { font-family: var(--font-ar); }
a { text-decoration: none; color: inherit; transition: color var(--t); }
ul { list-style: none; }
img { display: block; max-width: 100%; }
input, textarea, select, button { font-family: inherit; }

/* ===== UTILITIES ===== */
.container { width: 92%; max-width: 1200px; margin: 0 auto; }
.section { padding: 96px 0; }
.section-alt { background-color: var(--section-alt); }
.gold-text { color: var(--gold); }
.mx-auto { margin-left: auto; margin-right: auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
    display: inline-block;
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 12px;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: var(--navy); margin-bottom: 16px; line-height: 1.15; }
.section-sub { color: var(--text-body); max-width: 560px; margin: 0 auto; }
.divider-gold { width: 56px; height: 3px; background: linear-gradient(to right, var(--gold), var(--blue-light)); margin-bottom: 28px; border-radius: 2px; }
.body-text { color: var(--text-body); margin-bottom: 20px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 30px; font-size: 0.95rem; font-weight: 600;
    border-radius: var(--radius); border: 2px solid transparent;
    cursor: pointer; transition: all var(--t); white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,160,40,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-block { width: 100%; justify-content: center; }

/* ===== PRELOADER ===== */
.preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; display: flex; flex-direction: column; align-items: center; }
.preloader-logo {
    width: 110px; height: 110px; object-fit: cover;
    border-radius: 50%;
    border: 2.5px solid rgba(200,160,40,0.55);
    box-shadow: 0 0 30px rgba(200,160,40,0.4), 0 0 60px rgba(200,160,40,0.15);
    margin: 0 auto 24px;
    display: block;
    animation: logoPulse 1.8s ease-in-out infinite;
}
.preloader-bar { width: 120px; height: 3px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; margin: 0 auto; }
.preloader-fill { height: 100%; width: 0%; background: linear-gradient(to right, var(--gold), var(--blue-light)); border-radius: 2px; animation: barFill 1.2s ease-in-out forwards; }
@keyframes logoPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.08)} }
@keyframes barFill { to { width: 100%; } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0;
    transition: all var(--t);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(13, 27, 42, 0.97);
    backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.3);
    border-bottom: 1px solid var(--navy-border);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }

/* Nav logo: clip to circle to remove white square corners */
.logo-link {
    display: flex;
    align-items: center;
}
.nav-logo {
    height: 64px;
    width: 64px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(200,160,40,0.45);
    box-shadow: 0 0 16px rgba(200,160,40,0.25);
    transition: transform var(--t), box-shadow var(--t);
    flex-shrink: 0;
}
.nav-logo:hover {
    transform: scale(1.07);
    box-shadow: 0 0 24px rgba(200,160,40,0.45);
}

.nav-links { display: flex; gap: 6px; }
.nav-links li a {
    display: block; padding: 6px 14px;
    font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.88);
    border-radius: 6px; position: relative;
    transition: all var(--t);
}
.nav-links li a::after {
    content: ''; position: absolute; bottom: 0; left: 14px; right: 14px;
    height: 2px; background: var(--gold);
    transform: scaleX(0); transition: transform var(--t);
    border-radius: 1px;
}
[dir="rtl"] .nav-links li a::after { left: 14px; right: 14px; }
.nav-links li a:hover { color: var(--gold-light); }
.nav-links li a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-btn {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    color: var(--white); padding: 6px 16px; border-radius: 6px;
    cursor: pointer; font-size: 0.82rem; font-weight: 600;
    transition: all var(--t); letter-spacing: 0.5px;
}
.lang-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.nav-insta { display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.06); border-radius: 6px; padding: 5px; color: var(--white); transition: all var(--t); border: 1px solid rgba(255,255,255,0.2); }
.nav-insta:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: scale(1.05); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--t); }

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-wallpaper {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center center;
    background: var(--navy);
}
.hero-overlay {
    position: absolute; inset: 0; pointer-events: none;
    /* Strong left gradient so text reads on truck photo */
    background: linear-gradient(
        to right,
        rgba(13,27,42,0.97) 0%,
        rgba(13,27,42,0.80) 40%,
        rgba(13,27,42,0.35) 75%,
        rgba(13,27,42,0.10) 100%
    );
}
[dir="rtl"] .hero-overlay {
    background: linear-gradient(
        to left,
        rgba(13,27,42,0.97) 0%,
        rgba(13,27,42,0.80) 40%,
        rgba(13,27,42,0.35) 75%,
        rgba(13,27,42,0.10) 100%
    );
}
.hero-container { position: relative; z-index: 1; padding: 180px 0 100px; }
.hero-content { max-width: 640px; }
.hero-badge {
    display: inline-block; margin-bottom: 20px;
    background: rgba(200,160,40,0.2); border: 1px solid rgba(200,160,40,0.5);
    color: var(--gold-light); padding: 5px 16px;
    border-radius: 100px; font-size: 0.8rem; font-weight: 600; letter-spacing: 2px;
}
.hero-title {
    font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 800;
    color: var(--white); line-height: 1.1; margin-bottom: 20px;
}
.hero-sub { font-size: 1rem; color: rgba(255,255,255,0.72); margin-bottom: 40px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll-hint {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    z-index: 1; display: flex; flex-direction: column; align-items: center;
}
.hero-scroll-hint span {
    display: block; width: 2px; height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), var(--gold));
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3;transform:scaleY(0.8)} 50%{opacity:1;transform:scaleY(1)} }

/* ===== STATS STRIP ===== */
.stats-strip { background: var(--navy); padding: 36px 0; border-bottom: 1px solid var(--navy-border); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat-item { text-align: center; padding: 16px; }
.stat-num { font-size: 2.4rem; font-weight: 800; line-height: 1; margin-bottom: 6px; }
.stat-num span { font-size: 1.4rem; }
.stat-label { font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }

/* ===== ABOUT ===== */
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; aspect-ratio: 4/5; background: var(--section-alt); box-shadow: var(--shadow-lg); position: relative; z-index: 2; }
.about-accent-line {
    position: absolute; bottom: -20px; right: -20px; z-index: 1;
    width: 60%; height: 60%;
    border: 3px solid var(--gold); border-top: none; border-left: none;
    border-radius: 0 0 var(--radius-lg) 0;
    opacity: 0.6;
}
[dir="rtl"] .about-accent-line { right: auto; left: -20px; border-left: 3px solid var(--gold); border-right: none; }
.about-img-badge {
    position: absolute; top: -20px; left: -20px; z-index: 3;
    background: var(--navy); border-radius: 50%;
    padding: 6px; box-shadow: var(--shadow);
    width: 84px; height: 84px;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid rgba(200,160,40,0.4);
}
/* Logo inside badge: circular clip removes white corners */
.about-img-badge img, .logo-blend {
    width: 70px; height: 70px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
[dir="rtl"] .about-img-badge { left: auto; right: -20px; }
.about-text .section-title { text-align: left; }
[dir="rtl"] .about-text .section-title { text-align: right; }
.about-pillars { display: grid; gap: 20px; margin: 28px 0 36px; }
.pillar { display: flex; gap: 16px; padding: 20px; background: var(--section-alt); border-radius: var(--radius); border-left: 3px solid var(--gold); }
[dir="rtl"] .pillar { border-left: none; border-right: 3px solid var(--gold); }
.pillar-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.pillar h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.pillar p { font-size: 0.9rem; color: var(--text-body); line-height: 1.5; }

/* ===== SERVICES ===== */
.services-section { background: var(--navy); }
.services-section .section-tag { color: var(--gold-light); }
.services-section .section-title { color: var(--white); }
.services-section .section-sub { color: var(--text-muted); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--t);
    position: relative; overflow: hidden;
    min-height: 380px;
    display: flex; flex-direction: column;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(to right, var(--gold), var(--blue-light));
    transform: scaleX(0); transition: transform var(--t);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(200,160,40,0.25); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.service-card:hover::before { transform: scaleX(1); }

.featured-card { border-color: rgba(200,160,40,0.35); background: linear-gradient(135deg, #1F2E42 0%, var(--navy-card) 100%); }
.featured-card::before { transform: scaleX(1); }
.featured-badge {
    display: inline-block; margin-bottom: 12px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    color: var(--navy); padding: 3px 12px; border-radius: 100px;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.service-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.service-icon-wrap { width: 48px; height: 48px; background: rgba(200,160,40,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.service-icon-wrap svg { width: 24px; height: 24px; stroke: var(--gold); }
.service-num { font-size: 1.6rem; font-weight: 800; color: rgba(255,255,255,0.06); line-height: 1; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.service-card > p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 18px; line-height: 1.6; }
.service-list { border-top: 1px solid var(--navy-border); padding-top: 16px; display: grid; gap: 8px; }
.service-list li { font-size: 0.83rem; color: rgba(255,255,255,0.55); padding-left: 14px; position: relative; }
.service-list li::before { content: '›'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
[dir="rtl"] .service-list li { padding-left: 0; padding-right: 14px; }
[dir="rtl"] .service-list li::before { left: auto; right: 0; }

.service-example-wrap {
    margin-bottom: 20px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    height: 160px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}
.service-example-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter var(--t);
    filter: brightness(0.85);
}
.service-card:hover .service-example-img {
    transform: scale(1.15);
    filter: brightness(1.1);
}
.service-example-overlay {
    position: absolute; inset: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(13,27,42,0.95), transparent 60%);
    display: flex; align-items: flex-end; padding: 14px;
    opacity: 0; transition: opacity var(--t);
}
.service-card:hover .service-example-overlay {
    opacity: 1;
}
.service-example-overlay span {
    color: var(--white); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}

/* ===== PROJECTS ===== */
.projects-section { background: var(--section-alt); }
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}
.project-card {
    position: relative; overflow: hidden; border-radius: var(--radius-lg);
    background: var(--navy);
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow);
}
.project-card--wide {
    grid-column: 1 / 3;
    aspect-ratio: 16/7;
}
.project-card img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: center;
    transition: transform 0.7s var(--t-slow);
    display: block;
    /* Enhance real product photos */
    filter: saturate(1.1) contrast(1.05) brightness(1.02);
}
.project-card:hover img {
    transform: scale(1.07);
    filter: saturate(1.25) contrast(1.1) brightness(1.05);
}
.project-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.1) 60%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 24px;
    opacity: 0; transition: opacity var(--t);
}
.project-card:hover .project-overlay { opacity: 1; }
.proj-cat {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--gold-light); margin-bottom: 6px; display: block;
}
.project-overlay h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); line-height: 1.3; }

/* ===== CONTACT ===== */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
.contact-details { display: grid; gap: 22px; margin-bottom: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; stroke: var(--gold); }
.contact-item strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 0.95rem; font-weight: 500; color: var(--navy); }
.contact-item a:hover { color: var(--gold); }
.contact-info .section-title { text-align: left; }
[dir="rtl"] .contact-info .section-title { text-align: right; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* Contact Form */
.contact-form-wrap {
    background: var(--navy); border-radius: var(--radius-lg);
    padding: 40px; box-shadow: var(--shadow-lg);
    border: 1px solid var(--navy-border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group textarea, .form-group select {
    padding: 12px 16px; background: rgba(255,255,255,0.05);
    border: 1px solid var(--navy-border); border-radius: var(--radius);
    color: var(--white); font-size: 0.95rem;
    transition: border-color var(--t), background var(--t);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group select option { background: var(--navy-mid); color: var(--white); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold); background: rgba(200,160,40,0.06); }
.form-success {
    margin-top: 16px; padding: 14px; background: rgba(46,213,115,0.12); border: 1px solid rgba(46,213,115,0.3);
    border-radius: var(--radius); color: #2ed573; font-size: 0.9rem; font-weight: 500;
    display: flex; gap: 8px; align-items: center;
}

/* ===== FOOTER ===== */
.footer { background: var(--navy-mid); border-top: 1px solid var(--navy-border); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr; gap: 40px; padding: 72px 0 48px; }
/* Footer logo: same circle clip, white bg hidden */
.footer-logo {
    height: 80px; width: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(200,160,40,0.4);
    box-shadow: 0 0 18px rgba(200,160,40,0.25);
    margin-bottom: 16px;
    display: block;
}
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.footer-addr { margin-top: 8px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
    width: 40px; height: 40px; background: rgba(255,255,255,0.06); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); transition: all var(--t);
}
.social-btn:hover { background: var(--gold); color: var(--navy); }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid var(--navy-border); }
.footer-col ul li { margin-bottom: 10px; font-size: 0.88rem; color: var(--text-muted); cursor: pointer; transition: color var(--t); }
.footer-col ul li:hover, .footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-list li { display: flex; gap: 8px; align-items: flex-start; }
.footer-contact-list li a { color: var(--text-muted); }
.footer-contact-list li a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid var(--navy-border); padding: 20px 0; text-align: center; font-size: 0.82rem; color: var(--text-muted); }

/* ===== WHATSAPP FLOAT BTN ===== */
.whatsapp-btn {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all var(--t);
}
.whatsapp-btn:hover { transform: scale(1.1); background: #20b858; box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
[dir="rtl"] .whatsapp-btn { right: auto; left: 28px; }

/* ===== SCROLL ANIMATIONS ===== */
.fade-in-section {
    opacity: 0; transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-section.visible { opacity: 1; transform: none; }
.fade-up {
    opacity: 0; transform: translateY(28px);
    animation: fadeUp 0.9s 0.3s ease forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* ===== MEDIA QUERIES ===== */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-img-wrap { max-width: 480px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr 1fr; }
    .project-card--wide { grid-column: 1 / 3; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed; inset: 0 0 0 auto;
        width: 72%; max-width: 300px;
        background: var(--navy);
        flex-direction: column; justify-content: center; align-items: center;
        gap: 4px; padding: 40px 20px;
        transform: translateX(110%); transition: transform var(--t);
        box-shadow: -4px 0 30px rgba(0,0,0,0.4);
    }
    [dir="rtl"] .nav-links { left: 0; right: auto; transform: translateX(-110%); box-shadow: 4px 0 30px rgba(0,0,0,0.4); }
    .nav-links.open { transform: translateX(0); }
    .nav-links li a { padding: 12px 24px; font-size: 1rem; }
    .services-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .project-card--wide { grid-column: auto; aspect-ratio: 4/3; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.2rem; }
    .contact-form-wrap { padding: 28px 22px; }
}

@media (max-width: 500px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .hero-btns { flex-direction: column; align-items: flex-start; }
}
