/* ==========================================================
   Sprink Strategy — Main Stylesheet
   Brand palette extracted from logo:
     Navy    #1B2B5E  (logo wordmark)
     Orange  #E8522A  (logo arc / CTA accent)
     Green   #4CAF50  (logo bars)
     Gold    #F5C518  (logo star)
     Blue    #2196F3  (logo top bar)
   ========================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand */
  --clr-navy:      #1B2B5E;
  --clr-navy-deep: #111D45;
  --clr-orange:    #E8522A;
  --clr-orange-lt: #F4724F;
  --clr-green:     #4CAF50;
  --clr-gold:      #F5C518;
  --clr-blue-lg:   #2196F3;

  /* UI */
  --clr-primary:   var(--clr-navy);
  --clr-accent:    var(--clr-orange);
  --clr-dark:      #0D1B40;
  --clr-mid:       #1E293B;
  --clr-light:     #F4F6FB;
  --clr-white:     #FFFFFF;
  --clr-gray:      #5A6A85;
  --clr-border:    #DDE3EF;
  --clr-success:   #16A34A;
  --clr-error:     #DC2626;

  --ff-sans: 'Inter', 'Segoe UI', Arial, sans-serif;
  --fw-normal:  400;
  --fw-medium:  500;
  --fw-semibold:600;
  --fw-bold:    700;
  --fw-black:   800;

  --transition: 0.25s ease;
  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --shadow-sm:  0 2px 8px rgba(27,43,94,.07);
  --shadow-md:  0 6px 24px rgba(27,43,94,.13);
  --shadow-lg:  0 16px 48px rgba(27,43,94,.18);

  --max-width:  1200px;
  --nav-height: 100px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-sans);
  color: var(--clr-dark);
  background: var(--clr-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-weight: var(--fw-bold); line-height: 1.2; color: var(--clr-dark); }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: var(--fw-black); }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { font-size: 1rem; color: var(--clr-gray); line-height: 1.75; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 96px 0; }
.section--light { background: var(--clr-light); }
.section--navy  { background: var(--clr-navy); }
.section--dark  { background: var(--clr-dark); }
.section--navy h2, .section--navy h3, .section--navy h4,
.section--dark  h2, .section--dark  h3, .section--dark h4 { color: var(--clr-white); }
.section--navy p, .section--dark p { color: rgba(255,255,255,.65); }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section-header p { margin-top: 16px; font-size: 1.05rem; }

/* Pill label */
.label {
  display: inline-block;
  font-size: .75rem;
  font-weight: var(--fw-semibold);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-orange);
  background: rgba(232,82,42,.1);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.label--light {
  color: var(--clr-gold);
  background: rgba(245,197,24,.15);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--clr-orange);
  color: var(--clr-white);
  border-color: var(--clr-orange);
}
.btn--primary:hover {
  background: var(--clr-orange-lt);
  border-color: var(--clr-orange-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,82,42,.38);
}
.btn--navy {
  background: var(--clr-navy);
  color: var(--clr-white);
  border-color: var(--clr-navy);
}
.btn--navy:hover {
  background: var(--clr-navy-deep);
  border-color: var(--clr-navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,43,94,.35);
}
.btn--outline {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255,255,255,.7);
}
.btn--outline:hover {
  background: var(--clr-white);
  color: var(--clr-navy);
  border-color: var(--clr-white);
  transform: translateY(-2px);
}
.btn--outline-navy {
  background: transparent;
  color: var(--clr-navy);
  border-color: var(--clr-navy);
}
.btn--outline-navy:hover {
  background: var(--clr-navy);
  color: var(--clr-white);
  transform: translateY(-2px);
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--clr-border);
  height: var(--nav-height);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

/* Logo */
.navbar__logo {
  flex-shrink: 0;
  line-height: 0;
}
.navbar__logo img {
  height: 95px;
  width: auto;
  display: block;
  object-fit: contain;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.navbar__links a {
  font-size: .95rem;
  font-weight: var(--fw-medium);
  color: var(--clr-dark);
  position: relative;
  transition: color var(--transition);
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--clr-orange);
  border-radius: 2px;
  transition: width var(--transition);
}
.navbar__links a:hover,
.navbar__links a.active { color: var(--clr-navy); }
.navbar__links a:hover::after,
.navbar__links a.active::after { width: 100%; }

