﻿:root {
  --navy: #071a2f;
  --navy-dark: #03111f;
  --steel: #5f738b;
  --steel-light: #dfe6ee;
  --white: #f8fbff;
  --gold: #ff751f;
  --gold-soft: #ff751f;
  --shadow: 0 20px 45px rgba(7, 26, 47, 0.16);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Aptos Narrow', Aptos, 'Segoe UI', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  background: linear-gradient(135deg, #f5f7fb 0%, #ebf1f7 100%);
  color: var(--navy);
  overflow-x: hidden;
  opacity: 0;
  transition: opacity .35s ease;
}
body, button, input, select, textarea, label, option, table, th, td, h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
}
body.page-ready { opacity: 1; }
body.page-transitioning { opacity: 0; }
body.cursor-enabled { cursor: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
section { padding: 100px 0; position: relative; }
.container { width: min(1200px, calc(100% - 2rem)); margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title .eyebrow { color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: .24em; font-size: .8rem; }
.section-title h2 { font-size: clamp(2rem, 3vw, 2.7rem); margin: .5rem 0; color: var(--navy-dark); }
.section-title p { color: var(--steel); max-width: 720px; margin: 0 auto; }

.glass { background: rgba(255,255,255,.72); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.45); box-shadow: var(--shadow); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .6rem; border: none; padding: 14px 28px; border-radius: 999px; font-weight: 600; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 15px 28px rgba(7,26,47,.15); }
.btn-primary { background: linear-gradient(135deg, #ff751f, #ff751f); color: var(--navy-dark); }
.btn-secondary { background: rgba(255,255,255,.75); color: var(--navy); border: 1px solid rgba(7,26,47,.08); }
.btn-outline { border: 1px solid rgba(255,117,31,.35); color: var(--gold); background: transparent; }

.loading-screen {
  position: fixed; inset: 0; background: linear-gradient(135deg, var(--navy-dark), var(--navy)); z-index: 9999; display: grid; place-items: center; transition: opacity .6s ease, visibility .6s ease;
}
.loading-screen.hidden { opacity: 0; visibility: hidden; }
.loading-screen .ring { width: 80px; height: 80px; border-radius: 50%; border: 4px solid rgba(255,255,255,.2); border-top-color: var(--gold); animation: spin 1s linear infinite; }

.cursor-dot, .cursor-outline { position: fixed; pointer-events: none; border-radius: 50%; transform: translate(-50%, -50%); z-index: 10000; transition: opacity .2s ease, transform .2s ease, border-color .2s ease, background .2s ease; }
.cursor-dot { width: 12px; height: 12px; background: #ff751f; box-shadow: 0 0 18px rgba(255,117,31,.4); }
.cursor-outline { width: 38px; height: 38px; border: 2px solid rgba(255,117,31,.85); box-shadow: 0 0 24px rgba(255,117,31,.18); }
body.cursor-enabled .cursor-dot, body.cursor-enabled .cursor-outline { opacity: 1; }
body:not(.cursor-enabled) .cursor-dot, body:not(.cursor-enabled) .cursor-outline { opacity: 0; }

.navbar {
  position: sticky; top: 0; width: 100%; z-index: 1000; padding: .8rem 0; transition: all .35s ease; background: rgba(7,26,47,.92); backdrop-filter: blur(20px); box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.navbar.scrolled { background: rgba(7,26,47,.97); box-shadow: 0 10px 30px rgba(0,0,0,.16); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.navbar-brand { display: inline-flex; align-items: center; color: var(--white); flex-shrink: 0; }
.navbar-logo {
  display: block;
  width: auto;
  height: clamp(40px, 5.2vw, 68px);
  max-width: min(56vw, 390px);
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  transition: transform .25s ease, filter .25s ease;
}
.navbar-brand:hover .navbar-logo {
  transform: translateY(-1px);
  filter: drop-shadow(0 0 10px rgba(255,255,255,.18));
}
.navbar-nav { display: flex; gap: 1.2rem; list-style: none; margin: 0; padding: 0; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.navbar-nav a { color: rgba(255,255,255,.9); font-weight: 500; transition: color .25s ease, transform .25s ease; position: relative; display: inline-block; }
.navbar-nav a:hover { transform: translateY(-1px); }
.navbar-nav a.active, .navbar-nav a:hover { color: #ff751f; }
.navbar-nav a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: #ff751f; transition: width .25s ease; }
.navbar-nav a.active::after, .navbar-nav a:hover::after { width: 100%; }
.navbar-toggler { display: none; background: transparent; border: none; color: var(--white); font-size: 1.35rem; }

/* Keep navbar links horizontal on all pages (desktop). */
@media (min-width: 0px) {
  .navbar-nav {
    flex-direction: row;
    align-items: center;
  }
  .navbar-nav a {
    width: auto;
    padding: 0;
    border-bottom: none;
  }
}


.hero {
  min-height: 100vh; padding: 6rem 0 4rem; display: grid; align-items: center; position: relative; color: var(--white); overflow: hidden; isolation: isolate;
  background: linear-gradient(120deg, rgba(3,17,31,.88), rgba(7,26,47,.62));
}
.hero::before {
  content: ''; position: absolute; inset: 0; background: radial-gradient(circle at top, rgba(255,255,255,.04), transparent 55%); z-index: -2;
}
.hero::after {
  content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,26,47,.95), rgba(7,26,47,.4)); z-index: -1;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -3;
  pointer-events: none;
}
.hero canvas { position:absolute; inset:0; z-index:0; }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(2rem, 4vw, 4rem); align-items: center; padding-top: 1rem; min-height: calc(100vh - 10rem); }
.hero-copy { max-width: 40rem; }
.hero-copy h1 { font-size: clamp(2.6rem, 5vw, 4.6rem); margin: 0 0 1rem; line-height: 1.06; letter-spacing: -.02em; }
.hero-copy .eyebrow { font-size: .82rem; letter-spacing: .34em; text-transform: uppercase; color: #ff751f; margin-bottom: 1rem; }
.hero-copy p { font-size: 1.05rem; line-height: 1.85; color: rgba(255,255,255,.82); max-width: 36rem; }
.hero-actions { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-visual { justify-self: end; width: min(100%, 420px); }
.hero-visual-shell {
  position: relative;
  padding: 2rem;
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(160deg, rgba(255,255,255,.16), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 28px 60px rgba(0,0,0,.2);
  backdrop-filter: blur(22px);
  min-height: 0;
  display: grid;
  align-content: space-between;
  gap: 1.25rem;
}
.hero-visual-shell::before {
  content: '';
  position: absolute;
  inset: 1rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(255,117,31,.18);
  pointer-events: none;
}
.hero-visual-chip {
  display: inline-flex;
  width: fit-content;
  padding: .55rem .9rem;
  border-radius: 999px;
  background: rgba(255,117,31,.16);
  color: var(--gold-soft);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 700;
}
.hero-visual-core {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 0;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(7,26,47,.32), rgba(3,17,31,.7));
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
}
.hero-visual-core::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,26,47,.06), rgba(3,17,31,.38));
  pointer-events: none;
}
.hero-visual-core img,
.hero-visual-core video {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}
.hero-visual-grid div {
  padding: 1rem 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.hero-visual-grid strong {
  display: block;
  font-size: .98rem;
  color: var(--white);
  margin-bottom: .35rem;
}
.hero-visual-grid span {
  display: block;
  color: rgba(255,255,255,.74);
  font-size: .92rem;
  line-height: 1.55;
}
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; color: var(--white); opacity: .8; }
.scroll-indicator span { width: 24px; height: 40px; border: 2px solid rgba(255,255,255,.7); border-radius: 999px; position: relative; }
.scroll-indicator span::before { content: ''; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; background: var(--gold); transform: translateX(-50%); border-radius: 2px; animation: scrollDown 1.2s infinite; }

/* Match about.html page background behavior on homepage sections */
.about-section,
.services-section,
.projects-section,
.gallery-section,
.certifications-section,
.contact-section {
  background: transparent;
}








.about-intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: center; }
.about-card { padding: 2rem; border-radius: var(--radius); }
.about-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.about-card p, .about-card li { color: var(--steel); line-height: 1.8; }
.about-card ul { padding-left: 1.2rem; }
.about-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-image img { height: 100%; min-height: 360px; object-fit: cover; }
.counter-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; }
.counter-card { padding: 1.5rem; border-radius: 20px; background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(240,244,249,.92)); border: 1px solid rgba(7,26,47,.06); text-align: center; box-shadow: var(--shadow); }
.counter-card strong { display: block; font-size: 2rem; color: var(--navy-dark); }
.counter-card span { color: var(--steel); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { padding: 1.6rem; border-radius: calc(var(--radius) + 4px); background: rgba(255,255,255,.9); border: 1px solid rgba(7,26,47,.06); box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease; position: relative; overflow: hidden; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 25px 50px rgba(7,26,47,.18); }
.service-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,117,31,.16), transparent 70%); opacity: 0; transition: opacity .25s ease; }
.service-card:hover::before { opacity: 1; }
.service-card .service-icon { display: inline-flex; width: 57px; height: 57px; align-items: center; justify-content: center; border-radius: 16px; background: linear-gradient(135deg, rgba(255,117,31,.15), rgba(7,26,47,.08)); color: var(--gold); font-size: 1.6rem; margin-bottom: 1rem; }
.service-card h3 { margin-bottom: .7rem; color: var(--navy-dark); }
.service-card p { color: var(--steel); line-height: 1.7; margin-bottom: 1rem; }
.service-card .service-meta { color: var(--gold); font-weight: 600; }

