:root {
  --ink: #171512;
  --soft-ink: #4d4841;
  --muted: #746d62;
  --paper: #f8f8f4;
  --white: #ffffff;
  --line: rgba(23, 21, 18, 0.12);
  --charcoal: #24211d;
  --emerald: #0f5e48;
  --emerald-dark: #0a3f32;
  --gold: #c8923e;
  --coral: #ef6a4d;
  --plum: #5a2f61;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(23, 21, 18, 0.16);
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
}

svg {
  width: 1.12em;
  height: 1.12em;
  stroke-width: 2.2;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 14px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 46px rgba(23, 21, 18, 0.11);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition:
    top 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-header.is-scrolled {
  top: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(23, 21, 18, 0.15);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 44%),
    linear-gradient(135deg, var(--emerald-dark), var(--gold));
  box-shadow: 0 12px 26px rgba(15, 94, 72, 0.2);
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand-copy small {
  color: var(--emerald);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--soft-ink);
  font-size: 0.94rem;
  font-weight: 760;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.button,
.icon-link,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
}

.button {
  min-height: 50px;
  gap: 10px;
  padding: 0 20px;
  font-weight: 850;
  letter-spacing: 0;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
  box-shadow: 0 18px 36px rgba(15, 94, 72, 0.24);
}

.button-primary:hover {
  box-shadow: 0 22px 44px rgba(15, 94, 72, 0.3);
}

.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(23, 21, 18, 0.09);
}

.button-small {
  min-height: 44px;
  padding-inline: 16px;
}

.button-label {
  display: inline;
}

.icon-link,
.icon-button {
  width: 44px;
  height: 44px;
  color: var(--emerald-dark);
  background: rgba(15, 94, 72, 0.1);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.hero {
  position: relative;
  min-height: 86svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 54px) clamp(20px, 6vw, 82px) 56px;
  background:
    linear-gradient(90deg, rgba(248, 248, 244, 0.97) 0%, rgba(248, 248, 244, 0.9) 38%, rgba(248, 248, 244, 0.2) 72%),
    linear-gradient(0deg, rgba(36, 33, 29, 0.04), rgba(36, 33, 29, 0.04)),
    url("assets/hero-consultancy.png") right center / cover no-repeat;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 92px;
  background: linear-gradient(0deg, var(--paper), rgba(248, 248, 244, 0));
  content: "";
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(690px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--emerald);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--gold));
  content: "";
}

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

h1 {
  max-width: 10.8ch;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 5.7rem;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 630px;
  margin-bottom: 30px;
  color: var(--soft-ink);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 32px rgba(23, 21, 18, 0.08);
  font-size: 0.92rem;
  font-weight: 780;
  backdrop-filter: blur(14px);
}

.hero-badges svg {
  color: var(--coral);
}

.marquee-section {
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.marquee-section:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-group {
  display: flex;
  align-items: center;
}

.marquee-group span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 850;
  white-space: nowrap;
}

.marquee-group svg {
  color: var(--gold);
}

.section,
.process-section,
.enquiry-section,
.coverage-section,
.why-section,
.checklist-section,
.route-section,
.testimonial-section,
.faq-section,
.cta-section {
  padding: 96px clamp(20px, 6vw, 82px);
}

.section-heading {
  width: min(860px, 100%);
  margin: 0 auto 40px;
  text-align: center;
}

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

.section-heading h2,
.enquiry-copy h2,
.checklist-copy h2,
.cta-section h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 3.55rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.enquiry-copy p:not(.eyebrow),
.checklist-copy p:not(.eyebrow),
.cta-section p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.stats-section {
  padding: 26px clamp(20px, 6vw, 82px) 0;
  background: var(--paper);
}

.stats-grid {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.stats-grid article {
  min-height: 132px;
  display: grid;
  align-content: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(23, 21, 18, 0.06);
}

.stats-grid strong {
  color: var(--emerald);
  font-size: 2.5rem;
  font-weight: 950;
  line-height: 1;
}

.stats-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 760;
}

