/* ============================================
   EMF — Egyptian Federation for Mortgage Finance
   Shared stylesheet
   ============================================ */

:root {
  --navy-900: #0B1F3A;
  --navy-800: #0F2A47;
  --navy-700: #16345A;
  --navy-600: #1E406B;
  --navy-line: #234269;

  --gold-500: #C89B5C;
  --gold-400: #D4A574;
  --gold-300: #E0B989;
  --gold-soft: #F3E4CC;

  --ink-900: #14253B;
  --ink-700: #2D3E54;
  --ink-500: #5A6B82;
  --ink-400: #8190A6;
  --ink-300: #AEB9CA;

  --bg: #FFFFFF;
  --bg-soft: #F6F4EF;
  --bg-card: #FFFFFF;
  --border: #E5E1D8;
  --border-soft: #EFECE5;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;

  --shadow-sm: 0 1px 2px rgba(15,42,71,.06);
  --shadow-md: 0 4px 16px rgba(15,42,71,.08);
  --shadow-lg: 0 16px 40px rgba(15,42,71,.10);

  --container: 1240px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', 'Cairo', system-ui, sans-serif;
  font-size: 16px;
  color: var(--ink-900);
  background: var(--bg);
  direction: rtl;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 700; color: var(--ink-900); letter-spacing: -0.01em; }

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

/* ========== TOP BAR ========== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border-soft);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
}
.logo-full {
  height: 52px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav a {
  position: relative;
  padding: 8px 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-700);
  border-radius: var(--r-sm);
  transition: color .15s;
  white-space: nowrap;
}
.nav a:hover { color: var(--navy-800); }
.nav a.active { color: var(--gold-500); }

/* ── Burger button ── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--r-sm);
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
  transition: all .25s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav drawer ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 49;
  background: rgba(11,31,58,.55);
  backdrop-filter: blur(4px);
}
.mobile-nav.open { display: block; }
.mobile-nav-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: min(320px, 90vw);
  height: 100%;
  background: #fff;
  padding: 80px 0 40px;
  overflow-y: auto;
  box-shadow: 4px 0 40px rgba(11,31,58,.15);
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.mobile-nav.open .mobile-nav-inner { transform: translateX(0); }
.mobile-nav-inner a {
  display: block;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-800);
  border-bottom: 1px solid var(--border-soft);
  transition: color .15s, background .15s;
}
.mobile-nav-inner a:hover,
.mobile-nav-inner a.active { color: var(--gold-600); background: rgba(200,155,92,.05); }

/* ── Dropdown nav ── */
.nav-drop {
  position: relative;
}
.nav-drop-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-700);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: color .15s;
  background: none;
  border: none;
  font-family: inherit;
  white-space: nowrap;
}
.nav-drop-btn:hover, .nav-drop:hover .nav-drop-btn { color: var(--navy-800); }
.nav-drop-btn.active { color: var(--gold-500); }
.nav-drop-btn svg { transition: transform .2s; }
.nav-drop:hover .nav-drop-btn svg { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  min-width: 210px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 200;
}
.nav-drop:hover .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-drop-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  font-size: 14px;
  color: var(--ink-700) !important;
  font-weight: 500;
  transition: background .12s, color .12s;
  border-radius: 0;
  text-decoration: none;
}
.nav-drop-menu a:hover { background: var(--bg-soft); color: var(--navy-800) !important; }
.nav-drop-menu a.active { color: var(--gold-500) !important; font-weight: 700; background: rgba(200,155,92,.06); }
.nav-drop-menu a.active::after { display: none; }
.nav a.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold-500);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-contact {
  background: var(--navy-800);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  transition: background .15s;
}
.btn-contact:hover { background: var(--navy-700); }
.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink-700);
  transition: background .15s, color .15s;
}
.icon-btn:hover { background: var(--bg-soft); color: var(--navy-800); }
.lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-700);
  padding: 8px 10px;
  border-radius: var(--r-sm);
  transition: background .15s;
}
.lang:hover { background: var(--bg-soft); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s, background .15s, border-color .15s, color .15s;
}
.btn-primary {
  background: var(--gold-500);
  color: #fff;
}
.btn-primary:hover { background: var(--gold-400); transform: translateY(-1px); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-outline {
  background: transparent;
  color: var(--navy-800);
  border: 1.5px solid var(--navy-800);
}
.btn-outline:hover { background: var(--navy-800); color: #fff; }

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 640px;
  overflow: hidden;
  background: var(--navy-900);
}

/* Background photo layers — crossfade between slides */
.hero-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 0;
  transition: opacity 1s ease;
}
.hero-bg-layer.active { opacity: 1; z-index: 0; }

