:root {
  --blue: #0077bd;
  --blue-dark: #003c62;
  --green: #78be20;
  --ink: #12202b;
  --muted: #52616d;
  --line: #d9e2e8;
  --soft: #f3f7f9;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(6, 34, 52, 0.14);
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  min-height: 92px;
  padding: 0 5vw;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 226, 232, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
}

.brand:hover {
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 168px;
  height: auto;
}

.brand-country {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
}

.nav a {
  color: var(--ink);
  font-weight: 700;
  font-size: 0.93rem;
}

.language-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.2rem;
  background: var(--white);
}

.language-switch button {
  min-width: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0.45rem 0.65rem;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  background: var(--blue-dark);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100vh - 92px);
  display: grid;
  align-items: center;
  padding: 8vh 5vw;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 40, 64, 0.78), rgba(0, 40, 64, 0.35) 48%, rgba(0, 40, 64, 0.05));
}

.hero-panel {
  position: relative;
  z-index: 1;
  max-width: 740px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 1.4rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0.8rem 1.1rem;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: var(--green);
  color: var(--ink);
}

.button.secondary {
  background: var(--white);
  color: var(--blue-dark);
  border-color: var(--line);
}

.alert-band,
.split-section,
.section,
.form-section,
.page-hero,
.contact-strip {
  padding-left: 5vw;
  padding-right: 5vw;
}

.alert-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) 1.1fr;
  gap: 3rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: var(--blue-dark);
  color: var(--white);
}

.alert-band h2,
.split-section h2,
.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.alert-band p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section.compact {
  max-width: 1100px;
  margin: 0 auto;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-grid article {
  min-height: 250px;
  padding: 1.4rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.service-number {
  color: var(--green);
  font-weight: 900;
}

.service-grid h3,
.contact-strip h2,
.two-lists h3 {
  margin: 1rem 0 0.55rem;
  font-size: 1.2rem;
}

.service-grid p,
.two-lists li,
.contact-strip p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1.15fr;
  gap: 4rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: var(--soft);
}

.split-section > p,
.split-section > div:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.page {
  background: linear-gradient(180deg, var(--soft), var(--white) 360px);
}

.page-hero {
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.page-hero h1 {
  max-width: 12ch;
  color: var(--blue-dark);
}

.page-hero p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.15rem;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-strip article {
  padding: 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 35px rgba(6, 34, 52, 0.06);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 34px;
  padding: 0 0.5rem;
  border-radius: 999px;
  background: rgba(120, 190, 32, 0.16);
  color: #416c08;
  font-weight: 900;
}

.contact-strip a {
  font-size: 1.4rem;
  font-weight: 900;
}

.steps {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  min-height: 68px;
  padding: 1.2rem 1.2rem 1.2rem 4.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  counter-increment: steps;
}

.steps li::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: var(--blue);
  font-weight: 900;
}

.note {
  margin: 1.5rem 0 0;
}

.two-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.two-lists > div {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.2rem;
}

.two-lists ul {
  margin: 0;
  padding-left: 1.2rem;
}

.form-section {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.inline-form,
.request-form {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 35px rgba(6, 34, 52, 0.06);
}

.inline-form {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 1rem;
  align-items: end;
  padding: 1.2rem;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.2rem;
}

label span,
.inline-form label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--blue-dark);
  font-weight: 900;
  font-size: 0.84rem;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cbd7de;
  border-radius: 4px;
  padding: 0.8rem;
  background: var(--white);
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.check {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.check input {
  width: auto;
  margin-top: 0.2rem;
}

.form-feedback {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.8rem 1rem;
  background: rgba(120, 190, 32, 0.16);
  color: #416c08;
  font-weight: 800;
}

.result-panel {
  max-width: 900px;
  margin-top: 2rem;
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 35px rgba(6, 34, 52, 0.06);
}

.result-panel h2 {
  margin: 0 0 1rem;
  color: var(--blue-dark);
}

.result-grid {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) 1fr;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.result-grid dt,
.result-grid dd {
  margin: 0;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.result-grid dt {
  color: var(--blue-dark);
  font-weight: 900;
}

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

.bag-grid article {
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--soft);
}

.bag-grid h3,
.bag-grid p {
  margin: 0 0 0.55rem;
}

.bag-grid p:last-child {
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  padding: 3rem 5vw;
  background: #071b29;
  color: rgba(255, 255, 255, 0.78);
}

.dnata-logo {
  width: 130px;
  max-width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  background: var(--white);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--white);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2,
.cookie-banner p {
  margin: 0 0 0.4rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.cookie-settings {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 25;
  border: 0;
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  background: var(--blue-dark);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(6, 34, 52, 0.2);
  cursor: pointer;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 1rem;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }

  .hero {
    min-height: 720px;
  }

  .alert-band,
  .split-section,
  .service-grid,
  .contact-strip,
  .site-footer,
  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .service-grid {
    border-left: 0;
  }

  .service-grid article {
    border-left: 1px solid var(--line);
  }

  .two-lists,
  .bag-grid,
  .request-form,
  .inline-form {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: static;
  }

  .brand-logo {
    width: 138px;
  }

  .brand-country {
    font-size: 0.8rem;
  }

  .nav {
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .hero,
  .page-hero,
  .section,
  .split-section,
  .form-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 3rem;
  }

  .hero-actions,
  .cookie-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .contact-strip {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
