/* css/style.css */

/* =========================================
   ALNOURI CONTRACTING - MAIN STYLESHEET
   Refactored: 2026 (Cleaned & Consolidated)
   =========================================
   1.  VARIABLES
   2.  RESET & BASE
   3.  TYPOGRAPHY & UTILITIES
   4.  NAVIGATION (Smart Header)
   5.  HERO SECTION
   6.  COMPONENTS (Buttons, Inputs)
   7.  CARDS (Services, Projects, Process)
   8.  SECTIONS: Engineering Studies
   9.  SECTIONS: Stats
   10. SECTIONS: About Us, Founder, Product, FAQ
   11. SECTIONS: Press & History
   12. SECTIONS: Contact
   13. FOOTER (Modern & Trust Badges)
   14. WIDGETS (WhatsApp, Lang, Preloader)
   15. ANIMATIONS
   16. RESPONSIVE (Tablets & Mobile)
   17. RTL SUPPORT
   ========================================= */

/* =========================================
   1. VARIABLES
   ========================================= */
:root {
    /* Palette */
    --primary: #c1963d;       /* Construction Yellow/Gold */
    --primary-dark: #FF9800;
    --dark: #0f0f0f;
    --surface: #1a1a1a;
    --surface-light: #222;
    --text: #ffffff;
    --text-mute: #a0a0a0;
    --grid-color: rgba(255, 255, 255, 0.05);
    
    /* WhatsApp */
    --wa-green: #25d366;
    --wa-green-dark: #20b858;

    /* Z-Index Layers */
    --z-cursor: 9999;
    --z-modal: 10000;
    --z-nav: 1000;
    --z-widget: 2000;
}

/* =========================================
   2. RESET & BASE STYLES
   ========================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--dark);
    color: var(--text);
    font-family: 'Cairo', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    /* Industrial Engineering Grid Background */
    background-image:
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Image Protection */
img {
    -webkit-user-drag: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* =========================================
   3. TYPOGRAPHY & UTILITIES
   ========================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cairo', sans-serif;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =========================================
   4. NAVIGATION (SMART HEADER)
   ========================================= */
.smart-nav {
    position: fixed; top: 0; left: 0; width: 100%; height: 90px;
    z-index: var(--z-nav); background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(15px); border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.nav-container {
    padding: 0 5%; height: 100%; display: flex;
    justify-content: space-between; align-items: center;
}

.logo {
    display: flex; align-items: center; gap: 15px;
    font-family: 'Cairo', sans-serif; font-size: 1.5rem;
    text-transform: uppercase; letter-spacing: 2px; color: white;
}
.logo span { color: var(--primary); }

.nav-menu { display: flex; align-items: center; gap: 40px; }
.nav-links { display: flex; gap: 40px; }

.nav-link {
    color: white; font-weight: 600; text-transform: uppercase;
    font-size: 0.85rem; letter-spacing: 1px; position: relative;
    transition: 0.3s; padding-bottom: 5px;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link::after {
    content: ''; position: absolute; width: 0; height: 2px;
    bottom: 0; left: 50%; background-color: var(--primary);
    transition: all 0.3s ease; transform: translateX(-50%);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-actions {
    display: flex; align-items: center; gap: 25px;
    border-left: 1px solid rgba(255,255,255,0.1); padding-left: 25px;
}

.lang-switch-minimal {
    font-family: 'Cairo', sans-serif; font-size: 0.85rem; color: #888;
    display: flex; align-items: center; gap: 12px;
}
.lang-switch-minimal span { transition: 0.3s; display: flex; align-items: center; gap: 6px; cursor: pointer; }
.lang-switch-minimal img { width: 20px; height: auto; border-radius: 2px; opacity: 0.7; transition: 0.3s; filter: grayscale(0.5); }
.lang-switch-minimal span.active, .lang-switch-minimal span:hover:not(.sep) { color: white; text-shadow: 0 0 5px white; }
.lang-switch-minimal span.active img, .lang-switch-minimal span:hover img { opacity: 1; filter: grayscale(0); box-shadow: 0 0 8px rgba(255, 255, 255, 0.2); }
.lang-switch-minimal .sep { color: rgba(255,255,255,0.1); font-size: 1.1rem; }

/* Nav CTA */
.btn-nav-cta {
    background: var(--primary); color: black; padding: 10px 24px;
    font-weight: 700; font-family: 'Cairo', sans-serif; text-transform: uppercase;
    font-size: 0.85rem; border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.btn-nav-cta:hover { 
    background: white; 
    transform: translateY(-2px); 
    box-shadow: 0 6px 15px rgba(193, 150, 61, 0.3); 
}

.nav-scanner-line {
    width: 100%; height: 1px; background: rgba(255, 255, 255, 0.05);
    position: relative; overflow: hidden;
}
.nav-scanner-line::after {
    content: ''; position: absolute; top: 0; left: -50%;
    width: 30%; height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: scanner 4s infinite linear;
}

.menu-toggle { display: none; padding: 10px; cursor: pointer; }
.hamburger-box { width: 30px; height: 24px; position: relative; }
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 30px; height: 2px; background-color: white;
    position: absolute; transition: 0.3s ease;
}
.hamburger-inner { top: 50%; margin-top: -2px; }
.hamburger-inner::before { content: ""; top: -8px; display: block; }
.hamburger-inner::after { content: ""; bottom: -8px; display: block; }

/* Hamburger 'X' Animation State */
.menu-toggle.active .hamburger-inner { background-color: transparent; }
.menu-toggle.active .hamburger-inner::before { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active .hamburger-inner::after { transform: translateY(-8px) rotate(-45deg); }

/* =========================================
   5. HERO SECTION
   ========================================= */
.hero-section {
    position: relative; width: 100%; height: 100vh;
    overflow: hidden; background: #050505;
    display: flex; flex-direction: column; justify-content: center;
    padding-top: 90px;
}
.hero-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(193, 150, 61, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(193, 150, 61, 0.03) 1px, transparent 1px);
    background-size: 60px 60px; z-index: 3; pointer-events: none;
}
.hero-particles {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(white 1px, transparent 1px);
    background-size: 50px 50px; opacity: 0.1; z-index: 2;
    animation: particleDrift 20s linear infinite;
}

/* Frame */
.hero-frame {
    position: absolute; top: 90px; left: 0; width: 100%; height: calc(100% - 90px);
    z-index: 10; pointer-events: none; padding: 30px;
}
.frame-corner {
    position: absolute; width: 40px; height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1); transition: 0.5s;
}
.hero-section:hover .frame-corner { border-color: var(--primary); }
.frame-corner.top-left { top: 30px; left: 30px; border-right: 0; border-bottom: 0; }
.frame-corner.top-right { top: 30px; right: 30px; border-left: 0; border-bottom: 0; }
.frame-corner.bottom-left { bottom: 30px; left: 30px; border-right: 0; border-top: 0; }
.frame-corner.bottom-right { bottom: 30px; right: 30px; border-left: 0; border-top: 0; }
.frame-line { position: absolute; background: rgba(255, 255, 255, 0.05); }
.frame-line.left { top: 80px; bottom: 80px; left: 30px; width: 1px; }
.frame-line.right { top: 80px; bottom: 80px; right: 30px; width: 1px; }
.frame-line.top { left: 80px; right: 80px; top: 30px; height: 1px; }
.frame-line.bottom { left: 80px; right: 80px; bottom: 30px; height: 1px; }

/* Slider */
.hero-slider-wrap { width: 100%; height: 100%; position: relative; }
.hero-slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0; visibility: hidden; transition: opacity 1s ease-in-out; z-index: 1;
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 2; }
.slide-img-layer { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; }
.slide-img-layer img {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1); transition: transform 10s ease-out;
}
.hero-slide.active .slide-img-layer img { transform: scale(1.15); }
.slide-overlay-gradient {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.55);
}

