/* ============================================================
   Surgeline Facilities Management Services LLC — design system
   Mobile-first, semantic, dependency-free.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --navy-950: #071a33;
  --navy-900: #0a2344;
  --navy-800: #10305c;
  --navy-700: #163a6e;
  --navy-600: #1e4a8c;

  --gold: #cba861;
  --gold-600: #8c6c32;
  --gold-300: #ddc48d;
  --gold-100: #f3e9d2;

  --ink: #1c2634;
  --ink-soft: #45536a;
  --muted: #6b7787;
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --line: #e4e9f0;
  --line-dark: rgba(255, 255, 255, 0.14);

  --shadow-sm: 0 1px 2px rgba(10, 35, 68, 0.06), 0 4px 14px rgba(10, 35, 68, 0.06);
  --shadow-md: 0 2px 4px rgba(10, 35, 68, 0.07), 0 12px 32px rgba(10, 35, 68, 0.1);
  --shadow-gold: 0 2px 4px rgba(176, 140, 66, 0.15), 0 14px 34px rgba(176, 140, 66, 0.22);

  --radius: 14px;
  --radius-sm: 10px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --container: 1180px;
  --ease: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--navy-700);
  text-underline-offset: 3px;
}

h1, h2, h3, h4 {
  margin: 0 0 0.6em;
  line-height: 1.18;
  color: var(--navy-900);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  padding: 0.7rem 1.1rem;
  background: var(--navy-900);
  color: #fff;
  border-radius: 8px;
  transition: top var(--ease);
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

::selection {
  background: var(--gold-300);
  color: var(--navy-950);
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

.section {
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.section--tint {
  background: var(--bg-soft);
}

.section--navy {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-950));
  color: #dfe7f3;
}

.section-head {
  max-width: 44rem;
  margin-bottom: clamp(2.2rem, 4.5vw, 3.5rem);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 0.9rem;
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-head--center .eyebrow::after {
  content: "";
  width: 2rem;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 0;
}

.section--navy .section-head h2 {
  color: #fff;
}

.section--navy .section-head p {
  color: #b9c6da;
}

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

.lead {
  color: var(--ink-soft);
  font-size: 1.1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease),
    background-color var(--ease), border-color var(--ease), color var(--ease);
  white-space: nowrap;
}

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

.btn:active {
  transform: translateY(0);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-950);
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  background: var(--gold-600);
  color: #fff;
}

.btn--navy {
  background: var(--navy-900);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn--navy:hover {
  background: var(--navy-700);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
}

.btn--ghost:hover {
  border-color: var(--gold);
  background: rgba(203, 168, 97, 0.12);
}

.btn--block {
  width: 100%;
}

/* ---------- Header / navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 76px;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--navy-900);
  line-height: 1.1;
}

.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--navy-900);
  display: grid;
  place-items: center;
  flex: none;
  color: var(--gold);
}

.brand__mark svg {
  width: 22px;
  height: 22px;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.brand__name {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.brand__sub {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.nav {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--ease), border-color var(--ease);
}

.nav__link:hover,
.nav__link[aria-current="page"] {
  color: var(--navy-900);
  border-color: var(--gold);
}

.header-cta {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-panel {
  position: fixed;
  inset: 76px 0 0 0;
  background: #fff;
  padding: 1.5rem clamp(1.25rem, 4vw, 2rem) 2rem;
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
  border-top: 1px solid var(--line);
}

.nav-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.nav-panel__list {
  display: grid;
  gap: 0.2rem;
}

.nav-panel__link {
  display: block;
  padding: 0.85rem 0.4rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.nav-panel__link[aria-current="page"] {
  color: var(--gold-600);
}

.nav-panel__cta {
  margin-top: 1.4rem;
}

@media (min-width: 1024px) {
  .nav {
    display: block;
  }

  .header-cta {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-panel {
    display: none;
  }
}

/* ---------- Hero (home) ---------- */
.hero {
  background:
    radial-gradient(1100px 480px at 85% -10%, rgba(203, 168, 97, 0.16), transparent 60%),
    linear-gradient(180deg, var(--navy-900), var(--navy-950));
  color: #dfe7f3;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.hero__grid {
  display: grid;
  gap: 2.75rem;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero__eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 2px;
  background: var(--gold);
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5.2vw, 3.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero h1 .accent {
  color: var(--gold);
}

.hero__text {
  font-size: 1.13rem;
  color: #b9c6da;
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.4rem;
}

.hero__sources {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #93a3ba;
}

.hero__sources .dot {
  color: var(--gold);
}

.hero__sources span.country {
  font-weight: 600;
  color: #c6d2e2;
}

.hero__media {
  position: relative;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  border: 1px solid rgba(203, 168, 97, 0.5);
  border-radius: var(--radius);
  z-index: 0;
}

.hero__media img {
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
  height: auto;
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }
}