.project-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.project-card { border-radius: calc(var(--radius) + 4px); overflow: hidden; background: rgba(255,255,255,.92); box-shadow: var(--shadow); transition: transform .3s ease, box-shadow .3s ease; }
.project-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: 0 28px 45px rgba(7,26,47,.18); }
.project-card img { height: 240px; width: 100%; object-fit: cover; transition: transform .4s ease; }
.project-card:hover img { transform: scale(1.08); }
.project-card .content { padding: 1.35rem; }
.project-card .tag { display: inline-flex; padding: .35rem .7rem; background: rgba(255,117,31,.15); color: var(--gold); border-radius: 999px; font-size: .77rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; margin-bottom: .7rem; }
.project-card h3 { margin: 0 0 .6rem; color: var(--navy-dark); }
.project-card p { color: var(--steel); line-height: 1.75; }
.project-card .btn { margin-top: 1rem; }
.project-card details,
.page-card details {
  margin-top: 1rem;
}
.project-card summary,
.page-card summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  color: var(--gold);
}
.project-card summary::-webkit-details-marker,
.page-card summary::-webkit-details-marker {
  display: none;
}
.project-card summary::after,
.page-card summary::after {
  content: '+';
  font-size: 1rem;
  line-height: 1;
}
.project-card details[open] summary::after,
.page-card details[open] summary::after {
  content: '−';
}
.project-dropdown a.water-lightbox,
.page-dropdown a.water-lightbox {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}
.project-dropdown a.water-lightbox::after,
.page-dropdown a.water-lightbox::after {
  content: '\f31e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  background: linear-gradient(135deg, rgba(7,26,47,.55), rgba(255,117,31,.35));
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .3s ease;
  letter-spacing: 0;
}
.project-dropdown a.water-lightbox:hover::after,
.page-dropdown a.water-lightbox:hover::after { opacity: 1; }
.project-dropdown a.water-lightbox img,
.page-dropdown a.water-lightbox img { transition: transform .35s ease; }
.project-dropdown a.water-lightbox:hover img,
.page-dropdown a.water-lightbox:hover img { transform: scale(1.05); }
.project-dropdown,
.page-dropdown {
  padding-top: .8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
.project-dropdown img,
.page-dropdown img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(7,26,47,.12);
  display: block;
}
.project-dropdown p,
.page-dropdown p {
  grid-column: 1 / -1;
  margin: .25rem 0 0;
  color: var(--steel);
}

