:root {
  --navy: #0b1f3a;
  --blue: #1952a4;
  --teal: #18a7a7;
  --gold: #f2c14e;
  --ink: #1d2939;
  --muted: #667085;
  --paper: #ffffff;
  --soft: #f4f8fb;
  --line: #dce5ef;
  --shadow: 0 18px 50px rgba(11, 31, 58, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

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

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

p {
  margin: 0 0 16px;
}

ul,
ol {
  margin: 0;
  padding-left: 20px;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: var(--navy);
  color: #fff;
  font-size: 14px;
}

.topbar .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 26px rgba(11, 31, 58, 0.07);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand img {
  width: 156px;
  height: 45px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav > li {
  position: relative;
}

.nav a,
.dropdown-label {
  display: block;
  padding: 12px 9px;
  border-radius: 6px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.nav a:hover,
.dropdown-label:hover,
.nav .active > a,
.nav .active > .dropdown-label {
  background: rgba(24, 167, 167, 0.11);
  color: var(--blue);
}

.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 245px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.has-dropdown:hover .submenu,
.has-dropdown:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu a {
  padding: 10px 12px;
  white-space: normal;
}

.hero {
  min-height: 600px;
  height: 74vh;
  max-height: 720px;
  color: #fff;
  background: radial-gradient(circle at 78% 42%, rgba(24, 167, 167, .32), transparent 30%), linear-gradient(115deg, #06162b 0%, #0b1f3a 52%, #123e65 100%);
  overflow: hidden;
}

.hero-grid {
  min-height: inherit;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1,
.page-title h1,
.section-head h2 {
  margin: 0 0 16px;
  letter-spacing: 0;
  line-height: 1.14;
}

.hero h1 {
  font-size: 56px;
}

.hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, .88);
  font-size: 19px;
}

.globe-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
}

.globe-wrap::before {
  content: "";
  position: absolute;
  width: 86%;
  height: 86%;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.globe-wrap img {
  width: min(420px, 82%);
  animation: globeSpin 28s linear infinite;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, .32));
}

@keyframes globeSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 19px;
  border-radius: 6px;
  border: 1px solid transparent;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(11, 31, 58, .18);
  background: var(--blue);
}

.btn.alt {
  background: #fff;
  color: var(--navy);
}

.btn.ghost {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.tag-strip {
  margin-top: -38px;
  position: relative;
  z-index: 3;
}

.tag-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-tag,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(24, 167, 167, .1);
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.section {
  padding: 72px 0;
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  background: var(--navy);
  color: #fff;
}

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

.section-head.left {
  margin-left: 0;
  text-align: left;
}

.section-head h2,
.page-title h1 {
  color: var(--navy);
  font-size: 38px;
}

.section.dark .section-head h2,
.section.dark .section-head p {
  color: #fff;
}

.section-head p,
.page-title p {
  color: var(--muted);
  font-size: 17px;
}

.page-hero {
  padding: 92px 0;
  color: #fff;
  background: linear-gradient(110deg, rgba(11, 31, 58, .94), rgba(24, 167, 167, .64)), url("images/globe.svg") right center/420px no-repeat;
}

.page-title h1 {
  color: #fff;
  max-width: 860px;
}

.page-title p {
  color: rgba(255, 255, 255, .86);
  max-width: 760px;
}

.breadcrumb {
  margin: 0 0 10px;
  color: var(--gold);
  font-weight: 900;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.split {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
}

.split.reverse .media-panel {
  order: 2;
}

.media-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--soft);
}

.media-panel img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.content-block h2,
.content-block h3 {
  margin: 0 0 14px;
  color: var(--navy);
  line-height: 1.2;
}

.content-block h2 { font-size: 34px; }
.content-block h3 { font-size: 24px; }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(11, 31, 58, .07);
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card-body {
  padding: 23px;
}

.card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.25;
}

.card p {
  color: var(--muted);
}

.value-list {
  display: grid;
  gap: 14px;
  padding: 0;
  list-style: none;
}

.value-list li {
  padding: 16px 18px;
  border-left: 4px solid var(--teal);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(11, 31, 58, .06);
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .18);
}

.stat {
  padding: 24px;
  background: rgba(255, 255, 255, .08);
}

.stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 28px;
}

.form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form label {
  display: grid;
  gap: 6px;
  font-weight: 900;
  color: var(--navy);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 12px;
  font: inherit;
  background: #fff;
}

.form textarea {
  min-height: 130px;
  resize: vertical;
}

.form-status {
  min-height: 24px;
  color: var(--teal);
  font-weight: 900;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.map-frame {
  width: 100%;
  min-height: 380px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.footer {
  background: #07172c;
  color: rgba(255, 255, 255, .82);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr .8fr .9fr 1fr;
  gap: 28px;
  padding: 54px 0;
}

.footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 19px;
}

.footer-links {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .64);
  font-size: 14px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  background: #1fbf75;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: var(--shadow);
}

@media (max-width: 1100px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-shell {
    flex-wrap: wrap;
  }

  .nav {
    display: none;
    width: 100%;
    padding: 10px 0 18px;
    border-top: 1px solid var(--line);
  }

  .nav.is-open {
    display: grid;
  }

  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-left: 3px solid var(--gold);
    border-radius: 0;
    margin: 0 0 8px 14px;
    padding: 0 0 0 8px;
  }

  .grid.four,
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
    height: auto;
    padding: 70px 0 96px;
  }

  .hero-grid,
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .split.reverse .media-panel {
    order: 0;
  }

  .hero h1 {
    font-size: 38px;
  }

  .globe-wrap {
    min-height: 300px;
  }

  .grid.three,
  .grid.two,
  .stat-band,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .brand img {
    width: 138px;
    height: 40px;
  }

  .hero h1,
  .page-title h1,
  .section-head h2 {
    font-size: 32px;
  }

  .grid.four,
  .footer-main {
    grid-template-columns: 1fr;
  }
}