/* Dark gradient overlay — heavier on start side (right for RTL) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(7,22,41,.92) 0%,
    rgba(11,31,58,.78) 35%,
    rgba(11,31,58,.40) 60%,
    rgba(11,31,58,.05) 100%
  );
  z-index: 1;
}

/* Inner container */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Each slide's text block */
.hero-slide-text {
  position: absolute;
  max-width: 580px;
  color: #fff;
  text-align: right;
  opacity: 0;
  z-index: 1;
  transition: opacity .75s ease;
  pointer-events: none;
}
.hero-slide-text.active {
  opacity: 1;
  z-index: 3;
  pointer-events: auto;
}

/* Eyebrow label */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 18px;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--gold-500);
  flex-shrink: 0;
}

.hero h1 {
  font-size: 54px;
  line-height: 1.18;
  color: #fff;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero-slide-text p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,.80);
  margin: 0 0 34px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Slide counter */
.hero-counter {
  position: absolute;
  bottom: 40px;
  right: 48px;
  z-index: 3;
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
}
.hc-curr {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hc-sep { color: rgba(255,255,255,.35); margin: 0 2px; }

/* Prev / Next arrows */
.hero-nav {
  position: absolute;
  bottom: 36px;
  left: 48px;
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  transition: background .18s, border-color .18s;
  cursor: pointer;
}
.hero-nav button:hover {
  background: rgba(200,155,92,.25);
  border-color: var(--gold-500);
}

/* Progress dots */
.hero-dots {
  position: absolute;
  bottom: 52px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 3;
}
.hero-dots .dot {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,.28);
  transition: background .25s, width .25s;
  cursor: pointer;
  border: none;
  padding: 0;
}
.hero-dots .dot.active { background: var(--gold-500); width: 44px; }

/* ========== STATS STRIP ========== */
.stats {
  background: var(--navy-800);
  color: #fff;
  border-top: 1px solid var(--navy-line);
}
.stats-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 32px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  position: relative;
}
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,.12);
}
.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(200,155,92,.12);
  display: grid;
  place-items: center;
  color: var(--gold-500);
  flex-shrink: 0;
}
.stat-num { font-size: 30px; font-weight: 800; color: var(--gold-500); line-height: 1; }
.stat-label { font-size: 14px; color: rgba(255,255,255,.78); margin-top: 6px; }

/* ========== SECTION HEAD ========== */
.section { padding: 80px 0; }
.section-soft { background: var(--bg-soft); }

.section-head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-inline: auto;
}
.eyebrow {
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  color: var(--gold-500);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.section-head h2 {
  font-size: 34px;
  line-height: 1.2;
  color: var(--navy-800);
  margin-bottom: 16px;
}
.section-head p {
  color: var(--ink-500);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

/* ========== SERVICES GRID ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 28px 20px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-300);
}
.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  color: var(--gold-500);
  display: grid;
  place-items: center;
}
.service-card h3 {
  font-size: 16px;
  color: var(--navy-800);
  margin-bottom: 10px;
  line-height: 1.35;
}
.service-card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-500);
  margin: 0 0 18px;
  flex: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-500);
  padding-top: 12px;
  border-top: 1px solid var(--border-soft);
  margin: 0 -20px -18px;
  padding-bottom: 14px;
  transition: color .15s, background .15s;
}
.service-link:hover { color: var(--navy-800); background: var(--bg-soft); }

/* ========== REPORTS / EVENTS ========== */
.row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.row-head h3 {
  font-size: 22px;
  color: var(--navy-800);
}
.view-all {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-500);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.view-all:hover { color: var(--navy-800); }

.reports-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.1fr;
  gap: 18px;
  margin-bottom: 24px;
}
.report-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.report-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.report-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--navy-800);
  overflow: hidden;
}
.report-img .tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--navy-800);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
}
.report-body { padding: 16px 16px 0; flex: 1; display: flex; flex-direction: column; }
.report-body h4 {
  font-size: 14px;
  color: var(--navy-800);
  line-height: 1.5;
  margin-bottom: 8px;
}
.report-body p {
  font-size: 12px;
  color: var(--ink-500);
  line-height: 1.65;
  margin: 0 0 14px;
  flex: 1;
}
.read-more {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-500);
  padding: 12px 16px;
  border-top: 1px solid var(--border-soft);
  margin: 0 -16px;
  transition: background .15s;
}
.read-more:hover { background: var(--bg-soft); }

