/* ============================================================
   ALFAWZ 2026 — Complete Theme Stylesheet
   Brand: #0a173b / #0f1c52 / #17236a / #71788f / #eaf0f7
   Accent: #D4A843 (gold)
   ============================================================ */

/* ── 1. DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --navy:        #0a173b;
  --navy-800:    #0f1c52;
  --navy-700:    #17236a;
  --slate:       #71788f;
  --ice:         #eaf0f7;

  --gold:        #D4A843;
  --gold-dark:   #B8922E;
  --gold-light:  #E8C060;
  --gold-pale:   #FBF3DF;

  --white:       #ffffff;
  --gray-50:     #f7f8fc;
  --border:      #dde3ef;
  --border-light:#edf0f8;

  --text:        #0a173b;
  --muted:       #71788f;
  --success:     #10b981;
  --error:       #ef4444;

  /* aliases for legacy compat */
  --primary:     #0a173b;
  --accent:      #D4A843;
  --off-white:   #eaf0f7;

  --font:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-ar: 'Plus Jakarta Sans', 'Noto Sans Arabic', Tahoma, Arial, sans-serif;

  --container:    1240px;
  --container-sm: 860px;
  --nav-h:        76px;

  --r-xs: 4px;
  --r-sm: 6px;
  --r:    12px;
  --r-lg: 20px;
  --r-xl: 32px;

  --shadow-xs: 0 1px 3px rgba(10,23,59,.06);
  --shadow-sm: 0 2px 8px rgba(10,23,59,.07);
  --shadow:    0 4px 20px rgba(10,23,59,.09);
  --shadow-md: 0 8px 32px rgba(10,23,59,.12);
  --shadow-lg: 0 20px 64px rgba(10,23,59,.16);
  --shadow-gold: 0 4px 20px rgba(212,168,67,.28);

  --t:      .22s cubic-bezier(.4,0,.2,1);
  --t-slow: .4s  cubic-bezier(.4,0,.2,1);
}

/* ── 2. RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.rtl, [dir="rtl"] { font-family: var(--font-ar); direction: rtl; }
a { color: var(--navy-700); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.03em;
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { line-height: 1.75; color: var(--muted); }

/* ── 3. LAYOUT ────────────────────────────────────────────── */
.container     { max-width: var(--container); margin-inline: auto; padding-inline: 28px; }
.container-sm  { max-width: var(--container-sm); margin-inline: auto; padding-inline: 28px; }
.section       { padding-block: 100px; }
.section--ice  { background: var(--ice); }
.section--dark { background: var(--navy); }
.section--navy800 { background: var(--navy-800); }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle { max-width: 580px; font-size: 1.05rem; margin-bottom: 52px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-subtitle { margin-inline: auto; }
.section-header .section-label { display: block; }
.section-header-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── 4. BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  border: 2px solid transparent;
  transition: all var(--t);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.btn-lg  { padding: 17px 38px; font-size: 16px; }
.btn-sm  { padding: 10px 20px; font-size: 14px; }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-700);
  border-color: var(--navy-700);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline:hover {
  background: var(--ice);
  border-color: var(--navy-700);
  color: var(--navy);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.8);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--navy-700);
  border-color: transparent;
  padding-inline: 8px;
}
.btn-ghost:hover { color: var(--gold); }

/* ── 5. NAVIGATION ────────────────────────────────────────── */
#site-nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--t), box-shadow var(--t), backdrop-filter var(--t);
}
#site-nav.nav-transparent { background: transparent; }
#site-nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(10,23,59,.25);
}
#site-nav.nav-solid { background: var(--navy); }

.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 8px;
}
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-inline-end: 16px;
}
.nav-logo img { height: 42px; width: auto; }
.nav-logo-text {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.04em;
}
.nav-logo-text span { color: var(--gold); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-inline-start: auto;
}
.nav-menu a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  border-radius: var(--r-sm);
  transition: all var(--t);
}
.nav-menu a:hover, .nav-menu a.current { color: var(--white); background: rgba(255,255,255,.1); }