/* Content */
.slide-content-layer {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    z-index: 5; width: 100%; max-width: 1000px; color: white;
    text-align: center; display: flex; flex-direction: column; align-items: center; padding: 0 20px;
    background: radial-gradient(closest-side, rgba(0, 0, 0, 0.9) 0%, rgba(0,0,0,0) 100%);
}

.hero-title {
    font-family: 'Cairo', sans-serif; font-size: 5rem; line-height: 1;
    text-transform: uppercase; margin: 10px 0 20px 0;
    transform: translateY(100%); transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s;
    text-shadow: 0 2px 10px rgba(0,0,0,0.9), 0 5px 20px rgba(0,0,0,0.8);
    position: relative; z-index: 6;
}
.hero-title .highlight { -webkit-text-stroke: 2px white; }
.hero-desc {
    color: #ccc; font-size: 1.2rem; max-width: 500px;
    transform: translateY(100%); transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;
    text-shadow: 0 2px 5px rgba(0,0,0,0.9); position: relative; z-index: 6;
}
.hero-btn-group {
    margin-top: 40px; display: flex; justify-content: center; gap: 20px;
    opacity: 0; transform: translateY(20px); transition: 0.8s ease 0.8s;
}
.hero-slide.active .hero-title, .hero-slide.active .hero-desc, .hero-slide.active .hero-btn-group {
    transform: translateY(0); opacity: 1;
}

/* Controls */
.hero-control-panel {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 100px; z-index: 15;
    display: flex; justify-content: space-between; align-items: center; padding: 0 5%;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}