.featured-report {
  background: var(--navy-800);
  border-radius: var(--r-md);
  padding: 22px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.featured-report::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,31,58,.4) 0%, rgba(11,31,58,.95) 100%),
    linear-gradient(180deg, #122E4E 0%, #1E456E 100%);
  z-index: 0;
}
.featured-report > * { position: relative; z-index: 1; }
.featured-report .tag {
  align-self: flex-start;
  background: var(--gold-500);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.featured-report h4 { color: #fff; font-size: 22px; line-height: 1.3; margin-bottom: 14px; }
.featured-report p { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,.8); margin: 0 0 18px; }
.featured-report .btn {
  align-self: flex-start;
  padding: 10px 18px;
  font-size: 13px;
}

/* ========== EVENTS ========== */
.events-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.1fr;
  gap: 18px;
}
.event-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.event-img {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--navy-800);
}
.event-img .tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--navy-800);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
}
.event-body { padding: 14px 16px 0; }
.event-date { font-size: 11px; color: var(--ink-400); margin-bottom: 6px; font-weight: 600; }
.event-body h4 { font-size: 14px; color: var(--navy-800); line-height: 1.45; margin-bottom: 6px; }
.event-loc { font-size: 12px; color: var(--ink-500); margin: 0 0 14px; }

.events-list {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 6px 0;
  display: flex;
  flex-direction: column;
}
.event-list-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-soft);
  align-items: center;
}
.event-list-item:last-of-type { border-bottom: none; }
.elist-date {
  background: var(--bg-soft);
  border-radius: var(--r-sm);
  text-align: center;
  padding: 8px 4px;
  border: 1px solid var(--border-soft);
}
.elist-date .d { display: block; font-size: 18px; font-weight: 800; color: var(--navy-800); line-height: 1; }
.elist-date .m { display: block; font-size: 11px; color: var(--ink-500); margin-top: 4px; }
.elist-body h5 { font-size: 13px; color: var(--navy-800); line-height: 1.5; margin-bottom: 4px; font-weight: 700; }
.elist-body p { font-size: 11px; color: var(--ink-500); margin: 0; }
.events-list .view-all {
  padding: 14px 18px;
  border-top: 1px solid var(--border-soft);
  margin-top: auto;
  justify-content: flex-start;
}