.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.gallery-card { position: relative; display: block; width: 100%; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); animation: galleryFade .55s ease both; }
.gallery-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .35s ease, filter .35s ease; cursor: pointer; }
.gallery-card::after { content: 'View'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; background: rgba(7,26,47,.45); opacity: 0; transition: opacity .25s ease; }
.gallery-card:hover img { transform: scale(1.06); filter: brightness(1.03); }
.gallery-card:hover::after { opacity: 1; }
.glightbox-container .gslide-description,
.glightbox-container .gslide-title,
.glightbox-container .gdesc-inner { display: none !important; }

.glightbox-container .gslider,
.glightbox-container .gslide,
.glightbox-container .gslide.loaded.current,
.glightbox-container .gslide-inner-content,
.glightbox-container .ginner-container,
.glightbox-container .gslide-media,
.glightbox-container .gslide-image {
  width: min(96vw, 1400px) !important;
  max-width: none !important;
  height: auto !important;
}

.glightbox-container .gslide.loaded.current {
  margin: 0 auto !important;
}

.glightbox-container .gslide-media {
  display: flex !important;
}

.glightbox-container .gslide-image {
  display: flex !important;
}

.glightbox-container .gslide-image img {
  width: 100% !important;
  max-width: none !important;
  max-height: 92vh !important;
  height: auto !important;
  object-fit: contain;
  display: block;
}

