/* ============================================
   Reformed Marketing - Main Stylesheet
   Brand Color System — Teal & Soft White
   Virginia Beach, VA
   ============================================ */

/* === CSS CUSTOM PROPERTIES === */
:root {
  /* Brand Colors — derived from logo */
  --color-brand:       #5B8F96;   /* primary teal — logo background */
  --color-brand-dark:  #3D6B72;   /* deep teal — headings, dark sections */
  --color-brand-deep:  #2A4E54;   /* darkest — hero overlays, footers */
  --color-brand-mid:   #7AADB4;   /* mid teal — hover states */
  --color-brand-light: #A8D0D6;   /* light teal — accents, borders */
  --color-brand-pale:  #D9EEF0;   /* pale mint — section backgrounds */
  --color-accent:      #B85C38;   /* warm coral accent — CTAs, highlights */
  --color-accent-dark: #8F4228;   /* darker coral — hover */
  --color-white:       #FFFFFF;
  --color-off-white:   #F4F9FA;   /* tinted off-white */
  --color-light-gray:  #E8F1F3;
  --color-mid-gray:    #7A9FA6;
  --color-text:        #2A3F43;   /* dark teal-gray for body copy */
  --color-text-light:  #5E7E84;

  /* Legacy aliases (keep for any remaining usages) */
  --color-navy:  var(--color-brand-deep);
  --color-ocean: var(--color-brand-dark);
  --color-sky:   var(--color-brand-mid);
  --color-sand:  var(--color-brand-pale);
  --color-coral: var(--color-accent);
  --color-dark:  var(--color-brand-deep);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-accent: 'Montserrat', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1240px;
  --container-padding: 0 24px;

  /* Transitions */
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows — teal-tinted */
  --shadow-sm: 0 2px 8px rgba(61, 107, 114, 0.10);
  --shadow-md: 0 8px 32px rgba(61, 107, 114, 0.14);
  --shadow-lg: 0 20px 60px rgba(61, 107, 114, 0.20);
  --shadow-xl: 0 40px 80px rgba(61, 107, 114, 0.24);
}

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

input, textarea, select {
  font-family: var(--font-body);
}

/* === UTILITY CLASSES === */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-sky);
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-navy);
  margin-bottom: 24px;
}

.section-title--light {
  color: var(--color-white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 620px;
  line-height: 1.8;
}

.section-subtitle--light {
  color: rgba(255, 255, 255, 0.8);
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin: 0 auto;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-accent);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.1);
  transition: left 0.4s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--color-ocean);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(26, 92, 138, 0.3);
}

.btn-primary:hover {
  background: var(--color-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 92, 138, 0.4);
  color: var(--color-white);
}

.btn-secondary {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
}

.btn-secondary:hover {
  background: var(--color-navy);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-navy);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-white:hover {
  background: var(--color-sand);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.7);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn-coral {
  background: var(--color-coral);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(196, 98, 58, 0.3);
}

.btn-coral:hover {
  background: #a84f2e;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 98, 58, 0.4);
  color: var(--color-white);
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes wave {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Scroll Reveal Classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* === NAVIGATION === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all var(--transition-base);
  animation: slideDown 0.6s ease 0.2s both;
}

.navbar.transparent {
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: 0 24px;
}

.navbar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height var(--transition-base);
}

.navbar.scrolled .navbar-inner {
  height: 68px;
}

/* ── Logo images ── */
.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

/* White version: visible on transparent hero navbar */
.navbar-logo .logo-white {
  height: 52px;
  width: auto;
  display: block;
  transition: opacity var(--transition-base), height var(--transition-base);
  opacity: 1;
}

/* Teal version: hidden until navbar scrolls to white */
.navbar-logo .logo-teal {
  height: 52px;
  width: auto;
  display: none;
  transition: opacity var(--transition-base), height var(--transition-base);
}

/* Swap on scroll */
.navbar.scrolled .logo-white { display: none; }
.navbar.scrolled .logo-teal  { display: block; height: 44px; }

