﻿:root {
  --navy: #06233f;
  --navy-2: #0b3156;
  --teal: #078fb0;
  --sky: #46bce8;
  --gold: #f3c94d;
  --green: #20b15a;
  --red: #d8343a;
  --white: #ffffff;
  --ice: #f4f8fb;
  --mist: #eef5f8;
  --ink: #142435;
  --muted: #637589;
  --line: #dbe6ef;
  --shadow: 0 24px 60px rgba(6, 35, 63, .13);
  --shadow-soft: 0 14px 34px rgba(6, 35, 63, .08);
  --shadow-strong: 0 32px 90px rgba(6, 35, 63, .2);
  --radius: 8px;
  --radius-lg: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fff 0, #fff 560px, #f8fbfd 100%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
}

img {
  display: block;
}

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* Shared UI */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--teal), var(--sky));
  color: var(--white);
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(7, 143, 176, .24);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(7, 143, 176, .32);
  filter: saturate(1.08);
}

.btn--secondary {
  background: linear-gradient(135deg, #f6d35d, var(--gold));
  color: var(--navy);
  box-shadow: 0 14px 28px rgba(243, 201, 77, .24);
}

.btn--ghost {
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .34);
  box-shadow: none;
}

.btn--small {
  min-height: 42px;
  padding: 0 16px;
  font-size: .92rem;
}

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

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

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: currentColor;
}

.section {
  padding: 104px 0;
}

.section--tinted {
  background:
    linear-gradient(180deg, var(--ice), #fff),
    linear-gradient(135deg, rgba(7, 143, 176, .08), transparent);
}

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

.section-heading h2,
.about-copy h2,
.form-intro h2,
.contact-copy h2,
.notice-card h2,
.team-copy h2,
.travel-update-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
}

.section-heading p,
.about-copy p,
.form-intro p,
.contact-copy p,
.team-copy p,
.travel-update-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* Top bar and navigation */
.top-bar {
  background: linear-gradient(90deg, #04182c, var(--navy), #073451);
  color: rgba(255, 255, 255, .88);
  font-size: .92rem;
}

.top-bar__inner,
.top-bar__links,
.nav {
  display: flex;
  align-items: center;
}

.top-bar__inner {
  justify-content: space-between;
  min-height: 42px;
  gap: 18px;
}

.top-bar p {
  margin: 0;
}

.top-bar__links {
  gap: 18px;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(219, 230, 239, .8);
}

.nav {
  min-height: 82px;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 270px;
}

.brand__logo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 64px;
  height: 48px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(219, 230, 239, .85);
  box-shadow: var(--shadow-soft);
}

.brand__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}

.brand__fallback {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: var(--white);
  font-weight: 950;
}

.brand__logo.is-missing + .brand__fallback {
  display: grid;
}

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

.brand strong {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--teal);
  font-weight: 850;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--navy);
  font-weight: 800;
  font-size: .95rem;
}

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

.nav-menu a:not(.btn)::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--teal);
  transition: width .25s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a.is-active:not(.btn) {
  color: var(--teal);
}

.nav-menu a.is-active:not(.btn)::after {
  width: 100%;
}

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

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

/* Hero */
.hero {
  position: relative;
  min-height: 800px;
  padding: 124px 0 0;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(6, 35, 63, .95), rgba(6, 35, 63, .72) 50%, rgba(6, 35, 63, .35)),
    url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(70, 188, 232, .25), transparent 28%),
    linear-gradient(180deg, transparent 70%, rgba(6, 35, 63, .95));
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 54px;
  align-items: center;
}

.hero__content {
  max-width: 780px;
}

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

.hero h1 {
  margin: 0;
  color: var(--white);
  max-width: 820px;
  font-size: clamp(3rem, 7vw, 5.65rem);
  line-height: .96;
}

.hero__lead {
  max-width: 690px;
  margin: 24px 0 34px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .08));
  box-shadow: 0 28px 80px rgba(0, 0, 0, .26);
  backdrop-filter: blur(18px);
}

.hero-card__tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(243, 201, 77, .16);
  color: var(--gold);
  font-weight: 900;
  font-size: .82rem;
}

.hero-card h2 {
  margin: 0 0 24px;
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1.18;
}

.hero-card__list {
  display: grid;
  gap: 10px;
}

.hero-card__list span {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  font-weight: 800;
}

.trust-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 96px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 18px;
  background: rgba(255, 255, 255, .18);
  box-shadow: var(--shadow);
}

.trust-panel div {
  padding: 28px;
  background: rgba(255, 255, 255, .96);
  color: var(--navy);
}

