﻿/* â”€â”€â”€ RESET & TOKENS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  --blue:      #1686d9;
  --blue-dk:   #0c4f8d;
  --blue-soft: #e8f4fe;
  --navy:      #0a1f35;
  --navy-lt:   #132d4a;
  --steel:     #5a6475;
  --ink:       #0f1923;
  --muted:     #5e6e80;
  --paper:     #f4f7fb;
  --surface:   #ffffff;
  --line:      #dde7ef;
  --teal:      #0891b2;
  --radius:    12px;
  --radius-lg: 20px;
  --ease:      cubic-bezier(.4,0,.2,1);
  --dur:       260ms;
  --shadow-sm: 0 2px 8px rgba(10,31,53,.07);
  --shadow-md: 0 8px 28px rgba(10,31,53,.11);
  --shadow-lg: 0 20px 56px rgba(10,31,53,.15);
  --shadow-xl: 0 30px 80px rgba(10,31,53,.18);
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; }

body {
  font-family:"Inter","Noto Sans Ethiopic",system-ui,-apple-system,sans-serif;
  color:var(--ink);
  background:var(--surface);
  line-height:1.65;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
}

a { color:inherit; text-decoration:none; }
img { display:block; max-width:100%; }
ul  { list-style:none; }
address { font-style:normal; }
p   { overflow-wrap:anywhere; }

/* â”€â”€â”€ HEADINGS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
h1,h2,h3 { overflow-wrap:anywhere; line-height:1.05; }

h1,h2 {
  font-family:"Playfair Display",Georgia,serif;
  font-weight:700;
  letter-spacing:-.02em;
}

h1  { font-size:clamp(32px,4.2vw,58px); }
h2  { font-size:clamp(28px,3.8vw,52px); }
h3  { font-size:18px; font-weight:600; line-height:1.3; }

h1 em { font-style:italic; color:#60b8ff; }

/* â”€â”€â”€ EYEBROW â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.eyebrow {
  display:inline-block;
  margin-bottom:14px;
  color:var(--blue);
  font-size:11px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.eyebrow-light { color:rgba(255,255,255,.65); }
.eyebrow-blue  { color:#60b8ff; }

/* â”€â”€â”€ BUTTONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn-primary,
.btn-ghost,
.btn-light {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:13px 26px;
  border-radius:var(--radius);
  font-size:15px;
  font-weight:600;
  white-space:nowrap;
  cursor:pointer;
  border:none;
  transition:transform var(--dur) var(--ease),
             box-shadow var(--dur) var(--ease),
             background var(--dur) var(--ease),
             color var(--dur) var(--ease);
}

.btn-primary {
  color:#fff;
  background:linear-gradient(135deg,var(--blue),var(--blue-dk));
  box-shadow:0 8px 28px rgba(22,134,217,.32);
}
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 14px 40px rgba(22,134,217,.44); }

.btn-ghost {
  color:rgba(255,255,255,.9);
  background:rgba(255,255,255,.12);
  border:1.5px solid rgba(255,255,255,.28);
  backdrop-filter:blur(8px);
}
.btn-ghost:hover { background:rgba(255,255,255,.2); border-color:rgba(255,255,255,.5); }

.btn-light {
  color:var(--navy);
  background:#fff;
  box-shadow:var(--shadow-md);
}
.btn-light:hover { background:var(--blue-soft); transform:translateY(-2px); }

.wide { width:100%; justify-content:center; }

/* â”€â”€â”€ SCROLL REVEAL â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
[data-reveal] {
  opacity:0;
  transform:translateY(26px);
  transition:opacity 580ms var(--ease), transform 580ms var(--ease);
}
[data-reveal].revealed { opacity:1; transform:none; }

/* â”€â”€â”€ HEADER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-header {
  position:sticky;
  top:0;
  z-index:100;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px clamp(20px,5vw,80px);
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(221,231,239,.6);
  transition:box-shadow var(--dur) var(--ease);
}
.site-header.scrolled { box-shadow:0 4px 24px rgba(10,31,53,.1); }

.brand {
  display:inline-flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}
.brand-logo {
  width:66px; height:44px;
  object-fit:contain;
  border-radius:8px;
}
.brand-text strong {
  display:block;
  color:var(--navy);
  font-size:16px;
  font-weight:700;
  font-family:"Playfair Display",serif;
  line-height:1.1;
}
.brand-text small {
  display:block;
  color:var(--steel);
  font-size:11px;
  font-weight:500;
  margin-top:2px;
}

.main-nav {
  display:flex;
  gap:clamp(14px,2.4vw,34px);
}
.main-nav a {
  position:relative;
  color:var(--steel);
  font-size:14px;
  font-weight:600;
  padding-bottom:4px;
  transition:color var(--dur) var(--ease);
}
.main-nav a::after {
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:100%; height:2px;
  background:var(--blue);
  border-radius:2px;
  transform:scaleX(0);
  transform-origin:left;
  transition:transform var(--dur) var(--ease);
}
.main-nav a:hover { color:var(--blue-dk); }
.main-nav a:hover::after { transform:scaleX(1); }

.header-right {
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}
.header-call {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 20px;
  background:linear-gradient(135deg,var(--blue),var(--blue-dk));
  color:#fff;
  border-radius:var(--radius);
  font-size:14px;
  font-weight:600;
  box-shadow:0 6px 20px rgba(22,134,217,.26);
  transition:transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.header-call:hover { transform:translateY(-1px); box-shadow:0 10px 28px rgba(22,134,217,.36); }

.menu-toggle {
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:38px; height:38px;
  padding:8px;
  background:none;
  border:1.5px solid var(--line);
  border-radius:9px;
  cursor:pointer;
}
.menu-toggle span {
  display:block;
  width:100%; height:2px;
  background:var(--navy);
  border-radius:2px;
  transition:all var(--dur) var(--ease);
}
.menu-toggle.active span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity:0; transform:scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* â”€â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  position:relative;
  min-height:100svh;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  overflow:hidden;
}
.hero-bg { position:absolute; inset:0; }
.hero-bg img { width:100%; height:100%; object-fit:cover; }
.hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(105deg,rgba(6,16,34,.9) 0%,rgba(8,22,46,.72) 55%,rgba(8,16,34,.55) 100%);
}

.hero-content {
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1fr auto;
  gap:clamp(28px,4vw,72px);
  align-items:flex-end;
  padding:clamp(72px,11vw,140px) clamp(20px,5vw,80px) clamp(56px,7vw,88px);
}
.hero-copy { max-width:680px; }

.eyebrow-badge {
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:6px 14px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.2);
  border-radius:50px;
  color:rgba(255,255,255,.88);
  font-size:12px;
  font-weight:600;
  letter-spacing:.05em;
  margin-bottom:22px;
  backdrop-filter:blur(8px);
}
.live-dot {
  width:7px; height:7px;
  background:#4ade80;
  border-radius:50%;
  animation:ldot 2.2s ease infinite;
}
@keyframes ldot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.55; transform:scale(1.35); }
}

.hero-copy h1   { color:#fff; margin-bottom:18px; }
.hero-copy .lead {
  color:rgba(255,255,255,.76);
  font-size:clamp(16px,1.9vw,20px);
  margin-bottom:34px;
  max-width:540px;
  line-height:1.75;
}
.hero-actions { display:flex; flex-wrap:wrap; gap:12px; }

.hero-stats {
  display:flex;
  flex-direction:column;
  gap:10px;
  min-width:160px;
}
.stat-card {
  padding:18px 22px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.16);
  border-radius:var(--radius);
  backdrop-filter:blur(14px);
  text-align:center;
  color:#fff;
}
.stat-card strong {
  display:block;
  font-size:30px; font-weight:700;
  font-family:"Playfair Display",serif;
  line-height:1;
}
.stat-card span {
  display:block;
  font-size:12px;
  color:rgba(255,255,255,.65);
  margin-top:4px;
  font-weight:500;
}

.scroll-hint {
  position:absolute;
  bottom:30px; left:50%;
  transform:translateX(-50%);
  z-index:2;
  width:25px; height:40px;
  border:2px solid rgba(255,255,255,.35);
  border-radius:13px;
  display:flex;
  justify-content:center;
  padding-top:6px;
}
.scroll-hint span {
  width:3px; height:7px;
  background:rgba(255,255,255,.65);
  border-radius:2px;
  animation:shint 1.9s ease infinite;
}
@keyframes shint {
  0%   { opacity:1; transform:translateY(0); }
  100% { opacity:0; transform:translateY(11px); }
}

/* â”€â”€â”€ TRUST STRIP â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.trust-strip {
  background:#fff;
  border-bottom:1px solid var(--line);
  padding:0 clamp(20px,5vw,80px);
}
.trust-inner {
  display:flex;
  align-items:stretch;
  max-width:1200px;
  margin:0 auto;
}
.trust-item {
  display:flex;
  align-items:center;
  gap:16px;
  flex:1;
  padding:26px 0;
}
.trust-icon {
  flex-shrink:0;
  width:46px; height:46px;
  background:var(--blue-soft);
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  color:var(--blue-dk);
}
.trust-icon svg { width:22px; height:22px; }
.trust-item strong { display:block; color:var(--navy); font-size:15px; font-weight:700; margin-bottom:3px; }
.trust-item span   { font-size:13px; color:var(--muted); }
.trust-divider {
  width:1px; align-self:stretch;
  background:var(--line);
  margin:0 28px;
}

/* â”€â”€â”€ SECTION SHARED â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section { padding:clamp(64px,8.5vw,112px) clamp(20px,5vw,80px); }

.section-header {
  text-align:center;
  max-width:620px;
  margin:0 auto clamp(44px,5.5vw,68px);
}
.section-header h2 { color:var(--navy); margin-bottom:14px; }
.section-desc      { font-size:17px; color:var(--muted); line-height:1.75; }

/* â”€â”€â”€ SERVICES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.services-section { background:var(--paper); }

.services-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.service-card {
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:26px;
  box-shadow:var(--shadow-sm);
  transition:transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.service-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); }
.service-card h3    { color:var(--navy); margin-bottom:8px; }
.service-card p     { font-size:14px; color:var(--muted); line-height:1.7; }

.service-icon {
  width:50px; height:50px;
  background:var(--blue-soft);
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  color:var(--blue-dk);
  margin-bottom:18px;
}
.service-icon svg { width:26px; height:26px; }

.service-num {
  display:inline-block;
  font-size:11px; font-weight:700;
  letter-spacing:.1em;
  color:var(--blue);
  margin-bottom:6px;
}

/* Featured card */
.service-featured {
  grid-column:span 2;
  display:grid;
  grid-template-columns:1fr 1fr;
  padding:0; overflow:hidden;
}
.service-img { position:relative; min-height:260px; }
.service-img img { width:100%; height:100%; object-fit:cover; }
.service-content {
  padding:30px 26px;
  display:flex; flex-direction:column; justify-content:center;
}
.service-badge {
  display:inline-flex;
  align-items:center;
  margin-top:14px;
  padding:5px 12px;
  background:var(--blue-soft);
  color:var(--blue-dk);
  border-radius:50px;
  font-size:11px; font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  width:fit-content;
}