.navbar__cta { margin-left: 8px; }

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.navbar__hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--clr-navy);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu — ALWAYS hidden by default at all screen sizes.
   Only shown via .open class on screens ≤768px (toggled by JS).
   This prevents the menu from leaking through at desktop widths. */
.navbar__mobile-menu {
  display: none !important;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: var(--clr-white);
  border-top: 1px solid var(--clr-border);
  padding: 16px 20px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  flex-direction: column;
  gap: 0;
}
.navbar__mobile-menu.open { display: flex !important; }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
  background: var(--clr-navy-deep);
}

/* Diagonal colour split */
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: var(--clr-navy);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.hero__left {
  position: relative;
  z-index: 1;
  padding: 80px 48px 80px 0;
}
.hero__right {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 520px;
}
.hero__right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: .75;
  mix-blend-mode: normal;
}
.hero__right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--clr-navy) 0%, transparent 30%);
  z-index: 1;
}

.hero h1 { color: var(--clr-white); margin-bottom: 22px; }
.hero h1 em {
  font-style: normal;
  color: var(--clr-gold);
  position: relative;
}
.hero__sub {
  color: rgba(255,255,255,.75);
  font-size: 1.12rem;
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Floating accent dot */
.hero__dot {
  position: absolute;
  border-radius: 50%;
  opacity: .12;
  pointer-events: none;
}
.hero__dot--1 {
  width: 420px; height: 420px;
  background: var(--clr-orange);
  bottom: -160px; left: -120px;
}
.hero__dot--2 {
  width: 220px; height: 220px;
  background: var(--clr-gold);
  top: 60px; right: 10%;
  z-index: 2;
}

.hero__scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.4);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2.2s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(9px); }
}

/* ---------- Stats Strip ---------- */
.stats-strip {
  background: var(--clr-orange);
  padding: 0;
}
.stats-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-strip__item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.2);
  position: relative;
}
.stats-strip__item:last-child { border-right: none; }
.stats-strip__item strong {
  display: block;
  font-size: 2.2rem;
  font-weight: var(--fw-black);
  color: var(--clr-white);
  line-height: 1.1;
}
.stats-strip__item span {
  font-size: .8rem;
  color: rgba(255,255,255,.82);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: 4px;
  display: block;
}

/* ---------- About — Staggered Split ---------- */
.about-section {
  padding: 96px 0;
  background: var(--clr-white);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Image stack */
.about__imgs {
  position: relative;
  padding-bottom: 48px;
  padding-right: 48px;
}
.about__img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.about__img-main img { width: 100%; height: 380px; object-fit: cover; object-position: center center; }
.about__img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--clr-white);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.about__img-accent img { width: 100%; height: 200px; object-fit: cover; }

/* Orange corner badge */
.about__badge {
  position: absolute;
  top: 32px; right: 0;
  background: var(--clr-orange);
  color: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  text-align: center;
  z-index: 3;
  box-shadow: var(--shadow-md);
}
.about__badge strong { display: block; font-size: 1.6rem; font-weight: var(--fw-black); line-height: 1; }
.about__badge span   { font-size: .78rem; opacity: .9; margin-top: 4px; display: block; }

.about__text .label { margin-bottom: 10px; }
.about__text h2 { margin-bottom: 20px; }
.about__text > p { margin-bottom: 20px; }

.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin: 28px 0 36px;
}
.values-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .93rem;
  font-weight: var(--fw-medium);
  color: var(--clr-dark);
}
.values-list li::before {
  content: '';
  width: 9px; height: 9px;
  background: var(--clr-orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------- Mission — Angled navy band ---------- */
.mission-section {
  background: var(--clr-navy);
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
}
/* Top wave clip */
.mission-section::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--clr-white);
  clip-path: ellipse(55% 100% at 50% 0%);
}
/* Bottom wave clip */
.mission-section::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--clr-light);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.mission-section .container { position: relative; z-index: 1; }