.glightbox-container .gslide-image picture,
.glightbox-container .gslide-image source {
  max-width: none !important;
}

.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.cert-card { padding: 1.5rem; border-radius: calc(var(--radius) + 2px); background: rgba(255,255,255,.9); box-shadow: var(--shadow); border: 1px solid rgba(7,26,47,.06); }
.cert-card h3 { color: var(--navy-dark); margin-bottom: .7rem; }
.cert-card p { color: var(--steel); margin-bottom: .5rem; }
.cert-card .code { color: var(--gold); font-weight: 700; }

.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 1.5rem; }
.contact-card { padding: 2rem; border-radius: var(--radius); background: rgba(255,255,255,.92); box-shadow: var(--shadow); }
.contact-card h3 { color: var(--navy-dark); }
.contact-list { display: grid; gap: .8rem; margin-top: 1.2rem; }
.contact-list div { display: flex; gap: .7rem; color: var(--steel); }
.contact-list i { color: var(--gold); width: 1rem; }
.form-control { width: 100%; padding: 14px 16px; border-radius: 14px; border: 1px solid rgba(7,26,47,.12); background: rgba(255,255,255,.88); margin-bottom: 1rem; font-family: inherit; }
.form-control:focus { outline: 2px solid rgba(255,117,31,.22); border-color: rgba(255,117,31,.45); }
textarea.form-control { min-height: 140px; resize: vertical; }
.form-feedback { display: none; margin-bottom: 1rem; padding: 14px 16px; border-radius: 14px; border: 1px solid rgba(255,117,31,.25); background: rgba(255,117,31,.12); color: var(--navy-dark); font-weight: 600; line-height: 1.6; }
.form-feedback.show { display: block; }

.contact-form-actions {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-wrap: wrap;
}

#contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form-actions {
  order: 2;
}

.request-visit-btn {
  background: #fff;
  border: 1px solid #ff6b00;
  color: #ff6b00;
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .25s ease, box-shadow .25s ease;
}

.request-visit-btn:hover,
.request-visit-btn:focus-visible {
  background: #ff6b00;
  color: #fff;
  border-color: #ff6b00;
}

.site-visit-dropdown {
  margin: 1rem 0 0;
  order: 3;
  border-radius: 18px;
  border: 1px solid rgba(7, 26, 47, 0.12);
  background: linear-gradient(145deg, rgba(255,255,255,.95), rgba(248,251,255,.95));
  box-shadow: 0 16px 32px rgba(7,26,47,.08);
  padding: 0 1rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-8px);
  transition: max-height .35s ease, opacity .25s ease, transform .35s ease, padding .35s ease;
}

.site-visit-dropdown.is-open {
  max-height: 1200px;
  opacity: 1;
  padding: 1rem;
  transform: translateY(0);
}

.site-visit-open .contact-form-actions {
  order: 3;
  margin-top: 1rem;
}

.site-visit-open .site-visit-dropdown {
  order: 2;
}

.site-visit-dropdown__header {
  margin-bottom: .85rem;
}

.site-visit-dropdown__header .eyebrow {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
}

.site-visit-dropdown__header p {
  margin: .4rem 0 0;
  color: var(--steel);
  line-height: 1.6;
  font-size: .92rem;
}

.site-visit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem .95rem;
}

.site-visit-field {
  display: grid;
}

.site-visit-field--full {
  grid-column: 1 / -1;
}

