@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;600;700;900&family=Barlow:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sky: #0A9FC8;
  --sky-dark: #0880A0;
  --deep: #062B3B;
  --steel: #1A4B61;
  --frost: #EDF8FC;
  --ice: #D6F0F7;
  --mid: #4A8FA8;
  --text: #0D1F2D;
  --muted: #5A7A8A;
  --white: #FFFFFF;
  --light-bg: #F4FAFD;
  --border: #D0E8F0;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ─── NAV ─────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(6,43,59,0.97);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 72px;
  border-bottom: 1px solid rgba(10,159,200,0.2);
}
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  transition: color 0.2s; padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); border-bottom-color: var(--sky); }
.nav-cta {
  background: var(--sky); color: white; border: none;
  padding: 11px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.nav-cta:hover { background: var(--sky-dark); transform: translateY(-1px); }

/* Hamburger (mobile) */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: white; display: block; transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--deep); z-index: 99;
  padding: 24px 5vw 32px; flex-direction: column; gap: 0;
  border-bottom: 1px solid rgba(10,159,200,0.2);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 18px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: block;
}
.mobile-menu a:last-child { border-bottom: none; margin-top: 16px; }

/* ─── BUTTONS ─────────────────────────────── */
.btn-primary {
  background: var(--sky); color: white; border: none;
  padding: 16px 36px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 15px;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; border-radius: 2px;
  text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--sky-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 15px 36px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 15px;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; border-radius: 2px;
  text-decoration: none; display: inline-block;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline:hover { border-color: var(--sky); color: var(--sky); transform: translateY(-2px); }

/* ─── SECTION BASE ────────────────────────── */
.section { padding: 100px 5vw; }
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--sky); margin-bottom: 14px; display: block;
}
.section-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 900; text-transform: uppercase;
  line-height: 0.95; color: var(--deep);
}
.section-heading em { font-style: normal; color: var(--sky); }
.section-heading.light { color: var(--white); }

/* ─── TICKER ──────────────────────────────── */
.ticker { background: var(--sky); padding: 13px 0; overflow: hidden; }
.ticker-inner {
  display: flex; gap: 56px; white-space: nowrap;
  animation: ticker 25s linear infinite;
}
.ticker-inner span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: white;
}
.ticker-dot { color: rgba(255,255,255,0.45) !important; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── PHOTO PLACEHOLDER ───────────────────── */
.photo-placeholder {
  background: linear-gradient(135deg, var(--steel) 0%, var(--deep) 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  border: 2px dashed rgba(10,159,200,0.3);
  border-radius: 4px;
}
.photo-placeholder span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
}
.photo-placeholder::before {
  content: ''; display: block;
  width: 40px; height: 40px;
  border: 2px solid rgba(10,159,200,0.4);
  border-radius: 50%;
}

/* ─── FOOTER ──────────────────────────────── */
footer {
  background: #041520;
  padding: 56px 5vw 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand img { height: 52px; width: auto; margin-bottom: 20px; }
.footer-brand p {
  font-size: 14px; color: rgba(255,255,255,0.45);
  line-height: 1.7; max-width: 240px;
}
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--sky); margin-bottom: 20px;
}
.footer-col a, .footer-col p {
  display: block; color: rgba(255,255,255,0.5);
  text-decoration: none; font-size: 14px; line-height: 1.5;
  margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(255,255,255,0.25); text-decoration: none; font-size: 12px; }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ─── FORMS ───────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted);
}
input, textarea, select {
  background: white; border: 1.5px solid var(--border);
  border-radius: 2px; padding: 13px 15px;
  font-family: 'Barlow', sans-serif; font-size: 14px; color: var(--text);
  transition: border-color 0.2s; outline: none; width: 100%;
}
input:focus, textarea:focus, select:focus { border-color: var(--sky); }
textarea { resize: vertical; min-height: 130px; }
.form-submit {
  width: 100%; background: var(--deep); color: white; border: none;
  padding: 17px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 15px;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; border-radius: 2px;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--steel); }

/* ─── PAGE HERO (inner pages) ─────────────── */
.page-hero {
  padding: 160px 5vw 80px;
  background: linear-gradient(135deg, #062B3B 0%, #0A3D55 60%, #062B3B 100%);
  position: relative; overflow: hidden;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,159,200,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,159,200,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 900; text-transform: uppercase;
  color: var(--white); line-height: 0.95;
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: normal; color: var(--sky); }
.page-hero p {
  font-size: 18px; font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 540px; line-height: 1.65;
}

/* ─── BREADCRUMB ─────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 24px;
}
.breadcrumb a, .breadcrumb span {
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); text-decoration: none;
}
.breadcrumb a:hover { color: var(--sky); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }
.breadcrumb .current { color: var(--sky); }

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 64px 5vw; }
}

/* ─── CTA BAND ────────────────────────────── */
.cta-band {
  background: var(--sky);
  padding: 72px 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 28px;
}
.cta-band h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}
.cta-band h2 span {
  display: block;
  font-weight: 300;
  font-size: 0.65em;
  opacity: 0.85;
  margin-top: 6px;
}
.btn-white {
  background: var(--white);
  color: var(--deep);
  border: none;
  padding: 16px 36px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-white:hover { background: var(--ice); transform: translateY(-2px); }