.service-grid {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.service-card {
  min-height: 390px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(23, 21, 18, 0.07);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service-card:hover {
  border-color: rgba(200, 146, 62, 0.48);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.elevated-card {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, var(--emerald-dark), var(--plum));
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--emerald);
  box-shadow: 0 16px 30px rgba(15, 94, 72, 0.22);
}

.elevated-card .service-icon {
  color: var(--ink);
  background: var(--gold);
  box-shadow: none;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.34rem;
  line-height: 1.1;
  letter-spacing: 0;
}

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

.elevated-card p,
.elevated-card li {
  color: rgba(255, 255, 255, 0.82);
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: var(--soft-ink);
  font-size: 0.95rem;
  font-weight: 730;
}

.service-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
  transform: translateY(-50%);
}

.elevated-card li {
  color: rgba(255, 255, 255, 0.82);
}

.why-section {
  background: var(--white);
}

.why-grid {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.why-grid article {
  min-height: 292px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #fafaf7);
}

.why-grid svg {
  width: 44px;
  height: 44px;
  margin-bottom: 32px;
  color: var(--coral);
}

.why-grid h3,
.checklist-grid h3,
.testimonial-grid h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1.1;
}

.why-grid p,
.checklist-grid p,
.testimonial-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.coverage-section {
  background:
    linear-gradient(135deg, rgba(36, 33, 29, 0.96), rgba(10, 63, 50, 0.94)),
    linear-gradient(90deg, rgba(239, 106, 77, 0.16), rgba(200, 146, 62, 0.16));
  color: var(--white);
}

.coverage-section .section-heading h2 {
  color: var(--white);
}

.coverage-section .eyebrow {
  color: var(--gold);
}