/* Dropdown */
.nav-item-drop { position: relative; }
.nav-drop {
  position: absolute;
  top: calc(100% + 10px);
  inset-inline-start: 0;
  min-width: 224px;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--t);
  z-index: 200;
}
.nav-item-drop:hover .nav-drop,
.nav-item-drop:focus-within .nav-drop {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.nav-drop a {
  display: block !important;
  padding: 10px 14px !important;
  font-size: 14px !important;
  color: var(--navy) !important;
  border-radius: var(--r-sm) !important;
  background: transparent !important;
}
.nav-drop a:hover { background: var(--ice) !important; color: var(--navy-700) !important; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-inline-start: 16px;
  flex-shrink: 0;
}

/* Language switcher */
.lang-switch { display: flex; gap: 2px; }
.lang-switch a {
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--r-sm);
  color: rgba(255,255,255,.55);
  transition: all var(--t);
  letter-spacing: .04em;
}
.lang-switch a.active, .lang-switch a:hover {
  color: var(--white);
  background: rgba(255,255,255,.12);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 8px;
  margin-inline-start: 8px;
}
.nav-toggle span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--t); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav */
.nav-mobile {
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: var(--navy);
  z-index: 999;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(-100%);
  transition: transform var(--t-slow);
  overflow-y: auto;
}
[dir="rtl"] .nav-mobile { transform: translateX(100%); }
.nav-mobile.open { transform: none; }
.nav-mobile a {
  display: block;
  padding: 13px 16px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  border-radius: var(--r);
  transition: all var(--t);
}
.nav-mobile a:hover { background: rgba(255,255,255,.08); color: var(--white); }
.nav-mobile .lang-row { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); }
.nav-mobile-cta { margin-top: 8px; }
.nav-mobile-cta .btn { width: 100%; justify-content: center; }

/* ── 6. HERO (FULL SCREEN) ────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,23,59,.92) 0%,
    rgba(15,28,82,.78) 55%,
    rgba(10,23,59,.68) 100%
  );
}
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 15% 65%, rgba(212,168,67,.14) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 85% 25%, rgba(23,35,106,.5) 0%, transparent 50%);
  pointer-events: none;
}
.hero-body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding-block: calc(var(--nav-h) + 96px) 80px;
}
.hero-content { max-width: 780px; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-tag-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-gold 2.2s ease-in-out infinite;
}
@keyframes pulse-gold {
  0%,100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(212,168,67,.4); }
  50% { transform: scale(1.4); opacity: .7; box-shadow: 0 0 0 6px rgba(212,168,67,0); }
}
.hero-title {
  color: var(--white);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero-title em { font-style: normal; color: var(--gold); }
.hero-text {
  font-size: 1.15rem;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 44px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Stats bar pinned to bottom of hero */
.hero-stats {
  position: relative;
  z-index: 2;
  background: rgba(15,28,82,.5);
  border-top: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-stats-inner { display: flex; align-items: stretch; }
.hero-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 26px 16px;
  gap: 5px;
  border-inline-end: 1px solid rgba(255,255,255,.1);
}
.hero-stat:last-child { border-inline-end: none; }
.hero-stat strong {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.03em;
}
.hero-stat span {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* ── 7. SERVICES SECTION ──────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex;
  flex-direction: column;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  transform: scaleX(0);
  transform-origin: start;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--ice);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-700);
  margin-bottom: 20px;
  transition: background var(--t), color var(--t);
  flex-shrink: 0;
}
.service-card:hover .service-icon { background: var(--navy); color: var(--white); }
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card p  { font-size: 14px; line-height: 1.7; flex: 1; margin-bottom: 20px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-700);
  letter-spacing: .02em;
  transition: gap var(--t), color var(--t);
  margin-top: auto;
}
.service-link:hover { gap: 10px; color: var(--gold); }

