/* =========================================================
   Rawhal Logistics Association — Stylesheet
   Brand palette inspired by the official profile (PDF)
   ========================================================= */

:root {
    --color-primary: #E85A28;
    --color-primary-dark: #B83A18;
    --color-primary-light: #FF7A45;
    --color-navy: #1A1F2C;
    --color-navy-soft: #232838;
    --color-bg: #FFFFFF;
    --color-bg-alt: #F7F4F1;
    --color-bg-dark: #14171F;
    --color-text: #2A2F3A;
    --color-text-soft: #5A6072;
    --color-text-light: #E8E9EE;
    --color-border: #E6E1DC;
    --color-accent: #4A5568;

    --grad-primary: linear-gradient(135deg, #E85A28 0%, #B83A18 100%);
    --grad-hero: linear-gradient(120deg, rgba(20,23,31,.85) 0%, rgba(184,58,24,.55) 100%);
    --grad-card: linear-gradient(160deg, #E85A28 0%, #8A2A12 100%);

    --shadow-sm: 0 2px 8px rgba(20,23,31,.06);
    --shadow-md: 0 8px 24px rgba(20,23,31,.10);
    --shadow-lg: 0 20px 50px rgba(20,23,31,.15);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-pill: 999px;

    --container: 1200px;
    --transition: 0.35s cubic-bezier(.2,.7,.3,1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Tajawal', 'Cairo', 'Segoe UI', Tahoma, sans-serif;
    direction: rtl;
    text-align: right;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.75;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ================= HEADER / NAV ================= */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    padding: 18px 0;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    transition: color var(--transition);
}

/* Logo image — used in header */
.brand-logo {
    height: 46px;
    width: auto;
    display: block;
    transition: filter var(--transition), opacity var(--transition);
}
/* On dark hero (header not scrolled), use white-ink variant */
.site-header:not(.scrolled) .brand-logo.color { display: none; }
.site-header.scrolled        .brand-logo.color { display: block; }
.site-header:not(.scrolled) .brand-logo.white { display: block; }
.site-header.scrolled        .brand-logo.white { display: none; }

/* Footer logo (always on dark) */
.footer-logo { height: 56px; width: auto; display: block; margin-bottom: 14px; }

/* Backwards-compat alias for any leftover brand-text usages — hide because logo carries the wordmark */
.brand-text, .brand-mark { display: none; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
    color: #fff;
    padding: 10px 14px;
    border-radius: var(--radius-pill);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: all var(--transition);
}
.site-header.scrolled .main-nav a { color: var(--color-navy); }
.main-nav a:hover { background: rgba(255,255,255,.12); color: #fff; }
.site-header.scrolled .main-nav a:hover { background: rgba(232,90,40,.10); color: var(--color-primary); }
.main-nav a.active {
    background: var(--grad-primary);
    color: #fff !important;
    box-shadow: 0 6px 16px rgba(232,90,40,.35);
}

.nav-cta {
    background: var(--grad-primary);
    color: #fff !important;
    padding: 10px 22px !important;
    box-shadow: 0 6px 16px rgba(232,90,40,.30);
}

.menu-toggle {
    display: none;
    width: 44px; height: 44px;
    background: rgba(255,255,255,.10);
    border-radius: 12px;
    color: #fff;
    place-items: center;
}
.site-header.scrolled .menu-toggle { background: rgba(20,23,31,.06); color: var(--color-navy); }

/* ================= HERO ================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}
.hero::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(900px 600px at 80% 30%, rgba(232,90,40,.55), transparent 60%),
        linear-gradient(115deg, #0E1118 0%, #1A1F2C 55%, #2C1812 100%);
    z-index: -2;
}
.hero::after {
    content: "";
    position: absolute; inset: 0;
    background-image:
        radial-gradient(1px 1px at 25% 30%, rgba(255,255,255,.12), transparent),
        radial-gradient(1px 1px at 70% 60%, rgba(255,255,255,.10), transparent),
        radial-gradient(2px 2px at 50% 80%, rgba(232,90,40,.18), transparent);
    z-index: -1;
    opacity: .8;
}

.hero-streaks {
    position: absolute; inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}
.streak {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(232,90,40,.6), transparent);
    width: 50%;
    animation: streak 6s linear infinite;
    opacity: .5;
}
.streak:nth-child(1){ top: 30%; right: -20%; animation-delay: 0s; }
.streak:nth-child(2){ top: 55%; right: -20%; animation-delay: 2s; width: 70%; }
.streak:nth-child(3){ top: 75%; right: -20%; animation-delay: 4s; width: 40%; }
@keyframes streak {
    0% { transform: translateX(0); opacity: 0; }
    20% { opacity: .8; }
    100% { transform: translateX(180%); opacity: 0; }
}

.hero-content {
    max-width: 760px;
    padding: 140px 0 80px;
    position: relative;
    z-index: 1;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.15);
    color: #FFD7BF;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero-eyebrow .dot { width:8px; height:8px; border-radius:50%; background: var(--color-primary); box-shadow: 0 0 12px var(--color-primary); }

.hero h1 {
    font-size: clamp(36px, 5.5vw, 64px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -.5px;
    margin-bottom: 24px;
}
.hero h1 .accent {
    background: linear-gradient(135deg, #FFB088 0%, #E85A28 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p.lead {
    font-size: clamp(16px, 1.5vw, 19px);
    color: #DDD7D0;
    max-width: 620px;
    margin-bottom: 36px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 15px;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    cursor: pointer;
}
.btn-primary {
    background: var(--grad-primary);
    color: #fff;
    box-shadow: 0 12px 28px rgba(232,90,40,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(232,90,40,.45); color: #fff; }
.btn-ghost {
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,.18);
}
.btn-ghost:hover { background: rgba(255,255,255,.16); color: #fff; transform: translateY(-2px); }
.btn-dark {
    background: var(--color-navy);
    color: #fff;
}
.btn-dark:hover { background: #000; color: #fff; transform: translateY(-2px); }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 720px;
}
.hero-stat {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: var(--radius-md);
    padding: 18px 16px;
    backdrop-filter: blur(8px);
}
.hero-stat .num { font-size: 26px; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat .num span { color: var(--color-primary); }
.hero-stat .lbl { font-size: 13px; color: #C8C4BF; margin-top: 6px; }

/* ================= PAGE HERO (smaller, for sub-pages) ================= */
.page-hero {
    position: relative;
    padding: 180px 0 90px;
    color: #fff;
    isolation: isolate;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(700px 400px at 15% 30%, rgba(232,90,40,.45), transparent 60%),
        linear-gradient(115deg, #0E1118 0%, #1A1F2C 70%, #2C1812 100%);
    z-index: -1;
}
.page-hero .crumbs {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #FFD7BF;
    font-size: 14px;
    margin-bottom: 14px;
}
.page-hero .crumbs a:hover { color: #fff; }
.page-hero h1 {
    font-size: clamp(32px, 4.5vw, 52px);
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 14px;
}
.page-hero p {
    color: #D8D2CC;
    max-width: 720px;
    font-size: 17px;
}

/* ================= SECTIONS ================= */
section { padding: 96px 0; }
section.tight { padding: 72px 0; }
section.alt { background: var(--color-bg-alt); }
section.dark { background: var(--color-navy); color: var(--color-text-light); }
section.dark h2, section.dark h3 { color: #fff; }

.section-head {
    text-align: center;
    margin-bottom: 56px;
    max-width: 760px;
    margin-inline: auto;
}
.section-head .kicker {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding: 6px 16px;
    background: rgba(232,90,40,.10);
    border-radius: var(--radius-pill);
}
.section-head h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    line-height: 1.25;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 14px;
}
section.dark .section-head h2 { color: #fff; }
.section-head p { color: var(--color-text-soft); font-size: 17px; }
section.dark .section-head p { color: #C5C9D2; }

/* ================= CARDS ================= */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--color-border);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card .icon {
    width: 60px; height: 60px;
    border-radius: 18px;
    background: var(--grad-primary);
    color: #fff;
    display: grid; place-items: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 22px rgba(232,90,40,.30);
}
.card .icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; color: var(--color-navy); }
.card p { color: var(--color-text-soft); font-size: 15.5px; }

.card-pill {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}
.card-pill:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(232,90,40,.30); }
.card-pill .num {
    position: absolute;
    top: -20px;
    inset-inline-start: 28px;
    width: 50px; height: 50px;
    border-radius: 14px;
    background: var(--grad-primary);
    color: #fff;
    display: grid; place-items: center;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 10px 22px rgba(232,90,40,.30);
}
.card-pill h3 { margin-top: 14px; font-size: 19px; color: var(--color-navy); font-weight: 800; margin-bottom: 10px; }
.card-pill p { color: var(--color-text-soft); font-size: 15px; }

/* Vision/Mission/Values circles */
.vmv {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.vmv-item {
    text-align: center;
    padding: 32px 24px;
    background: #fff;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid var(--color-border);
}
.vmv-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.vmv-circle {
    width: 110px; height: 110px;
    border-radius: 50%;
    background: var(--grad-card);
    margin: 0 auto 22px;
    display: grid; place-items: center;
    color: #fff;
    box-shadow: 0 18px 36px rgba(232,90,40,.30);
    position: relative;
}
.vmv-circle::after {
    content: "";
    position: absolute; inset: -6px;
    border: 2px dashed rgba(232,90,40,.25);
    border-radius: 50%;
    animation: spin 14s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.vmv-circle svg { width: 44px; height: 44px; position: relative; z-index: 1; }
.vmv-item h3 { font-size: 22px; color: var(--color-navy); margin-bottom: 12px; font-weight: 800; }
.vmv-item p { color: var(--color-text-soft); font-size: 15.5px; }

/* Stat block */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: var(--grad-primary);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(184,58,24,.30);
}
.stats-strip .item { text-align: center; }
.stats-strip .num { font-size: 44px; font-weight: 800; line-height: 1; }
.stats-strip .lbl { font-size: 15px; opacity: .92; margin-top: 8px; }

/* ================= TIMELINE STEPS (services page) ================= */
.steps {
    counter-reset: step;
    display: grid;
    gap: 18px;
}
.step {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px 28px 28px 28px;
    padding-inline-end: 110px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
    overflow: hidden;
}
.step::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    position: absolute;
    inset-inline-end: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 56px;
    font-weight: 800;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    opacity: .9;
}
.step:hover { transform: translateX(-6px); box-shadow: var(--shadow-md); border-color: rgba(232,90,40,.30); }
.step h3 { font-size: 20px; color: var(--color-navy); margin-bottom: 8px; font-weight: 800; }
.step p { color: var(--color-text-soft); font-size: 15.5px; }

/* ================= ABOUT SPLIT ================= */
.split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
}
.split-text h2 { font-size: clamp(28px, 3.2vw, 38px); color: var(--color-navy); font-weight: 800; line-height: 1.25; margin-bottom: 18px; }
.split-text p { color: var(--color-text-soft); font-size: 17px; margin-bottom: 16px; }
.split-text .kicker {
    display: inline-block; color: var(--color-primary);
    font-weight: 700; font-size: 14px; letter-spacing: 1px;
    text-transform: uppercase; margin-bottom: 12px;
    padding: 6px 16px; background: rgba(232,90,40,.10);
    border-radius: var(--radius-pill);
}
.split-art {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--grad-card);
    box-shadow: var(--shadow-lg);
    display: grid; place-items: center;
    color: #fff;
}
/* Photo variant — fills the rounded card with a real image */
.split-art.has-photo {
    aspect-ratio: 4/3;
    background: #F2EEEA;
    padding: 0;
}
.split-art.has-photo .split-photo {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(.2,.7,.3,1);
}
.split-art.has-photo:hover .split-photo { transform: scale(1.04); }
.split-art.has-photo .label {
    background: rgba(20,23,31,.55);
    backdrop-filter: blur(10px);
    color: #fff;
    z-index: 2;
}
@media (max-width: 992px) {
    .split-art.has-photo { aspect-ratio: 16/10; }
}
.split-art .deco-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 32px 32px;
}
.split-art .badge-big {
    position: relative;
    width: 70%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    border: 2px solid rgba(255,255,255,.18);
    display: grid; place-items: center;
}
.split-art .badge-big svg { width: 50%; }
.split-art .label {
    position: absolute;
    bottom: 24px; right: 24px;
    background: rgba(0,0,0,.30);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-pill);
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
}

/* ================= GOVERNANCE — ORG CHART ================= */
.org-chart {
    display: grid;
    gap: 32px;
}
.org-level {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
}
.org-node {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px 26px;
    text-align: center;
    min-width: 220px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.org-node:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(232,90,40,.30); }
.org-node.top {
    background: var(--grad-primary);
    color: #fff;
    border: none;
    box-shadow: 0 20px 40px rgba(232,90,40,.30);
}
.org-node h4 { font-size: 17px; font-weight: 800; margin-bottom: 4px; color: var(--color-navy); }
.org-node.top h4 { color: #fff; }
.org-node p { font-size: 13.5px; color: var(--color-text-soft); }
.org-node.top p { color: rgba(255,255,255,.85); }

/* ================= COMPLIANCE / POLICIES HUB ================= */
.compliance-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
    color: var(--color-text-soft);
    font-size: 17px;
}

.policy-group {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    transition: var(--transition);
    break-inside: avoid;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
    margin-bottom: 22px;
    display: block;
}
.policy-group:hover {
    border-color: rgba(232,90,40,.30);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.policy-group-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px dashed var(--color-border);
}
.policy-group-head .icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--grad-primary);
    color: #fff;
    display: grid; place-items: center;
    box-shadow: 0 8px 18px rgba(232,90,40,.30);
    flex-shrink: 0;
}
.policy-group-head .icon svg { width: 22px; height: 22px; }
.policy-group-head h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.3;
    margin: 0;
}
.policy-group-desc {
    font-size: 14.5px;
    color: var(--color-text-soft);
    margin-bottom: 16px;
    line-height: 1.7;
}

.doc-list { list-style: none; display: grid; gap: 8px; }
.doc-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    background: var(--color-bg-alt);
    border-radius: 10px;
    font-size: 14.5px;
    color: var(--color-navy);
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}
.doc-list li:hover {
    background: #fff;
    border-color: rgba(232,90,40,.30);
    color: var(--color-primary);
    transform: translateX(-3px);
}
.doc-list .doc-ic {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: #fff;
    color: var(--color-primary);
    display: grid; place-items: center;
    flex-shrink: 0;
    border: 1px solid var(--color-border);
}
.doc-list .doc-ic svg { width: 16px; height: 16px; }
.doc-list .doc-name { flex: 1; }
.doc-list .doc-arrow {
    color: var(--color-text-soft);
    opacity: 0;
    transition: var(--transition);
}
.doc-list li:hover .doc-arrow { opacity: 1; color: var(--color-primary); transform: translateX(-3px); }

.policy-grid {
    column-count: 2;
    column-gap: 22px;
    column-fill: balance;
}
@media (max-width: 900px) {
    .policy-grid { column-count: 1; }
}

/* ================= PARTNERS ================= */
.partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
}
.partner {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 22px 18px 18px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}
.partner:hover { border-color: rgba(232,90,40,.30); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.partner .logo {
    width: 100%;
    height: 70px;
    display: grid; place-items: center;
    overflow: hidden;
}
.partner .logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform var(--transition);
    filter: grayscale(0%);
}
.partner:hover .logo img { transform: scale(1.05); }
.partner .logo-text {
    font-weight: 800;
    color: var(--color-navy);
    font-size: 22px;
    letter-spacing: 1px;
}
.partner .name { font-size: 13px; color: var(--color-text-soft); margin-top: 4px; }

/* ================= CONTACT ================= */
.contact-wrap {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 32px;
    align-items: stretch;
}
.contact-info {
    background: var(--color-navy);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.contact-info::before {
    content: "";
    position: absolute;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: var(--grad-primary);
    filter: blur(80px);
    opacity: .35;
    top: -80px; right: -80px;
}
.contact-info h3 { font-size: 24px; font-weight: 800; margin-bottom: 12px; color: #fff; position: relative; }
.contact-info p.intro { color: #C5C9D2; margin-bottom: 32px; position: relative; }

.contact-list { list-style: none; display: grid; gap: 18px; position: relative; }
.contact-list li {
    display: flex; align-items: flex-start; gap: 16px;
}
.contact-list .ic {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    color: var(--color-primary-light);
    display: grid; place-items: center;
    flex-shrink: 0;
}
.contact-list .ic svg { width: 20px; height: 20px; }
.contact-list .lbl { font-size: 13px; color: #A8AEBC; }
.contact-list .val { font-size: 16px; font-weight: 600; color: #fff; }
.contact-list a:hover { color: var(--color-primary-light); }

.social-row { display: flex; gap: 10px; margin-top: 32px; position: relative; }
.social-row a {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    display: grid; place-items: center;
    color: #fff;
    transition: var(--transition);
}
.social-row a:hover { background: var(--grad-primary); border-color: transparent; transform: translateY(-3px); color: #fff; }
.social-row svg { width: 18px; height: 18px; }

.contact-form {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 8px;
}
.field input, .field textarea, .field select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    color: var(--color-text);
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.field input:focus, .field textarea:focus, .field select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(232,90,40,.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-btn { width: 100%; justify-content: center; position: relative; }
.form-btn[disabled] { opacity: .75; cursor: not-allowed; transform: none; box-shadow: 0 6px 14px rgba(232,90,40,.25); }

/* Form status message */
#form-status {
    margin-top: 14px;
    padding: 0;
    font-size: 14.5px;
    font-weight: 600;
    min-height: 1.2em;
    transition: color .25s, padding .25s, background .25s, border-color .25s;
    color: transparent;
    border-radius: 10px;
    border: 1px solid transparent;
}
#form-status[data-kind="success"] {
    color: #166534;
    background: #ECFDF5;
    border-color: #BBF7D0;
    padding: 12px 14px;
}
#form-status[data-kind="error"] {
    color: #991B1B;
    background: #FEF2F2;
    border-color: #FECACA;
    padding: 12px 14px;
}

/* Submit button spinner */
.submit-spinner { animation: none; transform-origin: 50% 50%; }
.submit-spinner.spinning { animation: spinner 0.9s linear infinite; }
@keyframes spinner { to { transform: rotate(360deg); } }

/* ================= FOOTER ================= */
.site-footer {
    background: #0E1118;
    color: #B5B9C3;
    padding: 72px 0 32px;
    margin-top: 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-grid h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 18px;
    font-weight: 700;
}
.footer-grid ul { list-style: none; display: grid; gap: 10px; }
.footer-grid a { font-size: 14.5px; }
.footer-grid a:hover { color: var(--color-primary-light); }
.footer-about p { font-size: 14.5px; line-height: 1.85; margin-top: 12px; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 24px;
    font-size: 13.5px;
    color: #8B91A0;
}

/* ================= REVEAL ANIMATION ================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ================= MEDIA ================= */
@media (max-width: 992px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .vmv { grid-template-columns: 1fr; }
    .split { grid-template-columns: 1fr; }
    .contact-wrap { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .stats-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    .main-nav { display: none; }
    .menu-toggle { display: grid; }
    .main-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        inset: 70px 24px auto 24px;
        background: #fff;
        border-radius: var(--radius-md);
        padding: 12px;
        box-shadow: var(--shadow-lg);
    }
    .main-nav.open a { color: var(--color-navy); width: 100%; }
    .main-nav.open a:hover { background: rgba(232,90,40,.08); color: var(--color-primary); }
    .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .stats-strip { grid-template-columns: repeat(2, 1fr); padding: 32px 20px; }
    .step { padding-inline-end: 28px; }
    .step::before { position: static; transform: none; display: block; margin-bottom: 8px; font-size: 36px; }
    section { padding: 64px 0; }
    .hero-content { padding: 120px 0 56px; }
    .page-hero { padding: 140px 0 72px; }
    .contact-info, .contact-form { padding: 28px; }
}