.trust-panel span {
  display: block;
  color: var(--teal);
  font-weight: 900;
}

.trust-panel strong {
  display: block;
  margin-top: 8px;
}

/* Interior page heroes */
.page-hero {
  position: relative;
  min-height: 440px;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(6, 35, 63, .95), rgba(6, 35, 63, .75)),
    url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 78% 12%, rgba(70, 188, 232, .24), transparent 30%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 92px 0;
}

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

.page-hero h1 {
  margin: 0;
  color: var(--white);
  max-width: 920px;
  font-size: clamp(2.65rem, 6vw, 4.8rem);
  line-height: 1;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.page-hero--about {
  background:
    linear-gradient(110deg, rgba(6, 35, 63, .94), rgba(6, 35, 63, .72)),
    url("images/team.jpg") center 28%/cover;
}

.page-hero--services {
  background:
    linear-gradient(110deg, rgba(6, 35, 63, .94), rgba(6, 35, 63, .7)),
    url("https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.page-hero--opportunities {
  background:
    linear-gradient(110deg, rgba(6, 35, 63, .94), rgba(6, 35, 63, .7)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.page-hero--application,
.page-hero--contact {
  background:
    linear-gradient(110deg, rgba(6, 35, 63, .94), rgba(6, 35, 63, .7)),
    url("https://images.unsplash.com/photo-1521790797524-b2497295b8a0?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.split-heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
}

/* Cards and content sections */
.card-grid,
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.why-card,
.documents-panel,
.testimonial-card,
.application-form,
.process-step,
.compliance-card,
.travel-update-card,
.contact-visual {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-card,
.compliance-card {
  min-height: 238px;
  padding: 30px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover,
.compliance-card:hover,
.process-step:hover,
.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(7, 143, 176, .34);
  box-shadow: var(--shadow);
}

.icon,
.compliance-card span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e9f8fc, #f7fcfe);
  color: var(--teal);
  font-size: .88rem;
  font-weight: 950;
}

.service-card h3,
.why-card h3,
.documents-panel h3,
.process-step h3,
.compliance-card h3,
.testimonial-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  line-height: 1.2;
}

.service-card p,
.process-step p,
.compliance-card p,
.testimonial-card p {
  margin: 0;
  color: var(--muted);
}

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

.services-grid--full .service-card {
  min-height: 280px;
}

.about-layout,
.form-layout,
.contact-layout,
.travel-update-layout {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 44px;
  align-items: center;
}

.travel-update-layout {
  grid-template-columns: .65fr 1.35fr;
}

.team-layout {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 44px;
  align-items: center;
}

.about-copy .btn {
  margin-top: 18px;
}

.why-card {
  padding: 32px;
}

.why-grid,
.document-list,
.team-points {
  display: grid;
  gap: 12px;
}

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

.why-grid span,
.document-list span,
.team-points span {
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(219, 230, 239, .8);
  background: linear-gradient(180deg, #fff, var(--ice));
  color: var(--navy);
  font-weight: 800;
}

/* Image slots */
.team-media,
.contact-visual,
.travel-update-card {
  position: relative;
  overflow: hidden;
}

.team-media {
  min-height: auto;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(219, 230, 239, .75);
  border-radius: 20px;
  box-shadow: var(--shadow);
  background: var(--ice);
}

.team-media img,
.contact-visual img,
.travel-update-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-media img {
  min-height: 100%;
  object-position: center top;
}

.contact-visual img,
.travel-update-card img {
  min-height: 360px;
}

.travel-update-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.travel-update-gallery .travel-update-card {
  min-height: auto;
}

.travel-update-gallery .travel-update-card img {
  aspect-ratio: 1.7 / 1;
  min-height: 0;
  object-fit: cover;
  background: #071a32;
}

.travel-update-card--large img {
  aspect-ratio: 727 / 429;
  min-height: 0;
  object-fit: cover;
  background: #071a32;
}

.travel-update-card--large {
  padding: 10px;
  background: linear-gradient(180deg, #fff, #eef7fb);
}

.travel-update-card--large img {
  border-radius: 12px;
}

.image-fallback {
  display: grid;
  min-height: 320px;
  place-items: center;
  gap: 8px;
  padding: 30px;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 143, 176, .92), rgba(6, 35, 63, .95)),
    url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1000&q=80") center/cover;
}

.image-fallback strong {
  display: block;
  max-width: 360px;
  font-size: 1.5rem;
  line-height: 1.15;
}

.image-fallback span {
  color: rgba(255, 255, 255, .8);
}

img.is-missing {
  display: none;
}

img:not(.is-missing) + .image-fallback {
  display: none;
}

/* Opportunity */
.opportunity-section {
  background:
    linear-gradient(180deg, #fff, var(--ice)),
    linear-gradient(135deg, rgba(7, 143, 176, .1), transparent);
}

.opportunity-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
}

.opportunity-panel {
  padding: 32px;
  border: 1px solid rgba(219, 230, 239, .8);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.opportunity-panel--primary {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 35, 63, .92), rgba(7, 143, 176, .78)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1400&q=80") center/cover;
}

.opportunity-panel h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 1.45rem;
}

.opportunity-panel--primary h3 {
  color: var(--white);
}

.opportunity-badge {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(243, 201, 77, .16);
  color: var(--gold);
  font-weight: 900;
}

.role-list {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.role-list li {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .1);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.detail-grid div {
  padding: 17px;
  border-radius: var(--radius);
  border: 1px solid rgba(219, 230, 239, .85);
  background: linear-gradient(180deg, #fff, var(--ice));
}

.detail-grid span {
  display: block;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 800;
}

.detail-grid strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
}

.opportunity-support-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 24px;
  margin-top: 24px;
}

.documents-panel {
  padding: 30px;
}

.document-list {
  grid-template-columns: repeat(3, 1fr);
}

.document-list--compact {
  grid-template-columns: 1fr;
}

.recruitment-cards {
  display: grid;
  gap: 26px;
}

.recruitment-card {
  display: grid;
  grid-template-columns: minmax(260px, .58fr) 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.recruitment-card:hover {
  transform: translateY(-4px);
  border-color: rgba(7, 143, 176, .28);
  box-shadow: var(--shadow-strong);
}

.recruitment-card--reverse .recruitment-card__image {
  order: 2;
}

.recruitment-card--feature {
  margin-bottom: 24px;
}

.recruitment-card__image {
  min-height: 460px;
  background: var(--ice);
}

.recruitment-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.recruitment-card__content {
  padding: 38px;
}

.recruitment-card__content h3 {
  margin: 10px 0 12px;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.08;
}

.recruitment-card__content p {
  color: var(--muted);
}

.mini-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 22px 0;
}

.mini-detail-grid span {
  padding: 13px 15px;
  border-radius: var(--radius);
  border: 1px solid rgba(219, 230, 239, .85);
  background: linear-gradient(180deg, #fff, var(--ice));
  color: var(--navy);
  font-weight: 850;
}

/* Notice */
.notice-section {
  padding-top: 0;
}

.notice-card {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 34px;
  padding: 36px;
  border: 1px solid rgba(243, 201, 77, .45);
  border-left: 5px solid var(--gold);
  border-radius: 18px;
  background: #fffaf0;
}

.notice-card--compact {
  margin-top: 24px;
}

.notice-list p {
  margin: 0 0 14px;
  color: #4e5e6d;
}

.notice-list strong {
  color: var(--navy);
}

/* Form */
.contact-strip {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-strip span {
  padding: 14px 16px;
  border-left: 3px solid var(--teal);
  border-radius: var(--radius);
  border: 1px solid rgba(219, 230, 239, .85);
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
}

.application-form {
  padding: 34px;
  border-top: 4px solid var(--teal);
}

.form-row {
  margin-bottom: 18px;
}

.form-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-weight: 900;
  font-size: .92rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 15px 16px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(7, 143, 176, .12);
}

.field-error {
  border-color: var(--red);
}

.form-message {
  min-height: 24px;
  margin: 4px 0 14px;
  font-weight: 800;
}

.form-message.is-error {
  color: var(--red);
}

.form-message.is-success {
  color: #087f5b;
}

/* Process, client value and contact */
.process-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.process-step,
.testimonial-card {
  padding: 26px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.process-step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.contact-section {
  background: var(--navy);
  color: var(--white);
}

.contact-copy h2,
.contact-copy .eyebrow {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, .78);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 24px 0 14px;
}

.contact-details a {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  font-weight: 850;
  overflow-wrap: anywhere;
  transition: background .25s ease, transform .25s ease;
}

.contact-details a:hover {
  background: rgba(255, 255, 255, .14);
  transform: translateY(-2px);
}

.contact-details span {
  display: block;
  color: var(--gold);
  font-size: .74rem;
  text-transform: uppercase;
}

.confirmation-note {
  margin: 0 0 24px;
  font-size: .94rem;
}

.contact-visual {
  min-height: 380px;
}

.contact-summary-card {
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(7, 143, 176, .9), rgba(6, 35, 63, .96)),
    url("https://images.unsplash.com/photo-1521790797524-b2497295b8a0?auto=format&fit=crop&w=1000&q=85") center/cover;
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-summary-card span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.contact-summary-card h3 {
  margin: 12px 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.contact-summary-card p {
  color: rgba(255, 255, 255, .8);
}

.contact-summary-card strong,
.contact-summary-card a {
  display: block;
  margin-top: 12px;
  overflow-wrap: anywhere;
}

.contact-summary-card strong {
  font-size: 1.4rem;
}

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

.cta-card,
.map-placeholder {
  padding: 46px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 85% 15%, rgba(70, 188, 232, .2), transparent 30%),
    linear-gradient(135deg, var(--navy), #04182c);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-card h2,
.map-placeholder strong {
  display: block;
  max-width: 760px;
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.cta-card p:not(.eyebrow),
.map-placeholder p {
  max-width: 720px;
  color: rgba(255, 255, 255, .78);
}

.map-placeholder {
  min-height: 300px;
  display: grid;
  place-content: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(7, 143, 176, .9), rgba(6, 35, 63, .95)),
    url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1200&q=85") center/cover;
}

.map-placeholder span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.map-embed {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--ice);
  box-shadow: var(--shadow);
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 450px;
}

/* Footer */
.footer {
  background:
    radial-gradient(circle at 85% 0, rgba(7, 143, 176, .18), transparent 32%),
    #04182c;
  color: rgba(255, 255, 255, .78);
  padding: 58px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .7fr .8fr 1fr;
  gap: 34px;
}

.footer h3,
.footer h4 {
  margin: 0 0 14px;
  color: var(--white);
}

.footer a {
  display: block;
  margin: 7px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 20px 42px rgba(10, 40, 25, .3);
  transition: transform .25s ease, box-shadow .25s ease;
}

.floating-whatsapp svg {
  width: 26px;
  height: 26px;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(10, 40, 25, .34);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1040px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 84px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .hero__grid,
  .about-layout,
  .form-layout,
  .contact-layout,
  .team-layout,
  .travel-update-layout,
  .opportunity-layout,
  .opportunity-support-grid,
  .recruitment-card,
  .notice-card {
    grid-template-columns: 1fr;
  }

  .recruitment-card--reverse .recruitment-card__image {
    order: 0;
  }

  .card-grid,
  .compliance-grid,
  .document-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .recruitment-card__image {
    min-height: 520px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 30px, var(--container));
  }

  .top-bar__inner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
  }

  .top-bar__links,
  .hero__actions,
  .split-heading {
    gap: 10px;
  }

  .split-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    min-width: auto;
  }

  .brand__logo-wrap {
    width: 54px;
    height: 42px;
  }

  .brand strong {
    font-size: .88rem;
  }

  .brand small {
    font-size: .78rem;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 0;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 14vw, 4rem);
  }

  .hero-card,
  .trust-panel div {
    background: rgba(255, 255, 255, .96);
    color: var(--navy);
  }

  .hero-card h2 {
    color: var(--navy);
  }

  .hero-card__list span {
    border-color: var(--line);
    background: var(--ice);
  }

  .hero__actions .btn {
    width: 100%;
  }

  .trust-panel,
  .card-grid,
  .compliance-grid,
  .why-grid,
  .document-list,
  .mini-detail-grid,
  .form-row--split,
  .process-grid,
  .testimonial-grid,
  .contact-details,
  .footer-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .trust-panel {
    margin-top: 54px;
  }

  .section {
    padding: 70px 0;
  }

  .opportunity-panel,
  .application-form,
  .why-card,
  .notice-card,
  .hero-card,
  .cta-card,
  .map-placeholder,
  .recruitment-card__content,
  .contact-summary-card {
    padding: 24px;
  }

  .page-hero {
    min-height: 390px;
  }

  .page-hero__content {
    padding: 70px 0;
  }

  .page-hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.7rem);
  }

  .recruitment-card__image {
    min-height: 460px;
  }

  .travel-update-card--large {
    padding: 7px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 0 13px;
  }

  .floating-whatsapp span {
    display: none;
  }
}

@media (max-width: 460px) {
  .brand span:last-child {
    max-width: 175px;
  }

  .brand strong,
  .brand small {
    white-space: normal;
  }

  .recruitment-card__image {
    min-height: 390px;
  }

  .top-bar__links {
    flex-wrap: wrap;
  }
}

