:root {
  --navy: #061a43;
  --navy-2: #0b285b;
  --gold: #c99a3b;
  --gold-light: #e4c477;
  --cream: #f7f7f5;
  --text: #14213d;
  --muted: #687286;
  --white: #ffffff;
  --black: #000000;
  --shadow: 0 12px 35px rgba(6, 26, 67, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: #fff;
}

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

.topbar {
  background: var(--navy);
  color: #fff;
  font: 14px/1.4 Arial, sans-serif;
}

.topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-left {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.navbar {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 32px;
  background: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 2px 15px rgba(0,0,0,.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
  min-width: 280px;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand strong {
  display: block;
  font-size: 25px;
  line-height: .95;
  letter-spacing: .5px;
}

.brand small {
  display: block;
  margin-top: 7px;
  font: 8px Arial, sans-serif;
  letter-spacing: .7px;
  color: #7a6231;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex: 1;
  font-size: 15px;
}

.nav-links a {
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links .active {
  color: #9b701f;
}

.nav-cta {
  background: var(--gold-light);
  color: #111 !important;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 700;
}

.menu-toggle { display: none; }

.hero {
  min-height: 540px;
  background:
    linear-gradient(90deg, rgba(5,22,54,.18), rgba(5,22,54,.04)),
    url("../assets/hero2.png") center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.12), rgba(255,255,255,.02) 60%, rgba(0,0,0,.1));
}

.hero-content {
  min-height: 540px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-copy {
  max-width: 760px;
  margin-top: 20px;
}

.eyebrow {
  color: #8e691f;
  font: 700 15px Arial, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero h1 {
  margin: 8px 0 18px;
  font-size: clamp(44px, 5vw, 76px);
  line-height: .98;
  font-weight: 500;
  color: var(--white);
}

.hero-text {
  max-width: 640px;
  margin: 0 auto 25px;
  font: 600 20px/1.35 Arial, sans-serif;
  color: var(--white);
}

.gold-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  background: linear-gradient(180deg, #e5c67d, #b98526);
  color: #111;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 7px;
  font: 700 15px Arial, sans-serif;
  box-shadow: 0 5px 12px rgba(100,70,15,.22);
  cursor: pointer;
}

.experience-badge {
  position: absolute;
  right: 3%;
  bottom: 65px;
  width: 155px;
  height: 155px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  background: rgba(6,26,67,.75);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 0 8px rgba(201,154,59,.12);
}

.experience-badge span {
  font-size: 58px;
  line-height: .8;
  color: var(--gold-light);
}

.experience-badge strong { font-size: 18px; }
.experience-badge small { font: 10px Arial, sans-serif; letter-spacing: 1px; }

.service-cards {
  position: relative;
  z-index: 4;
  margin-top: -8px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.service-card {
  min-height: 175px;
  padding: 22px 15px 18px;
  border-radius: 7px;
  background: linear-gradient(145deg, #0d3271, #061a43);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.8);
}

.service-icon {
  color: var(--gold-light);
  font: 38px Georgia, serif;
  line-height: 1;
}

.service-card h3 {
  margin: 12px 0 8px;
  font-size: 19px;
  line-height: 1.05;
}

.service-card p {
  margin: 0;
  font: 14px/1.3 Arial, sans-serif;
  color: #f0f2f7;
}

.content-section {
  padding: 38px 0 25px;
  background: #fff;
}

.info-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr .9fr 1.05fr;
  gap: 14px;
  align-items: stretch;
}

.info-panel,
.contact-panel {
  border-radius: 10px;
  padding: 22px;
  background: linear-gradient(145deg, #fff, #f1f3f5);
  box-shadow: 0 5px 20px rgba(8,25,55,.08);
  border: 1px solid #e4e7eb;
}

.section-kicker {
  margin: 0 0 5px;
  color: #9b701f;
  font: 700 12px Arial, sans-serif;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.info-panel h2,
.contact-panel h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.05;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font: 14px/1.42 Arial, sans-serif;
}

.check-list li {
  margin: 8px 0;
  padding-left: 23px;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #9a742d;
  font-weight: bold;
}

.countries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 15px;
  font: 14px Arial, sans-serif;
}

.countries-grid span {
  font-size: 22px;
  margin-right: 8px;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: #966d22;
  text-decoration: none;
  font: 700 13px Arial, sans-serif;
}

.city-image {
  min-height: 125px;
  display: flex;
  align-items: center;
  padding: 18px;
  border-radius: 8px;
  margin-bottom: 12px;
  background:
    linear-gradient(90deg, rgba(6,26,67,.78), rgba(6,26,67,.15)),
    url("../assets/hero.jpg") center / cover;
  color: #fff;
  font-size: 17px;
  line-height: 1.35;
}

.cities-panel > p:last-child {
  margin: 0;
  font: 13px/1.35 Arial, sans-serif;
}

.contact-panel {
  background: linear-gradient(145deg, #0b2a60, #061a43);
  color: #fff;
}

.contact-panel h2 { color: #fff; }

.contact-panel > p:not(.section-kicker) {
  font: 13px/1.35 Arial, sans-serif;
  color: #dfe7f5;
}

.contact-panel form {
  display: grid;
  gap: 9px;
}

.contact-panel input,
.contact-panel select,
.contact-panel textarea {
  width: 100%;
  border: 0;
  border-radius: 5px;
  padding: 10px 12px;
  background: #f5f6f8;
  color: #26324a;
  font: 13px Arial, sans-serif;
}

.contact-panel textarea {
  min-height: 82px;
  resize: vertical;
}

.contact-panel .gold-button {
  margin-top: 4px;
}

.trust-strip {
  padding: 16px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background: #fafafa;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.trust-grid > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 7px 15px;
  border-right: 1px solid #ccc;
  font: 700 12px/1.15 Arial, sans-serif;
}

.trust-grid > div:last-child { border-right: 0; }

.trust-grid strong {
  color: #9b701f;
  font-size: 26px;
}

.about-section {
  padding: 55px 0;
  background: #f5f6f7;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-inner h2 {
  margin: 0;
  max-width: 650px;
  color: var(--navy);
  font-size: 40px;
  font-weight: 500;
}

.about-inner > p {
  margin: 0;
  font: 17px/1.65 Arial, sans-serif;
  color: #4e596b;
}

.cta-section {
  padding: 55px 0;
  background: var(--navy);
  color: #fff;
  text-align: center;
}

.cta-section h2 {
  margin: 0 0 8px;
  font-size: 36px;
  font-weight: 500;
}

.cta-section p {
  margin: 0 0 22px;
  font: 16px Arial, sans-serif;
  color: #dbe4f4;
}

.footer {
  padding: 30px 0;
  background: #04132f;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr;
  gap: 30px;
  align-items: center;
  font: 13px/1.6 Arial, sans-serif;
}

.footer-brand {
  font: 25px Georgia, serif;
  color: var(--gold-light);
}

.footer small { color: #bfc9da; }

@media (max-width: 1180px) {
  .navbar { gap: 16px; }
  .brand { min-width: 240px; }
  .nav-links { gap: 12px; font-size: 13px; }
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .info-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .topbar-inner { padding: 8px 0; }
  .topbar-left { gap: 10px; }
  .topbar-inner > div:last-child { display: none; }

  .navbar {
    min-height: 70px;
    justify-content: space-between;
  }

  .brand { min-width: 0; }
  .brand strong { font-size: 20px; }
  .brand small { font-size: 7px; }

  .menu-toggle {
    display: block;
    border: 0;
    background: none;
    color: var(--navy);
    font-size: 28px;
    cursor: pointer;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 106px;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,.1);
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.open { display: flex; }
  .nav-cta { text-align: center; }

  .hero, .hero-content { min-height: 600px; }
  .hero-copy { padding: 0 15px; }
  .hero h1 { font-size: 42px; }
  .hero-text { font-size: 17px; }
  .experience-badge {
    width: 115px;
    height: 115px;
    right: 15px;
    bottom: 20px;
  }
  .experience-badge span { font-size: 42px; }
  .experience-badge strong { font-size: 14px; }

  .cards-grid { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div { border-bottom: 1px solid #ccc; }
  .about-inner { grid-template-columns: 1fr; gap: 25px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1380px); }
  .topbar-left span:nth-child(2) { display: none; }
  .hero h1 { font-size: 35px; }
  .cards-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 145px; }
  .countries-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
}
