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

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

:root {
  --blue: #0057D9;
  --blue-dark: #0044b0;
  --blue-light: #2B8CFF;
  --navy: #0B1F44;
  --gray-50: #F5F7FA;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-950: #020617;
}

body { font-family: 'Inter', sans-serif; color: #111; background: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0; box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 0;
}
nav .logo img { height: 48px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  padding: 8px 16px; border-radius: 8px; font-size: 14px; font-weight: 500;
  color: #334155; transition: all 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 16px; right: 16px;
  height: 2px; background: #1d4ed8; border-radius: 2px;
  transform: scaleX(0); transition: transform 0.2s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover, .nav-links a.active { color: #1d4ed8; background: #eff6ff; }
nav { border-bottom: 3px solid #1d4ed8; }
.nav-links + .btn { margin-left: 8px; }
.btn {
  display: inline-block; padding: 12px 24px; border-radius: 50px;
  background: var(--blue); color: #fff; font-weight: 600; font-size: 14px;
  transition: background 0.2s; border: none; cursor: pointer;
}
.btn:hover { background: var(--blue-dark); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.4);
  color: #fff; font-size: 14px; font-weight: 600; transition: background 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #334155; border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; background: #fff; border-top: 1px solid #f1f5f9; padding: 16px 24px 24px; flex-direction: column; gap: 4px; }
.mobile-menu a { padding: 12px 16px; border-radius: 8px; font-size: 14px; font-weight: 500; color: #334155; }
.mobile-menu a:hover { color: #1d4ed8; background: #eff6ff; }
.mobile-menu .btn { margin-top: 12px; text-align: center; border-radius: 50px; }
.mobile-menu.open { display: flex; }

/* HERO */
.hero {
  background: linear-gradient(135deg, #0B1F44 0%, #0057D9 55%, #2B8CFF 100%);
  color: #fff; padding: 160px 24px 80px;
}
.hero-inner { max-width: 1280px; margin: 0 auto; }
.hero-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #93c5fd; margin-bottom: 24px; display: block; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.1; max-width: 100%; }
.hero p { margin-top: 24px; font-size: 18px; color: #bfdbfe; max-width: 560px; line-height: 1.7; }
.hero-btns { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; }

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #0B1F44 0%, #0057D9 55%, #2B8CFF 100%);
  color: #fff; padding: 140px 24px 80px;
}
.page-hero-inner { max-width: 1280px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; max-width: 100%; }
.page-hero p { margin-top: 24px; font-size: 18px; color: #bfdbfe; max-width: 560px; line-height: 1.7; }
.page-hero .btn { margin-top: 32px; display: inline-block; }

/* SECTIONS */
section { padding: 80px 24px; }
.container { max-width: 1280px; margin: 0 auto; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--blue); }
.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-top: 12px; }
.section-sub { margin-top: 16px; color: var(--gray-600); max-width: 560px; line-height: 1.7; font-size: 15px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 16px auto 0; }

/* GRID */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; align-items: center; }

/* CARDS */
.card {
  padding: 32px; border-radius: 16px; border: 1px solid #f1f5f9;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06); transition: all 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.card-icon { font-size: 36px; margin-bottom: 16px; }
.card-bar { width: 48px; height: 4px; background: var(--blue); border-radius: 4px; margin-bottom: 16px; }
.card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.card p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }
.card:hover h3 { color: var(--blue); }

.card-white { background: #fff; border: 1px solid var(--gray-100); padding: 32px; border-radius: 16px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.card-white:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }

.card-outline { border: 1px solid var(--gray-200); border-radius: 16px; padding: 32px; transition: box-shadow 0.2s; }
.card-outline:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); }

/* BG VARIANTS */
.bg-white { background: #fff; }
.bg-gray { background: var(--gray-50); }
.bg-light { background: #F5F7FA; }
.bg-blue { background: var(--blue); color: #fff; }
.bg-navy { background: var(--navy); color: #fff; }

/* STATS */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; text-align: center; }
.stat-value { font-size: 3rem; font-weight: 800; }
.stat-label { margin-top: 8px; font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: #93c5fd; }

/* FOOTER */
footer { background: var(--gray-950); color: #9ca3af; padding: 80px 24px 40px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid #1f2937; }
.footer-logo img { height: 40px; width: auto; background: #fff; padding: 4px 8px; border-radius: 8px; }
.footer-desc { margin-top: 16px; font-size: 13px; line-height: 1.7; color: #6b7280; }
.footer-contact { margin-top: 24px; font-size: 13px; line-height: 2; }
.footer-heading { color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: #6b7280; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding-top: 32px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; font-size: 12px; color: #4b5563; }

/* CONTACT FORM */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 13px; font-weight: 600; color: var(--gray-700); }
input, select, textarea {
  width: 100%; padding: 12px 16px; border-radius: 12px;
  border: 1px solid var(--gray-200); font-size: 14px; font-family: inherit;
  transition: border 0.2s, box-shadow 0.2s; outline: none; color: #111;
}
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,87,217,0.1); }
textarea { resize: none; }
.submit-btn {
  width: 100%; padding: 16px; background: var(--blue); color: #fff;
  border: none; border-radius: 12px; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: background 0.2s; font-family: inherit;
}
.submit-btn:hover { background: var(--blue-dark); }
.contact-info-card { padding: 24px; background: var(--gray-50); border-radius: 16px; display: flex; gap: 16px; align-items: flex-start; }
.contact-info-card .icon { font-size: 28px; }
.contact-info-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #9ca3af; margin-bottom: 4px; }
.contact-info-value { font-size: 15px; font-weight: 600; color: var(--gray-800); }
.hours-card { background: #eff6ff; border-radius: 16px; padding: 32px; margin-top: 24px; }
.hours-card h3 { font-weight: 700; font-size: 16px; color: var(--blue); margin-bottom: 20px; }
.hours-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--gray-700); padding: 8px 0; border-bottom: 1px solid #dbeafe; }
.hours-row:last-child { border-bottom: none; }
.partners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 16px; margin-top: 40px; }
.partner-card { background: #fff; border: 1px solid var(--gray-200); border-radius: 12px; padding: 16px; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.04); transition: box-shadow 0.2s; }
.partner-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.partner-card img { height: 40px; width: auto; object-fit: contain; }
.tag { background: #eff6ff; color: var(--blue); font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 50px; display: inline-block; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.dot-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.dot-list li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-700); }
.dot-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.stat-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-mini { background: rgba(255,255,255,0.1); border-radius: 16px; padding: 28px; text-align: center; }
.stat-mini-value { font-size: 1.8rem; font-weight: 800; color: #fff; }
.stat-mini-label { font-size: 11px; color: #bfdbfe; margin-top: 6px; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 48px; }
.value-card { border: 1px solid var(--gray-200); border-radius: 16px; padding: 32px; }
.value-card h3 { font-size: 18px; font-weight: 700; color: var(--blue); margin-bottom: 12px; }
.value-card p { font-size: 14px; color: var(--gray-600); line-height: 1.7; }
.coming-soon { border: 2px dashed var(--gray-200); border-radius: 16px; padding: 48px 32px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: var(--gray-50); }
.coming-soon .icon { font-size: 40px; margin-bottom: 16px; }
.coming-soon h3 { font-size: 16px; font-weight: 700; color: var(--gray-500); margin-bottom: 8px; }
.coming-soon p { font-size: 13px; color: #9ca3af; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 600; font-size: 14px; transition: color 0.2s; }
.link-arrow:hover { color: var(--blue-dark); }
.text-center-mt { text-align: center; margin-top: 40px; }
.bbee-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.bbee-card { background: rgba(255,255,255,0.1); border-radius: 16px; padding: 28px; text-align: center; backdrop-filter: blur(8px); }
.bbee-card-wide { grid-column: 1 / -1; }
.bbee-value { font-size: 2rem; font-weight: 800; color: #fff; }
.bbee-label { font-size: 12px; color: #bfdbfe; margin-top: 6px; }

@media (max-width: 768px) {
  .nav-links, .nav-links + .btn { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .bbee-grid { grid-template-columns: 1fr; }
  .bbee-card-wide { grid-column: 1; }
  .stat-mini-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 60px 20px; }
}