/* Hide old text logo parts */
.navbar-logo .logo-mark,
.navbar-logo .logo-text,
.navbar-logo .logo-sub,
.navbar-logo .logo-img { display: none; }

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 14px;
  border-radius: 4px;
  transition: all var(--transition-base);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--color-brand-light);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.navbar.scrolled .nav-link {
  color: var(--color-text);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-brand-light);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--color-brand);
}

.nav-cta {
  background: var(--color-coral);
  color: var(--color-white) !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition-base);
  box-shadow: 0 4px 15px rgba(196, 98, 58, 0.3);
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: #a84f2e;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 98, 58, 0.4);
  color: white !important;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.navbar.scrolled .nav-toggle span {
  background: var(--color-navy);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO SECTION — Full-screen Background Carousel
   Slides auto-advance with Ken Burns zoom + crossfade
   ============================================================ */

/* Ken Burns zoom animations for each slide */
@keyframes kenBurns1 {
  0%   { transform: scale(1.08) translate(0%, 0%); }
  100% { transform: scale(1.18) translate(-2%, -1%); }
}
@keyframes kenBurns2 {
  0%   { transform: scale(1.1) translate(2%, 0%); }
  100% { transform: scale(1.2) translate(-1%, -2%); }
}
@keyframes kenBurns3 {
  0%   { transform: scale(1.12) translate(-1%, 1%); }
  100% { transform: scale(1.22) translate(2%, -1%); }
}
@keyframes kenBurns4 {
  0%   { transform: scale(1.08) translate(0%, -1%); }
  100% { transform: scale(1.18) translate(-2%, 1%); }
}
@keyframes heroCaptionIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Particle canvas overlay */
@keyframes particleDrift {
  0%   { transform: translateY(0px) translateX(0px); opacity: 0.4; }
  50%  { transform: translateY(-30px) translateX(12px); opacity: 0.8; }
  100% { transform: translateY(-60px) translateX(-8px); opacity: 0; }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-navy);
}

/* ── Slide stack ── */
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  will-change: transform;
}

/* Apply Ken Burns per slide index */
.hero-slide.active:nth-child(1) img { animation: kenBurns1 8s ease-in-out both; }
.hero-slide.active:nth-child(2) img { animation: kenBurns2 8s ease-in-out both; }
.hero-slide.active:nth-child(3) img { animation: kenBurns3 8s ease-in-out both; }
.hero-slide.active:nth-child(4) img { animation: kenBurns4 8s ease-in-out both; }

/* Also target by data-index for JS-controlled active state */
.hero-slide[data-active="true"] img { animation: kenBurns1 8s ease-in-out both; }

/* ── Gradient overlays (brand teal dark) ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right,  rgba(30, 62, 67, 0.88) 0%,   rgba(30, 62, 67, 0.55) 55%,  rgba(30, 62, 67, 0.28) 100%),
    linear-gradient(to bottom, rgba(30, 62, 67, 0.25) 0%,   transparent 40%, rgba(30, 62, 67, 0.65) 100%);
}

/* ── Dot particles (CSS-only micro-particles) ── */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(168, 208, 214, 0.6);  /* brand-light teal */
  animation: particleDrift linear infinite;
}
.hero-particles span:nth-child(1)  { left: 12%; bottom: 20%; animation-duration: 7s;  animation-delay: 0s; }
.hero-particles span:nth-child(2)  { left: 28%; bottom: 30%; animation-duration: 9s;  animation-delay: 1s; width:2px; height:2px; }
.hero-particles span:nth-child(3)  { left: 45%; bottom: 15%; animation-duration: 6s;  animation-delay: 2s; }
.hero-particles span:nth-child(4)  { left: 62%; bottom: 25%; animation-duration: 11s; animation-delay: 0.5s; width:4px; height:4px; background:rgba(184,92,56,0.45); }
.hero-particles span:nth-child(5)  { left: 78%; bottom: 18%; animation-duration: 8s;  animation-delay: 3s; }
.hero-particles span:nth-child(6)  { left: 90%; bottom: 35%; animation-duration: 10s; animation-delay: 1.5s; width:2px; height:2px; }
.hero-particles span:nth-child(7)  { left: 20%; bottom: 45%; animation-duration: 12s; animation-delay: 4s; background:rgba(255,255,255,0.35); }
.hero-particles span:nth-child(8)  { left: 55%; bottom: 50%; animation-duration: 7.5s; animation-delay: 2.5s; width:2px; height:2px; }