.country-grid {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.country-grid article {
  min-height: 116px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.country-grid strong,
.country-grid small {
  display: block;
}

.country-grid strong {
  align-self: end;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.country-grid small {
  grid-column: 2;
  align-self: start;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
}

.flag {
  grid-row: span 2;
  width: 44px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.flag-uae {
  background:
    linear-gradient(90deg, #d9282f 0 25%, transparent 25%),
    linear-gradient(#00965e 0 33%, #ffffff 33% 66%, #141414 66%);
}

.flag-bahrain {
  background: linear-gradient(90deg, #ffffff 0 30%, #ce1126 30%);
}

.flag-ksa {
  background: #0b7d45;
}

.flag-oman {
  background:
    linear-gradient(90deg, #c8102e 0 24%, transparent 24%),
    linear-gradient(#ffffff 0 33%, #c8102e 33% 66%, #007a3d 66%);
}

.flag-qatar {
  background: linear-gradient(90deg, #ffffff 0 30%, #8a1538 30%);
}

.flag-kuwait {
  background:
    linear-gradient(90deg, #111111 0 24%, transparent 24%),
    linear-gradient(#007a3d 0 33%, #ffffff 33% 66%, #ce1126 66%);
}

.checklist-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 42px;
  align-items: start;
  background: var(--white);
}

.checklist-copy {
  max-width: 620px;
}

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

.checklist-grid article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfbf8;
}

.checklist-grid svg {
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  color: var(--emerald);
}

.packages-section {
  background: var(--paper);
}

.slider {
  position: relative;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.slider-controls {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: -22px;
  left: -22px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.slider-controls .icon-button {
  color: var(--white);
  background: var(--charcoal);
  box-shadow: 0 14px 30px rgba(23, 21, 18, 0.22);
  pointer-events: auto;
}

.slide-track {
  display: grid;
}

.slide {
  grid-area: 1 / 1;
  min-height: 390px;
  display: grid;
  align-content: center;
  padding: 52px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 44%),
    linear-gradient(135deg, var(--emerald-dark), var(--emerald), var(--gold));
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateX(26px) scale(0.985);
  transition:
    opacity 320ms ease,
    transform 320ms ease;
}

.slide:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 44%),
    linear-gradient(135deg, var(--plum), var(--emerald), var(--coral));
}

.slide:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 44%),
    linear-gradient(135deg, var(--charcoal), var(--plum), var(--gold));
}

.slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.slide-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 20px;
  padding: 9px 12px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.slide h3 {
  max-width: 840px;
  margin-bottom: 28px;
  font-size: 3.7rem;
  line-height: 1;
  letter-spacing: 0;
}

.slide a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 0 18px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font-weight: 900;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}

.slider-dots button {
  width: 32px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(23, 21, 18, 0.2);
  cursor: pointer;
  transition:
    background 180ms ease,
    width 180ms ease;
}

.slider-dots button.is-active {
  width: 48px;
  background: var(--emerald);
}

.route-section {
  background: var(--white);
}

.route-table {
  width: min(1180px, 100%);
  display: grid;
  gap: 8px;
  margin: 0 auto;
}

.route-row {
  display: grid;
  grid-template-columns: 0.62fr 1.1fr 1.28fr;
  gap: 12px;
  align-items: stretch;
}

.route-row span {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--soft-ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.route-row span:first-child {
  color: var(--ink);
  font-weight: 900;
}

.route-head span {
  min-height: 52px;
  color: var(--white);
  background: var(--charcoal);
  border-color: var(--charcoal);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.process-section {
  background: var(--white);
}

.timeline {
  width: min(1080px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.timeline article {
  position: relative;
  min-height: 252px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--white), #fafaf7);
}

.timeline span {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(23, 21, 18, 0.11);
  font-size: 3.2rem;
  font-weight: 950;
  line-height: 1;
}

.timeline svg {
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  color: var(--emerald);
}

.timeline h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.4rem;
  letter-spacing: 0;
}

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

.testimonial-section {
  background:
    linear-gradient(135deg, rgba(90, 47, 97, 0.96), rgba(10, 63, 50, 0.95)),
    linear-gradient(90deg, rgba(239, 106, 77, 0.2), rgba(200, 146, 62, 0.16));
  color: var(--white);
}

.testimonial-section .section-heading h2 {
  color: var(--white);
}

.testimonial-section .eyebrow {
  color: var(--gold);
}

.testimonial-grid {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.testimonial-grid article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.testimonial-grid svg {
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
  color: var(--gold);
}

.testimonial-grid p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
}

.testimonial-grid strong {
  display: block;
  margin-top: 22px;
  color: var(--white);
}

.faq-section {
  background: var(--paper);
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(23, 21, 18, 0.05);
}

.faq-list summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  flex: 0 0 auto;
  color: var(--emerald);
  transition: transform 180ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(180deg);
}

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

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(36, 33, 29, 0.94), rgba(15, 94, 72, 0.92)),
    url("assets/hero-consultancy.png") center / cover no-repeat;
}

.cta-section > div {
  width: min(760px, 100%);
}

.cta-section h2,
.cta-section p:not(.eyebrow) {
  color: var(--white);
}

.cta-section p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.cta-section .eyebrow {
  color: var(--gold);
}

.enquiry-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
  gap: 38px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(248, 248, 244, 0.94), rgba(248, 248, 244, 0.86)),
    url("assets/hero-consultancy.png") center / cover no-repeat;
}

.enquiry-copy {
  max-width: 690px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-links a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--charcoal);
  font-weight: 850;
}

.contact-links a:first-child {
  background: var(--emerald);
}

.enquiry-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.enquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--soft-ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(23, 21, 18, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  outline: 0;
  padding: 0 13px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.enquiry-form textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 4px rgba(15, 94, 72, 0.12);
}

.footer {
  padding: 26px clamp(20px, 6vw, 82px);
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  width: min(1180px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
}

.footer-brand .brand-copy strong,
.footer-brand .brand-copy small {
  color: var(--white);
}

.footer p {
  max-width: 560px;
  margin: 0;
  text-align: right;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  .main-nav {
    display: none;
  }

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

  .stats-grid,
  .why-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .checklist-section,
  .enquiry-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 4.4rem;
  }

  .section-heading h2,
  .enquiry-copy h2,
  .checklist-copy h2,
  .cta-section h2 {
    font-size: 2.9rem;
  }

  .slide h3 {
    font-size: 3rem;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 66px;
  }

  .site-header {
    top: 8px;
    right: 9px;
    left: 9px;
    width: auto;
    min-height: var(--header-height);
    padding: 9px;
    transform: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-copy strong {
    font-size: 0.94rem;
  }

  .brand-copy small {
    font-size: 0.66rem;
  }

  .header-actions .icon-link {
    display: none;
  }

  .site-header .header-actions {
    display: none;
  }

  .button-small {
    min-height: 40px;
    padding-inline: 12px;
  }

  .hero {
    min-height: 86svh;
    align-items: flex-end;
    padding: calc(var(--header-height) + 30px) 20px 36px;
    background:
      linear-gradient(0deg, rgba(248, 248, 244, 0.98) 0%, rgba(248, 248, 244, 0.9) 58%, rgba(248, 248, 244, 0.2) 100%),
      url("assets/hero-consultancy.png") center top / cover no-repeat;
  }

  h1 {
    max-width: 10ch;
    font-size: 3.05rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-badges {
    display: flex;
  }

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

  .section,
  .process-section,
  .enquiry-section,
  .coverage-section,
  .why-section,
  .checklist-section,
  .route-section,
  .testimonial-section,
  .faq-section,
  .cta-section {
    padding: 72px 18px;
  }

  .section-heading,
  .section-heading.align-left {
    text-align: left;
  }

  .section-heading h2,
  .enquiry-copy h2,
  .checklist-copy h2,
  .cta-section h2 {
    font-size: 2.35rem;
  }

  .service-grid,
  .stats-grid,
  .why-grid,
  .checklist-grid,
  .country-grid,
  .timeline,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .stats-section {
    padding-inline: 18px;
  }

  .stats-grid article,
  .why-grid article,
  .checklist-grid article,
  .testimonial-grid article {
    min-height: auto;
  }

  .route-row,
  .route-row.route-head {
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
  }

  .route-head {
    display: none;
  }

  .route-row + .route-row {
    margin-top: 10px;
  }

  .route-row span {
    min-height: auto;
    border-width: 0 0 1px;
    border-radius: 0;
  }

  .route-row span:last-child {
    border-bottom: 0;
  }

  .service-card {
    min-height: auto;
  }

  .slider-controls {
    position: static;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 12px;
    transform: none;
  }

  .slide {
    min-height: 420px;
    padding: 30px;
  }

  .slide h3 {
    font-size: 2.25rem;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer p {
    text-align: left;
  }
}

@media (max-width: 440px) {
  .site-header {
    right: 7px;
    left: 7px;
    width: auto;
  }

  .brand {
    gap: 8px;
  }

  .button {
    min-height: 48px;
    padding-inline: 14px;
    font-size: 0.94rem;
  }

  .button-small {
    width: 40px;
    max-width: 40px;
    gap: 0;
    overflow: hidden;
    padding: 0;
    white-space: nowrap;
  }

  .button-small .button-label {
    display: none;
  }

  .site-header .header-actions {
    display: none;
  }

  .button-small svg {
    width: 20px;
    height: 20px;
  }

  .eyebrow {
    font-size: 0.74rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  .section-heading h2,
  .enquiry-copy h2,
  .checklist-copy h2,
  .cta-section h2 {
    font-size: 2.05rem;
  }

  .slide h3 {
    font-size: 2rem;
  }

  .enquiry-form {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
