:root {
  --blue-900: #08284a;
  --blue-800: #0a3a66;
  --blue-700: #0e4d85;
  --blue-600: #1263a8;
  --blue-500: #1a78c2;
  --gray-700: #5b5f66;
  --gray-500: #8b8f94;
  --gray-300: #c9cccf;
  --gray-100: #f1f3f5;
  --ink: #16212e;
  --paper: #ffffff;
  --paper-soft: #f7f9fb;
  --border: #e4e8ec;
  --radius: 14px;
  --shadow: 0 10px 30px -12px rgba(8, 40, 74, 0.18);
  --container: 1180px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--blue-700);
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

h1, h2, h3 {
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
h2 { font-size: clamp(1.75rem, 3vw, 2.35rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 16px; color: var(--gray-700); }

a { color: inherit; text-decoration: none; }

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-600);
  margin: 0 0 10px;
}
.section-kicker--light { color: #bcd9ef; }

.section-head { max-width: 640px; margin: 0 0 48px; }
.section-lead { font-size: 1.05rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue-700);
  color: #fff;
  box-shadow: 0 8px 20px -6px rgba(14, 77, 133, 0.55);
}
.btn-primary:hover { background: var(--blue-600); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--blue-800);
  border-color: var(--gray-300);
}
.btn-ghost:hover { border-color: var(--blue-600); color: var(--blue-600); }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 168px;
}
.brand-logo { height: 144px; width: auto; transition: filter .2s ease; }
.brand:hover .brand-logo { filter: drop-shadow(0 10px 18px rgba(8, 40, 74, 0.45)); }

.nav { display: flex; align-items: center; gap: 32px; }
.nav-list {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.nav-list a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-700);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav-list a:hover { color: var(--blue-700); border-color: var(--blue-700); }
.nav-cta { padding: 10px 22px; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--blue-800);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-800) 45%, var(--blue-700) 100%);
  color: #fff;
  padding: 120px 0 110px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  pointer-events: none;
}
.hero-globe {
  width: 620px;
  height: 620px;
  max-width: none;
  color: #ffffff;
  transform: translateX(30%);
}
.hero-inner { position: relative; max-width: 680px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  color: #a9cde9;
  margin-bottom: 18px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 22px;
}
.hero-lead {
  color: #d7e6f2;
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.45); }
.hero .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ---------- ABOUT ---------- */
.about { padding: 90px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-copy h2 { max-width: 480px; }
.about-copy p { font-size: 1.05rem; max-width: 480px; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stat-card {
  background: var(--paper-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
}
.stat-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  color: var(--blue-700);
}
.stat-icon svg { width: 100%; height: 100%; }
.stat-value { font-weight: 800; font-size: 1.15rem; margin: 0 0 4px; color: var(--blue-800); }
.stat-label { font-size: 0.85rem; margin: 0; color: var(--gray-500); }

/* ---------- SERVICES ---------- */
.services { padding: 90px 0; background: var(--paper-soft); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  display: block;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-500);
  box-shadow: 0 16px 34px -14px rgba(8, 40, 74, 0.28);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: 10px; color: var(--blue-900); }
.service-card p { margin: 0 0 18px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue-600);
}
.service-card:hover .service-link { color: var(--blue-700); }