.panel-left, .panel-right { width: 250px; }
.panel-center { flex-grow: 1; display: flex; justify-content: center; gap: 25px; align-items: center; }
.slide-counter { font-family: 'Cairo', sans-serif; color: white; display: flex; align-items: center; gap: 15px; font-size: 1.2rem; }
.current-slide { color: var(--primary); font-size: 2rem; }
.total-slides { color: #555; }
.progress-bar-container { width: 100px; height: 2px; background: rgba(255,255,255,0.1); position: relative; }
.slide-progress-bar { position: absolute; left: 0; top: 0; height: 100%; width: 0; background: var(--primary); transition: width 0.1s linear; }

.scroll-mouse-btn {
    width: 30px; height: 50px; border: 2px solid rgba(255,255,255,0.3); border-radius: 15px;
    position: relative; display: flex; justify-content: center;
}
.mouse-wheel {
    width: 4px; height: 8px; background: var(--primary); border-radius: 2px; margin-top: 10px;
    animation: scrollWheel 2s infinite;
}

.arrow-btn {
    width: 45px; height: 45px; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; color: white;
    display: flex; justify-content: center; align-items: center; cursor: pointer; transition: 0.3s;
}
.arrow-btn:hover { background: white; color: black; border-color: white; }

.hero-side-data {
    position: absolute; right: 50px; top: 50%; transform: translateY(-50%);
    display: flex; flex-direction: column; gap: 20px; z-index: 15;
}
.data-item {
    text-align: right; border-right: 2px solid rgba(255,255,255,0.1); padding-right: 15px;
    display: flex; flex-direction: column;
}
.data-item .lbl { font-size: 0.65rem; color: #666; letter-spacing: 2px; }
.data-item .val { font-family: 'Cairo', sans-serif; color: white; font-size: 1rem; }

/* =========================================
   6. COMPONENTS (Buttons, Inputs)
   ========================================= */
section { padding: 100px 5%; position: relative; }
.heading-group { text-align: center; margin-bottom: 60px; }
.heading-group h2 { font-size: 3rem; margin-bottom: 15px; }
.heading-group p { color: var(--text-mute); max-width: 600px; margin: 0 auto; line-height: 1.6; }
.heading-group .bar { width: 60px; height: 4px; background: var(--primary); margin: 20px auto; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

/* CORPORATE BUTTONS */
.btn-main {
    padding: 15px 40px; 
    background: var(--primary); 
    color: black;
    text-decoration: none; 
    font-weight: 800; 
    text-transform: uppercase;
    border-radius: 4px; 
    transition: all 0.3s ease;
    display: inline-block; 
    border: none; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.btn-main:hover { 
    transform: translateY(-3px); 
    background: white; 
    box-shadow: 0 10px 25px rgba(193, 150, 61, 0.4); 
}

.btn-glass {
    padding: 15px 35px; 
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05); 
    color: white;
    text-decoration: none; 
    font-weight: 700; 
    text-transform: uppercase;
    backdrop-filter: blur(5px); 
    transition: all 0.3s ease;
    border-radius: 4px; 
    min-width: 200px; 
    text-align: center;
}
.btn-glass:hover { 
    background: white; 
    color: black; 
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.btn-view-all {
    display: inline-flex; align-items: center; justify-content: center; gap: 15px;
    padding: 18px 45px; background-color: var(--primary); color: #000 !important;
    border: none; font-family: 'Cairo', sans-serif; font-size: 1rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    cursor: pointer; transition: all 0.3s ease; box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-radius: 4px; text-decoration: none;
}
.btn-view-all:hover { background-color: white; transform: translateY(-3px); box-shadow: 0 15px 30px rgba(193, 150, 61, 0.2); }
.btn-view-all i { transition: transform 0.3s ease; }
.btn-view-all:hover i { transform: translateX(5px); }

/* Inputs (Global) */
input, textarea, select {
    width: 100%; background: #111; border: 1px solid #333; padding: 15px;
    color: white; margin-bottom: 15px; font-family: 'Montserrat', sans-serif;
}
input:focus, textarea:focus, select:focus { border-color: var(--primary); outline: none; }

/* Friendly Inputs */
.clean-input-group label {
    font-size: 0.9rem !important; color: var(--primary) !important;
    margin-bottom: 10px !important; letter-spacing: 0.5px !important;
    display: block; text-transform: uppercase; font-weight: 600;
}
.clean-input-group input, .clean-input-group textarea, .clean-input-group select {
    background: #1a1a1a !important; border: 1px solid #444 !important;
    border-radius: 8px !important; padding: 15px 20px !important;
    font-size: 1rem !important; transition: all 0.3s ease; width: 100%;
}
.clean-input-group input:focus, .clean-input-group textarea:focus, .clean-input-group select:focus {
    border-color: var(--primary) !important; background: #222 !important;
    box-shadow: 0 0 10px rgba(193, 150, 61, 0.1);
}

/* =========================================
   7. CARDS (Services, Projects, Process)
   ========================================= */

/* Services Card */
.glass-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.6) 0%, rgba(30, 30, 30, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08); padding: 30px 25px; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative; overflow: hidden; backdrop-filter: blur(10px);
    display: flex; flex-direction: column;
}
.glass-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.8) 0%, rgba(20, 20, 20, 0.6) 100%);
    border-color: rgba(255, 193, 7, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(193, 150, 61, 0.1);
}
.glass-card::after {
    content: ''; position: absolute; top: 0; right: 0;
    width: 0; height: 0; border-style: solid;
    border-width: 0 40px 40px 0; 
    border-color: transparent var(--primary) transparent transparent;
    opacity: 0.5; transition: 0.3s;
}
.glass-card:hover::after { opacity: 1; border-width: 0 60px 60px 0; }
.icon-box {
    width: 55px; height: 55px; background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 1.4rem; color: var(--primary); margin-bottom: 15px;
    transition: 0.4s ease; position: relative; z-index: 2;
}
.glass-card:hover .icon-box {
    background: var(--primary); color: #000; border-color: var(--primary);
    box-shadow: 0 0 20px rgba(193, 150, 61, 0.5); transform: scale(1.1) rotate(-10deg);
}
.glass-card h3 { font-size: 1.3rem; margin-bottom: 10px; letter-spacing: 1px; color: white; }
.glass-card p { color: #999; font-size: 0.9rem; line-height: 1.5; margin-bottom: 20px; }

/* Project Cards */
.project-card {
    position: relative; height: 350px; overflow: hidden;
    cursor: pointer; border: 1px solid #333; border-radius: 4px;
}
.project-img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s ease; }
.project-card:hover .project-img { transform: scale(1.05); }

.project-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 60%, transparent 100%);
    opacity: 1; transition: all 0.3s ease;
    display: flex; flex-direction: column; justify-content: flex-end;
}
.project-card:hover .project-overlay {
    padding-bottom: 30px;
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 60%, transparent 100%);
}
.project-title { font-size: 1.4rem; color: white; margin: 5px 0 10px 0; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.project-tag { color: var(--primary); font-size: 0.75rem; text-transform: uppercase; font-weight: bold; letter-spacing: 1px; }
.project-hover-info p {
    color: #ddd; font-size: 0.9rem; line-height: 1.5; margin-bottom: 10px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.meta-row { display: flex; gap: 15px; font-size: 0.8rem; color: var(--primary); font-family: 'Cairo', sans-serif; letter-spacing: 1px; opacity: 0.9; }

/* Process Cards */
.process-section {
    background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 20px);
    border-top: 1px solid #333; overflow: hidden;
}
.process-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; }
.process-card {
    flex: 1; min-width: 300px; background: #111; border: 1px solid #333; padding: 40px;
    position: relative; overflow: hidden; transition: all 0.4s ease;
    display: flex; flex-direction: column;
}
.card-bg-num {
    position: absolute; top: -20px; right: -10px;
    font-size: 8rem; font-weight: 800; font-family: 'Cairo', sans-serif;
    color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05); z-index: 0; transition: 0.4s;
}
.process-card:hover .card-bg-num { -webkit-text-stroke: 1px rgba(255, 193, 7, 0.2); transform: scale(1.1); }
.card-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 25px; position: relative; z-index: 1; }
.process-card h3 { font-size: 1.8rem; color: white; margin-bottom: 15px; position: relative; z-index: 1; }
.process-card p { color: #888; line-height: 1.6; position: relative; z-index: 1; flex-grow: 1; }
.process-bar { height: 3px; width: 0; background: var(--primary); margin-top: 30px; transition: width 0.4s ease; }
.process-card:hover { transform: translateY(-10px); border-color: #444; background: #161616; }
.process-card:hover .process-bar { width: 100%; }

/* =========================================
   8. SECTIONS: ENGINEERING STUDIES
   ========================================= */
.section-engineering { padding: 40px 5% !important; }
.studies-grid { display: flex; flex-direction: column; gap: 30px; margin-top: 20px; }
.studies-grid .feature-row { display: flex; align-items: center; gap: 30px; }
.feature-img-box { flex: 1; position: relative; }
.feature-text { flex: 1; }
.feature-img { width: 100%; border-bottom: 2px solid var(--primary); }
.img-caption {
    font-family: 'Cairo', sans-serif; font-size: 0.75rem; color: var(--primary);
    background: rgba(0, 0, 0, 0.5); padding: 5px 10px; border-left: 2px solid var(--primary);
    position: absolute; bottom: 10px; right: 0; text-transform: uppercase;
}
.studies-grid .feature-row:nth-child(even) { flex-direction: row-reverse; text-align: right; }
.feature-text h3 { margin-bottom: 5px; font-size: 1.5rem; }
.feature-text p { font-size: 0.95rem; line-height: 1.5; margin-bottom: 10px; }
.spec-list {
    margin-top: 10px; padding: 5px 10px; list-style: none;
    background: rgba(0, 0, 0, 0.2); border-radius: 4px; border-left: 2px solid var(--primary);
}
.spec-list li {
    padding: 4px 0; display: flex; justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); font-size: 0.8rem;
}
.spec-list li:last-child { border-bottom: none; }
.studies-grid .feature-row:nth-child(even) .spec-list {
    margin-left: auto; margin-right: 0; border-left: none; border-right: 2px solid var(--primary);
}
.studies-grid .feature-row:nth-child(even) .spec-list li { flex-direction: row-reverse; }
.studies-grid .feature-row:nth-child(even) .spec-list i { margin-right: 0 !important; margin-left: 8px !important; }

/* =========================================
   9. SECTIONS: STATS
   ========================================= */
.stats-section {
    position: relative; padding: 80px 5%;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8)), url('../image_14.jpg');
    background-size: cover; background-position: center; background-attachment: fixed;
    display: flex; justify-content: center; align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats-container {
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px;
    padding: 40px 60px; width: 100%; max-width: 1100px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.stat-item { display: flex; align-items: center; gap: 20px; flex: 1; justify-content: center; }
.stat-icon {
    font-size: 2.5rem; color: var(--primary); opacity: 0.8;
    background: rgba(193, 150, 61, 0.1); width: 60px; height: 60px;
    display: flex; justify-content: center; align-items: center;
    border-radius: 50%; border: 1px solid rgba(193, 150, 61, 0.2);
}
.stat-info { display: flex; flex-direction: column; }
.stat-number { font-family: 'Cairo', sans-serif; font-size: 2.5rem; font-weight: 700; color: white; line-height: 1; margin-bottom: 5px; }
.stat-label { font-family: 'Montserrat', sans-serif; color: #888; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1px; font-weight: 600; }
.stat-divider { width: 1px; height: 50px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2), transparent); margin: 0 20px; }