/* ========== FOOTER ========== */
.cta-band {
  background: var(--navy-800);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 35%;
  opacity: .08;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300' fill='none' stroke='%23C89B5C' stroke-width='1.5'><rect x='40' y='100' width='80' height='180'/><rect x='140' y='60' width='100' height='220'/><rect x='260' y='40' width='90' height='240'/><line x1='60' y1='130' x2='100' y2='130'/><line x1='60' y1='160' x2='100' y2='160'/><line x1='60' y1='190' x2='100' y2='190'/><line x1='60' y1='220' x2='100' y2='220'/><line x1='60' y1='250' x2='100' y2='250'/><line x1='160' y1='90' x2='220' y2='90'/><line x1='160' y1='120' x2='220' y2='120'/><line x1='160' y1='150' x2='220' y2='150'/><line x1='160' y1='180' x2='220' y2='180'/><line x1='160' y1='210' x2='220' y2='210'/><line x1='160' y1='240' x2='220' y2='240'/><line x1='280' y1='70' x2='330' y2='70'/><line x1='280' y1='100' x2='330' y2='100'/><line x1='280' y1='130' x2='330' y2='130'/><line x1='280' y1='160' x2='330' y2='160'/><line x1='280' y1='190' x2='330' y2='190'/><line x1='280' y1='220' x2='330' y2='220'/><line x1='280' y1='250' x2='330' y2='250'/></svg>");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}
.cta-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 70px 24px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-text h2 { color: #fff; font-size: 36px; margin-bottom: 18px; }
.cta-text p { color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.8; margin: 0 0 26px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.value {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.value-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-500);
  display: grid;
  place-items: center;
  color: var(--gold-500);
  flex-shrink: 0;
}
.value h4 { color: #fff; font-size: 16px; margin-bottom: 4px; }
.value p { color: rgba(255,255,255,.72); font-size: 13px; margin: 0; line-height: 1.55; }

footer.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.85);
  padding: 60px 0 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
}
.footer-col h4 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 22px;
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col li a {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  transition: color .15s;
}
.footer-col li a:hover { color: var(--gold-500); }

.newsletter p { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.7; margin: 0 0 14px; }
.newsletter-form {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}
.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 13px;
  outline: none;
  transition: border-color .15s, background .15s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input:focus { border-color: var(--gold-500); background: rgba(255,255,255,.1); }
.newsletter-form button {
  background: var(--gold-500);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 13px;
  transition: background .15s;
}
.newsletter-form button:hover { background: var(--gold-400); }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.7);
  transition: background .15s, color .15s;
}
.socials a:hover { background: var(--gold-500); color: #fff; }

.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-info .line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}
.contact-info .ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(200,155,92,.12);
  color: var(--gold-500);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
}
.footer-bottom-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.footer-bottom-inner .design { display: flex; align-items: center; gap: 8px; }
.footer-links-bar {
  max-width: var(--container);
  margin: 12px auto 0;
  padding: 10px 24px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links-bar a {
  color: rgba(255,255,255,.5);
  font-size: 12px;
  text-decoration: none;
  transition: color .15s;
}
.footer-links-bar a:hover { color: var(--gold-400); }

/* ========== PAGE HEADER (interior pages) ========== */
.page-head {
  background: var(--navy-800) url('placeholder.png') center/cover no-repeat;
  color: #fff;
  padding: 60px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,25,60,.82) 0%, rgba(10,35,80,.70) 100%),
    radial-gradient(circle at 80% 30%, rgba(200,155,92,.18), transparent 50%);
}
.page-head-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  margin-bottom: 14px;
}
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: var(--gold-500); }
.breadcrumb .sep { opacity: .5; }
.page-head h1 {
  color: #fff;
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 12px;
}
.page-head p {
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
  max-width: 640px;
}

/* ========== CARDS / GENERIC ========== */
.card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 28px;
}
.list-clean { list-style: none; padding: 0; margin: 0; }

/* CSS placeholder imagery */
.img-city {
  background:
    linear-gradient(180deg, rgba(11,31,58,.12) 0%, rgba(11,31,58,.72) 100%),
    url('placeholder.png') center/cover no-repeat;
  position: relative;
}
.img-city::before { display: none; }
.img-meeting {
  background:
    linear-gradient(180deg, rgba(11,31,58,.08) 0%, rgba(11,31,58,.60) 100%),
    url('placeholder.png') center/cover no-repeat;
  position: relative;
}
.img-meeting::before { display: none; }
.img-house {
  background:
    linear-gradient(180deg, rgba(11,31,58,.10) 0%, rgba(11,31,58,.65) 100%),
    url('placeholder.png') center/cover no-repeat;
  position: relative;
}
.img-house::before { display: none; }
.img-conf {
  background:
    linear-gradient(180deg, rgba(11,31,58,.10) 0%, rgba(11,31,58,.65) 100%),
    url('placeholder.png') center/cover no-repeat;
  position: relative;
}
.img-conf::before { display: none; }

/* ========== GSAP / ANIMATION LAYER ========== */

/* Three.js hero canvas */
#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  width: 100% !important;
  height: 100% !important;
}

/* Hero inner above canvas */
.hero-inner   { z-index: 3; }
.hero-nav     { z-index: 4; }
.hero-dots    { z-index: 4; }
.hero-counter { z-index: 4; }

/* Hero slide text transitions */
.hero-slide-text { will-change: opacity, transform; }