.mission__header { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.mission__header h2 { color: var(--clr-white); margin-bottom: 16px; }
.mission__header p { color: rgba(255,255,255,.72); font-size: 1.1rem; }

.mission__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mission-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.mission-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--clr-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.mission-card:hover {
  background: rgba(255,255,255,.11);
  transform: translateY(-5px);
}
.mission-card:hover::before { transform: scaleX(1); }
.mission-card__icon {
  width: 56px; height: 56px;
  background: rgba(232,82,42,.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-orange);
  margin-bottom: 20px;
}
.mission-card h3 { color: var(--clr-white); margin-bottom: 10px; font-size: 1.15rem; }
.mission-card p  { color: rgba(255,255,255,.6); font-size: .93rem; }

/* ---------- Services — Feature strip with icon left ---------- */
.services-section {
  padding: 96px 0;
  background: var(--clr-light);
}
.services__header { text-align: center; max-width: 680px; margin: 0 auto 60px; }

.services__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--clr-border);
  transition: var(--transition);
}
.service-row:first-child { border-top: 1px solid var(--clr-border); }
.service-row:hover { background: rgba(232,82,42,.03); padding-left: 12px; }

.service-row__num {
  font-size: 3.2rem;
  font-weight: var(--fw-black);
  color: rgba(232,82,42,.15);
  line-height: 1;
  padding-top: 4px;
}
.service-row__body h3 { margin-bottom: 10px; color: var(--clr-navy); }
.service-row__body p  { max-width: 640px; }

.service-row__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: var(--fw-semibold);
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: 8px;
}
.service-row__tag span {
  width: 20px; height: 2px;
  background: var(--clr-orange);
  display: inline-block;
}

/* ---------- Gallery — Full-bleed mosaic ---------- */
.gallery-section {
  padding: 96px 0;
  background: var(--clr-white);
}
.gallery__header { text-align: center; max-width: 620px; margin: 0 auto 56px; }

.gallery__mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery__cell {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.gallery__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.gallery__cell:hover img { transform: scale(1.05); }

/* Tall left cell */
.gallery__cell--tall {
  grid-row: 1 / 3;
  min-height: 560px;
}
.gallery__cell--tall img { height: 100%; }

/* Two stacked right cells */
.gallery__cell--sm img { height: 265px; }

/* Caption overlay */
.gallery__cell-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(13,27,64,.75) 0%, transparent 100%);
  color: var(--clr-white);
  font-size: .9rem;
  font-weight: var(--fw-semibold);
  transform: translateY(6px);
  opacity: 0;
  transition: var(--transition);
}
.gallery__cell:hover .gallery__cell-cap { opacity: 1; transform: translateY(0); }

/* ---------- Careers — Split with background accent ---------- */
.careers-section {
  padding: 96px 0;
  background: var(--clr-light);
  position: relative;
  overflow: hidden;
}
/* Decorative blob */
.careers-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: var(--clr-orange);
  border-radius: 50%;
  opacity: .05;
  pointer-events: none;
}

.careers__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.careers__text h2 { margin-bottom: 18px; }
.careers__text > p { margin-bottom: 32px; }

.perks-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.perk-item  { display: flex; align-items: flex-start; gap: 16px; }
.perk-item__icon {
  width: 46px; height: 46px;
  background: rgba(232,82,42,.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--clr-orange);
}
.perk-item__text h4 { margin-bottom: 4px; color: var(--clr-navy); }
.perk-item__text p  { font-size: .92rem; }