/* ── Main content ── */
.hero-content {
  position: relative;
  z-index: 4;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 80px;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-sky);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  animation: fadeInLeft 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-sky);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 20px;
  max-width: 760px;
  animation: fadeInLeft 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.hero-title em {
  font-style: italic;
  color: var(--color-sky);
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 540px;
  animation: fadeInLeft 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

.hero-tagline strong {
  color: var(--color-sky);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1s both;
}

/* ── Slide caption ── */
.hero-caption {
  position: absolute;
  bottom: 130px;
  right: 40px;
  z-index: 4;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 14px 20px;
  max-width: 220px;
  animation: fadeIn 1s ease 1.3s both;
}

.hero-caption-text {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  transition: opacity 0.5s ease;
}

/* ── Carousel navigation dots ── */
.hero-nav {
  position: absolute;
  bottom: 130px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeIn 1s ease 1.2s both;
}

.hero-nav-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.35s ease;
  border: none;
  padding: 0;
}

.hero-nav-dot.active {
  background: var(--color-sky);
  width: 24px;
  border-radius: 4px;
}

.hero-nav-dot:hover {
  background: rgba(255,255,255,0.7);
}

/* ── Slide progress bar ── */
.hero-progress {
  position: absolute;
  bottom: 116px;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 4;
  background: rgba(255,255,255,0.12);
}

.hero-progress-bar {
  height: 100%;
  background: var(--color-sky);
  width: 0%;
  transition: width linear;
}

/* ── Scroll indicator ── */
.hero-scroll {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s ease 1.6s both;
}

.hero-scroll span {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-sky), transparent);
  animation: float 2s ease-in-out infinite;
}

/* Hero Stats Bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: rgba(30, 62, 67, 0.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(168, 208, 214, 0.15);
  display:none;
}

.hero-stats-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  divide-x: 1px solid rgba(255,255,255,0.1);
}

.stat-item {
  padding: 22px 36px;
  text-align: center;
  position: relative;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.stat-item:nth-child(1) { animation-delay: 1.1s; }
.stat-item:nth-child(2) { animation-delay: 1.25s; border-left: 1px solid rgba(255,255,255,0.1); border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:nth-child(3) { animation-delay: 1.4s; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* === ABOUT SECTION === */
.about {
  padding: var(--section-padding);
  background: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-img-main:hover img {
  transform: scale(1.04);
}

.about-img-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 48%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid white;
  aspect-ratio: 3/4;
}

.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 90px;
  height: 90px;
  background: var(--color-ocean);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 10;
}

.about-badge .badge-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge .badge-text {
  font-family: var(--font-accent);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.about-content {
  padding-right: 20px;
}

.mission-card {
  background: var(--color-light-gray);
  border-left: 4px solid var(--color-ocean);
  border-radius: 0 8px 8px 0;
  padding: 24px 28px;
  margin-top: 32px;
}

.mission-card h4 {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-ocean);
  margin-bottom: 10px;
}

.mission-card p {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.8;
}

/* === SERVICES SECTION (Parallax) === */
.services {
  position: relative;
  padding: var(--section-padding);
  overflow: hidden;
}

.services-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-image: url('images/img-event-space.jpg');
}

.services-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.93) 0%,
    rgba(13, 43, 69, 0.9) 50%,
    rgba(10, 22, 40, 0.93) 100%
  );
  z-index: 1;
}

.services-content {
  position: relative;
  z-index: 2;
}

.services-header {
  text-align: center;
  margin-bottom: 72px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 44px 36px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-sky), var(--color-coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-ocean), var(--color-sky));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all var(--transition-base);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 30px rgba(74, 159, 212, 0.4);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