/* Image-only card */
.service-image-only {
  padding:0; overflow:hidden;
  position:relative;
  min-height:220px;
}
.service-image-only img {
  width:100%; height:100%;
  object-fit:cover;
  transition:transform 400ms var(--ease);
}
.service-image-only:hover img { transform:scale(1.06); }
.image-label {
  position:absolute;
  bottom:14px; left:14px;
  padding:5px 13px;
  background:rgba(8,20,40,.75);
  backdrop-filter:blur(8px);
  color:#fff;
  border-radius:50px;
  font-size:12px; font-weight:600;
}

/* Accent card */
.service-accent {
  background:linear-gradient(135deg,var(--blue-dk),var(--navy));
  border-color:transparent; color:#fff;
}
.service-accent h3              { color:#fff; }
.service-accent p               { color:rgba(255,255,255,.72); }
.service-accent .service-num    { color:rgba(255,255,255,.45); }
.service-icon-inv {
  background:rgba(255,255,255,.15);
  color:#fff;
}

/* â”€â”€â”€ COUNTRIES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.countries-section {
  position:relative;
  padding:clamp(64px,8.5vw,112px) clamp(20px,5vw,80px);
  overflow:hidden;
}
.countries-bg { position:absolute; inset:0; }
.countries-bg img { width:100%; height:100%; object-fit:cover; }
.countries-overlay {
  position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(6,14,38,.94),rgba(10,65,120,.86));
}
.countries-inner {
  position:relative; z-index:1;
  display:grid;
  grid-template-columns:1fr 420px;
  gap:clamp(28px,5vw,72px);
  align-items:center;
  max-width:1200px; margin:0 auto;
}
.countries-copy h2 { color:#fff; margin-bottom:14px; }
.countries-copy p  { color:rgba(255,255,255,.72); font-size:17px; line-height:1.75; }

.countries-panel {
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.18);
  border-radius:var(--radius-lg);
  padding:28px;
  backdrop-filter:blur(18px);
}
.panel-label {
  font-size:11px; font-weight:700;
  letter-spacing:.12em; text-transform:uppercase;
  color:rgba(255,255,255,.55);
  margin-bottom:18px;
}
.country-list { display:flex; flex-direction:column; gap:10px; margin-bottom:26px; }
.country-list li {
  display:flex; align-items:center; gap:12px;
  padding:13px 16px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.14);
  border-radius:var(--radius);
  color:#fff; font-weight:600; font-size:15px;
  transition:background var(--dur) var(--ease);
  cursor:default;
}
.country-list li:hover { background:rgba(255,255,255,.17); }
.cflag  { font-size:20px; }
.cname  { flex:1; }
.carrow { width:16px; height:16px; color:rgba(255,255,255,.45); flex-shrink:0; }
.cmore  { border-style:dashed; border-color:rgba(255,255,255,.22); }

/* â”€â”€â”€ OFFICE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.office-section {
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:600px;
}
.office-visual { position:relative; overflow:hidden; }
.office-visual img { width:100%; height:100%; object-fit:cover; }
.office-overlay {
  position:absolute; inset:0;
  background:linear-gradient(180deg,rgba(6,14,34,.04),rgba(6,14,34,.58));
}
.office-badge {
  position:absolute;
  bottom:28px; left:28px; right:28px;
  display:flex; align-items:flex-start; gap:14px;
  padding:18px 20px;
  background:rgba(6,14,34,.8);
  border:1px solid rgba(255,255,255,.14);
  border-radius:var(--radius);
  backdrop-filter:blur(16px);
  color:#fff;
}
.office-badge svg  { width:20px; height:20px; flex-shrink:0; margin-top:3px; color:var(--blue); }
.office-badge span {
  display:block; font-size:11px; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase;
  color:rgba(255,255,255,.55); margin-bottom:4px;
}
.office-badge strong {
  font-size:17px; font-family:"Playfair Display",serif;
}

.office-copy {
  padding:clamp(44px,6.5vw,88px) clamp(28px,4.5vw,68px);
  background:var(--paper);
  display:flex; flex-direction:column; justify-content:center;
}
.office-copy h2    { color:var(--navy); margin-bottom:14px; }
.office-copy > p   { color:var(--muted); font-size:16px; margin-bottom:34px; line-height:1.75; }

.office-steps { display:flex; flex-direction:column; gap:0; margin-bottom:38px; }
.office-step {
  display:flex; gap:18px;
  padding-bottom:26px;
  position:relative;
}
.office-step:not(:last-child)::before {
  content:"";
  position:absolute;
  left:19px; top:40px; bottom:0;
  width:2px; background:var(--line);
}
.ostep-num {
  flex-shrink:0;
  width:40px; height:40px;
  background:linear-gradient(135deg,var(--blue),var(--blue-dk));
  color:#fff; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:12px; font-weight:700; z-index:1;
}
.ostep-text strong {
  display:block; color:var(--navy);
  font-size:16px; font-weight:700;
  margin-bottom:5px; padding-top:9px;
}
.ostep-text p { font-size:14px; color:var(--muted); }

/* â”€â”€â”€ PROCESS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.process-section {
  padding:clamp(64px,8.5vw,112px) clamp(20px,5vw,80px);
  background:var(--navy);
}
.process-section .section-header h2 { color:#fff; }
.process-section .section-desc      { color:rgba(255,255,255,.6); }

.process-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:2px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:rgba(255,255,255,.06);
}
.process-step {
  position:relative;
  padding:38px 28px;
  background:rgba(255,255,255,.04);
  transition:background var(--dur) var(--ease);
}
.process-step:hover { background:rgba(255,255,255,.08); }
.pstep-circle {
  width:50px; height:50px;
  background:linear-gradient(135deg,var(--blue),var(--teal));
  color:#fff; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:14px; font-weight:700;
  margin-bottom:26px;
  box-shadow:0 8px 22px rgba(22,134,217,.38);
}
.pstep-connector {
  position:absolute;
  top:56px; right:-1px;
  width:2px; height:36px;
  background:rgba(255,255,255,.14);
}
.process-step:last-child .pstep-connector { display:none; }
.process-step h3 { color:#fff; margin-bottom:10px; font-size:18px; }
.process-step p  { color:rgba(255,255,255,.62); font-size:14px; line-height:1.68; }

/* â”€â”€â”€ IMAGE BAND â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.image-band {
  position:relative;
  min-height:460px;
  display:flex; align-items:center;
  overflow:hidden;
}
.image-band img {
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover; z-index:0;
}
.band-overlay {
  position:absolute; inset:0;
  background:linear-gradient(90deg,rgba(6,14,44,.9) 0%,rgba(6,14,44,.55) 58%,transparent 100%);
  z-index:1;
}
.band-content {
  position:relative; z-index:2;
  padding:clamp(44px,7vw,88px) clamp(20px,5vw,80px);
  max-width:640px;
}
.band-content h2 { color:#fff; margin-bottom:28px; }

/* â”€â”€â”€ CONTACT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-section {
  display:grid;
  grid-template-columns:1fr 400px;
  gap:clamp(28px,5vw,72px);
  align-items:center;
  padding:clamp(64px,8.5vw,112px) clamp(20px,5vw,80px);
  background:var(--paper);
}
.contact-copy h2   { color:var(--navy); margin-bottom:14px; }
.contact-copy > p  { font-size:17px; color:var(--muted); margin-bottom:34px; line-height:1.75; }

.contact-details   { display:flex; flex-direction:column; gap:18px; }
.contact-detail {
  display:flex; align-items:flex-start; gap:14px;
}
.cdetail-icon {
  flex-shrink:0;
  width:44px; height:44px;
  background:var(--blue-soft);
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  color:var(--blue-dk);
}
.cdetail-icon svg { width:20px; height:20px; }
.contact-detail strong { display:block; color:var(--navy); font-size:14px; font-weight:700; margin-bottom:3px; }
.contact-detail span   { font-size:14px; color:var(--muted); }

.contact-panel {
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:34px;
  box-shadow:var(--shadow-xl);
}
.cpanel-logo { margin-bottom:20px; }
.cpanel-logo img { width:110px; height:auto; border-radius:8px; }
.cpanel-tag  { font-size:14px; color:var(--muted); margin-bottom:10px; }

.phone-link {
  display:block;
  font-size:clamp(24px,3.8vw,36px);
  font-weight:800;
  color:var(--navy);
  font-family:"Playfair Display",serif;
  line-height:1; margin-bottom:10px;
  transition:color var(--dur) var(--ease);
}
.phone-link:hover { color:var(--blue); }

address {
  font-size:14px; color:var(--muted);
  line-height:1.7; margin-bottom:26px;
}

/* â”€â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-footer { background:var(--navy); }

.footer-inner {
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:clamp(28px,4vw,60px);
  padding:clamp(44px,6vw,72px) clamp(20px,5vw,80px) clamp(28px,4vw,44px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-logo {
  width:76px; height:auto;
  border-radius:8px; margin-bottom:14px;
}
.footer-brand p {
  font-size:14px;
  color:rgba(255,255,255,.5);
  max-width:270px; line-height:1.7;
}
.footer-col strong {
  display:block; color:#fff;
  font-size:13px; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase;
  margin-bottom:14px;
}
.footer-col nav {
  display:flex; flex-direction:column; gap:2px;
}
.footer-col a {
  display:block; font-size:14px;
  color:rgba(255,255,255,.52);
  padding:5px 0;
  transition:color var(--dur) var(--ease);
}
.footer-col a:hover { color:#fff; }
.footer-col p { font-size:14px; color:rgba(255,255,255,.5); margin-bottom:10px; line-height:1.65; }

.footer-bottom {
  padding:18px clamp(20px,5vw,80px);
}
.footer-bottom p { font-size:13px; color:rgba(255,255,255,.32); margin:0; }

/* â”€â”€â”€ FLOATING CTA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.float-cta {
  position:fixed;
  bottom:26px; right:26px;
  z-index:50;
  width:56px; height:56px;
  background:linear-gradient(135deg,#25d366,#128c7e);
  color:#fff; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 26px rgba(37,211,102,.42);
  transition:transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  animation:fpulse 3.2s ease infinite;
}
.float-cta:hover { transform:scale(1.1); box-shadow:0 12px 34px rgba(37,211,102,.54); }
@keyframes fpulse {
  0%,100% { box-shadow:0 8px 26px rgba(37,211,102,.42); }
  50%      { box-shadow:0 8px 26px rgba(37,211,102,.66),0 0 0 10px rgba(37,211,102,.1); }
}

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width:1140px) {
  .services-grid        { grid-template-columns:repeat(2,1fr); }
  .service-featured     { grid-column:span 2; }
  .countries-inner      { grid-template-columns:1fr; max-width:700px; }
  .office-section       { grid-template-columns:1fr; }
  .office-visual        { min-height:440px; }
  .process-grid         { grid-template-columns:repeat(2,1fr); }
  .pstep-connector      { display:none; }
  .contact-section      { grid-template-columns:1fr; }
  .footer-inner         { grid-template-columns:1fr 1fr; }
  .footer-brand         { grid-column:span 2; }
}

@media (max-width:780px) {
  .menu-toggle { display:flex; }

  .main-nav {
    position:fixed;
    top:0; right:0; bottom:0;
    width:min(78vw,300px);
    flex-direction:column;
    background:#fff;
    padding:80px 28px 32px;
    gap:0;
    box-shadow:-8px 0 40px rgba(10,31,53,.14);
    transform:translateX(100%);
    transition:transform var(--dur) var(--ease);
    z-index:99;
  }
  .main-nav.open { transform:translateX(0); }
  .main-nav a {
    font-size:17px; padding:13px 0;
    border-bottom:1px solid var(--line);
  }
  .main-nav a::after { display:none; }

  .header-call { font-size:12px; padding:9px 14px; }

  .hero-content         { grid-template-columns:1fr; }
  .hero-stats           { flex-direction:row; min-width:0; }
  .stat-card            { flex:1; }

  .trust-inner          { flex-direction:column; align-items:stretch; padding:0; }
  .trust-item           { padding:18px 0; }
  .trust-divider        { width:100%; height:1px; margin:0; }

  .service-featured     { grid-template-columns:1fr; grid-column:span 2; }
  .service-img          { min-height:200px; }

  .office-visual        { min-height:360px; }

  .footer-inner         { grid-template-columns:1fr; }
  .footer-brand         { grid-column:auto; }

  .float-cta            { bottom:20px; right:20px; }
}

@media (max-width:520px) {
  .hero-stats           { flex-direction:column; }
  .services-grid        { grid-template-columns:1fr; }
  .service-featured     { grid-column:span 1; }
  .process-grid         { grid-template-columns:1fr; }
  .countries-inner      { grid-template-columns:1fr; }
  .countries-panel      { padding:22px 18px; }
  .contact-section      { grid-template-columns:1fr; }
  .contact-panel        { padding:26px 20px; }
}

/* ─── FEEDBACK BUTTON ────────────────────────────────── */
.feedback-btn {
  position:fixed;
  bottom:96px; right:26px;
  z-index:50;
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:11px 18px;
  background:var(--navy);
  color:#fff;
  border:none;
  border-radius:50px;
  font-size:13px;
  font-weight:600;
  font-family:inherit;
  cursor:pointer;
  box-shadow:var(--shadow-lg);
  transition:transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.feedback-btn:hover { transform:translateY(-2px); background:var(--blue-dk); }
.feedback-btn svg   { width:16px; height:16px; flex-shrink:0; }

/* ─── FEEDBACK MODAL ─────────────────────────────────── */
.feedback-modal {
  display:none;
  position:fixed;
  inset:0;
  z-index:200;
  align-items:center;
  justify-content:center;
  padding:16px;
}
.feedback-modal.open { display:flex; }

.feedback-overlay {
  position:absolute;
  inset:0;
  background:rgba(6,14,38,.62);
  backdrop-filter:blur(6px);
}

.feedback-card {
  position:relative;
  z-index:1;
  width:100%;
  max-width:460px;
  background:#fff;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-xl);
  padding:36px 32px 32px;
  animation:fbslide 280ms var(--ease) both;
}
@keyframes fbslide {
  from { opacity:0; transform:translateY(22px) scale(.97); }
  to   { opacity:1; transform:none; }
}

.feedback-close {
  position:absolute;
  top:14px; right:14px;
  width:34px; height:34px;
  border:1px solid var(--line);
  border-radius:9px;
  background:none;
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  color:var(--steel);
  transition:background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.feedback-close:hover { background:var(--paper); color:var(--ink); }
.feedback-close svg   { width:16px; height:16px; }

.feedback-icon {
  width:50px; height:50px;
  background:var(--blue-soft);
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  color:var(--blue-dk);
  margin-bottom:16px;
}
.feedback-icon svg { width:26px; height:26px; }

#feedback-form-wrap h3 { color:var(--navy); font-size:21px; margin-bottom:6px; }
.feedback-sub          { font-size:14px; color:var(--muted); margin-bottom:24px; }

/* Form fields */
.fb-field { margin-bottom:14px; }
.fb-field label {
  display:block;
  font-size:13px; font-weight:600;
  color:var(--navy);
  margin-bottom:5px;
}
.fb-field input,
.fb-field textarea {
  width:100%;
  padding:11px 13px;
  border:1.5px solid var(--line);
  border-radius:var(--radius);
  font-family:inherit;
  font-size:14px;
  color:var(--ink);
  background:var(--paper);
  outline:none;
  resize:vertical;
  transition:border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.fb-field input:focus,
.fb-field textarea:focus {
  border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(22,134,217,.14);
  background:#fff;
}
.fb-field textarea { min-height:108px; }

#fb-submit { margin-top:6px; }

.fb-note {
  margin-top:12px;
  text-align:center;
  font-size:12px;
  color:var(--muted);
}
.fb-note strong { color:var(--navy); }

/* Success state */
.feedback-success {
  text-align:center;
  padding:16px 0 8px;
}
.success-icon {
  width:64px; height:64px;
  background:#ecfdf5;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 20px;
  color:#16a34a;
}
.success-icon svg      { width:30px; height:30px; }
.feedback-success h3   { color:var(--navy); font-size:22px; margin-bottom:10px; }
.feedback-success p    { color:var(--muted); font-size:15px; margin-bottom:28px; }

@media (max-width:520px) {
  .feedback-btn  { bottom:84px; right:16px; padding:10px 14px; font-size:12px; }
  .feedback-card { padding:28px 20px 24px; }
}

/* ─── LANGUAGE SWITCHER ──────────────────────────────── */
.lang-switcher {
  display:flex;
  gap:3px;
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:9px;
  padding:3px;
  flex-shrink:0;
}
.lang-btn {
  padding:5px 12px;
  border:none;
  border-radius:7px;
  background:transparent;
  font-size:12px;
  font-weight:700;
  font-family:inherit;
  color:var(--steel);
  cursor:pointer;
  transition:background var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space:nowrap;
  line-height:1.4;
}
.lang-btn.active {
  background:var(--blue);
  color:#fff;
  box-shadow:0 2px 8px rgba(22,134,217,.3);
}
.lang-btn:hover:not(.active) {
  background:var(--line);
  color:var(--ink);
}

/* Amharic body font */
body.lang-am {
  font-family:"Noto Sans Ethiopic","Inter",system-ui,sans-serif;
  word-break:break-word;
}
body.lang-am h1,
body.lang-am h2,
body.lang-am h3 {
  font-family:"Noto Sans Ethiopic","Playfair Display",Georgia,serif;
  letter-spacing:0;
}