/* Position cards */
.positions__cards { display: flex; flex-direction: column; gap: 22px; }
.position-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.position-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--clr-orange);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}
.position-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(232,82,42,.25);
}
.position-card:hover::after { transform: scaleY(1); }
.position-card__header {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap; gap: 10px;
}
.position-card__header h3 { font-size: 1.1rem; color: var(--clr-navy); }
.badge {
  font-size: .73rem;
  font-weight: var(--fw-bold);
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(27,43,94,.08);
  color: var(--clr-navy);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.position-card p  { font-size: .92rem; margin-bottom: 20px; }
.position-card .btn { font-size: .88rem; padding: 9px 20px; }

/* ---------- Contact — Dark split ---------- */
.contact-section {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  min-height: 640px;
}
.contact__panel-dark {
  background: var(--clr-navy);
  padding: 96px 56px 96px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.contact__panel-dark::before {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 280px; height: 280px;
  background: var(--clr-orange);
  border-radius: 50%;
  opacity: .08;
}
.contact__panel-dark .label { color: var(--clr-gold); background: rgba(245,197,24,.15); }
.contact__panel-dark h2 { color: var(--clr-white); margin-bottom: 16px; }
.contact__panel-dark > p { color: rgba(255,255,255,.65); margin-bottom: 40px; }

.contact__details { display: flex; flex-direction: column; gap: 24px; }
.contact-item     { display: flex; align-items: flex-start; gap: 16px; }
.contact-item__icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--clr-orange);
}
.contact-item__text h4 { color: var(--clr-white); font-size: .95rem; margin-bottom: 4px; }
.contact-item__text p  { font-size: .92rem; color: rgba(255,255,255,.6); }
.contact-item__text a  { color: var(--clr-gold); transition: opacity var(--transition); }
.contact-item__text a:hover { opacity: .75; }