/* ── 8. ABOUT PREVIEW ─────────────────────────────────────── */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-preview-image {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Float badge */
.about-float {
  position: absolute;
  bottom: 28px;
  inset-inline-start: 28px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 20px;
}
.about-float-stat strong { display: block; font-size: 1.7rem; font-weight: 800; color: var(--navy); line-height: 1; letter-spacing: -.04em; }
.about-float-stat span  { font-size: 11px; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }
.about-float-sep { width: 1px; height: 44px; background: var(--border); }
.about-preview-text .section-label { display: block; }
.about-preview-text h2 { margin-bottom: 16px; }
.about-preview-text p  { font-size: 1.05rem; margin-bottom: 36px; }

/* ── 9. PROCESS STEPS ─────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 27px;
  inset-inline: 56px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 auto 22px;
  transition: all var(--t);
  position: relative;
  z-index: 1;
}
.process-step:hover .process-num {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: scale(1.1);
  box-shadow: var(--shadow-gold);
}
.process-step h4 { font-size: .95rem; margin-bottom: 8px; }
.process-step p  { font-size: 13px; }

/* ── 10. WHY ALFAWZ ───────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.why-feature { display: flex; gap: 14px; align-items: flex-start; }
.why-feature-icon {
  width: 42px;
  height: 42px;
  background: var(--ice);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-700);
  flex-shrink: 0;
  transition: background var(--t), color var(--t);
}
.why-feature:hover .why-feature-icon { background: var(--gold); color: var(--navy); }
.why-feature h4 { font-size: .9rem; margin-bottom: 4px; }
.why-feature p  { font-size: 13px; }
.why-visual {
  position: relative;
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 52px 44px;
  overflow: hidden;
}
.why-visual-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 80%, rgba(212,168,67,.18) 0%, transparent 60%);
  pointer-events: none;
}
.why-visual-content { position: relative; z-index: 1; }
.why-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.why-quote { font-size: 1.15rem; font-weight: 500; color: rgba(255,255,255,.9); line-height: 1.65; margin-bottom: 44px; font-style: italic; border-inline-start: 3px solid var(--gold); padding-inline-start: 18px; }
.why-stats { display: flex; gap: 36px; }
.why-stat strong { display: block; font-size: 2.2rem; font-weight: 800; color: var(--gold); line-height: 1; letter-spacing: -.04em; }
.why-stat span   { font-size: 12px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .06em; }

/* ── 11. CTA BANNER ───────────────────────────────────────── */
.cta-banner {
  position: relative;
  background: var(--navy-800);
  overflow: hidden;
  padding-block: 100px;
}
.cta-banner-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,23,59,.96) 0%, rgba(15,28,82,.85) 100%);
}
.cta-banner-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 50% 50%, rgba(212,168,67,.13) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 700px; margin-inline: auto; }
.cta-inner h2 { color: var(--white); margin-bottom: 16px; }
.cta-inner p  { color: rgba(255,255,255,.7); font-size: 1.1rem; margin-bottom: 44px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── 12. LATEST NEWS ──────────────────────────────────────── */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  position: relative;
  overflow: hidden;
}
.news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.news-card:hover .news-thumb img { transform: scale(1.05); }
.news-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.news-cat { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.news-card h3 { font-size: 1rem; line-height: 1.45; flex: 1; margin-bottom: 12px; }
.news-card h3 a { color: var(--navy); transition: color var(--t); }
.news-card h3 a:hover { color: var(--navy-700); }
.news-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; font-size: 12px; color: var(--muted); }
.news-read { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 600; color: var(--navy-700); transition: gap var(--t), color var(--t); }
.news-card:hover .news-read { gap: 7px; color: var(--gold); }

/* ── 13. FOOTER ───────────────────────────────────────────── */
#site-footer { background: var(--navy); padding-top: 72px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 52px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .nav-logo-text { font-size: 1.5rem; }
.footer-brand p { color: rgba(255,255,255,.5); font-size: 14px; line-height: 1.75; margin-top: 16px; max-width: 280px; }
.footer-social { display: flex; gap: 8px; margin-top: 24px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all var(--t);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-col h4 { color: rgba(255,255,255,.9); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul  { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 14px; color: rgba(255,255,255,.5); transition: color var(--t); }
.footer-col li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 14px; color: rgba(255,255,255,.5); }
.footer-contact-item-icon { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.footer-contact-item a { color: rgba(255,255,255,.5); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bar { display: flex; align-items: center; justify-content: space-between; padding-block: 22px; font-size: 12px; color: rgba(255,255,255,.35); flex-wrap: wrap; gap: 8px; }
.footer-bar .lang-switch a { color: rgba(255,255,255,.4); }

/* ── 14. PAGE HERO (inner pages) ──────────────────────────── */
.page-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  background: var(--navy);
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .18; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--navy) 10%, rgba(10,23,59,.65) 100%); }
.page-hero-glow { position: absolute; inset: 0; background: radial-gradient(ellipse 55% 60% at 25% 50%, rgba(212,168,67,.1) 0%, transparent 60%); pointer-events: none; }
.page-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: calc(var(--nav-h) + 56px) 64px;
}
.page-hero-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 14px; }
.page-hero-sub { color: rgba(255,255,255,.68); font-size: 1.05rem; max-width: 580px; line-height: 1.7; }

/* ── 15. ABOUT PAGE ───────────────────────────────────────── */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-story-image { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 3/4; }
.about-story-image img { width: 100%; height: 100%; object-fit: cover; }
.about-values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.about-value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: box-shadow var(--t), border-color var(--t);
}
.about-value-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.about-value-icon { width: 48px; height: 48px; background: var(--gold-pale); border-radius: var(--r); display: flex; align-items: center; justify-content: center; color: var(--gold-dark); margin-bottom: 16px; }
.about-value-card h3 { font-size: 1rem; margin-bottom: 8px; }
.about-value-card p  { font-size: 14px; }
.about-mission {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 72px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-mission-glow { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(212,168,67,.12) 0%, transparent 60%); pointer-events: none; }
.about-mission > * { position: relative; z-index: 1; }
.about-mission h2 { color: var(--white); margin-bottom: 20px; }
.about-mission p { color: rgba(255,255,255,.72); font-size: 1.1rem; max-width: 620px; margin-inline: auto; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card { text-align: center; }
.team-photo { aspect-ratio: 1; border-radius: var(--r-xl); overflow: hidden; background: var(--ice); margin-bottom: 16px; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-size: .95rem; margin-bottom: 4px; }
.team-card span { font-size: 13px; color: var(--muted); }

/* ── 16. SERVICES PAGE ────────────────────────────────────── */
.services-full-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.service-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--t), transform var(--t);
}
.service-full-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-full-thumb {
  aspect-ratio: 16/7;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  position: relative;
  overflow: hidden;
}
.service-full-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.service-full-card:hover .service-full-thumb img { transform: scale(1.05); }
.service-full-body { padding: 36px; flex: 1; display: flex; flex-direction: column; }
.service-full-icon { width: 52px; height: 52px; background: var(--ice); border-radius: var(--r); display: flex; align-items: center; justify-content: center; color: var(--navy-700); margin-bottom: 16px; }
.service-full-body h3 { margin-bottom: 10px; }
.service-full-body p { font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
.service-full-features { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 32px; flex: 1; }
.service-full-feat { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--muted); line-height: 1.45; }
.service-full-feat svg { color: var(--gold); flex-shrink: 0; margin-top: 1px; }

/* ── 17. CONTACT PAGE ─────────────────────────────────────── */
.contact-page-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.contact-info-panel {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 52px 44px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.contact-info-glow { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 20% 80%, rgba(212,168,67,.15) 0%, transparent 55%); pointer-events: none; }
.contact-info-panel > * { position: relative; z-index: 1; }
.contact-info-panel h3 { color: var(--white); margin-bottom: 8px; }
.contact-info-panel > p { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.7; margin-bottom: 40px; }
.contact-block { display: flex; gap: 14px; margin-bottom: 28px; align-items: flex-start; }
.contact-block-icon { width: 42px; height: 42px; background: rgba(255,255,255,.08); border-radius: var(--r); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.contact-block h4 { color: var(--white); font-size: .88rem; font-weight: 600; margin-bottom: 4px; }
.contact-block p { color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.6; }
.contact-block a { color: rgba(255,255,255,.6); }
.contact-block a:hover { color: var(--gold); }

/* ── 18. APPLY PAGE ───────────────────────────────────────── */
.apply-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: start; }
.apply-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); display: flex; flex-direction: column; gap: 24px; }
.apply-why-card {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.apply-why-glow { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 30% 70%, rgba(212,168,67,.14) 0%, transparent 60%); pointer-events: none; }
.apply-why-card > * { position: relative; z-index: 1; }
.apply-why-card h4 { color: var(--white); margin-bottom: 20px; font-size: 1.05rem; }
.apply-checklist { display: flex; flex-direction: column; gap: 12px; }
.apply-check-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,.7); }
.apply-check-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ── 19. FORMS ────────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 48px;
}
.form-section-title {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-size: 14px;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(23,35,106,.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(113,120,143,.5); }
.form-submit { margin-top: 24px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
#form-status, #apply-status {
  display: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--success);
  padding: 12px 20px;
  background: rgba(16,185,129,.08);
  border-radius: var(--r);
  border: 1px solid rgba(16,185,129,.2);
}

/* ── 20. BLOG ARCHIVE ─────────────────────────────────────── */
.archive-layout { display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start; }
.archive-posts { display: flex; flex-direction: column; gap: 28px; }
.archive-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--t);
}
.archive-card:hover { box-shadow: var(--shadow-md); }
.archive-thumb { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy-800), var(--navy-700)); }
.archive-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.archive-card:hover .archive-thumb img { transform: scale(1.04); }
.archive-body { padding: 28px 32px; display: flex; flex-direction: column; justify-content: center; }
.archive-cat { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.archive-body h3 { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.4; }
.archive-body h3 a { color: var(--navy); }
.archive-body h3 a:hover { color: var(--navy-700); }
.archive-body p { font-size: 14px; margin-bottom: 16px; }
.archive-meta { font-size: 12px; color: var(--muted); display: flex; gap: 12px; align-items: center; }
.blog-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; }
.sidebar-widget h4 { font-size: .8rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--navy); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }

/* Pagination */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 52px; }
.pagination a,
.pagination span { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--r); font-size: 14px; font-weight: 600; border: 1.5px solid var(--border); color: var(--navy); transition: all var(--t); }
.pagination a:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }
.pagination .current { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* ── 21. SINGLE POST ──────────────────────────────────────── */
.post-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
}
.post-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.post-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,23,59,.96) 15%, rgba(10,23,59,.5) 60%, transparent 100%); }
.post-hero-content { position: relative; z-index: 1; width: 100%; padding-block: calc(var(--nav-h) + 40px) 64px; max-width: 820px; }
.post-cat { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.post-hero h1 { color: var(--white); font-size: clamp(1.7rem, 3.5vw, 2.8rem); margin-bottom: 18px; }
.post-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.55); }
.post-meta-sep { width: 4px; height: 4px; background: rgba(255,255,255,.3); border-radius: 50%; }
.post-layout { display: grid; grid-template-columns: 1fr 280px; gap: 60px; align-items: start; padding-block: 72px; }
.post-content h2, .post-content h3 { margin-top: 40px; margin-bottom: 16px; }
.post-content p  { margin-bottom: 20px; color: var(--text); font-size: 1.03rem; line-height: 1.8; }
.post-content ul { list-style: disc; padding-inline-start: 24px; margin-bottom: 20px; }
.post-content ul li { margin-bottom: 8px; color: var(--muted); }
.post-content a { color: var(--navy-700); text-decoration: underline; }
.post-content img { border-radius: var(--r-lg); margin-block: 32px; }
.post-content blockquote { border-inline-start: 3px solid var(--gold); padding-inline-start: 20px; margin-block: 28px; font-size: 1.1rem; font-style: italic; color: var(--navy); }
.post-sticky { position: sticky; top: calc(var(--nav-h) + 24px); }

/* ── 22. GENERIC PAGE ─────────────────────────────────────── */
.page-content { max-width: var(--container-sm); margin-inline: auto; padding-block: 72px; }
.page-content h2, .page-content h3 { margin-top: 36px; margin-bottom: 14px; }
.page-content p { margin-bottom: 18px; font-size: 1.03rem; }

/* ── 23. 404 ──────────────────────────────────────────────── */
.page-404 { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--ice); padding: var(--nav-h) 28px 60px; }
.error-404 .big-num { font-size: clamp(7rem, 20vw, 15rem); font-weight: 900; color: var(--border); line-height: 1; margin-bottom: -16px; letter-spacing: -.05em; }
.error-404 h1 { font-size: 1.8rem; margin-bottom: 14px; }
.error-404 p { margin-bottom: 36px; font-size: 1.05rem; }

/* ── 24. IMAGE SLOTS ──────────────────────────────────────── */
.img-slot {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
  color: rgba(255,255,255,.3);
  font-size: 12px;
  font-weight: 500;
  gap: 10px;
  letter-spacing: .04em;
  text-align: center;
  padding: 24px;
}
.img-slot svg { opacity: .25; }

/* ── 25. COMPONENTS ───────────────────────────────────────── */
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: .04em; }
.badge-navy  { background: var(--navy);  color: var(--white); }
.badge-gold  { background: var(--gold-pale); color: var(--gold-dark); }
.badge-ice   { background: var(--ice);   color: var(--navy); }
.badge-green { background: rgba(16,185,129,.1); color: #059669; }
.tag-dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }
.tag-dot-gold  { background: var(--gold); }
.tag-dot-green { background: #10b981; }
.divider { height: 1px; background: var(--border); }
.text-gold  { color: var(--gold) !important; }
.text-white { color: var(--white) !important; }
.text-muted { color: var(--muted) !important; }

/* Tabs */
.tab-btns { display: flex; gap: 4px; background: var(--ice); padding: 4px; border-radius: var(--r-lg); width: fit-content; margin-bottom: 40px; }
.tab-btn {
  padding: 10px 24px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--t);
}
.tab-btn.active { background: var(--white); color: var(--navy); box-shadow: var(--shadow-sm); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* Checklist */
.checklist { display: flex; flex-direction: column; gap: 14px; }
.checklist-item { display: flex; align-items: flex-start; gap: 12px; }
.checklist-icon { width: 22px; height: 22px; background: var(--gold-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold-dark); flex-shrink: 0; margin-top: 2px; }
.checklist-item strong { display: block; font-size: .95rem; font-weight: 600; margin-bottom: 2px; color: var(--navy); }
.checklist-item span   { font-size: 13px; color: var(--muted); }

/* ── 26. SCROLL REVEAL ────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s cubic-bezier(.4,0,.2,1), transform .55s cubic-bezier(.4,0,.2,1);
}
[data-reveal].visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .18s; }
[data-reveal-delay="3"] { transition-delay: .26s; }
[data-reveal-delay="4"] { transition-delay: .34s; }
[data-reveal-delay="5"] { transition-delay: .42s; }
[data-reveal-delay="6"] { transition-delay: .5s; }

/* ── 27. RTL ──────────────────────────────────────────────── */
[dir="rtl"] .hero-quote { border-inline-start: 3px solid var(--gold); }
[dir="rtl"] .why-quote  { border-inline-start: 3px solid var(--gold); border-inline-end: none; }
[dir="rtl"] .service-card::after { transform-origin: end; }
[dir="rtl"] .nav-mobile { transform: translateX(100%); }
[dir="rtl"] .nav-mobile.open { transform: none; }
[dir="rtl"] .about-float { inset-inline-start: auto; inset-inline-end: 28px; }

/* ── 28. RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-preview { gap: 52px; }
  .why-grid { gap: 52px; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .archive-card { grid-template-columns: 220px 1fr; }
}

@media (max-width: 960px) {
  .section { padding-block: 72px; }
  .nav-menu, .nav-right .lang-switch, .nav-right .btn { display: none; }
  .nav-toggle { display: flex; }
  .about-preview { grid-template-columns: 1fr; }
  .about-preview-image { aspect-ratio: 16/9; }
  .about-story { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .contact-info-panel { position: static; }
  .apply-layout { grid-template-columns: 1fr; }
  .apply-sidebar { position: static; }
  .archive-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .services-full-grid { grid-template-columns: 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .post-sticky { position: static; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-mission { padding: 52px 40px; }
}

@media (max-width: 640px) {
  :root { --nav-h: 64px; }
  .section { padding-block: 56px; }
  .hero-body { padding-block: calc(var(--nav-h) + 56px) 0; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-stats-inner { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-stat:nth-child(even) { border-inline-end: none; }
  .hero-stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .archive-card { grid-template-columns: 1fr; }
  .archive-thumb { aspect-ratio: 16/9; }
  .archive-body { padding: 20px; }
  .about-mission { padding: 40px 24px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bar { flex-direction: column; text-align: center; }
  .post-hero { min-height: 380px; }
  .page-hero { min-height: 320px; }
  .service-full-features { grid-template-columns: 1fr; }
  .section-header-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-float { display: none; }
  .services-full-grid { grid-template-columns: 1fr; }
  .form-submit { flex-direction: column; align-items: stretch; }
  .form-submit .btn { justify-content: center; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   21. NEWS / ARCHIVE — supplementary classes for archive.php and index.php
   ───────────────────────────────────────────────────────────────────────────── */

.archive-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--ice);
  border: 1.5px solid var(--border);
  text-decoration: none;
  transition: all var(--t);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.news-card-thumb {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  background: var(--navy-700);
}

