/* ============================================================
   AFAQ Specialized Limited - Global Stylesheet
   Inspired by sdlccorp.com look & feel
   ============================================================ */

:root {
  --navy-900: #050B1A;
  --navy-800: #0A1730;
  --navy-700: #0B2447;
  --navy-600: #122E5C;
  --blue-500: #19A7CE;
  --blue-400: #3DB7DA;
  --blue-300: #7CCFEA;
  --blue-100: #E7F5FA;
  --gold-500: #E2B33C;
  --gold-300: #F5D67A;
  --ink-900: #0F1B2D;
  --ink-700: #2A3A55;
  --ink-500: #5A6A85;
  --ink-300: #9AA6BC;
  --line: #E5E9F2;
  --bg: #FFFFFF;
  --bg-alt: #F7F9FC;
  --bg-soft: #EEF3FA;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(11,36,71,0.06);
  --shadow: 0 14px 40px rgba(11,36,71,0.10);
  --shadow-lg: 0 30px 80px rgba(11,36,71,0.18);
  --grad-primary: linear-gradient(135deg,#0B2447 0%, #19A7CE 100%);
  --grad-soft: linear-gradient(135deg,#E7F5FA 0%, #F7F9FC 100%);
  --grad-gold: linear-gradient(135deg,#E2B33C 0%, #F5D67A 100%);
  --container: 1200px;
  --font-en: 'Inter', 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  --font-ar: 'Cairo', 'Tajawal', 'Noto Naskh Arabic', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-en);
  color: var(--ink-900);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--blue-500); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--navy-700); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
  color: var(--navy-700);
  line-height: 1.2;
  margin: 0 0 .6em;
  font-weight: 800;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; color: var(--ink-700); }
.ar { font-family: var(--font-ar); direction: rtl; }

/* ---------- Bilingual content switching ---------- */
/* Default: English visible, Arabic hidden */
[data-lang="ar"] { display: none; }
[data-lang="en"] { display: inline; }

/* When html lang="ar": Arabic visible, English hidden */
html[lang="ar"] [data-lang="en"] { display: none; }
html[lang="ar"] [data-lang="ar"] { display: inline; }

/* Block-level translation containers */
[data-lang-block="ar"] { display: none; }
html[lang="ar"] [data-lang-block="en"] { display: none; }
html[lang="ar"] [data-lang-block="ar"] { display: block; }

/* Arabic typography & RTL when active */
html[lang="ar"] body { font-family: var(--font-ar); }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4, html[lang="ar"] h5 {
  font-family: var(--font-ar);
  letter-spacing: 0;
}
html[lang="ar"] .nav a, html[lang="ar"] .btn, html[lang="ar"] .pill,
html[lang="ar"] .eyebrow, html[lang="ar"] .breadcrumb {
  font-family: var(--font-ar);
}

/* RTL layout adjustments */
html[lang="ar"] body { direction: rtl; text-align: right; }
html[lang="ar"] .hero-grid,
html[lang="ar"] .two-col,
html[lang="ar"] .contact-grid,
html[lang="ar"] .cta-banner { direction: rtl; }
html[lang="ar"] .cta-banner .actions { justify-content: flex-start; }
html[lang="ar"] .breadcrumb { flex-direction: row-reverse; }
html[lang="ar"] .btn:hover .arrow { transform: translateX(-4px); }
html[lang="ar"] .card:hover .more .arrow { transform: translateX(-4px); }
html[lang="ar"] .btn .arrow,
html[lang="ar"] .card .more .arrow { transform: scaleX(-1); }
html[lang="ar"] .nav a.active::after,
html[lang="ar"] .nav a:hover::after { left: 0; right: 0; }
html[lang="ar"] .step::before { left: auto; right: 26px; }
html[lang="ar"] .svc-block h2 { flex-direction: row-reverse; justify-content: flex-end; }
html[lang="ar"] .foot-bottom { flex-direction: row-reverse; }
html[lang="ar"] .bullets li { flex-direction: row-reverse; }
html[lang="ar"] .bullets li::before { margin-left: 0; }
html[lang="ar"] .contact-item { flex-direction: row-reverse; text-align: right; }

/* Language toggle button */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all .2s ease;
  cursor: pointer;
}
.lang-toggle:hover {
  background: var(--blue-500);
  border-color: var(--blue-500);
  color: #fff;
}
.lang-toggle .globe { width: 16px; height: 16px; }
@media (max-width: 960px) {
  .header-actions {
    display: flex; align-items: center; gap: 10px;
  }
}

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--navy-900);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand img { height: 52px; width: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  color: #E2E8F2;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 6px 0;
}
.nav a:hover, .nav a.active { color: #fff; }
.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--blue-500);
  border-radius: 2px;
}
.nav-cta {
  background: var(--blue-500);
  color: #fff !important;
  padding: 10px 18px !important;
  border-radius: 999px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--gold-500); color: var(--navy-700) !important; }
