@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700&family=Barlow:wght@300;400;500;600&display=swap');

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

:root {
  --blue: #003594;
  --blue-dark: #001F5A;
  --blue-mid: #0C4CA3;
  --blue-light: rgba(0,53,148,0.08);
  --blue-med: rgba(0,53,148,0.18);
  --orange: #F48120;
  --orange-light: rgba(244,129,32,0.12);
  --white: #FAFBFF;
  --text: #1A1A2E;
  --muted: #6B7A99;
  --border: rgba(0,53,148,0.12);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 { font-family: 'Montserrat', sans-serif; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 76px;
  display: flex;
  align-items: center;
  padding: 0 60px;
  justify-content: space-between;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,53,148,0.08);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(0,53,148,0.12); }
.navbar-logo img { height: 48px; display: block; }
.navbar-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.navbar-links a {
  text-decoration: none;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  padding: 8px 13px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.navbar-links a:hover { color: var(--blue); background: var(--blue-light); }
.navbar-links a.active { color: var(--blue); font-weight: 600; }
.nav-cta {
  background: var(--blue) !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: 10px 20px !important;
  font-weight: 700 !important;
  transition: background 0.2s, transform 0.15s !important;
  margin-left: 4px;
}
.nav-cta:hover { background: var(--blue-dark) !important; transform: translateY(-1px); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  height: 380px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 60px 56px;
  margin-top: 76px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45) saturate(0.8);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.page-hero:hover .page-hero-bg { transform: scale(1); }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,31,90,0.85) 0%, rgba(0,31,90,0.3) 60%, transparent 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { color: rgba(255,255,255,0.35); }
.breadcrumb-cur { color: #fff; font-weight: 500; }
.page-hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.page-hero h1 em { font-style: italic; color: var(--orange); }

/* ─── SECTION COMMONS ─── */
.section { padding: 88px 60px; }
.section-sm { padding: 64px 60px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-light);
  border-radius: 100px; padding: 5px 14px;
  margin-bottom: 14px;
}
.section-tag.orange { color: var(--orange); background: var(--orange-light); }
.section-tag.white { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.12); }
.section-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -0.02em; color: var(--text);
  margin-bottom: 14px;
}
.section-title.white { color: #fff; }
.section-sub {
  font-size: 16px; line-height: 1.75;
  color: var(--muted); max-width: 540px;
}
.section-sub.white { color: rgba(255,255,255,0.7); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-sub { margin: 0 auto; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 12px; padding: 13px 26px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 14px;
  cursor: pointer; text-decoration: none; border: none;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 8px 24px rgba(244,129,32,0.3);
}
.btn-primary:hover { background: #d96d0f; box-shadow: 0 12px 32px rgba(244,129,32,0.42); }
.btn-blue {
  background: var(--blue); color: #fff;
  box-shadow: 0 8px 24px rgba(0,53,148,0.22);
}
.btn-blue:hover { background: var(--blue-dark); box-shadow: 0 12px 32px rgba(0,53,148,0.35); }
.btn-outline {
  background: transparent; color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-ghost {
  background: rgba(255,255,255,0.1); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); }

/* ─── FOOTER ─── */
.footer {
  background: var(--blue-dark);
  padding: 64px 60px 40px;
  border-radius: 24px 24px 0 0;
  margin-top: 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 50px; margin-bottom: 16px; filter: brightness(10); }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s;
  border: none; color: rgba(255,255,255,0.6);
}
.social-btn:hover { background: var(--blue); color: #fff; }
.footer-col h4 {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  text-decoration: none; font-size: 14px;
  color: rgba(255,255,255,0.6); transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  text-decoration: none; font-size: 13px;
  color: rgba(255,255,255,0.3); transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.65); }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
