@font-face {
  font-family: "Thmanyah Sans";
  src: url("assets/fonts/thmanyah typeface/thmanyahsans/woff2/thmanyahsans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah Sans";
  src: url("assets/fonts/thmanyah typeface/thmanyahsans/woff2/thmanyahsans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah Sans";
  src: url("assets/fonts/thmanyah typeface/thmanyahsans/woff2/thmanyahsans-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah Display";
  src: url("assets/fonts/thmanyah typeface/thmanyahserifdisplay/woff2/thmanyahserifdisplay-Bold.woff2")
    format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #123247;
  --muted: #60727c;
  --line: #d9e6e7;
  --paper: #f4faf9;
  --white: #ffffff;
  --blue: #0d4a68;
  --blue-dark: #07354f;
  --green: #5abb63;
  --mint: #e8f6ea;
  --orange: #fb9f42;
  --shadow: 0 28px 80px rgba(7, 53, 79, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Thmanyah Sans", Tahoma, Arial, sans-serif;
  line-height: 1.7;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  min-height: 104px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(244, 250, 249, 0.9);
  border-bottom: 1px solid rgba(13, 74, 104, 0.11);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  order: 1;
  margin-inline-start: 0;
  margin-inline-end: 0;
}

.nav {
  order: 2;
  margin-inline-start: auto;
}

.brand-logo {
  width: clamp(260px, 29vw, 420px);
  height: 78px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.5vw, 30px);
  color: var(--blue-dark);
  font-size: 15px;
  font-weight: 700;
}

.nav a:hover {
  color: var(--green);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 36px;
  padding: 0 12px;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: 0;
}

.lang-switch:hover {
  color: var(--white);
  background: var(--green);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 104px);
  padding: clamp(42px, 6vw, 82px) clamp(18px, 5vw, 72px) clamp(52px, 6vw, 92px);
  background:
    radial-gradient(circle at 12% 18%, rgba(251, 159, 66, 0.17), transparent 30%),
    radial-gradient(circle at 90% 86%, rgba(90, 187, 99, 0.18), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f5fbfb 48%, #edf8f1 100%);
}

.hero-copy {
  max-width: 680px;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
}

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

h1,
h2 {
  font-family: "Thmanyah Display", "Thmanyah Sans", Tahoma, sans-serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 6.4vw, 82px);
  line-height: 1.08;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.18;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.35;
}

.hero-lead,
.intro p,
.contact-section p {
  color: var(--muted);
  font-size: 20px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--blue);
}

.button.primary.dark {
  background: var(--blue-dark);
}

.button.ghost {
  color: var(--blue-dark);
  border-color: rgba(13, 74, 104, 0.2);
  background: rgba(255, 255, 255, 0.78);
}

.button.light {
  color: var(--blue-dark);
  background: var(--white);
}

.hero-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 470px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 20%, rgba(90, 187, 99, 0.16), transparent 28%),
    linear-gradient(135deg, #063149, var(--blue) 72%, #0b4058);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.hero-card img {
  position: relative;
  z-index: 3;
  width: min(86%, 620px);
  height: auto;
  filter: drop-shadow(0 20px 42px rgba(0, 0, 0, 0.24));
}

.ring,
.accent-line,
.accent-dot {
  position: absolute;
  pointer-events: none;
}

.ring-large {
  width: 190px;
  height: 190px;
  right: -62px;
  top: 48px;
  border: 26px solid rgba(90, 187, 99, 0.28);
  border-radius: 50%;
}

.ring-small {
  width: 130px;
  height: 130px;
  left: 70px;
  bottom: 72px;
  border: 20px solid rgba(13, 74, 104, 0.72);
  border-radius: 50%;
  opacity: 0.34;
}

.accent-line {
  width: 52%;
  height: 10px;
  left: 15%;
  bottom: 13%;
  background: var(--orange);
  opacity: 0.88;
}