/* =========================================
   10. SECTIONS: ABOUT US, FOUNDER, PRODUCT, FAQ
   ========================================= */

/* About Us Section (Corporate Style) */
#about {
    background-color: #080808;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

#about::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(193, 150, 61, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

#about .heading-group {
    position: relative;
    z-index: 2;
}

#about p {
    max-width: 900px;
    margin: 30px auto 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--primary);
    padding: 45px 50px;
    border-radius: 6px;
    font-size: 1.1rem;
    line-height: 2;
    color: #dcdcdc;
    text-align: justify;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

/* Product Section */
.product-section { display: flex; background: #222; border: 1px solid #333; margin-top: 60px; }
.product-img { width: 50%; object-fit: cover; }
.product-content { padding: 50px; width: 50%; display: flex; flex-direction: column; justify-content: center; }

/* Founder Section */
.founder-section { border-top: 1px solid #333; }
.founder-container { max-width: 1000px; margin: 0 auto; display: flex; align-items: center; gap: 60px; }
.founder-img-box { position: relative; flex: 0 0 350px; }
.founder-img { width: 100%; height: 400px; object-fit: cover; transition: 0.5s; position: relative; z-index: 2; }
.founder-deco {
    position: absolute; top: 20px; left: 20px; width: 100%; height: 100%;
    border: 3px solid var(--primary); z-index: 1; transition: 0.5s;
}
.founder-img-box:hover .founder-deco { top: 10px; left: 10px; }
.founder-content { flex: 1; }
.quote-icon { font-size: 3rem; color: var(--primary); margin-bottom: 20px; opacity: 0.5; }
.founder-heading { font-size: 2rem; color: white; margin-bottom: 20px; }
.founder-name-highlight {
    font-family: 'Cairo', sans-serif; font-size: 2.5rem; font-weight: 700;
    color: white; text-transform: uppercase; letter-spacing: 1px; line-height: 1.1; margin: 0 0 5px 0;
}
.founder-content blockquote { font-size: 1.1rem; line-height: 1.8; color: #ccc; font-style: italic; margin-bottom: 40px; border-left: none; }
.founder-sign-area { display: flex; justify-content: space-between; align-items: flex-end; border-top: 1px solid #333; padding-top: 20px; }
.signature-text { font-family: 'Brush Script MT', cursive; font-size: 2.5rem; color: #555; transform: rotate(-5deg); }

/* FAQ Section */
.faq-section { background-color: #050505; border-top: 1px solid #222; box-shadow: 0 -20px 50px rgba(0,0,0,0.8); }
.faq-grid { max-width: 900px; margin: 0 auto; display: grid; gap: 20px; }
.tech-faq-item { background: #111; border: 1px solid #333; transition: all 0.3s ease; overflow: hidden; }
.tech-faq-item[open] { border-color: var(--primary); box-shadow: 0 0 15px rgba(255, 193, 7, 0.1); }
.tech-faq-item summary {
    padding: 25px; cursor: pointer; font-weight: 600; list-style: none;
    display: flex; align-items: center; position: relative; color: white;
}
.tech-faq-item summary::-webkit-details-marker { display: none; }
.faq-indicator {
    width: 10px; height: 10px; background: #333; border-radius: 50%;
    margin-right: 20px; box-shadow: inset 1px 1px 2px rgba(0,0,0,0.5); transition: 0.3s;
}
.tech-faq-item[open] .faq-indicator { background: var(--primary); box-shadow: 0 0 10px var(--primary); animation: pulse-light 2s infinite; }
.faq-arrow { margin-left: auto; color: #555; transition: 0.3s; }
.tech-faq-item[open] .faq-arrow { transform: rotate(180deg); color: var(--primary); }
.faq-content { border-top: 1px solid #222; background: #0a0a0a; }
.faq-inner-text { padding: 25px 25px 25px 55px; color: #bbb; line-height: 1.6; animation: fadeIn 0.5s ease; }

/* =========================================
   11. SECTIONS: PRESS & HISTORY
   ========================================= */
.press-section { background: #0f0f0f; border-top: 1px solid #222; overflow: hidden; }
.press-container {
    max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 60px;
    background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px; border-radius: 8px;
    margin-bottom: 40px; 
}
.press-container.reversed {
    flex-direction: row-reverse;
    background: rgba(255, 255, 255, 0.01);
}

.press-content { flex: 1; }
.press-badge {
    display: inline-flex; align-items: center; gap: 10px; background: var(--primary);
    color: black; padding: 5px 15px; font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; border-radius: 4px; margin-bottom: 25px;
}
.press-heading { font-size: 2.2rem; color: white; margin-bottom: 25px; line-height: 1.2; }
.press-body p { color: #aaa; line-height: 1.7; margin-bottom: 20px; font-size: 1rem; }
.press-quote {
    border-left: 3px solid var(--primary); padding-left: 20px; font-style: italic;
    color: #ddd !important; background: rgba(255, 255, 255, 0.03); padding: 20px;
}
.quote-author { display: block; margin-top: 10px; font-size: 0.9rem; color: var(--primary); font-style: normal; font-weight: 700; }
.tech-sketch-note { margin-top: 20px; font-size: 0.85rem; color: #666; display: flex; align-items: center; gap: 10px; }

.press-visuals {
    flex: 1; position: relative; height: 400px; display: flex; justify-content: center; align-items: center;
}
.visual-card {
    position: absolute; border: 5px solid white; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background: white; transition: transform 0.3s ease, z-index 0s; 
    cursor: pointer; 
}
.visual-card:hover { transform: scale(1.05) rotate(0deg) !important; z-index: 10; }
.visual-card.active-card { transform: scale(1.02); }

.press-img {
    display: block; width: 100%; height: auto;
    filter: grayscale(100%) contrast(1.2) brightness(0.9);
    mix-blend-mode: multiply; transition: 0.5s ease;
}
.visual-card:hover .press-img {
    filter: grayscale(0%) contrast(1.0) brightness(1.0); mix-blend-mode: normal;
}
.visual-caption {
    background: black; color: white; text-align: center; font-size: 0.75rem;
    padding: 5px; font-family: 'Cairo', sans-serif; text-transform: uppercase;
}
.map-card { width: 280px; transform: rotate(-5deg) translateX(-30px); z-index: 1; }
.photo-card { width: 240px; transform: rotate(5deg) translateX(40px) translateY(20px); z-index: 2; }

/* =========================================
   12. SECTIONS: CONTACT
   ========================================= */
.contact-section-clean { background: #080808; padding: 100px 5%; position: relative; border-top: 1px solid #222; }
.clean-contact-wrapper { max-width: 1200px; margin: 0 auto; display: flex; gap: 60px; align-items: flex-start; }
.clean-info-panel { flex: 1; padding-top: 10px; }
.clean-heading { font-family: 'Cairo', sans-serif; font-size: 2.5rem; color: white; margin-bottom: 20px; text-transform: uppercase; }
.clean-desc { color: #888; line-height: 1.8; margin-bottom: 40px; font-size: 1rem; max-width: 400px; }
.clean-info-list { display: flex; flex-direction: column; gap: 25px; margin-bottom: 50px; }

.clean-item { display: flex; align-items: center; gap: 20px; color: #ccc; font-size: 1.1rem; }
.clean-item i { color: var(--primary); font-size: 1.2rem; width: 30px; text-align: center; }
.clean-item.top-align { align-items: flex-start; }
.clean-item.top-align i { margin-top: 6px; }

.contact-text-group { display: flex; flex-direction: column; justify-content: center; line-height: 1.5; }
.c-main { font-weight: 700; color: white; font-size: 1rem; letter-spacing: 0.5px; }
.c-sub { font-size: 0.85rem; color: #999; margin-top: 2px; }

.clean-item:hover .c-main { color: var(--primary); }
.clean-item:hover .c-sub { color: #aaa; }

.clean-hours { border-top: 1px solid #222; padding-top: 30px; }
.clean-hours p { color: #888; margin-bottom: 8px; font-size: 0.95rem; display: flex; justify-content: space-between; max-width: 300px; border-bottom: 1px dashed #222; padding-bottom: 5px; }
.clean-form-panel { flex: 1.5; background: #111; padding: 40px; border: 1px solid #222; box-shadow: 0 0 30px rgba(0,0,0,0.5); }
.success-message {
    text-align: center; padding: 20px; animation: fadeIn 0.5s ease;
    display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%;
}
.success-icon-box {
    width: 80px; height: 80px; border: 2px solid var(--primary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--primary); margin-bottom: 25px;
    box-shadow: 0 0 20px rgba(193, 150, 61, 0.2); animation: pulse-success 2s infinite;
}
.success-message h3 { font-family: 'Cairo', sans-serif; color: white; font-size: 2rem; margin-bottom: 10px; }
.success-message .sub-text { color: #888; margin-bottom: 5px; font-size: 0.95rem; }

/* =========================================
   13. FOOTER & TRUST BADGES
   ========================================= */

/* TRUST STRIP (Section above Footer) */
.trust-strip {
    background-color: #080808; 
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 5;
}

.trust-strip-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.trust-badges-row {
    display: flex;
    justify-content: space-between; 
    gap: 20px;
    flex-wrap: wrap;
}

.trust-badge-card.horizontal {
    flex: 1;
    min-width: 280px; 
    background: linear-gradient(145deg, #101010, #151515);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 6px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

/* White Grayscale Accent */
.trust-badge-card.horizontal::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #ffffff; 
    opacity: 0.4;
    border-radius: 6px 0 0 6px;
    transition: 0.3s;
}

.trust-badge-card.horizontal:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3); 
}

.trust-badge-card.horizontal:hover::before {
    opacity: 1;
}

.badge-seal {
    position: relative;
    width: 50px;             
    height: 50px;            
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;      
    color: #ffffff; 
    font-size: 1.2rem;       
}

.seal-check {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;             
    height: 18px;
    background: #ffffff; 
    color: #000; 
    border-radius: 50%;
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #151515;
}

.badge-content { display: flex; flex-direction: column; line-height: 1.2; }
.badge-label {
    font-size: 1rem; text-transform: uppercase;
    color: var(--text-mute); letter-spacing: 1px; font-weight: 600;
}
.badge-val {
    font-family: 'Cairo', sans-serif; font-size: 1.2rem;
    color: #fff; font-weight: bolder; margin: 2px 0;
}
.badge-date {
    font-size: 0.65rem;      
    color: #888888; 
    font-weight: bolder;
}

.section-divider-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

/* MAIN FOOTER */
.modern-footer {
    background-color: #050505;
    color: #888;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    font-size: 0.95rem;
}

.footer-map-layer {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/d/d3/Syria_location_map.svg');
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center right;
    opacity: 0.03;
    filter: grayscale(100%);
    pointer-events: none;
    z-index: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 5% 40px 5%;
    position: relative;
    z-index: 2;
}

.footer-main-grid.expanded-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1.2fr 1.2fr;
    gap: 40px;
    align-items: start;
    padding-bottom: 20px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-family: 'Cairo', sans-serif;
    color: #fff;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    height: 2px; 
    background: rgba(255, 255, 255, 0.15); 
    width: 40px; 
}

.footer-brand { max-width: 450px; }
.footer-logo {
    height: 75px; margin-bottom: 25px;
    filter: none; transition: transform 0.3s;
}
.footer-logo:hover { transform: scale(1.02); }
.footer-bio { line-height: 1.6; margin-bottom: 25px; color: #666; max-width: 400px; }

.social-links { display: flex; gap: 15px; }
.social-links a {
    width: 40px; height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex; align-items: center; justify-content: center;
    color: white; transition: all 0.3s ease; border-radius: 50%;
}
.social-links a:hover {
    border-color: var(--primary); color: var(--primary);
    transform: translateY(-3px);
}

.link-list a {
    display: block; color: #777777; margin-bottom: 12px;
    transition: 0.3s; font-size: 0.95rem;
    display: flex; align-items: center; gap: 10px;
}
.link-list a:hover { color: #ffffff; padding-left: 5px; }

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 25px; 
}

.fc-item {
    display: flex;
    align-items: flex-start; 
    gap: 15px;
}

.fc-item i {
    color: #666666; 
    font-size: 1.1rem;
    margin-top: 4px; 
    width: 20px;
    text-align: center;
}

.fc-item div {
    display: flex;
    flex-direction: column;
}

.fc-label {
    font-size: 0.75rem;
    color: #555555; 
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.fc-val {
    color: #ccc;
    font-size: 0.95rem;
    font-family: 'Cairo', sans-serif;
    line-height: 1.4;
    transition: 0.3s;
}
.fc-item:hover .fc-val { color: white; }

.footer-news-desc {
    color: #888; font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px;
}

.footer-news-form { position: relative; }

.news-input-group {
    position: relative;
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    display: flex;
    transition: 0.3s;
}
.news-input-group:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(193, 150, 61, 0.2);
}
.news-input-group input {
    width: 100%; background: transparent; border: none;
    color: white; padding: 15px; font-size: 0.9rem;
    outline: none; margin: 0; 
}
.news-input-group button {
    background: var(--primary); border: none; color: black;
    width: 50px; cursor: pointer; font-size: 1rem;
    transition: 0.3s; display: flex; align-items: center; justify-content: center;
}
.news-input-group button:hover { background: white; }

.footer-divider {
    width: 100%; height: 1px;
    background: rgba(255, 255, 255, 0.05); margin: 40px 0;
}
.footer-bottom-bar {
    background: #020202; padding: 20px 5%;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.8rem; border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative; z-index: 2;
}
.policy-links a { color: #555; transition: 0.3s; }
.policy-links a:hover { color: var(--primary); }
.sep { margin: 0 10px; color: #333; }

/* =========================================
   14. WIDGETS
   ========================================= */
/* Language Dialog */
.lang-dialog-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85); z-index: 999999;
    display: flex; justify-content: center; align-items: center;
    backdrop-filter: blur(5px); cursor: auto !important;
}
.lang-dialog-overlay * { cursor: auto !important; }
.lang-dialog-overlay.hidden { display: none !important; }
.lang-card {
    background: #111; border: 1px solid #333; border-top: 3px solid var(--primary);
    padding: 30px; width: 90%; max-width: 400px; text-align: center;
    border-radius: 8px; box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.lang-header img.lang-logo { height: 50px; width: auto; margin-bottom: 20px; display: inline-block; }
.lang-header h3 { color: white; text-transform: uppercase; font-size: 1.2rem; margin-bottom: 25px; }
.lang-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.lang-btn {
    background: #1a1a1a; border: 1px solid #333; padding: 15px 10px; color: white;
    cursor: pointer !important; display: flex; flex-direction: column; align-items: center; gap: 8px; transition: 0.2s;
}
.lang-btn:hover { background: var(--primary); color: black; border-color: var(--primary); }
.lang-btn img { width: 30px; height: auto; border-radius: 2px; }
.lang-btn span { font-size: 0.8rem; font-weight: bold; }

/* WhatsApp */
.wa-widget {
    position: fixed; bottom: 25px; right: 25px; z-index: var(--z-widget);
    background: var(--wa-green); border-radius: 50px;
    padding: 8px 16px 8px 10px; display: flex; align-items: center; gap: 12px;
    text-decoration: none; box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer; border: 2px solid rgba(255,255,255,0.1);
}
.wa-widget:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.4); background: var(--wa-green-dark); }
.wa-btn-ring { width: 34px; height: 34px; position: relative; order: 2; }
.wa-icon-box {
    width: 100%; height: 100%; background: white; color: var(--wa-green);
    border-radius: 50%; display: flex; justify-content: center; align-items: center;
    font-size: 18px; border: none;
}
.wa-label-panel { order: 1; margin: 0; background: transparent; border: none; padding: 0; }
.wa-cta-text { color: white; font-family: 'Cairo', sans-serif; font-size: 0.85rem; font-weight: bold; text-transform: uppercase; white-space: nowrap; }

/* =========================================
   15. ANIMATIONS & LOADERS
   ========================================= */
.reveal { opacity: 0; transform: translateY(50px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Skeleton Shimmer */
.skeleton-loader {
    position: relative;
    background-color: #1a1a1a !important; 
    overflow: hidden;
}
.skeleton-loader::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%); animation: skeleton-shimmer 1.5s infinite;
    z-index: 10; pointer-events: none;
}

@keyframes skeleton-shimmer { 100% { transform: translateX(100%); } }
@keyframes scanner { 0% { left: -30%; } 100% { left: 130%; } }
@keyframes scrollWheel { 0% { top: 6px; opacity: 1; } 100% { top: 20px; opacity: 0; } }
@keyframes particleDrift { 0% { transform: translateY(0) translateX(0); } 100% { transform: translateY(-50px) translateX(-20px); } }
@keyframes pulse-light { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse-success { 
    0% { box-shadow: 0 0 0 0 rgba(193, 150, 61, 0.4); } 
    70% { box-shadow: 0 0 0 15px rgba(193, 150, 61, 0); } 
    100% { box-shadow: 0 0 0 0 rgba(193, 150, 61, 0); } 
}
.fa-spin { animation: fa-spin 2s infinite linear; }
@keyframes fa-spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* =========================================
   16. RESPONSIVE (Tablets & Mobile)
   ========================================= */

/* --- TABLETS (Max Width 1024px) --- */
@media(max-width: 1024px) {
    .footer-main-grid.expanded-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
    .trust-col { grid-column: span 2; } 
}

/* --- TABLETS (Max Width 900px) --- */
@media(max-width: 900px) {
    .nav-menu {
        position: fixed; top: 90px; right: -100%; width: 100%; height: calc(100vh - 90px);
        background: linear-gradient(135deg, rgba(15,15,15,0.98) 0%, rgba(5,5,5,0.98) 100%);
        backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
        flex-direction: column; justify-content: center;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        border-top: 1px solid rgba(255,255,255,0.05); padding-bottom: 50px;
    }
    .nav-menu.active { right: 0; }
    .nav-links { flex-direction: column; text-align: center; gap: 35px; margin-bottom: 40px; }
    .nav-actions { flex-direction: column; border-left: none; padding-left: 0; gap: 30px; }
    .menu-toggle { display: block; }
    
    .nav-link { 
        font-size: 1.5rem; opacity: 0.8; display: inline-block;
        transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease;
    }
    .nav-link:hover, .nav-link.active { opacity: 1; transform: scale(1.1); color: var(--primary); }
    .nav-link::after { display: none; }
    
    .stats-section { padding: 60px 20px !important; }
    .stats-container {
        flex-direction: column; padding: 20px 0; gap: 0;
        width: 100%; max-width: 380px; margin: 0 auto;
    }
    .stat-item {
        width: 100%; display: flex; flex-direction: row;
        align-items: center; justify-content: flex-start;
        padding: 25px 30px; border-right: none;
    }
    .stat-icon { width: 45px; height: 45px; font-size: 1.4rem; margin-right: 20px; margin-bottom: 0; flex-shrink: 0; }
    .stat-info { text-align: left; }
    .stat-number { font-size: 2rem; margin-bottom: 4px; }
    .stat-label { font-size: 0.75rem; opacity: 0.7; letter-spacing: 1px; }
    .stat-divider { width: 85%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); margin: 0 auto; }
    
    .section-engineering { padding: 30px 5% !important; }
    .studies-grid { gap: 40px; }
    .studies-grid .feature-row, .studies-grid .feature-row:nth-child(even) { flex-direction: column !important; text-align: center !important; gap: 15px; }
    .studies-grid .feature-row:nth-child(even) .spec-list { margin: 0 auto; border-right: none; border-left: 2px solid var(--primary); }
    .studies-grid .feature-row:nth-child(even) .spec-list li { flex-direction: row; }
    .studies-grid .feature-row:nth-child(even) .spec-list i { margin-left: 0 !important; margin-right: 8px !important; }
    
    .press-container, .press-container.reversed { 
        flex-direction: column-reverse; padding: 0 20px 40px 20px; gap: 0; margin-top: 20px; 
    }
    .press-visuals { 
        width: 100%; height: auto; position: relative; 
        display: flex; flex-direction: column; align-items: center;
        margin-bottom: 30px; padding-top: 20px;
    }
    
    /* Press Visuals Mobile Overlap Fix */
    .press-visuals .visual-card:first-child { margin-bottom: -150px !important; z-index: 1; }
    .press-visuals .visual-card:last-child { z-index: 2; margin-bottom: 30px !important; }
    
    .map-card { position: relative; top: auto; left: auto; transform: rotate(-3deg); width: 80%; max-width: 280px; }
    .photo-card { position: relative; top: auto; left: auto; transform: rotate(3deg); width: 70%; max-width: 240px; box-shadow: 0 10px 20px rgba(19, 18, 18, 0.9); }
    
    .press-content { text-align: center; margin-top: 10px; }
    .press-heading { font-size: 1.8rem; margin-top: 0; }
    .press-badge { margin: 0 auto 15px auto; display: inline-flex; }
    .tech-sketch-note { justify-content: center; text-align: center; }
}

/* --- MOBILE PHONES (Max Width 768px) --- */
@media(max-width: 768px) {
    .feature-row, .feature-row.reversed, .product-section, .founder-container { flex-direction: column; }
    .product-img, .product-content { width: 100%; }
    .founder-img-box { flex: none; width: 100%; max-width: 300px; margin-bottom: 30px; }
    .founder-sign-area { flex-direction: column; align-items: center; gap: 20px; }
    .founder-name-highlight { font-size: 2rem; text-align: center; }
    
    .clean-contact-wrapper { flex-direction: column; width: 100%; border: 1px solid #333; }
    .clean-info-panel, .clean-form-panel { width: 100%; padding: 30px 20px; }
    .clean-info-panel { border-right: none; border-bottom: 1px solid #333; }

    #about p { padding: 30px 20px; font-size: 1rem; line-height: 1.8; }
    
    .hero-section { height: 85vh; min-height: 600px; }
    .slide-content-layer {
        top: 45%; transform: translateY(-50%) !important;
        text-align: center !important; width: 100%; left: 0 !important; right: 0 !important;
    }
    .hero-title { font-size: 2.8rem; line-height: 1.1; margin: 0 auto 15px auto; }
    .hero-desc { font-size: 1rem; margin: 0 auto 20px auto; max-width: 90%; }
    .hero-btn-group {
        flex-direction: column !important; align-items: center !important;
        gap: 15px !important; width: 100%; max-width: 280px; margin: 20px auto 0 auto !important;
    }
    .btn-main, .btn-glass { width: 100% !important; padding: 14px 0 !important; text-align: center !important; }
    
    .hero-side-data {
        flex-direction: row !important; gap: 20px !important;
        top: auto !important; bottom: 30px !important; left: 25px !important; right: auto !important;
        transform: none !important;
    }
    .data-item { text-align: left !important; border-right: 1px solid rgba(255,255,255,0.4) !important; padding-right: 15px !important; }
    .data-item:last-child { border-right: none !important; }
    
    .hero-control-panel { display: none !important; }
    .frame-line { display: none !important; }
    
    .wa-widget { bottom: 25px !important; right: 20px !important; left: auto !important; padding: 5px 12px 5px 8px !important; }

    /* Footer Mobile */
    .trust-badges-row { flex-direction: column; gap: 15px; }
    .footer-main-grid.expanded-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .trust-col { grid-column: span 1; }
    .footer-col { text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .footer-bottom-bar { flex-direction: column; gap: 15px; text-align: center; }
    
    .fc-item { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
}

/* =========================================
   17. RTL SUPPORT
   ========================================= */
body[dir="rtl"] { text-align: right; direction: rtl; font-family: 'Cairo', 'Montserrat', sans-serif; }

body[dir="rtl"] .nav-actions { border-left: none; border-right: 1px solid rgba(255,255,255,0.1); padding-left: 0; padding-right: 25px; }
body[dir="rtl"] .logo { flex-direction: row-reverse; }
body[dir="rtl"] .glass-card::after { right: auto; left: 0; transform: scaleX(-1); }
body[dir="rtl"] .spec-list { border-left: none; border-right: 2px solid var(--primary); }
body[dir="rtl"] .img-caption { right: auto; left: 0; border-left: none; border-right: 2px solid var(--primary); }
body[dir="rtl"] .btn-main { clip-path: none; border-radius: 4px; }
body[dir="rtl"] .founder-deco { left: auto; right: 20px; }
body[dir="rtl"] .founder-img-box:hover .founder-deco { left: auto; right: 10px; }
body[dir="rtl"] .signature-text { transform: rotate(5deg); }
body[dir="rtl"] .faq-indicator { margin-right: 0; margin-left: 20px; }
body[dir="rtl"] .faq-arrow { margin-left: 0; margin-right: auto; }
body[dir="rtl"] .faq-inner-text { padding: 25px 55px 25px 25px; }
body[dir="rtl"] .card-bg-num { right: auto; left: -10px; }
body[dir="rtl"] .clean-item { flex-direction: row; } 
body[dir="rtl"] .clean-hours p { text-align: left; direction: ltr; } 
body[dir="rtl"] .clean-hours p span:first-child { order: 2; margin-left: 10px; } 
body[dir="rtl"] .clean-hours p span:last-child { order: 1; }
body[dir="rtl"] .contact-text-group { text-align: right; padding-right: 0; }

body[dir="rtl"] #about p { border-left: 1px solid rgba(255, 255, 255, 0.05); border-right: 4px solid var(--primary); }

/* RTL Footer & Trust Badges */
body[dir="rtl"] .footer-main-grid.expanded-grid { text-align: right; }
body[dir="rtl"] .footer-map-layer { background-position: center left; }
body[dir="rtl"] .footer-col h4::after { left: auto; right: 0; }
body[dir="rtl"] .link-list a { justify-content: flex-start; }
body[dir="rtl"] .link-list a:hover { padding-left: 0; padding-right: 8px; }
body[dir="rtl"] .fc-item { text-align: right; }
body[dir="rtl"] .news-input-group { flex-direction: row; border-radius: 4px; overflow: hidden; }
body[dir="rtl"] .news-input-group input { text-align: right; }
body[dir="rtl"] .clean-newsletter button { right: auto; left: 0; transform: translateY(-50%) scaleX(-1); }
body[dir="rtl"] .trust-badge-card.horizontal::before { left: auto; right: 0; border-radius: 0 6px 6px 0; }
body[dir="rtl"] .badge-seal { margin-right: 0; margin-left: 20px; }
body[dir="rtl"] .seal-check { right: auto; left: -2px; }
body[dir="rtl"] .trust-badge-card:hover { transform: translateX(-8px); }

/* RTL Hero Center Fix */
body[dir="rtl"] .slide-content-layer {
    left: 50% !important; right: auto !important; transform: translate(-50%, -50%) !important;
    text-align: center !important; align-items: center !important;
}
body[dir="rtl"] .hero-btn-group { justify-content: center !important; }
body[dir="rtl"] .hero-side-data { right: auto; left: 50px; text-align: left; }
body[dir="rtl"] .data-item { border-right: none; border-left: 2px solid rgba(255,255,255,0.1); padding-right: 0; padding-left: 15px; text-align: left; }

/* RTL WhatsApp */
body[dir="rtl"] .wa-widget { left: 25px !important; right: auto !important; flex-direction: row; }
body[dir="rtl"] .wa-label-panel { text-align: left; }
body[dir="rtl"] .wa-icon-box i { margin: 0; }

/* Mobile Menu RTL */
@media(max-width: 900px) {
    body[dir="rtl"] .nav-menu { right: auto; left: -100%; transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1); }
    body[dir="rtl"] .nav-menu.active { left: 0; }
    body[dir="rtl"] .nav-link.active, body[dir="rtl"] .nav-link:hover { transform: scale(1.1); }
    body[dir="rtl"] .stat-item { justify-content: flex-start; padding-left: 0; padding-right: 10px; }
    body[dir="rtl"] .stat-icon { margin-right: 0; margin-left: 20px; }
    body[dir="rtl"] .stat-info { text-align: right; }
}

@media(max-width: 768px) {
    body[dir="rtl"] .hero-side-data { left: auto !important; right: 25px !important; flex-direction: row-reverse !important; }
    body[dir="rtl"] .data-item {
        text-align: right !important; border-right: none !important; border-left: 1px solid rgba(255,255,255,0.4) !important;
        padding-right: 0 !important; padding-left: 15px !important;
    }
    body[dir="rtl"] .wa-widget { left: 20px !important; right: auto !important; }
    body[dir="rtl"] .footer-col h4::after { left: 50%; transform: translateX(-50%); }
}