/* === WHY US SECTION === */
.why-us {
  padding: var(--section-padding);
  background: var(--color-off-white);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-content {
  order: 1;
}

.why-features {
  margin-top: 40px;
  display: grid;
  gap: 24px;
}

.why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.why-feature:hover .feature-icon {
  background: var(--color-ocean);
  transform: scale(1.1);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-ocean);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition-base);
}

.why-feature:hover .feature-icon svg {
  stroke: white;
}

.feature-text h4 {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.feature-text p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.why-us-image {
  order: 2;
  position: relative;
}

.why-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 5/6;
  box-shadow: var(--shadow-xl);
}

.why-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.7s ease;
}

.why-img-wrap:hover img {
  transform: scale(1.04);
}

.why-quote {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--color-navy);
  color: white;
  padding: 24px 28px;
  border-radius: 10px;
  max-width: 260px;
  box-shadow: var(--shadow-lg);
}

.why-quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

.why-quote span {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-sky);
  margin-top: 12px;
}

/* === CULTURE SECTION === */
.culture {
  padding: var(--section-padding);
  background: var(--color-white);
}

.culture-header {
  text-align: center;
  margin-bottom: 64px;
}

.culture-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  margin-bottom: 72px;
}

.mosaic-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.mosaic-item:hover img {
  transform: scale(1.06);
}

.mosaic-item--large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 1;
}

.mosaic-item--tall {
  grid-column: span 1;
  grid-row: span 2;
  aspect-ratio: 3/5;
}

.mosaic-item--wide {
  grid-column: span 2;
  aspect-ratio: 2;
}

.mosaic-item--sq {
  aspect-ratio: 1;
}

.culture-text-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.culture-pillar {
  text-align: center;
  padding: 36px 24px;
  background: var(--color-off-white);
  border-radius: 12px;
  transition: all var(--transition-base);
}

.culture-pillar:hover {
  background: var(--color-light-gray);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.pillar-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-light-gray);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition-base);
}

.culture-pillar:hover .pillar-num {
  color: var(--color-sky);
}

.culture-pillar h3 {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.culture-pillar p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* === CAREERS SECTION === */
.careers {
  padding: var(--section-padding);
  background: var(--color-light-gray);
}

.careers-header {
  text-align: center;
  margin-bottom: 64px;
}

.careers-intro {
  max-width: 700px;
  margin: 0 auto 64px;
  text-align: center;
}

.careers-intro p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.job-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border-bottom: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.job-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-ocean), var(--color-sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.job-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.job-card:hover::after {
  transform: scaleX(1);
}

.job-type {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-sky);
  background: rgba(74, 159, 212, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 20px;
}

.job-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

.job-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 28px;
}

.job-apply-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-ocean);
  transition: gap var(--transition-base);
}

.job-apply-link:hover {
  gap: 14px;
  color: var(--color-navy);
}

.job-apply-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.careers-cta {
  text-align: center;
  padding: 60px;
  background: var(--color-navy);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.careers-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(74, 159, 212, 0.15) 0%, transparent 70%);
  animation: wave 20s linear infinite;
}

.careers-cta h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: white;
  margin-bottom: 16px;
  position: relative;
}

.careers-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 32px;
  position: relative;
}

/* === TRAINING SECTION === */
.training {
  padding: var(--section-padding);
  background: var(--color-white);
}

.training-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.training-image {
  position: relative;
}

.training-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.training-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.training-img-wrap:hover img {
  transform: scale(1.04);
}

.training-steps {
  margin-top: 40px;
  display: grid;
  gap: 20px;
}

.training-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--color-off-white);
  border-radius: 10px;
  transition: all var(--transition-base);
}

.training-step:hover {
  background: var(--color-light-gray);
  transform: translateX(6px);
}

.step-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-sky);
  opacity: 0.6;
  line-height: 1;
  min-width: 36px;
}

.step-content h4 {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.step-content p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* === CTA BANNER === */
.cta-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--color-navy);
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-image: url('images/img-team-large.jpg');
  opacity: 0.25;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.cta-banner-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === CONTACT SECTION === */
