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

:root {
  --blue: #0A2463;
  --blue-mid: #1a3a8f;
  --blue-light: #1e4fc0;
  --red: #D62828;
  --red-dark: #b01f1f;
  --white: #FFFFFF;
  --off-white: #F4F6FA;
  --gray: #6B7280;
  --gray-light: #E5E7EB;
  --text-dark: #0d1b3e;
  --text-body: #374151;
  --gold: #F4A300;
  --nav-height: 72px;
}

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

html { scroll-behavior: smooth; }

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

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

p { line-height: 1.7; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--blue);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  border-bottom: 3px solid var(--red);
}

.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- MOBILE FULL-SCREEN MENU ---- */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--text-dark);
  z-index: 1100;
  flex-direction: column;
  overflow-y: auto;
}

.nav-mobile-overlay.open { display: flex; }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.mobile-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.02em;
}

.mobile-logo em {
  font-style: normal;
  color: var(--gold);
}

.close-menu {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  transition: background 0.2s;
}

.close-menu:hover { background: rgba(255,255,255,0.15); }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem 0;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem 1.75rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
}

.mobile-nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
  padding-left: 2.25rem;
}

.mobile-link-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.1em;
  font-family: 'Barlow', sans-serif;
  min-width: 22px;
}

.mobile-menu-footer {
  padding: 1.5rem 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.mobile-cta-btn {
  display: block;
  text-align: center;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem;
  border-radius: 4px;
  transition: background 0.2s;
}

.mobile-cta-btn:hover { background: var(--red-dark); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(214,40,40,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-large {
  font-size: 1.15rem;
  padding: 1.1rem 2.6rem;
}

/* ---- HERO SECTIONS ---- */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.35);
  transition: transform 8s ease;
}

.hero:hover .hero-bg { transform: scale(1.03); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,36,99,0.75) 0%, rgba(214,40,40,0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem;
  width: 100%;
}

.hero-label {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  color: var(--white);
  max-width: 860px;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Subpage hero smaller */
.hero-sub { min-height: 380px; }
.hero-sub .hero-content { padding: 4rem 2rem; }
.hero-sub h1 { font-size: clamp(2.2rem, 5vw, 4rem); }

/* ---- SECTIONS ---- */
.section {
  padding: 6rem 2rem;
}

.section-alt { background: var(--off-white); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  max-width: 700px;
}

.section-title.center { max-width: 800px; margin-left: auto; margin-right: auto; text-align: center; }

.section-body {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 580px;
  margin-bottom: 2rem;
}

/* ---- TWO COLUMN LAYOUTS ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.col-image {
  position: relative;
}

.col-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(10,36,99,0.2);
}

.col-image::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 3px solid var(--red);
  border-radius: 6px;
  z-index: -1;
}

/* ---- THREE COLUMN CARDS ---- */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 24px rgba(10,36,99,0.08);
  border-top: 4px solid var(--blue);
  transition: transform 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(10,36,99,0.15);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--white);
}

.feature-card h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ---- CTA BAND ---- */
.cta-band {
  background: var(--blue);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(214,40,40,0.2) 0%, transparent 70%);
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta-text h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  color: var(--white);
  max-width: 600px;
  margin-bottom: 0.75rem;
}

.cta-text p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 500px;
}

/* ---- STATS ROW ---- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--red);
  text-align: center;
}

.stat-item {
  padding: 3rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
  display: block;
}

/* ---- WHY CARDS ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.why-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(10,36,99,0.07);
  border-left: 4px solid var(--red);
}

.why-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gray-light);
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.why-card h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--gray);
}

/* ---- FORM ---- */
.form-section {
  max-width: 760px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full { grid-column: 1 / -1; }

label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dark);
}

input, select, textarea {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 2px solid var(--gray-light);
  border-radius: 4px;
  background: var(--white);
  color: var(--text-dark);
  transition: border-color 0.2s;
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
}

textarea { resize: vertical; min-height: 140px; }

.success-msg {
  display: none;
  background: #d1fae5;
  border: 2px solid #10b981;
  color: #065f46;
  padding: 1.5rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 2rem;
  text-align: center;
}

.success-msg.show { display: block; }

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--white);
}

.contact-item-body strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.2rem;
}

.contact-item-body a,
.contact-item-body span {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border: 2px solid var(--gray-light);
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.2s;
}

.social-link:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(10,36,99,0.04);
}

/* ---- FOOTER ---- */
footer {
  background: var(--text-dark);
  padding: 3.5rem 2rem 2rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
}

.footer-logo span { color: var(--gold); }
.footer-logo p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
  text-transform: none;
  letter-spacing: 0;
}

.footer-links h4 {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: background 0.2s;
}

.footer-social-icon:hover { background: var(--red); }

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--gold); }

/* ---- DIVIDER ---- */
.divider-red {
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  border: none;
}

/* ---- Page intro ---- */
.page-intro {
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: center;
}

.page-intro p {
  font-size: 1.1rem;
  color: var(--gray);
}

/* ---- MISSION LIST ---- */
.mission-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.mission-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--text-body);
}

.mission-list li::before {
  content: '✦';
  color: var(--red);
  font-size: 0.9rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .three-col { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  .hero { min-height: 500px; }
  .hero h1 { font-size: 2.4rem; }

  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .two-col.reverse { direction: ltr; }
  .col-image img { height: 280px; }
  .col-image::before { display: none; }

  .three-col { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  .cta-band .container {
    flex-direction: column;
    text-align: center;
  }

  .stats-row { grid-template-columns: repeat(2, 1fr); }

  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

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

  .section { padding: 4rem 1.25rem; }
  .hero-content { padding: 3.5rem 1.25rem; }

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

@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 2.5rem; }
}
