/* ==================================================
   NAJD FACTORY - STYLESHEET
   Brand Colors:
   - Brick Red:    #9B3D31
   - Sage Green:   #97A595
   - Dark Sage:    #6B7567
   - Cream:        #F8F6F1
   - Charcoal:     #2C2C2C
================================================== */

:root {
    --brick: #9B3D31;
    --brick-dark: #7D3127;
    --brick-light: #B9544A;
    --sage: #97A595;
    --sage-dark: #6B7567;
    --sage-light: #B8C2B5;
    --cream: #F8F6F1;
    --cream-2: #F1EDE4;
    --charcoal: #2C2C2C;
    --gray-1: #4A4A4A;
    --gray-2: #7A7A7A;
    --gray-3: #C9C9C9;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 6px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Tajawal', sans-serif;
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

html[lang="en"] body {
    font-family: 'Inter', sans-serif;
}

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

a { color: inherit; text-decoration: none; transition: var(--transition); }

ul { list-style: none; }

button { font-family: inherit; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============== BILINGUAL TOGGLE ============== */
html[lang="ar"] [lang="en"] { display: none !important; }
html[lang="en"] [lang="ar"] { display: none !important; }

/* keep dir attributes (like LTR phone numbers) unaffected */
html[lang="ar"] [lang="en"][dir="ltr"],
html[lang="en"] [lang="ar"][dir="rtl"] { display: inline !important; }

/* ============== HEADINGS & ACCENTS ============== */
h1, h2, h3, h4, h5 {
    font-weight: 800;
    line-height: 1.25;
    color: var(--charcoal);
}

html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] h3 {
    letter-spacing: -0.015em;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 18px;
}

.accent { color: var(--brick); }
.accent-light { color: var(--sage-light); }

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(151, 165, 149, 0.15);
    color: var(--sage-dark);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

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

.section-head p {
    color: var(--gray-2);
    font-size: 1.05rem;
    margin-top: 8px;
}

.section-head.light .section-tag {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.section-head.light h2,
.section-head.light p { color: var(--white); }

.section-head.light p { color: rgba(255,255,255,0.85); }

/* ============== BUTTONS ============== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-family: inherit;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--brick);
    color: var(--white);
    border-color: var(--brick);
}
.btn-primary:hover {
    background: var(--brick-dark);
    border-color: var(--brick-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(155, 61, 49, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

/* ============== NAVIGATION ============== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark { width: 40px; height: 48px; flex-shrink: 0; }
.logo-mark svg { width: 100%; height: 100%; }

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.logo-ar {
    font-weight: 900;
    font-size: 1rem;
    color: var(--charcoal);
}
.logo-en {
    font-size: 0.68rem;
    color: var(--sage-dark);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu a:not(.btn-nav) {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-1);
    position: relative;
}
.nav-menu a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 50%;
    transform: translateX(50%);
    width: 0;
    height: 2px;
    background: var(--brick);
    transition: var(--transition);
}
html[lang="en"] .nav-menu a:not(.btn-nav)::after {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}
.nav-menu a:not(.btn-nav):hover { color: var(--brick); }
.nav-menu a:not(.btn-nav):hover::after { width: 100%; }

.btn-nav {
    padding: 10px 22px;
    background: var(--brick);
    color: var(--white) !important;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
}
.btn-nav:hover {
    background: var(--brick-dark);
    transform: translateY(-1px);
}

.lang-switch {
    background: transparent;
    border: 1.5px solid var(--sage);
    color: var(--sage-dark);
    padding: 6px 14px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition);
}
.lang-switch:hover {
    background: var(--sage);
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
}

/* ============== HERO ============== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
    color: var(--white);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to left,
        rgba(20, 20, 20, 0.45) 0%,
        rgba(44, 44, 44, 0.88) 60%,
        rgba(20, 20, 20, 0.96) 100%
    );
}

html[lang="en"] .hero-overlay {
    background: linear-gradient(
        to right,
        rgba(20, 20, 20, 0.45) 0%,
        rgba(44, 44, 44, 0.88) 60%,
        rgba(20, 20, 20, 0.96) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(155, 61, 49, 0.22);
    border: 1px solid var(--brick-light);
    color: var(--white);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    max-width: 620px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.stat-num {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: 900;
    color: var(--sage-light);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem;
}
.hero-scroll > span { display: block; margin-bottom: 8px; }
.scroll-line {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.4);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* ============== ABOUT STRIP ============== */
.about-strip {
    padding: 100px 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    color: var(--gray-1);
    font-size: 1.02rem;
    margin: 18px 0;
}

.about-images {
    position: relative;
    height: 560px;
}
.img-card {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.img-card img { width: 100%; height: 100%; object-fit: cover; }
.img-card-1 {
    width: 60%;
    height: 65%;
    top: 0;
    right: 0;
    z-index: 2;
}
.img-card-2 {
    width: 65%;
    height: 60%;
    bottom: 0;
    left: 0;
    z-index: 1;
    border: 8px solid var(--cream);
}
html[lang="en"] .img-card-1 { right: auto; left: 0; }
html[lang="en"] .img-card-2 { left: auto; right: 0; }

.img-since {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 4;
    background: var(--brick);
    color: var(--white);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--cream);
}
html[lang="en"] .img-since { right: auto; left: 20px; }
.since-num {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
}
.since-text {
    font-size: 0.7rem;
    font-weight: 700;
    margin-top: 4px;
    opacity: 0.9;
}

/* ============== VMV (Vision/Mission/Values) ============== */
.vmv {
    padding: 100px 0;
    background: var(--white);
}

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

.vmv-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.vmv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.vmv-card-featured {
    background: linear-gradient(135deg, var(--brick) 0%, var(--brick-dark) 100%);
    color: var(--white);
}
.vmv-card-featured h3,
.vmv-card-featured p { color: var(--white); }
.vmv-card-featured p { color: rgba(255,255,255,0.92); }

.vmv-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--sage);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.vmv-card-featured .vmv-icon {
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
}
.vmv-icon svg { width: 30px; height: 30px; }

.vmv-card h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
}
.vmv-card p {
    color: var(--gray-1);
    font-size: 0.98rem;
    line-height: 1.7;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}
