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

:root {
  --navy: #0a1628;
  --navy-mid: #0d2244;
  --navy-light: #1e3a6e;
  --blue: #1e5bb5;
  --blue-bright: #3a7fd4;
  --silver: #c0c8d8;
  --silver-light: #e8edf5;
  --accent: #4a9af5;
  --white: #ffffff;
  --text-dark: #0a1628;
  --text-mid: #3a4d65;
  --text-muted: #6a7e9a;
  --border: #d0daea;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192,200,216,0.15);
  height: 72px;
  display: flex; align-items: center;
  padding: 0 2rem;
  transition: background 0.3s;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--navy-light), var(--blue));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 800; color: #fff;
  letter-spacing: -1px;
  border: 1px solid rgba(255,255,255,0.15);
}
.nav-logo-text .brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 800;
  color: #fff; letter-spacing: 1.5px;
  line-height: 1;
}
.nav-logo-text .sub {
  font-size: 10px; color: rgba(192,200,216,0.6);
  letter-spacing: 2.5px; text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 0.2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(192,200,216,0.8);
  text-decoration: none;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.07);
}
.nav-links a.active { color: var(--accent); }
.nav-cta {
  background: var(--blue);
  color: #fff; border: none;
  padding: 10px 22px; border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px; font-weight: 700;
  cursor: pointer; letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--blue-bright); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(10,22,40,0.98);
  backdrop-filter: blur(16px);
  padding: 1.5rem 2rem 2rem;
  z-index: 999;
  border-bottom: 1px solid rgba(192,200,216,0.12);
  animation: slideDown 0.25s ease;
}
.mobile-menu.active { display: block; }
.mobile-menu a {
  display: block; color: rgba(192,200,216,0.9);
  text-decoration: none;
  font-size: 17px; font-weight: 600;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  letter-spacing: 0.3px;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mob-cta {
  display: block; margin-top: 16px;
  background: var(--blue); color: #fff;
  text-align: center; padding: 14px;
  border-radius: 8px; font-weight: 700;
  font-size: 15px; border-bottom: none;
}

/* ===== PAGE WRAPPER ===== */
.page-content { padding-top: 72px; }

/* ===== FOOTER ===== */
footer {
  background: #060d1a;
  padding: 56px 2rem 0;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 48px;
}
.footer-brand .brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 800;
  color: #fff; letter-spacing: 2px;
}
.footer-brand .brand-sub {
  font-size: 11px; color: rgba(192,200,216,0.4);
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px; color: rgba(192,200,216,0.5);
  line-height: 1.7; max-width: 260px;
}
.footer-col h4 {
  font-size: 12px; color: rgba(192,200,216,0.4);
  letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700; margin-bottom: 16px;
}
.footer-col a {
  display: block; color: rgba(192,200,216,0.6);
  text-decoration: none; font-size: 14px;
  padding: 5px 0; transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-contact-item {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 10px;
}
.footer-contact-item .ic { font-size: 14px; margin-top: 2px; }
.footer-contact-item span {
  font-size: 13px; color: rgba(192,200,216,0.55); line-height: 1.5;
}
.footer-contact-item a {
  font-size: 13px; color: rgba(192,200,216,0.55);
  display: inline; padding: 0;
}
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom-inner {
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(192,200,216,0.3); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-size: 12px; color: rgba(192,200,216,0.3);
  text-decoration: none; transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(192,200,216,0.7); }

/* ===== ANIMATIONS ===== */
@keyframes slideDown { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes slideRight { from { opacity:0; transform:translateX(-30px); } to { opacity:1; transform:translateX(0); } }
@keyframes scaleIn { from { opacity:0; transform:scale(0.92); } to { opacity:1; transform:scale(1); } }
@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-12px);} }

.anim-fadeup { animation: fadeUp 0.7s ease both; }
.anim-fadein { animation: fadeIn 0.6s ease both; }
.anim-right { animation: slideRight 0.7s ease both; }
.anim-scale { animation: scaleIn 0.6s ease both; }

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Delay helpers */
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; } .d6 { transition-delay: 0.6s; }

/* ===== COMMON COMPONENTS ===== */
.section-tag {
  display: inline-block;
  background: rgba(30,91,181,0.1); color: var(--blue);
  font-size: 11px; font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; padding: 6px 16px;
  border-radius: 20px; margin-bottom: 14px;
  border: 1px solid rgba(30,91,181,0.2);
}
.section-tag.light {
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.15);
}
.btn-primary {
  display: inline-block;
  background: var(--blue); color: #fff;
  padding: 14px 32px; border-radius: 8px;
  font-size: 15px; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  letter-spacing: 0.4px; transition: all 0.2s;
  font-family: 'Barlow', sans-serif;
}
.btn-primary:hover { background: var(--blue-bright); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,91,181,0.35); }
.btn-outline {
  display: inline-block;
  background: transparent; color: rgba(255,255,255,0.85);
  padding: 13px 30px; border-radius: 8px;
  font-size: 15px; font-weight: 700;
  text-decoration: none; cursor: pointer;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: all 0.2s; font-family: 'Barlow', sans-serif;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.45); }
.btn-outline-dark {
  display: inline-block;
  background: transparent; color: var(--blue);
  padding: 13px 30px; border-radius: 8px;
  font-size: 15px; font-weight: 700;
  text-decoration: none; cursor: pointer;
  border: 1.5px solid var(--blue);
  transition: all 0.2s; font-family: 'Barlow', sans-serif;
}
.btn-outline-dark:hover { background: var(--blue); color: #fff; }

/* Page Hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #0f2a5a 100%);
  padding: 80px 2rem 70px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner { max-width: 700px; margin: 0 auto; position: relative; }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px; font-weight: 800;
  color: #fff; line-height: 1.05;
  letter-spacing: -0.5px; margin-bottom: 16px;
}
.page-hero p {
  font-size: 18px; color: rgba(192,200,216,0.75);
  line-height: 1.7; max-width: 520px; margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(192,200,216,0.45);
  margin-bottom: 20px; justify-content: center;
}
.breadcrumb a { color: rgba(192,200,216,0.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); font-weight: 600; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 36px; }
  .page-hero { padding: 60px 1.5rem 50px; }
}