.contact {
  padding: var(--section-padding);
  background: var(--color-off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--color-navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-info p {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {
  display: grid;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--color-ocean);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item-text h4 {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.contact-item-text a,
.contact-item-text p {
  font-size: 0.95rem;
  color: var(--color-navy);
  font-weight: 500;
  margin: 0;
  transition: color var(--transition-base);
}

.contact-item-text a:hover {
  color: var(--color-ocean);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--color-white);
  border-radius: 16px;
  padding: 50px 44px;
  box-shadow: var(--shadow-md);
}

.contact-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-navy);
  margin-bottom: 32px;
}

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

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--color-light-gray);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-off-white);
  transition: all var(--transition-base);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-ocean);
  background: white;
  box-shadow: 0 0 0 4px rgba(26, 92, 138, 0.1);
}

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

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--color-ocean);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: var(--font-accent);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(26, 92, 138, 0.25);
}

.form-submit:hover {
  background: var(--color-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 92, 138, 0.35);
}

/* === FOOTER === */
.footer {
  background: var(--color-dark);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Footer logo image */
.footer-logo-wrap {
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
  /* white PNG on dark footer — no filter needed */
  opacity: 0.92;
}

/* Hide old text logo parts */
.footer-brand .logo-wrap,
.footer-brand .logo-mark,
.footer-brand .logo-name,
.footer-brand .logo-sub { display: none; }

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--color-ocean);
  transform: translateY(-3px);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: rgba(255,255,255,0.7);
  transition: fill var(--transition-base);
}

.social-link:hover svg {
  fill: white;
}

.footer-col h4 {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 24px; height: 2px;
  background: var(--color-sky);
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '→';
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--transition-base);
  font-size: 0.75rem;
  color: var(--color-sky);
}

.footer-links a:hover {
  color: rgba(255,255,255,0.9);
  padding-left: 6px;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  stroke: var(--color-sky);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 2px;
}

.footer-contact-item span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-base);
}

.footer-contact-item a:hover {
  color: var(--color-sky);
}

.footer-bottom {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition-base);
}

.footer-legal a:hover {
  color: var(--color-sky);
}

/* === NOTIFICATION / ALERT === */
.alert {
  padding: 16px 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 24px;
  animation: fadeInUp 0.5s ease both;
}

.alert svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.alert-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #15803d;
}

.alert-success svg { stroke: #22c55e; }

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #dc2626;
}

.alert-error svg { stroke: #ef4444; }

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-ocean) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.04)" stroke-width="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: white;
  margin-bottom: 16px;
  animation: fadeInUp 0.7s ease both;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin: 0 auto;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
  animation: fadeIn 0.7s ease 0.1s both;
}

.breadcrumb a {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-base);
}

.breadcrumb a:hover { color: rgba(255,255,255,0.9); }

.breadcrumb span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
}

/* === APPLY PAGE === */
.apply-section {
  padding: var(--section-padding);
  background: var(--color-off-white);
}

.apply-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  align-items: start;
}

.apply-info {
  position: sticky;
  top: 100px;
}

.apply-info h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.apply-info p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

.apply-perks {
  display: grid;
  gap: 16px;
}

.apply-perk {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.perk-check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: rgba(74, 159, 212, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.perk-check svg {
  width: 12px;
  height: 12px;
  stroke: var(--color-ocean);
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.apply-perk span {
  font-size: 0.9rem;
  color: var(--color-text);
  font-weight: 500;
}

.apply-form-wrap {
  background: var(--color-white);
  border-radius: 16px;
  padding: 56px 48px;
  box-shadow: var(--shadow-md);
}

.apply-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.apply-form-wrap .form-desc {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 40px;
  line-height: 1.7;
}

.form-section-title {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-sky);
  border-bottom: 1px solid var(--color-light-gray);
  padding-bottom: 12px;
  margin: 36px 0 24px;
}

.form-section-title:first-of-type {
  margin-top: 0;
}

/* === TERMS & PRIVACY PAGES === */
.legal-section {
  padding: 80px 0;
  background: var(--color-white);
}

.legal-container {
  max-width: 860px;
  margin: 0 auto;
  padding: var(--container-padding);
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--color-navy);
  margin: 48px 0 16px;
  padding-top: 8px;
  border-top: 1px solid var(--color-light-gray);
}

.legal-content h2:first-child {
  margin-top: 0;
  border-top: none;
}

.legal-content h3 {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-ocean);
  margin: 28px 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.9;
  margin-bottom: 18px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 28px;
  margin-bottom: 20px;
}