/* ---------- COVERAGE ---------- */
.coverage {
  padding: 90px 0;
  background: linear-gradient(160deg, var(--blue-900), var(--blue-700));
  color: #fff;
}
.coverage-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.coverage h2 { color: #fff; }
.coverage-copy p { color: #d7e6f2; font-size: 1.05rem; }
.coverage-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.coverage-list li {
  color: #eaf2f8;
  padding-left: 26px;
  position: relative;
  font-size: 0.98rem;
}
.coverage-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9fd0ef;
}
.coverage-visual { position: relative; }
.gcc-map-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 20px 45px -18px rgba(3, 15, 28, 0.55);
}
.gcc-map-img { width: 100%; height: auto; display: block; }
.gcc-map-credit {
  margin: 12px 0 0;
  text-align: center;
  font-size: 0.75rem;
  color: #9fc3db;
}
.gcc-map-credit a { color: #cfe0ee; text-decoration: underline; }
.gcc-map-credit a:hover { color: #fff; }

/* ---------- PARTNERS ---------- */
.partners { padding: 90px 0; text-align: center; }
.partners .section-head { margin-left: auto; margin-right: auto; text-align: center; }
.partner-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.partner-list li {
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  color: var(--blue-800);
  background: var(--paper-soft);
  transition: border-color .15s ease, transform .15s ease;
}
.partner-list li:hover { border-color: var(--blue-600); transform: translateY(-2px); }

/* ---------- CONTACT ---------- */
.contact { padding: 90px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-lead { font-size: 1.02rem; }
.contact-details {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 22px;
}
.contact-details li { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--paper-soft);
  border: 1px solid var(--border);
  color: var(--blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 19px; height: 19px; }
.contact-label { font-weight: 700; color: var(--blue-900); margin: 0 0 2px; font-size: 0.92rem; }
.contact-details p { margin: 0; }
.contact-details a:hover { color: var(--blue-600); }

.contact-form {
  background: var(--paper-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  gap: 18px;
}
.form-row { display: grid; gap: 8px; }
.form-row label { font-size: 0.85rem; font-weight: 700; color: var(--blue-900); }
.form-row input,
.form-row textarea {
  font: inherit;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--gray-300);
  background: #fff;
  resize: vertical;
  transition: border-color .15s ease;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--blue-600);
}
.form-submit { justify-self: start; margin-top: 6px; }
.form-note { font-size: 0.88rem; color: var(--blue-700); min-height: 1.4em; margin: 0; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--blue-900);
  color: #cfe0ee;
  padding: 56px 0 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-logo {
  height: 144px;
  width: auto;
  background: #fff;
  border-radius: 8px;
  padding: 10px 14px;
}
.footer-brand p { margin: 0; font-size: 0.88rem; color: #aecbe1; }
.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 0;
  padding: 0;
}
.footer-links a { font-size: 0.9rem; color: #cfe0ee; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  padding: 20px 24px 28px;
  text-align: center;
  font-size: 0.82rem;
  color: #8fb0c9;
}
.footer-bottom p { margin: 0; }
.footer-bottom .footer-credit {
  margin-top: 6px;
  font-size: 0.78rem;
  color: #6f93ae;
}
.footer-bottom .footer-credit a { color: #9fc3db; font-weight: 600; }
.footer-bottom .footer-credit a:hover { color: #fff; }

/* ---------- SERVICE DETAIL PAGE ---------- */
.service-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-800) 45%, var(--blue-700) 100%);
  color: #fff;
  padding: 64px 0 56px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #cfe0ee;
  margin-bottom: 22px;
}
.back-link:hover { color: #fff; }
.service-hero-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-hero-icon svg { width: 30px; height: 30px; }
.service-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 16px; }
.service-hero-lead { color: #d7e6f2; font-size: 1.1rem; max-width: 620px; margin: 0; }

.service-detail { padding: 80px 0; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}
.service-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.service-detail-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 1.02rem;
  color: var(--gray-700);
}
.service-detail-list li svg {
  flex: none;
  width: 22px;
  height: 22px;
  color: var(--blue-600);
  margin-top: 2px;
}
.service-detail-aside {
  background: var(--paper-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.service-detail-aside h3 { color: var(--blue-900); margin-bottom: 12px; }
.service-detail-aside p { font-size: 0.98rem; }
.service-detail-aside .btn { width: 100%; margin-top: 8px; }
.other-services {
  list-style: none;
  margin: 18px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 10px;
}
.other-services a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--blue-700);
}
.other-services a:hover { color: var(--blue-500); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .about-grid,
  .coverage-grid,
  .contact-grid,
  .service-detail-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .coverage-visual { max-width: 320px; margin: 0 auto; }
}

@media (max-width: 760px) {
  .nav {
    position: absolute;
    top: 168px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 28px;
    gap: 18px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-list { flex-direction: column; gap: 16px; }
  .nav-cta { align-self: flex-start; }
  .nav-toggle { display: flex; }

  .hero { padding: 90px 0 70px; text-align: left; }
  .hero-globe { width: 420px; height: 420px; opacity: 0.5; }

  .cards-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .partner-list li { padding: 12px 20px; font-size: 0.82rem; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
