/* ==========================================================================
   Mollika Trading LLC — Stylesheet
   Brand colours taken from the company logo (blue + orange "MT" mark)
   ========================================================================== */

:root {
  --blue-900: #0a2a3d;
  --blue-800: #0c4d78;
  --blue-700: #0f5f92;
  --blue-600: #14679c;
  --blue-500: #1a7bc4;
  --blue-100: #e7f1f8;

  --orange-700: #c96a06;
  --orange-600: #e0790a;
  --orange-500: #f6921e;
  --orange-400: #f9a94b;
  --orange-100: #fdefdc;

  --ink-900: #16212b;
  --ink-700: #3a4a56;
  --ink-500: #64707b;
  --ink-300: #a4aeb6;

  --bg: #ffffff;
  --bg-alt: #f6f9fb;
  --bg-alt-2: #eef4f8;
  --border: #e3e9ee;

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

  --shadow-sm: 0 2px 8px rgba(10, 42, 61, 0.06);
  --shadow-md: 0 12px 32px rgba(10, 42, 61, 0.1);
  --shadow-lg: 0 24px 64px rgba(10, 42, 61, 0.16);

  --header-h: 84px;

  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --container: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; margin: 0 0 .5em; color: var(--blue-900); font-weight: 600; }
p { margin: 0 0 1em; color: var(--ink-700); }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--blue-900); color: #fff;
  padding: 12px 20px; z-index: 10000; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange-600); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--orange-500); border-radius: 2px; display: inline-block; }
.section-head { max-width: 680px; margin: 0 0 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); }
.text-muted { color: var(--ink-500); }

.grad-text {
  background: linear-gradient(100deg, var(--blue-700), var(--orange-500));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px; font-weight: 600; font-size: .95rem;
  border: 2px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--orange-500); color: #fff; box-shadow: 0 10px 24px rgba(246,146,30,.35); }
.btn-primary:hover { background: var(--orange-600); box-shadow: 0 14px 30px rgba(246,146,30,.42); transform: translateY(-2px); }
.btn-outline { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-blue { background: var(--blue-700); color: #fff; box-shadow: 0 10px 24px rgba(15,95,146,.3); }
.btn-blue:hover { background: var(--blue-800); transform: translateY(-2px); }
.btn-ghost { border-color: var(--border); color: var(--blue-900); background: #fff; }
.btn-ghost:hover { border-color: var(--blue-600); color: var(--blue-600); }
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn svg { width: 18px; height: 18px; flex: none; }

.icon-badge {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: var(--blue-100); color: var(--blue-700); flex: none;
}
.icon-badge svg { width: 28px; height: 28px; }
.icon-badge.orange { background: var(--orange-100); color: var(--orange-600); }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Header — minimal single-row layout: logo left, flat nav, icon call button,
   text "Menu" trigger on mobile (no separate contact/utility bar)
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 900; background: #fff; border-bottom: 1px solid var(--border);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand .mark { width: 48px; height: 48px; }
.brand-text { line-height: 1.1; }
.brand-text .en { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--blue-900); letter-spacing: .01em; }
.brand-text .ar { font-size: .78rem; color: var(--ink-500); direction: rtl; }
.brand-text .sub { font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--orange-600); font-weight: 700; margin-top: 2px; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.main-nav a.nav-link {
  display: flex; align-items: center; gap: 4px; padding: 10px 16px; border-radius: 999px;
  font-weight: 600; font-size: .93rem; color: var(--ink-700); transition: background .15s, color .15s;
}
.main-nav a.nav-link:hover, .main-nav a.nav-link.active { background: var(--blue-100); color: var(--blue-700); }
.nav-item { position: relative; }
.nav-item.has-dropdown > .nav-link svg.chev { width: 14px; height: 14px; transition: transform .2s; }
.nav-item.has-dropdown:hover > .nav-link svg.chev { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 300px; background: #fff;
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  padding: 10px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .18s ease; z-index: 40;
}
.nav-item.has-dropdown:hover .dropdown, .nav-item.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: flex; align-items: flex-start; gap: 12px; padding: 12px; border-radius: var(--radius-sm); }
.dropdown a:hover { background: var(--bg-alt); }
.dropdown a strong { display: block; color: var(--blue-900); font-size: .92rem; }
.dropdown a span { font-size: .78rem; color: var(--ink-500); }
.dropdown .d-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--orange-100); color: var(--orange-600); display: grid; place-items: center; flex: none; }
.dropdown .d-icon svg { width: 20px; height: 20px; }