.site-visit-field label {
  margin-bottom: .38rem;
  color: var(--navy-dark);
  font-weight: 600;
  font-size: .9rem;
}

.site-visit-field .form-control {
  margin-bottom: .35rem;
}

.site-visit-field textarea.form-control {
  min-height: 130px;
}

.site-visit-field .form-control.is-invalid {
  border-color: rgba(191, 34, 34, .56);
  outline: none;
  box-shadow: 0 0 0 2px rgba(191, 34, 34, .14);
}

.site-visit-error {
  min-height: 1.1rem;
  margin: 0;
  color: #b42318;
  font-size: .8rem;
  line-height: 1.4;
}

.contact-success-notice {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%) translateY(-140%);
  z-index: 99999;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  background: rgba(7, 26, 47, 0.97);
  color: #fff;
  box-shadow: 0 14px 36px rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  font-weight: 600;
  line-height: 1.4;
  max-width: min(92vw, 560px);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s cubic-bezier(.22, 1, .36, 1);
}

.contact-success-notice.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

.agency-strip {
  background: #02070d;
  border-top: 2px solid var(--gold);
  padding: 2.3rem 0;
}

.agency-strip .container {
  width: min(1320px, calc(100% - 2.5rem));
}

.agency-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 2.2rem;
}

.agency-item {
  margin: 0;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.agency-item img {
  max-height: 62px;
  width: auto;
  max-width: 92%;
  object-fit: contain;
  filter: grayscale(1) brightness(0.9) contrast(1.05);
  opacity: 0.88;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}

.agency-item:hover img {
  filter: grayscale(.25) brightness(1);
  opacity: 1;
  transform: translateY(-2px);
}

.footer { padding: 60px 0 30px; background: linear-gradient(135deg, var(--navy-dark), var(--navy)); color: rgba(255,255,255,.8); }
.footer .container { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 2rem; }
.footer a { color: rgba(255,255,255,.8); }
.footer h4 { color: var(--white); margin-bottom: 1rem; }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer .brand { display: flex; align-items: flex-start; gap: 1.2rem; }
.footer-logo { display: block; width: auto; height: 180px; max-width: 220px; object-fit: contain; border-radius: 0 !important; border: none !important; flex-shrink: 0; }
.footer .brand-text { display: flex; flex-direction: column; }
.footer .brand p { max-width: 300px; line-height: 1.8; }
.footer-bottom { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; color: rgba(255,255,255,.65); }

.page-hero { padding-top: 2.5rem; padding-bottom: 2.3rem; background: linear-gradient(120deg, rgba(3,17,31,.95), rgba(7,26,47,.8)); color: var(--white); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: url('../images/pdf_extracted/page_02_img_1.jpeg') center/cover no-repeat; opacity: .2; transform: scale(1.05); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--gold-soft); letter-spacing: .3em; text-transform: uppercase; font-size: .8rem; }
.page-hero h1 { font-size: clamp(2rem, 3.5vw, 2.9rem); margin: 0.4rem 0 1rem; }
.page-hero p { max-width: 720px; color: rgba(255,255,255,.78); line-height: 1.9; }

.page-hero.video-hero { padding-top: 5rem; padding-bottom: 4rem; background: #071a2f !important; }
.page-hero.video-hero::before { display: none !important; }
.page-hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: .35; pointer-events: none; }

.page-content { padding-top: 40px; }
.page-card { border-radius: var(--radius); padding: 2rem; background: rgba(255,255,255,.95); box-shadow: var(--shadow); margin-bottom: 1.5rem; }
.page-card h2 { color: var(--navy-dark); margin-bottom: 1rem; }
.page-card p, .page-card li { color: var(--steel); line-height: 1.8; }

/* ── GSAP ScrollTrigger card styles (shared across all pages) ── */
.gsap-card { will-change: opacity, transform; }
.gsap-card h2 { position: relative; display: inline-block; }
.gsap-card h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: #ff751f;
  transform-origin: left center;
  transform: scaleX(var(--line-scale, 1));
  border-radius: 2px;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes scrollDown { 0% { transform: translate(-50%, 0); opacity: 0; } 50% { opacity: 1; } 100% { transform: translate(-50%, 16px); opacity: 0; } }
@keyframes floatUp { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes galleryFade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }



