﻿:root {
  --bg: #f7fbfd;
  --surface: #ffffff;
  --surface-soft: #eef9fb;
  --ink: #101820;
  --muted: #63717c;
  --line: #dce8ee;
  --aqua: #08a9c4;
  --aqua-dark: #047d93;
  --gold: #c79b42;
  --navy: #0f2d3a;
  --shadow: 0 24px 70px rgba(13, 42, 54, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.topbar {
  background: var(--navy);
  color: #edf8fb;
  font-size: 0.9rem;
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 9px 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px max(20px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 232, 238, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  width: min(214px, 52vw);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #20333d;
  font-size: 0.94rem;
  font-weight: 800;
}

.site-nav a:not(.nav-cta) {
  position: relative;
  padding: 8px 0;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--aqua);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.nav-cta {
  padding: 12px 18px;
  background: var(--gold);
  color: #111;
}

.btn {
  padding: 13px 21px;
  border: 1px solid transparent;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--aqua);
  color: #fff;
  box-shadow: 0 16px 30px rgba(8, 169, 196, 0.2);
}

.btn.secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  min-height: 760px;
  padding: clamp(70px, 9vw, 126px) max(20px, calc((100vw - 1180px) / 2));
  overflow: hidden;
  background: linear-gradient(135deg, rgba(8, 169, 196, 0.11), rgba(255, 255, 255, 0.94) 46%, rgba(199, 155, 66, 0.1));
}

.hero::before {
  position: absolute;
  inset: 80px -120px auto auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(8, 169, 196, 0.18), transparent 70%);
  content: "";
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--aqua-dark);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 6.8vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 15px;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.9vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof span {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
}

.hero-proof strong {
  color: var(--ink);
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.visual-card,
.stamp-card,
.destination-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.main-card {
  padding: clamp(26px, 4vw, 42px);
}

.main-card img {
  width: min(430px, 100%);
  margin-bottom: 26px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.main-card p,
.service-card p,
.about-copy p,
.process-grid p,
.section-heading p,
.rating-card p,
.reputation-grid p,
.contact-card p,
.site-footer p,
.form-note {
  color: var(--muted);
}

.stamp-card,
.destination-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
}

.stamp-card span,
.destination-card span {
  color: var(--aqua-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.destination-card div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.destination-card b {
  padding: 8px 10px;
  background: var(--surface-soft);
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.82rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
  margin: -64px auto 0;
  position: relative;
  z-index: 3;
  padding: 0 20px;
}

.trust-strip article {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(13, 42, 54, 0.08);
}

.trust-strip article:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.trust-strip article:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.trust-strip span,
.service-card span,
.process-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
}

.trust-strip h2 {
  font-size: 1.2rem;
  line-height: 1.2;
}

.section {
  padding: clamp(72px, 9vw, 128px) max(20px, calc((100vw - 1180px) / 2));
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.about-copy {
  max-width: 720px;
}

.about-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.about-list span {
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.assessment-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--aqua);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.assessment-card label {
  display: grid;
  gap: 7px;
  color: #20333d;
  font-size: 0.92rem;
  font-weight: 900;
}

.assessment-card input,
.assessment-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  outline: none;
}

.assessment-card input:focus,
.assessment-card textarea:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(8, 169, 196, 0.12);
}

.assessment-card textarea {
  resize: vertical;
}

.services-section,
.reputation-section {
  background: #fff;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 36px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 270px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 169, 196, 0.42);
  box-shadow: var(--shadow);
}

.service-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--aqua-dark);
  font-weight: 900;
}

.countries-section {
  background: linear-gradient(180deg, var(--bg), #fff);
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.country-grid span {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #243842;
  font-weight: 900;
  text-align: center;
}

.service-picker {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(4, minmax(130px, 0.45fr));
  gap: 14px;
  align-items: stretch;
  padding: clamp(36px, 6vw, 66px) max(20px, calc((100vw - 1180px) / 2));
  background: var(--navy);
  color: #fff;
}

.service-picker h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.service-picker .eyebrow {
  color: #8ee7f4;
}

.service-picker a {
  display: grid;
  place-items: center;
  min-height: 118px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-grid article {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(13, 42, 54, 0.06);
}

.reputation-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(330px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.rating-card {
  padding: clamp(28px, 5vw, 52px);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.reputation-grid {
  display: grid;
  gap: 14px;
}

.reputation-grid article {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.reputation-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.contact-section {
  background: linear-gradient(135deg, rgba(8, 169, 196, 0.11), rgba(199, 155, 66, 0.1));
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(30px, 5vw, 58px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-details {
  display: grid;
  gap: 12px;
  font-weight: 900;
}

.contact-details a:not(.btn),
.contact-details span {
  padding: 14px 16px;
  background: var(--surface-soft);
  border-radius: var(--radius);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(180px, 0.5fr) minmax(220px, 0.6fr);
  gap: 34px;
  padding: 54px max(20px, calc((100vw - 1180px) / 2)) 24px;
  background: #0c151a;
  color: #eaf6f8;
}

.site-footer img {
  width: min(220px, 100%);
  margin-bottom: 18px;
  background: #fff;
  border-radius: var(--radius);
}

.site-footer h3 {
  margin-bottom: 16px;
  color: #fff;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 10px;
  color: #d7e7ec;
}

.footer-bottom {
  grid-column: 1 / -1;
  margin: 14px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

@media (max-width: 1020px) {
  .hero,
  .about-section,
  .reputation-section,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .trust-strip,
  .services-grid,
  .country-grid,
  .process-grid,
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .site-header {
    padding: 14px 18px;
  }

  .brand {
    width: min(190px, 62vw);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a,
  .site-nav .nav-cta {
    padding: 12px;
    border-radius: 6px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.1rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .stamp-card,
  .destination-card {
    display: grid;
  }

  .destination-card div {
    justify-content: flex-start;
  }

  .trust-strip,
  .services-grid,
  .country-grid,
  .process-grid,
  .service-picker,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: 0;
    padding-top: 20px;
  }

  .trust-strip article,
  .trust-strip article:first-child,
  .trust-strip article:last-child {
    border-radius: var(--radius);
  }
}