.contact__panel-form {
  background: var(--clr-white);
  padding: 80px 56px 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact__panel-form h3 { color: var(--clr-navy); font-size: 1.6rem; margin-bottom: 6px; }
.contact__panel-form > p { font-size: .93rem; margin-bottom: 30px; }

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid .form-group--full { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: .85rem;
  font-weight: var(--fw-semibold);
  color: var(--clr-navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-family: var(--ff-sans);
  font-size: .95rem;
  color: var(--clr-dark);
  background: var(--clr-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-orange);
  box-shadow: 0 0 0 3px rgba(232,82,42,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input[type="file"] { padding: 10px 14px; cursor: pointer; }
.form-group input[type="file"]::file-selector-button {
  background: var(--clr-navy);
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-size: .83rem;
  font-weight: var(--fw-semibold);
  margin-right: 10px;
}

.form-submit { margin-top: 10px; }
.form-submit .btn { width: 100%; justify-content: center; }

.form-check {
  display: flex; align-items: flex-start; gap: 10px; margin-top: 4px;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px; margin-top: 2px;
  accent-color: var(--clr-orange);
  flex-shrink: 0;
}
.form-check label { font-size: .86rem; color: var(--clr-gray); cursor: pointer; }
.form-check label a { color: var(--clr-orange); text-decoration: underline; }

/* Alerts */
.alert {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: .93rem;
  font-weight: var(--fw-medium);
  margin-bottom: 18px;
  align-items: center;
  gap: 10px;
}
.alert.show { display: flex; }
.alert--success {
  background: rgba(22,163,74,.08);
  border: 1px solid rgba(22,163,74,.3);
  color: var(--clr-success);
}
.alert--error {
  background: rgba(220,38,38,.08);
  border: 1px solid rgba(220,38,38,.3);
  color: var(--clr-error);
}

/* ---------- Form Card (apply page) ---------- */
.form-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-sm);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--clr-dark);
  color: #8A9BB8;
  padding: 72px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
/* Footer logo — use width so transparent PNG never squishes */
.footer__brand img {
  width: 180px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  margin-bottom: 18px;
}
.footer__brand p { font-size: .9rem; max-width: 310px; line-height: 1.75; }

.footer__col h4 { color: var(--clr-white); font-size: .95rem; margin-bottom: 22px; }
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col ul a {
  font-size: .9rem;
  color: #8A9BB8;
  transition: color var(--transition);
}
.footer__col ul a:hover { color: var(--clr-white); }

.footer__bottom {
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  padding: 24px 0;
  font-size: .84rem;
}
.footer__bottom p { color: #8A9BB8; }
.footer__bottom a { color: #8A9BB8; transition: color var(--transition); }
.footer__bottom a:hover { color: var(--clr-white); }
.footer__legal { display: flex; gap: 22px; }
.footer__accent-bar {
  height: 4px;
  background: linear-gradient(to right, var(--clr-orange), var(--clr-gold), var(--clr-green));
}

/* ---------- Inner-page hero ---------- */
.page-hero {
  background: var(--clr-navy);
  padding: calc(var(--nav-height) + 64px) 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 56px;
  background: var(--clr-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--clr-white); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,.68); font-size: 1.1rem; }

.breadcrumb {
  display: flex; justify-content: center;
  gap: 8px;
  font-size: .84rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 12px;
}
.breadcrumb a { color: rgba(255,255,255,.45); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--clr-white); }
.breadcrumb span { color: rgba(255,255,255,.22); }

/* ---------- Apply Page ---------- */
.apply-section { padding: 80px 0; }
.apply-section .container { max-width: 860px; }
.apply-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.apply-info__item {
  text-align: center;
  padding: 26px 20px;
  background: var(--clr-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  transition: var(--transition);
}
.apply-info__item:hover { border-color: var(--clr-orange); box-shadow: var(--shadow-sm); }
.apply-info__item svg { margin: 0 auto 10px; color: var(--clr-orange); }
.apply-info__item h4 { font-size: .95rem; color: var(--clr-navy); margin-bottom: 4px; }
.apply-info__item p  { font-size: .84rem; }

/* ---------- Legal Pages ---------- */
.legal-content { padding: 72px 0; }
.legal-content .container { max-width: 880px; }
.legal-body h2 {
  font-size: 1.35rem;
  margin-top: 44px; margin-bottom: 12px;
  color: var(--clr-navy);
  padding-left: 14px;
  border-left: 4px solid var(--clr-orange);
}
.legal-body h3 {
  font-size: 1.1rem;
  margin-top: 28px; margin-bottom: 10px;
  color: var(--clr-dark);
}
.legal-body p   { margin-bottom: 16px; }
.legal-body ul  { margin: 0 0 18px 26px; list-style: disc; }
.legal-body ul li { color: var(--clr-gray); font-size: 1rem; margin-bottom: 8px; }
.legal-body strong { color: var(--clr-navy); }
.legal-meta {
  background: var(--clr-light);
  border: 1px solid var(--clr-border);
  border-left: 4px solid var(--clr-orange);
  border-radius: var(--radius-sm);
  padding: 22px 28px;
  margin-bottom: 44px;
  font-size: .9rem;
  color: var(--clr-gray);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 80px;
  }
  .hero::after { display: none; }
  .hero__left  { padding: 72px 0 40px; }
  .hero__right { display: none; }
  .hero__dot   { display: none; }

  .about__grid    { grid-template-columns: 1fr; gap: 40px; }
  .careers__grid  { grid-template-columns: 1fr; gap: 44px; }
  .contact-section { grid-template-columns: 1fr; min-height: auto; }
  .contact__panel-dark { padding: 72px 28px; }
  .contact__panel-form { padding: 60px 28px; }
  .footer__grid   { grid-template-columns: 1fr 1fr; }
  .mission__cards { grid-template-columns: 1fr; gap: 16px; }
  .about__imgs    { padding-bottom: 100px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 72px; }
  .section, .about-section, .mission-section,
  .services-section, .gallery-section,
  .careers-section, .legal-content,
  .apply-section { padding: 64px 0; }
  .container { padding: 0 18px; }

  .navbar__links, .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }

  .navbar__mobile-menu a {
    display: block;
    padding: 13px 8px;
    font-size: 1rem;
    font-weight: var(--fw-medium);
    border-bottom: 1px solid var(--clr-border);
    color: var(--clr-dark);
    transition: color var(--transition);
  }
  .navbar__mobile-menu a:last-child { border-bottom: none; }
  .navbar__mobile-menu a:hover { color: var(--clr-navy); }
  .navbar__mobile-menu .btn { margin-top: 14px; width: 100%; justify-content: center; }

  .hero h1 { font-size: 2.2rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .stats-strip__inner { grid-template-columns: repeat(2,1fr); }
  .stats-strip__item { border-bottom: 1px solid rgba(255,255,255,.2); }
  .stats-strip__item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.2); }
  .stats-strip__item:last-child { border-bottom: none; }

  .about__imgs { padding-right: 0; padding-bottom: 120px; }
  .about__img-accent { width: 60%; }

  .mission-section::before, .mission-section::after { height: 36px; }

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

  .gallery__mosaic { grid-template-columns: 1fr; }
  .gallery__cell--tall { grid-row: auto; min-height: 300px; }
  .gallery__cell--tall img, .gallery__cell--sm img { height: 280px; }

  .form-grid { grid-template-columns: 1fr; }
  .form-grid .form-group--full { grid-column: 1; }
  .form-card { padding: 28px 20px; }

  .apply-info { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }
  .footer__brand img { width: 150px; height: auto; max-height: none; }

  .service-row { grid-template-columns: 48px 1fr; gap: 20px; }
  .service-row__num { font-size: 2.4rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.95rem; }
  h2 { font-size: 1.5rem; }
  .stats-strip__inner { grid-template-columns: 1fr 1fr; }
  .contact__panel-dark, .contact__panel-form { padding: 56px 18px; }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

/* ---------- Scroll Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s cubic-bezier(.22,.68,0,1.2), transform .65s cubic-bezier(.22,.68,0,1.2);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: .12s; }
[data-reveal-delay="2"] { transition-delay: .24s; }
[data-reveal-delay="3"] { transition-delay: .36s; }

/* ---------- Page-load Keyframes ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

/* ---------- Hero Load Animations ---------- */
.hero__left .label {
  animation: slideRight .7s cubic-bezier(.22,.68,0,1.2) .1s both;
}
.hero h1 {
  animation: fadeUp .8s cubic-bezier(.22,.68,0,1.2) .25s both;
}
.hero__sub {
  animation: fadeUp .8s cubic-bezier(.22,.68,0,1.2) .42s both;
}
.hero__actions {
  animation: fadeUp .7s cubic-bezier(.22,.68,0,1.2) .58s both;
}
.hero__right {
  animation: slideLeft .9s cubic-bezier(.22,.68,0,1.2) .15s both;
}

/* ---------- Navbar Load ---------- */
.navbar {
  animation: fadeIn .5s ease .05s both;
}

/* ---------- Stats Strip ---------- */
.stats-strip__item {
  animation: fadeUp .6s cubic-bezier(.22,.68,0,1.2) both;
}
.stats-strip__item:nth-child(1) { animation-delay: .1s; }
.stats-strip__item:nth-child(2) { animation-delay: .2s; }
.stats-strip__item:nth-child(3) { animation-delay: .3s; }
.stats-strip__item:nth-child(4) { animation-delay: .4s; }

/* ---------- Page-hero (inner pages) ---------- */
.page-hero h1 {
  animation: fadeUp .75s cubic-bezier(.22,.68,0,1.2) .2s both;
}
.page-hero p {
  animation: fadeUp .75s cubic-bezier(.22,.68,0,1.2) .38s both;
}
.breadcrumb {
  animation: fadeIn .6s ease .1s both;
}

/* ---------- Hover micro-interactions ---------- */
.service-row {
  transition: background var(--transition), padding-left var(--transition);
}
.mission-card {
  transition: background var(--transition), transform var(--transition);
}
.stats-strip__item strong {
  display: block;
  transition: transform .2s ease;
}
.stats-strip__item:hover strong { transform: scale(1.08); }

/* Underline shimmer on nav links */
.navbar__links a::after {
  background: linear-gradient(90deg, var(--clr-orange), var(--clr-gold), var(--clr-orange));
  background-size: 200% auto;
}
.navbar__links a:hover::after {
  animation: shimmer .8s linear forwards;
}