.nav-cta:hover::after { display: none; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  padding: 8px;
  border-radius: 8px;
}
.menu-toggle svg { width: 28px; height: 28px; }

@media (max-width: 960px) {
  .nav {
    position: fixed;
    inset: 76px 0 0 0;
    background: var(--navy-900);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform .25s ease;
    overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav a {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 17px;
  }
  .nav a.active::after, .nav a:hover::after { display: none; }
  .nav-cta { text-align: center; margin-top: 10px; }
  .menu-toggle { display: inline-flex; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: var(--blue-500);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 0;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: 0 6px 24px rgba(25,167,206,0.32);
}
.btn:hover {
  background: var(--navy-700);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(11,36,71,0.32);
}
.btn-outline {
  background: transparent;
  color: var(--navy-700);
  border: 1.5px solid var(--navy-700);
  box-shadow: none;
}
.btn-outline:hover { background: var(--navy-700); color: #fff; }
.btn-light {
  background: #fff;
  color: var(--navy-700);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
.btn-light:hover { background: var(--gold-500); color: var(--navy-700); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Section base ---------- */
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: var(--navy-900);
  color: #E2E8F2;
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: #B6C3D6; }
.section-grad {
  background: var(--grad-primary);
  color: #fff;
}
.section-grad h1, .section-grad h2, .section-grad h3 { color: #fff; }
.section-grad p { color: #D7E6F5; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--blue-500);
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 6px 14px;
  background: var(--blue-100);
  border-radius: 999px;
}
.section-dark .eyebrow,
.section-grad .eyebrow { background: rgba(255,255,255,0.1); color: #9BD7EA; }

.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: #fff;
  padding: 100px 0 110px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 85% 20%, rgba(25,167,206,0.28), transparent 60%),
    radial-gradient(700px 500px at 10% 90%, rgba(226,179,60,0.12), transparent 60%),
    linear-gradient(180deg, #050B1A 0%, #0A1730 100%);
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.6vw, 3.7rem);
  margin-bottom: 24px;
}
.hero h1 .accent {
  background: linear-gradient(90deg, #19A7CE, #F5D67A);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 1.125rem;
  color: #C9D5E8;
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-arabic {
  font-family: var(--font-ar);
  direction: rtl;
  margin-top: 24px;
  color: #9BD7EA;
  font-size: 17px;
  line-height: 1.9;
}

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 30%, rgba(25,167,206,0.35), transparent 60%),
    linear-gradient(135deg, rgba(25,167,206,0.15), rgba(11,36,71,0.4));
  border: 1px solid rgba(155,215,234,0.25);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  backdrop-filter: blur(6px);
}
.hero-tile {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
}
.hero-tile .icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.hero-tile h4 { color: #fff; font-size: 1rem; margin: 14px 0 4px; }
.hero-tile p  { color: #9BD7EA; font-size: 13px; margin: 0; line-height: 1.5; }
.hero-tile.gold .icon { background: var(--grad-gold); color: var(--navy-700); }

@media (max-width: 900px) {
  .hero { padding: 70px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: -60px;
  position: relative;
  z-index: 5;
}
.stat {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  text-align: center;
}
.stat .num {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat .label {
  font-size: 14px;
  color: var(--ink-500);
  margin-top: 8px;
  font-weight: 500;
}
@media (max-width: 800px) {
  .stats { grid-template-columns: repeat(2, 1fr); margin-top: -40px; }
}

/* ---------- Card grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid, .grid-2, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.card:hover::before { opacity: 1; }
.card .icon-wrap {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--blue-100);
  color: var(--navy-700);
  display: inline-flex;
  align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: background .25s ease, color .25s ease;
}
.card:hover .icon-wrap {
  background: var(--grad-primary);
  color: #fff;
}
.card .icon-wrap svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p  { font-size: 14.5px; color: var(--ink-500); margin: 0; }
.card .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-500);
}
.card .more .arrow { transition: transform .2s ease; }
.card:hover .more .arrow { transform: translateX(4px); }

.card-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #E2E8F2;
}
.card-dark h3 { color: #fff; }
.card-dark p { color: #B6C3D6; }
.card-dark .icon-wrap { background: rgba(25,167,206,0.18); color: #9BD7EA; }
.card-dark:hover { border-color: rgba(25,167,206,0.4); }

/* ---------- Two-column feature ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

.feature-visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: var(--grad-soft);
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  overflow: hidden;
}
.feature-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 300px at 80% 20%, rgba(25,167,206,0.18), transparent 60%);
}
.feature-visual .badge {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 28px;
}
.feature-visual .badge .big {
  font-size: 3.6rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.feature-visual .badge .small {
  color: var(--ink-500);
  font-weight: 600;
  margin-top: 6px;
}

/* ---------- Bullet list ---------- */
.bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-700);
}
.bullets li::before {
  content: "";
  flex: 0 0 22px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-500);
  margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2319A7CE' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

/* ---------- Industry pills ---------- */
.pills {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-700);
  font-weight: 500;
  transition: all .2s ease;
}
.pill:hover {
  border-color: var(--blue-500);
  color: var(--navy-700);
  transform: translateY(-2px);
}
.pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue-500);
}

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 30px 26px;
  position: relative;
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -18px;
  left: 26px;
  background: var(--grad-primary);
  color: #fff;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 1px;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  border-radius: var(--radius-lg);
  background: var(--grad-primary);
  color: #fff;
  padding: 56px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 300px at 100% 0%, rgba(245,214,122,0.25), transparent 60%),
    radial-gradient(400px 300px at 0% 100%, rgba(25,167,206,0.35), transparent 60%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin-bottom: 10px; }
.cta-banner p { color: #D7E6F5; margin: 0; }
.cta-banner .actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 800px) {
  .cta-banner { padding: 36px; grid-template-columns: 1fr; text-align: center; }
  .cta-banner .actions { justify-content: center; }
}

/* ---------- Page Hero (sub-pages) ---------- */
.page-hero {
  background: var(--navy-900);
  color: #fff;
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 90% 30%, rgba(25,167,206,0.30), transparent 60%),
    radial-gradient(500px 400px at 5% 80%, rgba(226,179,60,0.12), transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: #C9D5E8; max-width: 720px; font-size: 1.05rem; }
.breadcrumb {
  display: flex; gap: 10px; align-items: center;
  font-size: 13px; color: #9BD7EA;
  margin-bottom: 18px;
  font-weight: 500; letter-spacing: 0.5px;
}
.breadcrumb a { color: #9BD7EA; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: .6; }

/* ---------- Service category block ---------- */
.svc-block { margin-bottom: 56px; }
.svc-block h2 {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--blue-100);
  margin-bottom: 28px;
}
.svc-block h2 .badge {
  background: var(--grad-primary);
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-700);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink-900);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(25,167,206,0.15);
}
.field textarea { min-height: 140px; resize: vertical; }
.contact-info {
  background: var(--navy-900);
  color: #E2E8F2;
  padding: 36px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(400px 300px at 100% 0%, rgba(25,167,206,0.25), transparent 60%);
}
.contact-info > * { position: relative; z-index: 1; }
.contact-info h3 { color: #fff; margin-bottom: 20px; }
.contact-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.contact-item:first-of-type { border-top: 0; }
.contact-item .icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(25,167,206,0.18);
  color: #9BD7EA;
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.contact-item h4 { color: #fff; margin: 0 0 4px; font-size: 14px; font-weight: 600; letter-spacing: 0.5px; }
.contact-item p { margin: 0; color: #B6C3D6; font-size: 15px; }
.contact-item a { color: #9BD7EA; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: #B6C3D6;
  padding: 80px 0 32px;
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer a {
  color: #B6C3D6;
  display: inline-block;
  padding: 4px 0;
}
.site-footer a:hover { color: #fff; }
.site-footer .brand-block img { height: 56px; margin-bottom: 16px; }
.site-footer .brand-block p { color: #94A3BD; max-width: 320px; }
.foot-links { display: grid; gap: 4px; }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  transition: all .2s ease;
}
.socials a:hover { background: var(--blue-500); color: #fff; transform: translateY(-2px); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #94A3BD;
}

/* ---------- Misc / utilities ---------- */
.text-center { text-align: center; }
.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.divider {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 24px 0;
}
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0 !important; }
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold-500);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-grad .tag, .section-dark .tag { color: var(--gold-300); }

/* Fade in on scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Logo strip */
.logo-strip {
  display: flex; flex-wrap: wrap; gap: 32px;
  justify-content: center; align-items: center;
  padding: 24px 0;
  opacity: 0.85;
}
.logo-strip .logo-item {
  font-weight: 700;
  color: var(--ink-500);
  letter-spacing: 1px;
  font-size: 14px;
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