.accent-dot {
  width: 72px;
  height: 72px;
  left: 12%;
  bottom: 9%;
  background: var(--orange);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.86;
}

.band,
.section,
.important-links,
.faq-section,
.contact-section,
.map-section {
  margin-inline: clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  padding: clamp(38px, 5vw, 68px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(7, 53, 79, 0.06);
}

.section,
.important-links,
.faq-section {
  padding-block: clamp(60px, 7vw, 100px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

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

.service-card {
  min-height: 268px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(7, 53, 79, 0.06);
}

.service-card.featured {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-color: rgba(255, 255, 255, 0.12);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  color: var(--blue);
  background: var(--mint);
  border-radius: 8px;
  font-weight: 900;
}

.featured .service-icon {
  color: var(--blue-dark);
  background: var(--orange);
}

.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.important-links {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(rgba(248, 251, 253, 0.84), rgba(248, 251, 253, 0.9)),
    url("assets/earth-map.webp") center bottom / min(100%, 1240px) auto no-repeat;
}

.important-links .section-heading {
  margin-inline: auto;
  text-align: center;
}

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

.link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 228px;
  padding: 28px 24px;
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(7, 53, 79, 0.11);
  text-align: center;
  font-weight: 900;
  font-size: 20px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(238, 126, 34, 0.45);
  box-shadow: 0 24px 52px rgba(7, 53, 79, 0.16);
}

.link-logo {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 92px;
}

.link-logo img {
  width: min(100%, 230px);
  max-height: 112px;
  object-fit: contain;
}

.faq-section {
  border-top: 1px solid var(--line);
}

.faq-section .section-heading {
  margin-inline: auto;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 14px;
  width: min(100%, 980px);
  margin-inline: auto;
}

.faq-list details {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(7, 53, 79, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--blue-dark);
  font-weight: 900;
  list-style-position: inside;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.contact-section {
  position: relative;
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(rgba(248, 251, 253, 0.9), rgba(248, 251, 253, 0.92)),
    url("assets/earth-map.webp") center / min(100%, 1160px) auto no-repeat;
}

.contact-section .section-heading {
  margin-inline: auto;
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 22px;
  width: min(100%, 960px);
  margin-inline: auto;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: var(--blue-dark);
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 64px;
  padding: 16px 22px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(7, 53, 79, 0.12);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(7, 53, 79, 0.06);
  font: inherit;
  outline: none;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
  border-radius: 24px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(90, 187, 99, 0.16);
}

.contact-form .button {
  justify-self: center;
  min-width: 180px;
  cursor: pointer;
}

.map-section {
  margin-bottom: clamp(32px, 5vw, 68px);
  overflow: hidden;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-heading {
  padding: 28px clamp(24px, 5vw, 52px);
  border-bottom: 1px solid var(--line);
}

.map-heading h2 {
  margin: 4px 0 0;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

.site-footer {
  padding: clamp(44px, 6vw, 76px) clamp(18px, 5vw, 72px) 24px;
  color: rgba(255, 255, 255, 0.8);
  background:
    radial-gradient(circle at 12% 20%, rgba(90, 187, 99, 0.13), transparent 26%),
    var(--blue-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(160px, 0.7fr));
  gap: clamp(24px, 5vw, 52px);
  padding-bottom: 34px;
}

.footer-brand img {
  width: min(340px, 100%);
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 360px;
}

.site-footer h3 {
  color: var(--white);
  font-size: 19px;
}

.site-footer ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

@media (max-width: 980px) {
  .hero,
  .intro,
  .service-grid,
  .link-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    min-height: 360px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-logo {
    width: min(100%, 330px);
    height: 72px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
  }

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

  .intro,
  .service-card,
  .contact-section {
    padding: 24px;
  }

  .map-heading {
    padding: 24px;
  }

  .map-section iframe {
    height: 310px;
  }

  .accent-dot {
    width: 56px;
    height: 56px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  h1 {
    font-size: 38px;
  }
}