.value-chip {
    padding: 7px 16px;
    background: var(--white);
    border: 1px solid rgba(155, 61, 49, 0.15);
    color: var(--brick);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition);
}
.value-chip:hover {
    background: var(--brick);
    color: var(--white);
    border-color: var(--brick);
    transform: translateY(-2px);
}

/* ============== SERVICES ============== */
.services {
    padding: 100px 0;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(155, 61, 49, 0.2);
}

.service-img {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: var(--cream-2);
}
.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .service-img img {
    transform: scale(1.08);
}

.service-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-num {
    color: var(--sage);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.service-body p {
    color: var(--gray-2);
    margin-bottom: 18px;
    font-size: 0.95rem;
}
.service-list {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
}
.service-list li {
    position: relative;
    padding-right: 14px;
    font-size: 0.85rem;
    color: var(--gray-1);
    font-weight: 600;
}
.service-list li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brick);
}
html[lang="en"] .service-list li {
    padding-right: 0;
    padding-left: 14px;
}
html[lang="en"] .service-list li::before {
    right: auto;
    left: 0;
}

/* ============== PRODUCTION ============== */
.production {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.production-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.production-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.production-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(44, 44, 44, 0.95) 0%,
        rgba(107, 117, 103, 0.9) 100%
    );
}
.production-content {
    position: relative;
    z-index: 2;
}

.production-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.production-item {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    color: var(--white);
    backdrop-filter: blur(12px);
    transition: var(--transition);
}
.production-item:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
    border-color: var(--sage-light);
}
.production-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--brick);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.production-icon svg { width: 28px; height: 28px; }
.production-item h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.production-item p {
    color: rgba(255,255,255,0.75);
    font-size: 0.92rem;
}

/* ============== INDUSTRIES ============== */
.industries {
    padding: 100px 0;
    background: var(--white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.industry-card {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.industry-img {
    position: absolute;
    inset: 0;
}
.industry-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.industry-card:hover .industry-img img {
    transform: scale(1.1);
}
.industry-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}
.industry-card h4 {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    color: var(--white);
    font-size: 1.1rem;
    z-index: 2;
    margin: 0;
}

/* ============== WHY US ============== */
.why-us {
    padding: 100px 0;
    background: var(--cream);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.why-image {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-badge {
    position: absolute;
    bottom: 28px;
    right: 28px;
    background: var(--brick);
    color: var(--white);
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 6px solid var(--cream);
}
html[lang="en"] .why-badge { right: auto; left: 28px; }
.why-badge-num {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}
.why-badge-text {
    font-size: 0.78rem;
    font-weight: 700;
    margin-top: 4px;
    line-height: 1.2;
}

.why-content .section-tag { background: rgba(155, 61, 49, 0.12); color: var(--brick); }
.why-lead {
    font-size: 1.08rem;
    color: var(--gray-1);
    margin: 16px 0 32px;
}

.why-features {
    display: grid;
    gap: 20px;
}
.why-feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: flex-start;
}
.why-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--sage), var(--sage-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.why-feature-icon svg { width: 22px; height: 22px; }
.why-feature h4 { font-size: 1.08rem; margin-bottom: 4px; }
.why-feature p { color: var(--gray-2); font-size: 0.92rem; line-height: 1.6; }

/* ============== CTA STRIP ============== */
.cta-strip {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--brick) 0%, var(--brick-dark) 100%);
    position: relative;
    overflow: hidden;
}
.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 40%),
                      radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 40%);
}
.cta-content {
    position: relative;
    text-align: center;
    color: var(--white);
    max-width: 760px;
    margin: 0 auto;
}
.cta-content h2 { color: var(--white); }
.cta-content .accent { color: var(--sage-light); }
.cta-content p {
    margin: 16px 0 32px;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.92);
}
.cta-content .btn-primary {
    background: var(--white);
    color: var(--brick);
    border-color: var(--white);
}
.cta-content .btn-primary:hover {
    background: var(--cream);
    color: var(--brick-dark);
    border-color: var(--cream);
}

/* ============== CONTACT ============== */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 26px;
}
.contact-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: flex-start;
}
.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--cream);
    color: var(--brick);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-item h5 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--charcoal);
}
.contact-item p,
.contact-item a {
    color: var(--gray-1);
    font-size: 0.95rem;
}
.contact-item a:hover { color: var(--brick); }

.contact-form {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}
.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--charcoal);
}

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

.form-field {
    margin-bottom: 18px;
}
.form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-1);
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--gray-3);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--white);
    transition: var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--brick);
    box-shadow: 0 0 0 4px rgba(155, 61, 49, 0.08);
}
.form-field textarea { resize: vertical; }

/* ============== FOOTER ============== */
.footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand p {
    margin-top: 20px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}
.footer-logo svg { width: 40px; height: 48px; flex-shrink: 0; }
.footer-logo strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.3;
}
.footer-since {
    display: block;
    font-size: 0.78rem;
    color: var(--sage-light);
    font-weight: 600;
    margin-top: 2px;
    letter-spacing: 0.5px;
}

.footer-col h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 800;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}
.footer-col a:hover { color: var(--sage-light); }

.footer-contact li {
    word-break: break-word;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}
.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--brick);
    color: var(--white);
    transform: translateY(-3px);
}
.social-links svg { width: 18px; height: 18px; }

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ============== FLOATING CONTACT ============== */
.whatsapp-float {
    position: fixed;
    left: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    background: var(--brick);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(155, 61, 49, 0.45);
    z-index: 999;
    animation: pulse 2.5s infinite;
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.08);
    background: var(--brick-dark);
}
.whatsapp-float svg { width: 26px; height: 26px; }
@keyframes pulse {
    0% { box-shadow: 0 12px 28px rgba(155, 61, 49, 0.45), 0 0 0 0 rgba(155, 61, 49, 0.6); }
    70% { box-shadow: 0 12px 28px rgba(155, 61, 49, 0.45), 0 0 0 18px rgba(155, 61, 49, 0); }
    100% { box-shadow: 0 12px 28px rgba(155, 61, 49, 0.45), 0 0 0 0 rgba(155, 61, 49, 0); }
}

/* ============== ANIMATIONS ============== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1100px) {
    .industries-grid { grid-template-columns: repeat(3, 1fr); }
    .nav-menu { gap: 18px; }
}

@media (max-width: 1024px) {
    .about-grid,
    .why-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-grid { grid-template-columns: 1fr; }
    .vmv-grid { grid-template-columns: 1fr; gap: 20px; }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 72px;
        right: -100%;
        flex-direction: column;
        width: 85%;
        max-width: 320px;
        background: var(--white);
        padding: 32px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        height: calc(100vh - 72px);
        align-items: stretch;
        gap: 18px;
    }
    html[lang="en"] .nav-menu {
        right: auto;
        left: -100%;
    }
    .nav-menu.active { right: 0; }
    html[lang="en"] .nav-menu.active { right: auto; left: 0; }

    .hero { padding: 110px 0 60px; min-height: auto; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { justify-content: center; }

    .about-images { height: 400px; }

    .industries-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

    .service-list { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .about-strip,
    .vmv,
    .services,
    .production,
    .industries,
    .why-us,
    .contact { padding: 70px 0; }

    .logo-en { display: none; }
    html[lang="en"] .logo-ar:first-of-type { display: none; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .why-badge { width: 110px; height: 110px; bottom: 18px; right: 18px; }
    html[lang="en"] .why-badge { right: auto; left: 18px; }
    .why-badge-num { font-size: 1.5rem; }
    .contact-form { padding: 24px; }
    .whatsapp-float { width: 52px; height: 52px; left: 16px; bottom: 16px; }
    .vmv-card { padding: 32px 24px; }
}
