/* ============================================================
   MRASE Website — Main Stylesheet
   Brand Colors: #0a2543 (Primary Blue), #2E7D32 (Growth Green)
   ============================================================ */

/* --- CSS Variables --- */
:root {
    --blue:       #0a2543;
    --blue-mid:   #0d3060;
    --blue-light: #1a4a7a;
    --green:      #2E7D32;
    --green-acc:  #66BB6A;
    --green-light:#e8f5e9;
    --gray-dark:  #424242;
    --gray-mid:   #757575;
    --gray-light: #f5f5f5;
    --white:      #FFFFFF;
    --shadow:     0 4px 24px rgba(10,37,67,0.10);
    --shadow-md:  0 8px 40px rgba(10,37,67,0.15);
    --radius:     12px;
    --radius-sm:  8px;
    --trans:      0.3s cubic-bezier(.4,0,.2,1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', 'Cairo', sans-serif;
    color: var(--gray-dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

body.locale-ar {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    text-align: right;
}

body.locale-en {
    font-family: 'Open Sans', sans-serif;
    direction: ltr;
    text-align: left;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', 'Cairo', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--blue);
}

body.locale-ar h1, body.locale-ar h2, body.locale-ar h3,
body.locale-ar h4, body.locale-ar h5 {
    font-family: 'Cairo', sans-serif;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

p { margin-bottom: 1rem; color: var(--gray-dark); }
a { text-decoration: none; color: var(--green); transition: color var(--trans); }
a:hover { color: var(--blue); }

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* --- Utility --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 80px 0; }
.section.bg-light { background: var(--gray-light); }
.centered { text-align: center; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-1 { margin-top: 0.5rem; }
.w-full { width: 100%; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all var(--trans);
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.btn-primary:hover {
    background: #1b5e20;
    border-color: #1b5e20;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(46,125,50,0.3);
}

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

.btn-white {
    background: var(--white);
    color: var(--blue);
    border-color: var(--white);
    font-weight: 800;
}
.btn-white:hover {
    background: var(--green-light);
    color: var(--green);
    transform: translateY(-2px);
}

/* --- Section Labels --- */
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 0.75rem;
    padding: 4px 14px;
    border: 1.5px solid var(--green-acc);
    border-radius: 50px;
    background: var(--green-light);
}

.section-header.centered {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    color: var(--gray-mid);
    max-width: 700px;
    margin: 1rem auto 0;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 37, 67, 0.97);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    transition: all var(--trans);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

/* Logo */
.navbar-brand { display: flex; flex-direction: column; gap: 2px; }

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

.logo-m {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    background: linear-gradient(135deg, var(--green), var(--green-acc));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.logo-text { display: flex; flex-direction: column; }
.logo-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1;
}
.logo-sub {
    font-size: 0.52rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.tagline-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
}
.tagline-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green-acc));
    max-width: 30px;
}
.tagline-text {
    font-size: 0.6rem;
    color: var(--green-acc);
    font-style: italic;
    white-space: nowrap;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    color: rgba(255,255,255,0.85);
    font-size: 0.87rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all var(--trans);
}
.nav-links a:hover, .nav-links a.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.nav-links a.nav-cta {
    background: var(--green);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
}
.nav-links a.nav-cta:hover {
    background: #1b5e20;
    transform: translateY(-1px);
}

.lang-switch {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--green-acc);
    border: 1.5px solid var(--green-acc);
    padding: 5px 14px;
    border-radius: 50px;
    transition: all var(--trans);
}
.lang-switch:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--trans);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    min-height: 100vh;
    background: var(--blue);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-geo {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
}
.geo-1 {
    width: 600px; height: 600px;
    background: var(--green);
    top: -200px; right: -100px;
    border-radius: 50%;
}
.geo-2 {
    width: 400px; height: 400px;
    background: var(--green-acc);
    bottom: -100px; left: -50px;
    border-radius: 50%;
}
.geo-3 {
    width: 200px; height: 200px;
    background: var(--white);
    top: 50%; left: 40%;
    border-radius: 50%;
    opacity: 0.04;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 40px;
    padding-bottom: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46,125,50,0.2);
    border: 1px solid var(--green-acc);
    color: var(--green-acc);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.badge-dot {
    width: 8px; height: 8px;
    background: var(--green-acc);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    color: var(--white);
    margin-bottom: 1rem;
}

.hero-subtitle {
    color: var(--green-acc);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.hero-desc {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-m-shape {
    font-family: 'Montserrat', sans-serif;
    font-size: 14rem;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    position: absolute;
    line-height: 1;
    user-select: none;
}

.hero-card {
    position: absolute;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    min-width: 160px;
    animation: float 3s ease-in-out infinite;
}
.card-1 { top: 10%; left: 0; animation-delay: 0s; }
.card-2 { top: 45%; right: 0; animation-delay: 1s; }
.card-3 { bottom: 10%; left: 15%; animation-delay: 2s; }

.card-icon { font-size: 1.5rem; }
.card-text { font-size: 0.9rem; font-weight: 600; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.scroll-arrow {
    width: 24px; height: 24px;
    border-right: 2px solid rgba(255,255,255,0.4);
    border-bottom: 2px solid rgba(255,255,255,0.4);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
    50% { transform: rotate(45deg) translateY(6px); opacity: 0.5; }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    background: var(--blue);
    padding: 32px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 16px 48px;
}

.stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--green-acc);
    line-height: 1;
}

.stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    background: var(--blue);
    padding: 140px 0 70px;
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 80% 50%, rgba(46,125,50,0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(102,187,106,0.07) 0%, transparent 50%);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero .section-label { margin-bottom: 1rem; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 680px; font-size: 1.05rem; }

/* ============================================================
   TWO-COLUMN LAYOUT
   ============================================================ */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.two-col.reverse { }

.col-text .section-label { margin-bottom: 0.75rem; }
.col-text .section-title { margin-bottom: 1.25rem; }
.col-text p { color: var(--gray-mid); }

.col-visual {}

/* About Visual Cards */
.about-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.av-block {
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.av-block::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 80px; height: 80px;
    border-radius: 50%;
    opacity: 0.15;
}

.av-blue { background: var(--blue); color: var(--white); }
.av-blue::before { background: var(--green); }
.av-blue h4 { color: var(--white); margin: 0.5rem 0 0.5rem; }
.av-blue .av-icon { font-size: 1.8rem; }
.av-blue p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin: 0; }

.av-green { background: var(--green-light); border: 2px solid var(--green-acc); }
.av-green::before { background: var(--green); }
.av-green h4 { color: var(--green); margin: 0.5rem 0 0.5rem; }
.av-green .av-icon { font-size: 1.8rem; }
.av-green p { color: var(--gray-dark); font-size: 0.9rem; margin: 0; }

/* Big M Shape (about page) */
.centered-visual { display: flex; justify-content: center; align-items: center; }
.big-m-shape {
    font-family: 'Montserrat', sans-serif;
    font-size: 12rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--blue), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    filter: drop-shadow(0 8px 24px rgba(10,37,67,0.2));
}

/* Vision/Mission Grid */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.vm-card {
    border-radius: var(--radius);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.vm-blue {
    background: var(--blue);
    color: var(--white);
}
.vm-blue h3 { color: var(--green-acc); margin-bottom: 1rem; }
.vm-blue p { color: rgba(255,255,255,0.8); }
.vm-blue .vm-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.vm-green {
    background: var(--green);
    color: var(--white);
}
.vm-green h3 { color: var(--green-acc); margin-bottom: 1rem; }
.vm-green p { color: rgba(255,255,255,0.85); }
.vm-green .vm-icon { font-size: 2.5rem; margin-bottom: 1rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1.5px solid #e8e8e8;
    border-radius: var(--radius);
    padding: 32px 28px;
    position: relative;
    transition: all var(--trans);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--green-acc));
    transform: scaleX(0);
    transition: transform var(--trans);
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--green-acc);
    transform: translateY(-4px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--green-acc);
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.service-icon-wrap {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: var(--blue);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-mid);
    margin: 0;
}

/* Full services page */
.services-grid-full {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card-full {
    display: flex;
    padding: 36px 0;
    border-bottom: 1px solid #eee;
    gap: 32px;
    align-items: flex-start;
    transition: all var(--trans);
}

.service-card-full:hover { background: var(--gray-light); padding-left: 16px; padding-right: 16px; border-radius: var(--radius-sm); }

.scf-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--green-acc);
    opacity: 0.4;
    min-width: 60px;
    line-height: 1;
}

.scf-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
}

.scf-icon { font-size: 2rem; min-width: 40px; }

.scf-text h3 { color: var(--blue); margin-bottom: 0.5rem; }
.scf-text p { color: var(--gray-mid); margin: 0; }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.why-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--white);
    border: 1.5px solid #eee;
    border-radius: var(--radius);
    padding: 24px;
    transition: all var(--trans);
}

.why-card:hover {
    border-color: var(--green-acc);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.why-check {
    width: 36px; height: 36px;
    min-width: 36px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}

.why-card h4 { color: var(--blue); margin-bottom: 0.4rem; font-size: 1rem; }
.why-card p { color: var(--gray-mid); font-size: 0.88rem; margin: 0; }

/* Why Us Full Page */
.why-grid-full {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-card-full {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 32px;
    background: var(--white);
    border: 1.5px solid #eee;
    border-radius: var(--radius);
    transition: all var(--trans);
}

.why-card-full:hover {
    border-color: var(--green);
    box-shadow: var(--shadow-md);
}

.wcf-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--blue);
    opacity: 0.12;
    min-width: 50px;
    line-height: 1;
}

.wcf-check {
    width: 44px; height: 44px;
    min-width: 44px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.wcf-content h3 { color: var(--blue); margin-bottom: 0.5rem; }
.wcf-content p { color: var(--gray-mid); margin: 0; }

/* Problems / Solutions */
.problems-solutions {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
}

.ps-arrow {
    font-size: 2rem;
    color: var(--green);
    align-self: center;
    font-weight: 800;
}

.ps-col h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid;
}

.ps-problems h3 { color: #c62828; border-color: #ffcdd2; }
.ps-solutions h3 { color: var(--green); border-color: var(--green-acc); }

.ps-intro { color: var(--gray-mid); margin-bottom: 1rem; font-size: 0.9rem; }

.ps-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ps-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
}

.problem-list li { background: #fff5f5; color: var(--gray-dark); }
.solution-list li { background: var(--green-light); color: var(--gray-dark); }

.problem-icon { color: #c62828; font-weight: 800; min-width: 18px; }
.solution-icon { color: var(--green); font-weight: 800; min-width: 18px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #eee;
    transition: all var(--trans);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    text-align: inherit;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--blue);
    transition: color var(--trans);
}

.faq-question:hover { color: var(--green); }

.faq-arrow {
    font-size: 1.4rem;
    font-weight: 300;
    min-width: 24px;
    transition: transform var(--trans);
    color: var(--green);
}

.faq-item.open .faq-arrow { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--gray-mid);
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================================
   CLIENTS SECTION
   ============================================================ */
.client-types {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin: 2rem 0 1.5rem;
}

.client-type {
    font-size: 2.5rem;
    width: 70px; height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid #eee;
    border-radius: 50%;
    transition: all var(--trans);
}

.client-type:hover {
    border-color: var(--green);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.clients-text {
    color: var(--gray-mid);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 2rem;
    font-size: 1.3rem;
    color: var(--gray-dark);
    font-weight: 600;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.cd-icon {
    font-size: 1.3rem;
    min-width: 36px;
}

.contact-detail strong {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-mid);
    margin-bottom: 2px;
}

.contact-detail a {
    color: var(--blue);
    font-weight: 600;
    font-size: 1rem;
}
.contact-detail a:hover { color: var(--green); }

.contact-tagline { margin-top: 2rem; }

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.social-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    transition: all var(--trans);
    color: var(--white);
}

.social-btn.fb { background: #1877f2; }
.social-btn.li { background: #0a66c2; }
.social-btn.ig { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    color: var(--white);
}

.social-handle {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-mid);
    margin-top: 6px;
}

/* Form */
.contact-form-card {
    background: var(--white);
    border: 1.5px solid #eee;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form-card h3 {
    margin-bottom: 0.5rem;
}

.form-note {
    font-size: 0.8rem;
    color: var(--gray-mid);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue);
}

.form-input {
    padding: 12px 16px;
    border: 1.5px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--gray-dark);
    transition: border-color var(--trans);
    outline: none;
    background: var(--white);
}

.form-input:focus { border-color: var(--green); }
textarea.form-input { resize: vertical; min-height: 120px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { padding: 60px 0; }

.cta-box {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    border-radius: 20px;
    padding: 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-geo-1, .cta-geo-2 {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}
.cta-geo-1 { width: 300px; height: 300px; background: var(--green); top: -100px; left: -80px; }
.cta-geo-2 { width: 200px; height: 200px; background: var(--green-acc); bottom: -60px; right: -40px; }

.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { color: var(--white); margin-bottom: 1rem; }
.cta-box p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 0.75rem; }
.cta-promise { font-style: italic; }
.cta-box .btn { margin-top: 2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--blue); color: rgba(255,255,255,0.75); }

.footer-top { padding: 64px 0; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 48px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.footer-brand .logo-m {
    font-size: 1.8rem;
}

.footer-tagline { margin-bottom: 1rem; }

.footer-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 0;
}

.footer-links h4, .footer-contact h4 {
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    transition: color var(--trans);
}
.footer-links a:hover { color: var(--green-acc); }

.footer-contact p {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    margin-bottom: 1rem;
}
.footer-contact a { color: rgba(255,255,255,0.65); }
.footer-contact a:hover { color: var(--green-acc); }
.footer-contact h5 {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p {
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
    text-align: center;
    margin: 0;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.7s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.35s; }
.delay-4 { animation-delay: 0.5s; }

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

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

@keyframes fadeIn {
    to { opacity: 1; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .hero .container { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .two-col { grid-template-columns: 1fr; gap: 40px; }
    .vm-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .problems-solutions { grid-template-columns: 1fr; }
    .ps-arrow { display: none; }
    .stat-item { padding: 16px 24px; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 80vw; max-width: 320px;
        height: 100vh;
        background: var(--blue);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 40px;
        gap: 24px;
        transition: right var(--trans);
        z-index: 999;
        border-left: 1px solid rgba(255,255,255,0.1);
    }

    body.locale-ar .nav-menu {
        right: auto;
        left: -100%;
        border-left: none;
        border-right: 1px solid rgba(255,255,255,0.1);
        transition: left var(--trans);
    }

    .nav-menu.open { right: 0; }
    body.locale-ar .nav-menu.open { left: 0; right: auto; }

    .nav-links { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
    .nav-links a { font-size: 1rem; padding: 10px 16px; width: 100%; }

    .hero .container { padding-top: 20px; padding-bottom: 60px; }
    .section { padding: 56px 0; }

    .hero-actions { flex-direction: column; width: fit-content; }

    .cta-box { padding: 40px 24px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .stats-grid { gap: 0; }
    .stat-item { padding: 14px 20px; }
    .stat-divider { height: 30px; }

    .service-card-full { flex-direction: column; gap: 12px; }
    .scf-num { font-size: 1.5rem; }

    .contact-form-card { padding: 24px 20px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .stats-grid { flex-direction: column; }
    .stat-divider { width: 60%; height: 1px; margin: 0 auto; }
    .cta-box { padding: 32px 20px; }
    .why-card-full { flex-direction: column; }
    .wcf-num { display: none; }
}