.legal-content ul li {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.9;
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--color-ocean);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: var(--color-navy);
}

.legal-toc {
  background: var(--color-off-white);
  border-radius: 12px;
  padding: 32px 36px;
  margin-bottom: 48px;
}

.legal-toc h4 {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.legal-toc ol {
  list-style: decimal;
  padding-left: 20px;
  columns: 2;
  gap: 20px;
}

.legal-toc ol li {
  margin-bottom: 10px;
}

.legal-toc a {
  font-size: 0.875rem;
  color: var(--color-ocean);
  transition: color var(--transition-base);
}

.legal-toc a:hover {
  color: var(--color-navy);
}

.last-updated {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--color-mid-gray);
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* === MOBILE MENU OVERLAY === */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--color-navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition-base);
  padding: 8px 0;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--color-sky);
}

.mobile-nav-close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: background var(--transition-base);
}

.mobile-nav-close:hover {
  background: rgba(255,255,255,0.2);
}

.mobile-nav-cta {
  margin-top: 20px;
}

/* === SCROLL TO TOP === */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 48px;
  height: 48px;
  background: var(--color-ocean);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow-md);
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  background: var(--color-navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* === IMAGE SLIDER / CAROUSEL === */
.slider-section {
  padding: 80px 0;
  background: var(--color-light-gray);
  overflow: hidden;
}

.slider-track {
  overflow: hidden;
  position: relative;
}

.slider-inner {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-item {
  flex: 0 0 calc(33.333% - 14px);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.slide-item:hover img {
  transform: scale(1.06);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  background: var(--color-white);
  border: 2px solid var(--color-light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
  background: var(--color-ocean);
  border-color: var(--color-ocean);
  transform: scale(1.1);
}

.slider-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-navy);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition-base);
}

.slider-btn:hover svg {
  stroke: white;
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-mid-gray);
  cursor: pointer;
  transition: all var(--transition-base);
}

.slider-dot.active {
  background: var(--color-ocean);
  width: 24px;
  border-radius: 4px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .about-grid,
  .why-us-grid,
  .training-grid,
  .contact-grid,
  .apply-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-accent {
    right: 0;
    bottom: -20px;
    width: 38%;
  }

  .why-us-image { order: -1; }
  .why-img-wrap { aspect-ratio: 16/9; }

  .why-quote {
    bottom: -16px;
    left: 16px;
    max-width: 220px;
    padding: 18px 20px;
  }

  .services-grid,
  .job-grid {
    grid-template-columns: 1fr 1fr;
  }

  .culture-text-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .slide-item {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 72px 0;
  }

  .navbar-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-stats-inner {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 16px 24px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .stat-number {
    font-size: 1.8rem;
    min-width: 80px;
  }

  .services-grid,
  .job-grid,
  .culture-text-grid {
    grid-template-columns: 1fr;
  }

  .culture-mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .mosaic-item--large {
    grid-column: 1;
    grid-row: 1;
  }

  .mosaic-item--wide {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-form-wrap {
    padding: 36px 24px;
  }

  .apply-form-wrap {
    padding: 36px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .careers-cta {
    padding: 40px 24px;
  }

  .legal-toc ol {
    columns: 1;
  }

  .slide-item {
    flex: 0 0 calc(100% - 20px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-banner-actions {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .hero-stats-inner {
    display: block;
  }

  .about-img-accent {
    display: none;
  }

  .about-badge {
    width: 72px;
    height: 72px;
  }
}

/* === PRINT STYLES === */
@media print {
  .navbar,
  .hero-scroll,
  .scroll-top,
  .mobile-nav {
    display: none !important;
  }
}
