/* ============================================
   VERION — Exact Match to Design Images
   ============================================ */

:root {
    --gold: #c9a84c;
    --gold-light: #e8d5a3;
    --gold-dark: #a88a3a;
    --navy: #0a0e1a;
    --navy-1: #0c1020;
    --navy-2: #111827;
    --navy-3: #1a2235;
    --navy-4: #1e293b;
    --white: #ffffff;
    --gray-1: #c5c9d4;
    --gray-2: #9ca3af;
    --gray-3: #6b7280;
    --border: rgba(201, 168, 76, 0.25);
    --border-light: rgba(201, 168, 76, 0.15);
    --radius: 4px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; direction:rtl; }
body { font-family:'Cairo', var(--font); background:var(--navy); color:var(--white); line-height:1.6; -webkit-font-smoothing:antialiased; direction:rtl; text-align:right; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }

::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background:var(--navy); }
::-webkit-scrollbar-thumb { background:var(--gold); border-radius:3px; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position:fixed; top:0; left:0; right:0; z-index:1000;
    padding:20px 0; transition:all 0.4s ease;
    background:transparent;
}
.navbar.scrolled {
    background:rgba(10,14,26,0.95);
    backdrop-filter:blur(20px);
    padding:12px 0;
    box-shadow:0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
    max-width:1280px; margin:0 auto; padding:0 48px;
    display:flex; align-items:center; justify-content:space-between;
}
.nav-logo {
    display:flex; align-items:center; gap:14px;
}
.logo-mark {
    width:48px; height:48px; flex-shrink:0; border-radius:50%; object-fit:cover;
}
.logo-wordmark {
    display:flex; flex-direction:column;
}
.logo-name {
    font-size:22px; font-weight:700; letter-spacing:6px;
    color:var(--white); line-height:1;
}
.logo-tag {
    font-size:8px; font-weight:500; letter-spacing:2.2px;
    color:var(--gold); text-transform:uppercase; margin-top:3px;
}

/* Nav Menu */
.nav-menu {
    display:flex; align-items:center; gap:36px;
}
.nav-item {
    font-size:12px; font-weight:600; letter-spacing:1.5px;
    color:var(--gray-1); padding:8px 0; position:relative;
    text-transform:uppercase; transition:color 0.25s ease;
}
.nav-item::after {
    content:''; position:absolute; bottom:0; right:0;
    width:0; height:2px; background:var(--gold);
    transition:width 0.35s ease;
}
.nav-item:hover, .nav-item.active { color:var(--gold); }
.nav-item:hover::after, .nav-item.active::after { width:100%; }

/* Nav Actions */
.nav-actions {
    display:flex; align-items:center; gap:20px;
}
.lang-btn {
    display:flex; align-items:center; gap:6px;
    padding:8px 18px; border:1px solid var(--border);
    border-radius:30px; background:transparent;
    color:var(--gray-1); font-size:12px; font-weight:600;
    letter-spacing:1px; cursor:pointer; transition:all 0.25s ease;
}
.lang-btn:hover { border-color:var(--gold); color:var(--gold); }
.lang-arrow { width:10px; height:7px; }
.menu-btn {
    display:none; flex-direction:column; gap:5px;
    background:none; border:none; cursor:pointer; padding:5px;
}
.menu-btn span {
    display:block; width:24px; height:2px;
    background:var(--gold); transition:all 0.3s ease;
}
.menu-btn.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.menu-btn.active span:nth-child(2) { opacity:0; }
.menu-btn.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position:relative; min-height:100vh; display:flex;
    align-items:center; overflow:hidden;
    background:linear-gradient(135deg, #0a0e1a 0%, #0f1525 50%, #0a0e1a 100%);
}
.hero-bg {
    position:absolute; inset:0; z-index:1;
}
.hero-image {
    position:absolute; inset:0;
    background-image:url('hero-bg.png');
    background-size:cover;
    background-position:center center;
}
.hero-overlay {
    position:absolute; inset:0;
    background:linear-gradient(105deg, rgba(10,14,26,0.92) 0%, rgba(10,14,26,0.7) 45%, rgba(10,14,26,0.3) 100%);
}
.hero-network {
    position:absolute; inset:0; z-index:2;
}
.network-svg {
    width:100%; height:100%; opacity:0.5;
}
.net-line {
    stroke:url(#netGrad); stroke-width:1;
    stroke-dasharray:300; stroke-dashoffset:300;
    animation:drawLine 4s ease forwards;
}
.net-line:nth-child(2) { animation-delay:0.2s; }
.net-line:nth-child(3) { animation-delay:0.4s; }
.net-line:nth-child(4) { animation-delay:0.6s; }
.net-line:nth-child(5) { animation-delay:0.8s; }
.net-line:nth-child(6) { animation-delay:1.0s; }
.net-line:nth-child(7) { animation-delay:1.2s; }
.net-line:nth-child(8) { animation-delay:1.4s; }
.net-line:nth-child(9) { animation-delay:1.6s; }
.net-line:nth-child(10) { animation-delay:1.8s; }
.net-line:nth-child(11) { animation-delay:2.0s; }
.net-line:nth-child(12) { animation-delay:2.2s; }
@keyframes drawLine {
    to { stroke-dashoffset:0; }
}
.net-node {
    fill:var(--gold); opacity:0;
    animation:fadeNode 0.6s ease forwards;
}
.net-node:nth-child(14) { animation-delay:0.5s; }
.net-node:nth-child(15) { animation-delay:0.7s; }
.net-node:nth-child(16) { animation-delay:0.9s; }
.net-node:nth-child(17) { animation-delay:1.1s; }
.net-node:nth-child(18) { animation-delay:1.3s; }
.net-node:nth-child(19) { animation-delay:1.5s; }
.net-node:nth-child(20) { animation-delay:1.7s; }
.net-node:nth-child(21) { animation-delay:1.9s; }
.net-node:nth-child(22) { animation-delay:2.1s; }
.net-node:nth-child(23) { animation-delay:2.3s; }
.net-node:nth-child(24) { animation-delay:2.5s; }
.net-node:nth-child(25) { animation-delay:2.7s; }
.net-node:nth-child(26) { animation-delay:2.9s; }
.net-node:nth-child(27) { animation-delay:3.1s; }
@keyframes fadeNode {
    to { opacity:1; }
}

/* Hero Content */
.hero-body {
    position:relative; z-index:3;
    max-width:1280px; margin:0 auto; padding:0 48px; width:100%;
}
.hero-text { max-width:600px; padding-top:120px; }
.hero-title { margin-bottom:20px; }
.hero-title span {
    display:block; font-size:clamp(36px,5.2vw,62px);
    font-weight:300; line-height:1.05; letter-spacing:1px;
}
.title-white { color:var(--white); }
.title-gold { color:var(--gold); font-weight:400 !important; }
.hero-divider {
    display:flex; align-items:center; gap:12px; margin-bottom:24px;
}
.div-line { width:55px; height:1.5px; background:var(--gold); }
.div-diamond { width:7px; height:7px; background:var(--gold); transform:rotate(45deg); }
.hero-subtitle {
    font-size:18px; font-weight:300; color:var(--gray-1);
    margin-bottom:42px; letter-spacing:0.3px;
}
.hero-buttons { display:flex; gap:20px; flex-wrap:wrap; }

/* Buttons */
.btn {
    display:inline-flex; align-items:center; gap:10px;
    padding:16px 32px; font-size:12px; font-weight:700;
    letter-spacing:1.2px; border-radius:var(--radius);
    cursor:pointer; transition:all 0.35s ease;
    border:none; font-family:var(--font); text-transform:uppercase;
}
.btn svg { width:14px; height:14px; transition:transform 0.25s ease; }
.btn:hover svg { transform:translateX(-3px); }
.btn-primary {
    background:linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color:var(--navy); box-shadow:0 4px 20px rgba(201,168,76,0.25);
}
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 30px rgba(201,168,76,0.4); }
.btn-outline {
    background:transparent; color:var(--white); border:1px solid var(--border);
}
.btn-outline:hover { border-color:var(--gold); color:var(--gold); background:rgba(201,168,76,0.04); }
.btn-full { width:100%; justify-content:center; }

/* Diagonal accent lines */
.diag-line {
    position:absolute; width:1.5px;
    background:linear-gradient(to bottom, rgba(201,168,76,0.6), rgba(201,168,76,0));
    z-index:2; transform-origin:top;
}
.diag-1 { top:0; left:35%; height:100%; transform:rotate(-25deg); }
.diag-2 { top:0; left:38%; height:78%; transform:rotate(-25deg); opacity:0.4; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background:var(--navy-1); border-top:1px solid var(--border-light);
    border-bottom:1px solid var(--border-light); position:relative; z-index:5;
}
.trust-inner {
    max-width:1280px; margin:0 auto; padding:36px 48px;
    display:flex; align-items:center; justify-content:space-between; gap:28px;
}
.trust-item {
    display:flex; align-items:center; gap:16px; flex:1;
}
.trust-icon {
    width:44px; height:44px; flex-shrink:0;
}
.trust-text h4 {
    font-size:12px; font-weight:700; letter-spacing:1.2px;
    color:var(--white); margin-bottom:3px; text-transform:uppercase;
}
.trust-text p {
    font-size:12px; color:var(--gray-2); line-height:1.4;
}
.trust-sep {
    width:1px; height:40px; background:var(--border-light); flex-shrink:0;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-head { margin-bottom:52px; }
.section-head.center { text-align:center; }
.section-label {
    display:inline-block; font-size:11px; font-weight:700;
    letter-spacing:2.5px; color:var(--gold); margin-bottom:10px;
    text-transform:uppercase;
}
.section-title {
    font-size:clamp(28px,3.2vw,40px); font-weight:300;
    color:var(--white); margin-bottom:18px; letter-spacing:0.5px;
}
.section-divider {
    display:flex; align-items:center; gap:12px; margin-bottom:18px;
}
.section-head.center .section-divider { justify-content:center; }
.section-sub {
    font-size:15px; color:var(--gray-2); max-width:560px; line-height:1.7;
}
.section-head.center .section-sub { margin:0 auto; }
.gold { color:var(--gold); font-weight:700; }

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding:100px 0; background:var(--navy); position:relative;
}
.about::before {
    content:''; position:absolute; top:0; left:0; right:0; height:1px;
    background:linear-gradient(90deg, transparent, var(--border-light), transparent);
}
.about-inner {
    max-width:1280px; margin:0 auto; padding:0 48px;
    display:grid; grid-template-columns:1.1fr 1fr; gap:64px; align-items:start;
}
.about-text { margin-bottom:36px; }
.about-text .lead {
    font-size:19px; font-weight:400; color:var(--white);
    margin-bottom:18px; line-height:1.55;
}
.about-text p {
    font-size:14.5px; color:var(--gray-2); margin-bottom:14px; line-height:1.75;
}
.about-close {
    margin-top:26px; padding-top:26px;
    border-top:1px solid var(--border-light); font-size:17px; color:var(--gray-1);
}
.about-stats { display:flex; gap:36px; }
.stat { text-align:center; }
.stat-num {
    font-size:40px; font-weight:700; color:var(--gold); line-height:1;
}
.stat-plus { font-size:40px; font-weight:700; color:var(--gold); }
.stat-label {
    display:block; font-size:11px; color:var(--gray-2);
    margin-top:8px; letter-spacing:1px; text-transform:uppercase;
}

/* About Side */
.about-side { display:flex; flex-direction:column; gap:22px; }
.info-card {
    background:var(--navy-3); border:1px solid rgba(255,255,255,0.04);
    border-radius:var(--radius); position:relative; overflow:hidden;
}
.card-accent {
    position:absolute; top:0; right:0; width:3px; height:100%;
    background:linear-gradient(to bottom, var(--gold), var(--gold-dark));
}
.card-content { padding:30px 34px 30px 30px; }
.info-card h3 {
    font-size:16px; font-weight:700; color:var(--gold);
    margin-bottom:12px; letter-spacing:0.5px;
}
.info-card p {
    font-size:13.5px; color:var(--gray-2); line-height:1.8;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding:100px 0; position:relative; background:var(--navy-1);
}
.services-inner {
    max-width:1280px; margin:0 auto; padding:0 48px; position:relative; z-index:2;
}
.services-grid {
    display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
}
.service-card {
    background:var(--navy-3); border:1px solid rgba(255,255,255,0.04);
    border-radius:var(--radius); padding:32px 24px;
    position:relative; overflow:hidden; transition:all 0.4s ease;
    cursor:pointer;
}
.service-card::before {
    content:''; position:absolute; top:0; left:0; width:100%; height:2px;
    background:linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform:scaleX(0); transform-origin:left; transition:transform 0.4s ease;
}
.service-card:hover {
    border-color:var(--border); transform:translateY(-6px);
    box-shadow:0 20px 50px rgba(0,0,0,0.4);
}
.service-card:hover::before { transform:scaleX(1); }
.card-num {
    position:absolute; top:14px; left:18px;
    font-size:50px; font-weight:800; color:rgba(201,168,76,0.05);
    line-height:1;
}
.service-card h3 {
    font-size:15px; font-weight:700; color:var(--white);
    margin-bottom:12px; letter-spacing:0.3px; position:relative; z-index:1;
}
.service-card p {
    font-size:12.5px; color:var(--gray-2); line-height:1.7; position:relative; z-index:1;
}

/* ============================================
   SECTORS
   ============================================ */
.sectors {
    padding:100px 0; background:var(--navy); position:relative;
}
.sectors-inner {
    max-width:1280px; margin:0 auto; padding:0 48px;
}
.sectors-grid {
    display:grid; grid-template-columns:repeat(3,1fr); gap:22px;
}
.sector-card {
    background:var(--navy-3); border:1px solid rgba(255,255,255,0.04);
    border-radius:var(--radius); padding:36px 28px; text-align:center;
    transition:all 0.4s ease; position:relative; overflow:hidden;
}
.sector-card::after {
    content:''; position:absolute; bottom:0; left:50%;
    transform:translateX(-50%) scaleX(0); width:60%; height:2px;
    background:linear-gradient(90deg, transparent, var(--gold), transparent);
    transition:transform 0.4s ease;
}
.sector-card:hover {
    border-color:var(--border); transform:translateY(-4px);
    box-shadow:0 20px 50px rgba(0,0,0,0.4);
}
.sector-card:hover::after { transform:translateX(-50%) scaleX(1); }
.sector-icon {
    width:56px; height:56px; margin:0 auto 18px;
    display:flex; align-items:center; justify-content:center;
}
.sector-icon svg { width:100%; height:100%; }
.sector-card h4 {
    font-size:15px; font-weight:700; color:var(--white); margin-bottom:6px;
}
.sector-tag {
    font-size:11.5px; color:var(--gray-3); letter-spacing:0.3px;
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.map-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
}
.map-section::before {
    content:''; position:absolute; inset:0;
    background:rgba(10,14,26,0.15);
    z-index:1;
}
.map-inner {
    max-width:1280px; margin:0 auto; padding:0 48px;
    display:grid; grid-template-columns:1fr; gap:48px; align-items:center;
    position:relative; z-index:2;
}
.map-sidebar { position:relative; z-index:2; background:rgba(10,14,26,0.88); padding:28px; border-radius:6px; border:1px solid var(--border-light); }
.map-sidebar h2 {
    font-size:26px; font-weight:300; letter-spacing:5px;
    color:var(--gold); margin-bottom:6px;
}
.map-sidebar p {
    font-size:11px; font-weight:600; letter-spacing:3px;
    color:var(--gray-2); margin-bottom:36px; text-transform:uppercase;
}
.map-legend { display:flex; flex-direction:column; gap:14px; }
.legend-item {
    display:flex; align-items:center; gap:12px;
    font-size:11px; color:var(--gray-2); letter-spacing:0.5px;
    text-transform:uppercase;
}
.legend-icon {
    width:22px; height:22px; flex-shrink:0;
    display:flex; align-items:center; justify-content:center;
}
.legend-icon svg { width:100%; height:100%; }
.map-display { position:relative; }
.saudi-map {
    width:100%; max-width:620px; margin:0 auto; display:block;
}
.map-outline {
    fill:none; stroke:url(#mapBorder); stroke-width:2;
    filter:drop-shadow(0 0 8px rgba(201,168,76,0.2));
}
.map-line {
    stroke:rgba(201,168,76,0.12); stroke-width:1; stroke-dasharray:4,4;
}
.city-node { cursor:pointer; }
.node-pulse {
    fill:none; stroke:var(--gold); stroke-width:1; opacity:0.45;
    animation:pulse 2.5s ease-in-out infinite;
}
.city-node.major .node-pulse { animation-duration:2s; }
.node-core {
    fill:var(--gold); filter:drop-shadow(0 0 5px rgba(201,168,76,0.6));
}
.city-label {
    fill:var(--gray-1); font-size:9px; font-weight:600;
    letter-spacing:0.8px; text-anchor:middle;
    font-family:var(--font);
}
@keyframes pulse {
    0%,100% { r:6; opacity:0.3; }
    50% { r:14; opacity:0.06; }
}

/* ============================================
   INSIGHTS
   ============================================ */
.insights {
    padding:100px 0; background:var(--navy-1); position:relative;
}
.insights-inner {
    max-width:1280px; margin:0 auto; padding:0 48px;
}
.insights-grid {
    display:grid; grid-template-columns:repeat(3,1fr); gap:26px;
}
.insight-card {
    background:var(--navy-3); border:1px solid rgba(255,255,255,0.04);
    border-radius:var(--radius); overflow:hidden;
    transition:all 0.4s ease;
}
.insight-card:hover {
    border-color:var(--border); transform:translateY(-6px);
    box-shadow:0 20px 50px rgba(0,0,0,0.4);
}
.insight-img { height:180px; overflow:hidden; }
.img-placeholder {
    width:100%; height:100%; display:flex;
    align-items:center; justify-content:center;
    background:linear-gradient(135deg, var(--navy-3), var(--navy-2));
    transition:all 0.4s ease;
}
.img-placeholder svg { width:36px; height:36px; transition:all 0.3s ease; }
.insight-card:hover .img-placeholder svg { opacity:0.7; transform:scale(1.08); }
.insight-body { padding:26px; }
.insight-body time {
    font-size:10.5px; font-weight:600; color:var(--gold);
    letter-spacing:1.5px; text-transform:uppercase;
}
.insight-body h3 {
    font-size:17px; font-weight:600; color:var(--white);
    margin:10px 0 12px; line-height:1.35;
}
.insight-body p {
    font-size:13px; color:var(--gray-2); line-height:1.7; margin-bottom:18px;
}
.read-more {
    font-size:11px; font-weight:700; color:var(--gold);
    letter-spacing:1px; text-transform:uppercase;
    display:inline-flex; align-items:center; gap:7px;
    transition:gap 0.25s ease;
}
.read-more:hover { gap:11px; }
.read-more svg { width:12px; height:12px; }

/* ============================================
   CAREERS
   ============================================ */
.careers {
    padding:100px 0; background:var(--navy); position:relative;
}
.careers::before {
    content:''; position:absolute; top:0; left:0; right:0; height:1px;
    background:linear-gradient(90deg, transparent, var(--border-light), transparent);
}
.careers-inner {
    max-width:1280px; margin:0 auto; padding:0 48px;
    text-align:center;
}
.careers-cta { margin-top:36px; }

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding:100px 0; position:relative; background:var(--navy); overflow:hidden;
}
.contact-inner {
    max-width:1280px; margin:0 auto; padding:0 48px;
    display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start;
    position:relative; z-index:2;
}
.contact-info { display:flex; flex-direction:column; gap:22px; margin-top:36px; }
.info-row {
    display:flex; align-items:center; gap:18px;
    padding:22px 24px; background:var(--navy-3);
    border:1px solid rgba(255,255,255,0.04); border-radius:var(--radius);
    transition:all 0.3s ease;
}
.info-row:hover { border-color:var(--border); transform:translateX(-5px); }
.info-icon {
    width:44px; height:44px; background:rgba(201,168,76,0.06);
    border:1px solid var(--border-light); border-radius:50%;
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.info-icon svg { width:18px; height:18px; color:var(--gold); }
.info-text { display:flex; flex-direction:column; }
.info-label {
    font-size:10.5px; font-weight:600; color:var(--gray-3);
    letter-spacing:1px; text-transform:uppercase; margin-bottom:3px;
}
.info-value {
    font-size:15px; font-weight:600; color:var(--white); transition:color 0.25s ease;
}
.info-row:hover .info-value { color:var(--gold); }

/* Contact Form */
.contact-form-box {
    background:var(--navy-3); border:1px solid rgba(255,255,255,0.04);
    border-radius:var(--radius); padding:36px; position:relative;
}
.contact-form-box::before {
    content:''; position:absolute; top:0; left:0; right:0; height:2.5px;
    background:linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius:var(--radius) var(--radius) 0 0;
}
.contact-form { display:flex; flex-direction:column; gap:20px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-field { position:relative; }
.form-field.full { grid-column:1 / -1; }
.form-field input, .form-field select, .form-field textarea {
    width:100%; padding:14px 0 6px; background:transparent; border:none;
    border-bottom:1px solid rgba(255,255,255,0.08); color:var(--white);
    font-family:var(--font); font-size:13.5px; outline:none;
    transition:border-color 0.25s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    border-bottom-color:var(--gold);
}
.form-field label {
    position:absolute; right:0; top:14px; font-size:13.5px;
    color:var(--gray-3); pointer-events:none;
    transition:all 0.25s ease;
}
.form-field input:focus + label, .form-field input:not(:placeholder-shown) + label,
.form-field select:focus + label, .form-field select:valid + label,
.form-field textarea:focus + label, .form-field textarea:not(:placeholder-shown) + label {
    top:-3px; font-size:10.5px; color:var(--gold);
}
.form-field select { appearance:none; cursor:pointer; }
.form-field select option { background:var(--navy-3); color:var(--white); }
.form-field textarea { resize:vertical; min-height:90px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background:var(--navy-1); border-top:1px solid var(--border-light);
}
.footer-inner {
    max-width:1280px; margin:0 auto; padding:0 48px;
}
.footer-main {
    display:grid; grid-template-columns:1.4fr 2fr; gap:64px;
    padding:64px 0 42px;
}
.footer-brand p {
    font-size:13.5px; color:var(--gray-2); line-height:1.75;
    margin:18px 0 24px; max-width:340px;
}
.social-links { display:flex; gap:10px; }
.social-links a {
    width:40px; height:40px; border:1px solid var(--border-light); border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    color:var(--gray-2); transition:all 0.25s ease;
}
.social-links a:hover {
    background:var(--gold); border-color:var(--gold);
    color:var(--navy); transform:translateY(-3px);
}
.social-links svg { width:15px; height:15px; }
.footer-links { display:grid; grid-template-columns:repeat(3,1fr); gap:36px; }
.footer-col h4 {
    font-size:12px; font-weight:700; color:var(--white);
    letter-spacing:2px; text-transform:uppercase; margin-bottom:22px;
}
.footer-col ul li { margin-bottom:10px; }
.footer-col ul li a, .footer-col ul li span {
    font-size:13.5px; color:var(--gray-2); transition:all 0.2s ease;
    display:inline-flex; align-items:center; gap:7px;
}
.footer-col ul li a:hover { color:var(--gold); padding-right:3px; }
.footer-bottom {
    border-top:1px solid rgba(255,255,255,0.04); padding:22px 0;
    display:flex; justify-content:space-between; align-items:center;
}
.footer-bottom p { font-size:12.5px; color:var(--gray-3); }
.legal-links { display:flex; align-items:center; gap:14px; }
.legal-links a { font-size:12.5px; color:var(--gray-3); }
.legal-links a:hover { color:var(--gold); }
.legal-links .sep { color:var(--border-light); }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-top {
    position:fixed; bottom:28px; right:28px;
    width:44px; height:44px; background:var(--navy-3);
    border:1px solid var(--border-light); border-radius:50%;
    color:var(--gold); cursor:pointer; opacity:0; visibility:hidden;
    transform:translateY(16px); transition:all 0.4s ease;
    z-index:999; display:flex; align-items:center; justify-content:center;
}
.back-top.visible { opacity:1; visibility:visible; transform:translateY(0); }
.back-top:hover { background:var(--gold); color:var(--navy); transform:translateY(-3px); }
.back-top svg { width:16px; height:16px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width:1200px) {
    .services-grid { grid-template-columns:repeat(2,1fr); }
    .insights-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:992px) {
    .nav-menu {
        position:fixed; top:0; left:-100%; width:300px; height:100vh;
        background:var(--navy); flex-direction:column;
        padding:90px 36px 36px; gap:22px;
        transition:left 0.4s ease;
        border-right:1px solid var(--border-light); align-items:flex-start;
    }
    .nav-menu.active { left:0; }
    .menu-btn { display:flex; }
    .about-inner { grid-template-columns:1fr; gap:48px; }
    .contact-inner { grid-template-columns:1fr; gap:48px; }
    .map-inner { grid-template-columns:1fr; gap:36px; }
    .map-legend { flex-direction:row; flex-wrap:wrap; }
    .footer-main { grid-template-columns:1fr; gap:48px; }
    .footer-links { grid-template-columns:repeat(2,1fr); }
    .trust-inner { flex-wrap:wrap; }
    .trust-sep { display:none; }
    .trust-item { min-width:200px; }
    .diag-line { display:none; }
    .sectors-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:768px) {
    .nav-inner, .hero-body, .about-inner, .services-inner, .sectors-inner,
    .insights-inner, .contact-inner, .map-inner, .footer-inner { padding:0 24px; }
    .services-grid, .sectors-grid, .insights-grid { grid-template-columns:1fr; }
    .hero-buttons { flex-direction:column; }
    .btn { width:100%; justify-content:center; }
    .about-stats { flex-direction:column; gap:20px; }
    .form-row { grid-template-columns:1fr; }
    .footer-links { grid-template-columns:1fr; }
    .footer-bottom { flex-direction:column; gap:14px; text-align:center; }
    .trust-inner { flex-direction:column; align-items:flex-start; }
    .map-legend { flex-direction:column; }
}
@media (max-width:480px) {
    .logo-name { font-size:18px; letter-spacing:4px; }
    .logo-tag { font-size:7px; letter-spacing:1px; }
    .hero-title span { font-size:32px; }
    .section-title { font-size:26px; }
    .stat-num, .stat-plus { font-size:34px; }
}

/* ============================================
   BILINGUAL LAYOUT — ENGLISH / LTR
   ============================================ */
html[dir="ltr"], html[dir="ltr"] body {
    direction: ltr;
    text-align: left;
}

html[dir="ltr"] .nav-item::after {
    left: 0;
    right: auto;
}

html[dir="ltr"] .hero-text,
html[dir="ltr"] .section-head,
html[dir="ltr"] .about-text,
html[dir="ltr"] .info-card,
html[dir="ltr"] .service-card,
html[dir="ltr"] .sector-card,
html[dir="ltr"] .insight-body,
html[dir="ltr"] .contact-main,
html[dir="ltr"] .footer {
    text-align: left;
}

html[dir="ltr"] .section-head.center,
html[dir="ltr"] .careers-inner {
    text-align: center;
}

html[dir="ltr"] .section-head.center .section-divider {
    justify-content: center;
}

html[dir="ltr"] .card-accent {
    left: 0;
    right: auto;
}

html[dir="ltr"] .form-field label {
    left: 0;
    right: auto;
}

html[dir="ltr"] .info-row:hover {
    transform: translateX(5px);
}

html[dir="ltr"] .footer-col ul li a:hover {
    padding-left: 3px;
    padding-right: 0;
}

html[dir="ltr"] .btn svg {
    transform: rotate(180deg);
}

html[dir="ltr"] .btn:hover svg {
    transform: rotate(180deg) translateX(-3px);
}

@media (max-width: 992px) {
    html[dir="ltr"] .nav-menu {
        left: auto;
        right: -100%;
        border-right: none;
        border-left: 1px solid var(--border-light);
        align-items: flex-start;
    }
    html[dir="ltr"] .nav-menu.active {
        right: 0;
        left: auto;
    }
}

/* Full-width map image — keep the complete image visible */
.map-section {
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}
.map-image {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
}