.header-actions { display: flex; align-items: center; gap: 10px; }

.icon-btn {
  display: none; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue-100); color: var(--blue-700); flex: none; transition: background .15s, color .15s, transform .15s;
}
.icon-btn:hover { background: var(--blue-700); color: #fff; transform: translateY(-2px); }
.icon-btn svg { width: 19px; height: 19px; }

.hamburger {
  display: none; align-items: center; justify-content: center; height: 44px; padding: 0 20px;
  border: 1px solid var(--border); border-radius: 999px; background: #fff; color: var(--blue-900);
  font-weight: 600; font-size: .85rem; letter-spacing: .02em; transition: background .15s, color .15s, border-color .15s;
}
.hamburger:hover { border-color: var(--blue-500); color: var(--blue-600); }
.hamburger.active { background: var(--blue-800); border-color: var(--blue-800); color: #fff; }

.nav-overlay { position: fixed; inset: 0; background: rgba(10,42,61,.5); opacity: 0; visibility: hidden; transition: all .25s; z-index: 50; }
.nav-overlay.show { opacity: 1; visibility: visible; }

/* ==========================================================================
   Hero — split layout: text on a light panel (left), full-bleed image (right)
   ========================================================================== */
.hero { position: relative; overflow: hidden; background: var(--bg-alt); padding: 0; }
.hero-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); align-items: stretch; min-height: 620px; }

.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 72px clamp(24px, 5vw, 64px) 72px max(24px, calc((100vw - var(--container)) / 2 + 24px));
}

.hero-media { position: relative; overflow: hidden; background: linear-gradient(150deg, var(--blue-800), var(--blue-600)); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(200deg, rgba(10,42,61,.04), rgba(10,42,61,.4) 100%);
}
.hero-float-card {
  position: absolute; left: 28px; bottom: 28px; z-index: 2; max-width: 250px;
  display: flex; align-items: center; gap: 12px; background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 14px 18px;
}
.hero-float-card .icon-badge { width: 42px; height: 42px; border-radius: 12px; }
.hero-float-card strong { display: block; font-family: var(--font-head); font-size: .9rem; color: var(--blue-900); }
.hero-float-card span { font-size: .74rem; color: var(--ink-500); }

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; background: var(--blue-100); color: var(--blue-700);
  border: 1px solid var(--border); padding: 7px 14px; border-radius: 999px; font-size: .78rem; font-weight: 600;
}
.hero-badge svg { width: 15px; height: 15px; color: var(--orange-600); }
.hero h1 { color: var(--blue-900); font-size: clamp(2.1rem, 4.4vw, 3.4rem); margin-bottom: 20px; }
.hero h1 span { color: var(--orange-600); }
.hero p.lead { color: var(--ink-500); font-size: 1.08rem; max-width: 500px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-stats { display: flex; gap: 28px; margin-top: 44px; flex-wrap: wrap; }
.hero-stats .stat b { display: block; font-family: var(--font-head); font-size: 1.5rem; color: var(--blue-900); }
.hero-stats .stat span { font-size: .8rem; color: var(--ink-500); }

/* ==========================================================================
   Marquee strip
   ========================================================================== */
.strip { background: var(--bg-alt-2); border-bottom: 1px solid var(--border); padding: 22px 0; overflow: hidden; }
.strip-track { display: flex; gap: 44px; width: max-content; animation: scroll-strip 28s linear infinite; }
.strip:hover .strip-track { animation-play-state: paused; }
.strip-item { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: .86rem; color: var(--blue-800); white-space: nowrap; }
.strip-item svg { width: 18px; height: 18px; color: var(--orange-500); }
@keyframes scroll-strip { from { transform: translateX(0); } to { transform: translateX(-50%); } }

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

.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 30px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card h3 { font-size: 1.08rem; margin: 16px 0 8px; }
.card p { font-size: .92rem; margin-bottom: 0; }

.service-pillar {
  border-radius: var(--radius-lg); padding: 40px; color: #fff; position: relative; overflow: hidden;
  display: flex; flex-direction: column; min-height: 460px;
}
.service-pillar.blue { background: linear-gradient(155deg, var(--blue-800), var(--blue-600)); }
.service-pillar.orange { background: linear-gradient(155deg, #7a4404, var(--orange-600)); }
.service-pillar::after { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,.08); right: -90px; bottom: -90px; }
.service-pillar .tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.14); padding: 6px 14px; border-radius: 999px; font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; width: fit-content; margin-bottom: 18px; }
.service-pillar h3 { color: #fff; font-size: 1.5rem; }
.service-pillar p { color: rgba(255,255,255,.82); }
.service-pillar .plist { margin: 18px 0 26px; display: grid; gap: 10px; position: relative; z-index: 2; }
.service-pillar .plist li { display: flex; align-items: center; gap: 10px; font-size: .9rem; font-weight: 500; }
.service-pillar .plist svg { width: 18px; height: 18px; flex: none; color: var(--orange-400); }
.service-pillar.orange .plist svg { color: #fff; }
.service-pillar .btn { margin-top: auto; position: relative; z-index: 2; width: fit-content; }

/* Feature list */
.feature {
  display: flex; gap: 18px; padding: 24px; border-radius: var(--radius-md); border: 1px solid var(--border); background: #fff;
  transition: box-shadow .2s, transform .2s;
}
.feature:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.feature h4 { font-size: 1rem; margin-bottom: 6px; }
.feature p { font-size: .88rem; margin: 0; }

/* Process steps */
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 28px 20px 20px; border: 1px dashed var(--border); border-radius: var(--radius-md); text-align: left; }
.step .num {
  width: 40px; height: 40px; border-radius: 12px; background: var(--blue-700); color: #fff; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; margin-bottom: 14px;
}
.step h4 { font-size: .95rem; margin-bottom: 6px; }
.step p { font-size: .84rem; margin: 0; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--orange-600), var(--orange-500));
  border-radius: var(--radius-lg); padding: 56px; color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-banner::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 20%, rgba(255,255,255,.22), transparent 55%); }
.cta-banner h2, .cta-banner p { color: #fff; position: relative; z-index: 1; }
.cta-banner .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-banner .btn-primary { background: #fff; color: var(--orange-600); box-shadow: none; }
.cta-banner .btn-primary:hover { background: var(--blue-900); color: #fff; }

/* Testimonial-style trust row */
.trust-row { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--blue-800); font-size: .95rem; }
.trust-item svg { width: 26px; height: 26px; color: var(--orange-500); }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(150deg, var(--blue-900), var(--blue-700));
  color: #fff; padding: 70px 0 60px; position: relative; overflow: hidden;
}
.page-hero::after { content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(246,146,30,.3), transparent 70%); right: -100px; top: -140px; }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .84rem; color: rgba(255,255,255,.7); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--orange-400); }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-bottom: 12px; max-width: 720px; }
.page-hero p { color: rgba(255,255,255,.82); max-width: 620px; font-size: 1.02rem; margin-bottom: 0; }

/* About page */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.about-visual {
  background: linear-gradient(160deg, var(--blue-100), #fff); border-radius: var(--radius-lg); padding: 34px; border: 1px solid var(--border);
  position: relative;
}
.legal-list { display: grid; gap: 14px; margin-top: 20px; }
.legal-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; }
.legal-list svg { width: 20px; height: 20px; color: var(--orange-500); flex: none; margin-top: 2px; }
.legal-list b { color: var(--blue-900); }

.value-card { text-align: center; padding: 34px 24px; }
.value-card .icon-badge { margin: 0 auto 16px; }

/* Waste truck / division highlight strip */
.division-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.division-strip .card { display: flex; flex-direction: column; }

