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

:root {
  --navy:    #0d1b2e;
  --navy-mid:#1a2f4e;
  --gold:    #c9a84c;
  --gold-lt: #e0c272;
  --white:   #ffffff;
  --off-white: #f4f6f9;
  --gray:    #6b7280;
  --light-gray: #e5e7eb;
  --font-main: 'Georgia', 'Times New Roman', serif;
  --font-sans: 'Segoe UI', Arial, sans-serif;
  --transition: 0.3s ease;
  --radius: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--navy);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* =============================================
   UTILITY
============================================= */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-sub {
  color: var(--gray);
  font-size: 1.05rem;
}

.verticals-note {
  margin-top: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

h1, h2, h3 {
  font-family: var(--font-main);
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; }

p { color: var(--gray); }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  font-family: var(--font-sans);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-full { width: 100%; text-align: center; }

/* =============================================
   HEADER / NAV
============================================= */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

#header.scrolled {
  background: var(--navy);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-links a:hover { color: var(--gold); }

.btn-nav {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 700 !important;
}

.btn-nav:hover {
  background: var(--gold-lt) !important;
  color: var(--navy) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}

/* =============================================
   HERO
============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #2a4a70 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(201,168,76,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.07) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 100px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--gold);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}

.hero-scroll span::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 1.8s infinite;
}

@keyframes scrollDot {
  0%   { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 22px; }
}

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

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

.about-text h2 { margin-bottom: 20px; }
.about-text .section-label { margin-bottom: 8px; }

.about-text p {
  margin-bottom: 16px;
}

.about-text .btn { margin-top: 12px; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-left: 4px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.stat-num {
  font-size: 2.4rem;
  font-weight: 700;
  font-family: var(--font-main);
  color: var(--navy);
}

.stat-plus {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-card p {
  margin-top: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-mid);
}

/* =============================================
   SERVICES
============================================= */
.services {
  background: var(--off-white);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--gold);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =============================================
   WHY US
============================================= */
.why-us {
  background: var(--navy);
}

.why-us .section-label { color: var(--gold); }
.why-us h2 { color: var(--white); }
.why-us .section-sub { color: rgba(255,255,255,0.65); }

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

.pillar {
  position: relative;
  padding-top: 16px;
}

.pillar-number {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: var(--font-main);
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 12px;
}

.pillar h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.pillar p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

/* =============================================
   CONTACT
============================================= */
.contact {
  background: var(--white);
}

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

.contact-text .section-label { margin-bottom: 8px; }
.contact-text h2 { margin-bottom: 16px; }

.contact-text p {
  margin-bottom: 32px;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-details li {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
}

/* FORM */
.contact-form {
  background: var(--off-white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-group textarea { resize: vertical; }

.form-note {
  margin-top: 12px;
  font-size: 0.88rem;
  text-align: center;
  color: var(--gray);
  min-height: 20px;
}

.form-note.success { color: #16a34a; font-weight: 600; }
.form-note.error   { color: #dc2626; font-weight: 600; }

.form-privacy {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.6;
  text-align: center;
  border-top: 1px solid var(--light-gray);
  padding-top: 14px;
}

.eligibility-note {
  font-size: 0.88rem;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border-left: 3px solid var(--gold);
  padding: 10px 14px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 24px;
  line-height: 1.6;
}

.field-note {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--gray);
  margin-left: 4px;
}

/* =============================================
   FOOTER
============================================= */
.footer {
  background: var(--navy);
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer .logo { font-size: 1.2rem; }

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

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

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars        { grid-template-columns: repeat(2, 1fr); }
}

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

  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 99;
  }

  .nav-links.open { display: flex; }

  .nav-links a { font-size: 1.3rem; }

  .about-grid    { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }

  .services-grid { grid-template-columns: 1fr; }
  .pillars        { grid-template-columns: 1fr; }
  .about-stats   { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }

  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
  .about-stats  { grid-template-columns: 1fr; }
}