/* Navbar glassmorphism on scroll */
.topbar {
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.topbar.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(15,42,71,.07);
  border-bottom-color: transparent;
}

/* Stats section radial glow */
.stats { position: relative; overflow: hidden; }
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 90% at 12% 50%, rgba(200,155,92,.08) 0%, transparent 100%),
    radial-gradient(ellipse 55% 90% at 88% 50%, rgba(200,155,92,.06) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.stats-grid { position: relative; z-index: 1; }
.stat-num { font-size: 32px; }

/* Gold top-border sweep on cards */
.service-card,
.event-card {
  position: relative;
  overflow: hidden;
}
.service-card::before,
.event-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-500));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
  z-index: 1;
}
.service-card:hover::before,
.event-card:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* CTA band richer gradient */
.cta-band {
  background: linear-gradient(135deg, var(--navy-900) 0%, #122E54 60%, var(--navy-700) 100%);
}

/* Section soft directional gradient */
.section-soft {
  background: linear-gradient(180deg, #F0EDE6 0%, var(--bg) 100%);
}

/* Goal cards */
.goals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.goal-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.goal-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-500));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}
.goal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(200,155,92,.25); }
.goal-card:hover::before { transform: scaleX(1); transform-origin: left; }
.goal-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: rgba(200,155,92,.10);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--gold-500);
  transition: background .25s ease;
}
.goal-card:hover .goal-icon { background: rgba(200,155,92,.18); }
.goal-card h4 { font-size: 16px; font-weight: 700; color: var(--navy-800); margin: 0 0 8px; line-height: 1.4; }
.goal-card p  { font-size: 13px; color: var(--ink-500); line-height: 1.7; margin: 0; }

/* Partner cards */
.partner-card {
  flex: 1;
  min-width: 160px;
  max-width: 210px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.partner-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(200,155,92,.25);
}
.partner-card img {
  height: 60px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
.partner-card span {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-800);
  text-align: center;
  line-height: 1.5;
}

/* Button shimmer */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -75%;
  width: 50%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: skewX(-20deg);
  transition: left .55s ease;
}
.btn:hover::after { left: 125%; }

/* Eyebrow pill in section heads */
.section-head .eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-500);
  background: rgba(200,155,92,.10);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.cta-band .eyebrow {
  font-size: 13px;
  background: rgba(200,155,92,.15);
  padding: 5px 16px;
  border-radius: 20px;
}

/* Value icon hover ring */
.value-icon { transition: transform .2s ease, box-shadow .2s ease; }
.value:hover .value-icon {
  transform: scale(1.1);
  box-shadow: 0 0 0 6px rgba(200,155,92,.12);
}

/* ── Intersection Observer scroll reveal ── */
.reveal-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hero child reveal (CSS transition, triggered via class) ── */
.hero-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-reveal--in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive goals */
@media (max-width: 1100px) {
  .goals-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .goals-grid { grid-template-columns: 1fr; }
  #hero-canvas { display: none; }
  .goal-card { padding: 22px 18px; }
}

/* ========== UTILITY ========== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .nav { display: none; }
  .burger { display: flex; }
  .nav a { padding: 8px 10px; font-size: 14px; }
  .hero h1 { font-size: 42px; }
  .hero-inner { padding: 0 32px; }
  .hero-counter { right: 32px; }
  .hero-nav { left: 32px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .reports-row, .events-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-grid { grid-template-columns: 1fr; gap: 30px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:not(:last-child)::after { display: none; }
}
@media (max-width: 700px) {
  .nav, .lang { display: none; }
  .burger { display: flex; }
  .btn-contact { padding: 7px 10px; font-size: 11px; }
  .hero { height: 520px; }
  .hero-inner { padding: 0 20px; }
  .hero h1 { font-size: 30px; }
  .hero-slide-text { max-width: 100%; }
  .hero-eyebrow { font-size: 11px; }
  .hero-counter { right: 20px; bottom: 36px; }
  .hc-curr { font-size: 22px; }
  .hero-nav { left: 20px; bottom: 32px; }
  .hero-nav button { width: 36px; height: 36px; }
  .hero-dots { bottom: 46px; }
  .section-head h2 { font-size: 28px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .reports-row, .events-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .page-head h1 { font-size: 30px; }
}