/* Gallery */
.gallery-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--border); background: #fff; font-weight: 600; font-size: .85rem; color: var(--ink-700);
  transition: all .15s;
}
.filter-btn:hover { border-color: var(--blue-500); color: var(--blue-600); }
.filter-btn.active { background: var(--blue-700); border-color: var(--blue-700); color: #fff; }

/* Photo gallery tiles (homepage showcase + Gallery page) */
.photo-tile {
  position: relative; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); aspect-ratio: 4/3;
}
.photo-tile img {
  width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease;
}
.photo-tile:hover img { transform: scale(1.06); }
.photo-tile .photo-caption {
  position: absolute; inset: auto 0 0 0; padding: 20px; color: #fff;
  background: linear-gradient(to top, rgba(10,42,61,.88), rgba(10,42,61,.15) 65%, transparent);
}
.photo-caption .cat {
  display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--orange-400); margin-bottom: 4px;
}
.photo-caption strong { display: block; font-family: var(--font-head); font-size: 1.05rem; color: #fff; }

/* FAQ / accordion */
.accordion-item { border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; background: #fff; }
.accordion-trigger {
  width: 100%; text-align: left; background: none; border: none; padding: 20px 22px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; font-family: var(--font-head); font-weight: 600; color: var(--blue-900); font-size: .98rem;
}
.accordion-trigger svg { width: 20px; height: 20px; flex: none; transition: transform .25s; color: var(--orange-500); }
.accordion-item.open .accordion-trigger svg { transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.accordion-panel-inner { padding: 0 22px 20px; color: var(--ink-500); font-size: .92rem; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 40px; align-items: start; }
.contact-card { display: flex; gap: 16px; padding: 22px; border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 16px; }
.contact-card h4 { margin: 0 0 4px; font-size: .95rem; }
.contact-card a, .contact-card span.line { display: block; font-size: .9rem; color: var(--ink-700); }
.contact-card a:hover { color: var(--blue-600); }

.form-panel { background: var(--bg-alt); border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .84rem; font-weight: 600; color: var(--blue-900); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); background: #fff;
  transition: border-color .15s, box-shadow .15s; color: var(--ink-900);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(26,123,196,.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.field .err { display: none; color: #c0392b; font-size: .78rem; margin-top: 6px; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c0392b; }
.field.invalid .err { display: block; }
.form-note { font-size: .8rem; color: var(--ink-500); margin-top: 4px; }
.form-success {
  display: none; align-items: center; gap: 12px; background: #e9f8ef; border: 1px solid #b7ecc7; color: #1b7a3d;
  padding: 16px 18px; border-radius: var(--radius-sm); font-size: .9rem; font-weight: 600; margin-bottom: 18px;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex: none; }

.map-embed {
  border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); margin-top: 20px;
  background: var(--bg-alt-2); padding: 30px; text-align: center;
}
.map-embed svg { width: 42px; height: 42px; color: var(--blue-600); margin: 0 auto 12px; }

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center; box-shadow: var(--shadow-lg); z-index: 500;
  transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; color: #fff; }

.back-to-top {
  position: fixed; bottom: 24px; left: 24px; width: 48px; height: 48px; border-radius: 50%; background: var(--blue-800);
  color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-md); border: none; z-index: 500;
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .25s;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 20px; height: 20px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--blue-900); color: rgba(255,255,255,.72); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand .brand-text .en { color: #fff; }
.footer-brand .brand-text .ar { color: rgba(255,255,255,.6); }
.footer-brand p { margin-top: 16px; font-size: .88rem; max-width: 300px; }
.footer-col h5 { color: #fff; font-family: var(--font-head); font-size: .92rem; margin-bottom: 18px; letter-spacing: .03em; text-transform: uppercase; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: .88rem; transition: color .15s; }
.footer-col a:hover { color: var(--orange-400); }
.footer-col .fitem { display: flex; align-items: flex-start; gap: 10px; font-size: .86rem; }
.footer-col .fitem svg { width: 17px; height: 17px; flex: none; margin-top: 2px; color: var(--orange-400); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; }
.footer-social a:hover { background: var(--orange-500); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; font-size: .8rem; flex-wrap: wrap; gap: 10px; }
.footer-bottom a:hover { color: var(--orange-400); }

/* 404 */
.error-page { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: 80px 24px; }
.error-page .code { font-family: var(--font-head); font-size: clamp(4rem, 12vw, 8rem); font-weight: 700; background: linear-gradient(100deg, var(--blue-700), var(--orange-500)); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