.news-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card-thumb img { transform: scale(1.05); }

.news-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.news-meta {
  display: flex;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.news-meta span:not(:last-child)::after { content: '·'; margin-left: 12px; }

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: auto;
  text-decoration: none;
  transition: gap var(--t);
}

.news-read-more:hover { gap: 10px; }

.archive-pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.archive-pagination .nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--ice);
  text-decoration: none;
  transition: all var(--t);
}

.archive-pagination .page-numbers.current,
.archive-pagination .page-numbers:hover {
  background: var(--navy);
  color: #fff;
}

.archive-pagination .page-numbers.dots {
  background: transparent;
  color: var(--muted);
}

.empty-state {
  text-align: center;
  padding: 80px 40px;
}

.empty-state-icon {
  width: 80px;
  height: 80px;
  background: var(--ice);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--slate);
}

.empty-state h3 { margin-bottom: 12px; color: var(--navy); }
.empty-state p  { color: var(--muted); margin-bottom: 28px; }

/* ─────────────────────────────────────────────────────────────────────────────
   22. SINGLE POST — supplementary classes for single.php
   ───────────────────────────────────────────────────────────────────────────── */

.post-hero-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.875rem;
  opacity: .8;
  margin-top: 16px;
}

.post-hero-meta span:not(:last-child)::after { content: '·'; margin-left: 16px; }

.post-body { min-width: 0; }

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.post-tag {
  padding: 5px 14px;
  background: var(--ice);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: background var(--t);
}

.post-tag:hover { background: var(--navy); color: #fff; }

.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.post-nav-prev a,
.post-nav-next a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
}

.post-nav-next a { text-align: right; }

.post-nav-prev span,
.post-nav-next span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
}

.post-nav-prev strong,
.post-nav-next strong {
  font-size: 0.9375rem;
  color: var(--navy);
  line-height: 1.4;
}

/* Sidebar */
.post-sidebar { display: flex; flex-direction: column; gap: 24px; }

.sidebar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
}

.sidebar-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sidebar-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.sidebar-author strong { display: block; font-size: 0.9375rem; color: var(--navy); }
.sidebar-author span   { font-size: 0.8rem; color: var(--muted); }

.sidebar-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 16px;
}

.sidebar-post {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: opacity var(--t);
}

.sidebar-post:last-child { border-bottom: none; }
.sidebar-post:hover { opacity: .75; }

.sidebar-post img {
  width: 60px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.sidebar-post strong { display: block; font-size: 0.875rem; color: var(--navy); line-height: 1.4; }
.sidebar-post span   { font-size: 0.75rem; color: var(--muted); }

.sidebar-cta {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 28px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.sidebar-cta-glow {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  border-radius: 50%;
  opacity: .12;
  filter: blur(40px);
  pointer-events: none;
}

.sidebar-cta h4 { font-size: 1rem; margin-bottom: 16px; }

/* Read progress bar */
#read-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  z-index: 999;
  transition: width .1s linear;
  pointer-events: none;
}

/* ─────────────────────────────────────────────────────────────────────────────
   23. SERVICE DETAIL PAGE — for page-{slug}.php templates
   ───────────────────────────────────────────────────────────────────────────── */

.service-detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
}

.service-detail-sidebar .apply-why-card {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 32px;
  color: #fff;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

/* ─────────────────────────────────────────────────────────────────────────────
   24. ERROR PAGE — 404.php
   ───────────────────────────────────────────────────────────────────────────── */

.error-page {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 40px 0;
}

.error-code {
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 12px;
  opacity: .12;
  letter-spacing: -.04em;
}

.error-page h1 { font-size: 2rem; color: var(--navy); margin-bottom: 12px; }
.error-page p  { color: var(--muted); margin-bottom: 36px; }

.error-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .service-detail-layout { grid-template-columns: 1fr; }
  .service-detail-sidebar .apply-why-card { position: static; }
  .post-nav { grid-template-columns: 1fr; }
  .post-nav-next a { text-align: left; }
}

@media (max-width: 640px) {
  .archive-filter { gap: 8px; }
  .filter-btn { padding: 6px 14px; font-size: 0.8125rem; }
  .sidebar-cta { padding: 24px; }
  .error-actions { flex-direction: column; align-items: center; }
}