/* ---------- Split / about ---------- */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.split__media {
  position: relative;
}

.split__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: auto;
}

.split__media::after {
  content: "";
  position: absolute;
  right: -0.9rem;
  bottom: -0.9rem;
  width: 46%;
  height: 40%;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  border-radius: 0 0 var(--radius) 0;
  z-index: -1;
}

.check-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.4rem 0 0;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  color: var(--ink);
}

.check-list .tick {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-100);
  display: grid;
  place-items: center;
  color: var(--navy-700);
}

.check-list .tick svg {
  width: 12px;
  height: 12px;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 6vw, 5rem);
  }
}

/* ---------- Service cards ---------- */
.card-grid {
  display: grid;
  gap: 1.4rem;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-300);
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--navy-900);
  display: grid;
  place-items: center;
  color: var(--gold);
}

.card__icon svg {
  width: 26px;
  height: 26px;
}

.card__img {
  border-radius: var(--radius);
  overflow: hidden;
}

.card__img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}

.card:hover .card__img img {
  transform: scale(1.04);
}

.card h3 {
  font-size: 1.18rem;
  margin: 0;
}

.card p {
  color: var(--ink-soft);
  font-size: 0.97rem;
  margin: 0;
}

.card__link {
  margin-top: auto;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--gold-600);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.card__link svg {
  width: 15px;
  height: 15px;
  transition: transform var(--ease);
}

.card__link:hover svg {
  transform: translateX(4px);
}

@media (min-width: 700px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card-grid--fit {
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
}

/* ---------- Country / workforce cards ---------- */
.country-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

.country-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.5rem 1.3rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color var(--ease), transform var(--ease);
}

.country-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.country-card__flag {
  flex: none;
  width: 46px;
  height: 34px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  display: block;
}

.country-card__flag svg {
  width: 100%;
  height: 100%;
  display: block;
}

.country-card h3 {
  color: #fff;
  font-size: 1.08rem;
  margin: 0 0 0.2rem;
}

.country-card p {
  color: #93a3ba;
  font-size: 0.9rem;
  margin: 0;
}

@media (min-width: 900px) {
  .country-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .country-card {
    flex-direction: column;
  }
}

/* ---------- Why us ---------- */
.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-300);
}

.why-card__num {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--gold-600);
  margin-bottom: 0.5rem;
}

.why-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.4rem;
}

.why-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- Approach timeline ---------- */
.timeline {
  position: relative;
  display: grid;
  gap: 1.6rem;
  margin-top: 1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}

.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.1rem;
  align-items: start;
}

.step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--gold);
  color: var(--gold-600);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  display: grid;
  place-items: center;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}

.step__body h3 {
  font-size: 1.1rem;
  margin: 0 0 0.3rem;
}

.step__body p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  margin: 0;
}

@media (min-width: 960px) {
  .timeline {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.4rem;
  }

  .timeline::before {
    left: 0;
    right: 0;
    top: 26px;
    bottom: auto;
    width: auto;
    height: 1px;
  }

  .step {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

.section--navy .timeline::before {
  background: var(--line-dark);
}

.section--navy .step__num {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.section--navy .step__body h3 {
  color: #fff;
}

.section--navy .step__body p {
  color: #93a3ba;
}

/* ---------- Policy quote ---------- */
.policy {
  text-align: center;
  position: relative;
}

.policy__mark {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: rgba(203, 168, 97, 0.14);
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
}

.policy__mark svg {
  width: 26px;
  height: 26px;
}

.policy__quote {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--navy-900);
  max-width: 58rem;
  margin: 0 auto 1.2rem;
  letter-spacing: -0.01em;
}

.policy__byline {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 700;
}

.section--navy .policy__quote {
  color: #fff;
}

.section--navy .policy__byline {
  color: var(--gold);
}

/* ---------- CTA band ---------- */
.cta {
  background:
    radial-gradient(900px 400px at 20% 120%, rgba(203, 168, 97, 0.18), transparent 60%),
    linear-gradient(135deg, var(--navy-800), var(--navy-950));
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  color: #dfe7f3;
  position: relative;
  overflow: hidden;
}

.cta h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  margin-bottom: 0.8rem;
}

.cta p {
  color: #b9c6da;
  max-width: 40rem;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background:
    radial-gradient(900px 420px at 90% -20%, rgba(203, 168, 97, 0.16), transparent 60%),
    linear-gradient(180deg, var(--navy-900), var(--navy-950));
  color: #dfe7f3;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.6vw, 3rem);
  margin-bottom: 0.9rem;
}

.page-hero .lead {
  color: #b9c6da;
  max-width: 40rem;
  margin: 0;
}

.page-hero .eyebrow {
  color: var(--gold);
}

/* ---------- Services detail ---------- */
.service {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
}

.service:last-child {
  border-bottom: none;
}

.service:nth-child(even) .service__media {
  order: -1;
}

.service__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: auto;
}

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

.service__body > p {
  color: var(--ink-soft);
}

.service__points {
  display: grid;
  gap: 0.6rem;
  margin: 1.2rem 0 1.6rem;
}

.service__points li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.service__points .tick {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 0.18rem;
  border-radius: 50%;
  background: var(--gold-100);
  color: var(--navy-700);
  display: grid;
  place-items: center;
}

.service__points .tick svg {
  width: 11px;
  height: 11px;
}

@media (min-width: 900px) {
  .service {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 6vw, 5rem);
  }
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.contact-card__head {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-950));
  color: #fff;
  padding: 1.6rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.contact-card__head svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.contact-card__head h2 {
  color: #fff;
  font-size: 1.15rem;
  margin: 0;
}

.contact-details {
  padding: 1.4rem 1.8rem 1.8rem;
  display: grid;
  gap: 1.3rem;
}

.contact-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.9rem;
}

.contact-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--navy-700);
  display: grid;
  place-items: center;
}

.contact-item__icon svg {
  width: 20px;
  height: 20px;
}

.contact-item h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0.1rem 0 0.25rem;
  font-weight: 700;
}

.contact-item p {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
}

.contact-item a {
  color: var(--navy-700);
  font-weight: 600;
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--gold-600);
  text-decoration: underline;
}

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.6rem, 4vw, 2.4rem);
}

.form-card__head {
  margin-bottom: 1.6rem;
}

.form-card__head h2 {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.form-card__head p {
  color: var(--ink-soft);
  margin: 0;
}

.form-grid {
  display: grid;
  gap: 1.1rem;
}

.form-group {
  display: grid;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-900);
}

.form-group label .req {
  color: var(--gold-600);
}

.form-group input,
.form-group select,
.form-group textarea {
  font: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.78rem 0.95rem;
  width: 100%;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(203, 168, 97, 0.22);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-hint {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 1.1rem 0 0;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.form-hint svg {
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 0.2rem;
  color: var(--gold-600);
}

.form-success {
  display: none;
  border: 1px solid var(--gold-300);
  background: var(--gold-100);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  color: var(--navy-900);
  font-size: 0.96rem;
  margin-top: 1.1rem;
}

.form-success.is-visible {
  display: block;
}

.form-hint a,
.form-success a {
  color: var(--navy-700);
  font-weight: 600;
  text-decoration: none;
}

.form-hint a:hover,
.form-success a:hover {
  color: var(--gold-600);
  text-decoration: underline;
}

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

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--navy-950), #050f1f);
  color: #93a3ba;
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.site-footer__grid {
  display: grid;
  gap: 2.2rem;
  padding-bottom: 2.5rem;
}

.site-footer__brand .brand {
  color: #fff;
  margin-bottom: 1rem;
}

.site-footer__brand p {
  max-width: 24rem;
  font-size: 0.95rem;
  margin: 0;
}

.site-footer h3 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}

.site-footer__links li {
  margin-bottom: 0.55rem;
}

.site-footer__links a {
  color: #93a3ba;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--ease);
}

.site-footer__links a:hover {
  color: var(--gold);
}

.site-footer__contact li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
}

.site-footer__contact svg {
  flex: none;
  width: 17px;
  height: 17px;
  margin-top: 0.22rem;
  color: var(--gold);
}

.site-footer__contact a {
  color: #93a3ba;
  text-decoration: none;
}

.site-footer__contact a:hover {
  color: var(--gold);
}

.site-footer__bottom {
  border-top: 1px solid var(--line-dark);
  padding-block: 1.2rem;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

.site-footer__bottom a {
  color: var(--gold-300);
  text-decoration: none;
}

@media (min-width: 760px) {
  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 3rem;
  }

  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ---------- Reveal animation ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Stats / key figures ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

.stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.5rem 1.3rem;
  text-align: center;
  transition: border-color var(--ease), transform var(--ease);
}

.stat:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.stat__num {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.stat__label {
  font-size: 0.88rem;
  color: #93a3ba;
  font-weight: 500;
}

@media (min-width: 700px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- Sector / industries grid ---------- */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

.sector-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.3rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.sector-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-300);
}

.sector-card__icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--navy-900);
  display: grid;
  place-items: center;
  color: var(--gold);
}

.sector-card__icon svg {
  width: 24px;
  height: 24px;
}

.sector-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.25rem;
}

.sector-card p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin: 0;
}

@media (min-width: 640px) {
  .sector-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .sector-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- Service category cards ---------- */
.service-cat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.service-cat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-300);
}

.service-cat__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--navy-900);
  display: grid;
  place-items: center;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.service-cat__icon svg {
  width: 28px;
  height: 28px;
}

.service-cat h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.service-cat > p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  margin-bottom: 1rem;
}

.service-cat__list {
  display: grid;
  gap: 0.5rem;
}

.service-cat__list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.93rem;
  color: var(--ink-soft);
}

.service-cat__list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

/* ---------- Certifications ---------- */
.cert-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  justify-content: center;
  align-items: center;
}

.cert-item {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  padding: 0.8rem;
  transition: transform var(--ease), border-color var(--ease);
}

.cert-item:hover {
  transform: scale(1.08);
  border-color: var(--gold-300);
}

.cert-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0.2);
}

/* ---------- Clients / partners ---------- */
.clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.client-logo {
  width: 120px;
  height: 60px;
  border-radius: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  padding: 0.8rem;
  transition: transform var(--ease), border-color var(--ease);
  opacity: 0.7;
}

.client-logo:hover {
  transform: scale(1.06);
  border-color: var(--gold-300);
  opacity: 1;
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ---------- Hospitality highlight ---------- */
.hospitality-highlight {
  background:
    radial-gradient(1000px 400px at 80% -10%, rgba(203, 168, 97, 0.14), transparent 60%),
    linear-gradient(135deg, var(--navy-800), var(--navy-950));
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  padding: clamp(2.5rem, 5vw, 4rem);
  color: #dfe7f3;
  position: relative;
  overflow: hidden;
}

.hospitality-highlight h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  margin-bottom: 0.8rem;
}

.hospitality-highlight > p {
  color: #b9c6da;
  max-width: 42rem;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.hospitality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.hospitality-grid li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: #c6d2e2;
}

.hospitality-grid li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

@media (min-width: 700px) {
  .hospitality-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- Tag list (for services page) ---------- */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.tag {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--gold-100);
  color: var(--gold-600);
  border: 1px solid var(--gold-300);
}

/* ---------- Reveal animation ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
