:root {
  --bg-dark: #0b1628;
  --bg-card: #132238;
  --bg-card-hover: #1a2d4a;
  --orange: #f0a500;
  --orange-hover: #ffb52e;
  --text-light: #e8eef7;
  --text-muted: #a0b0c8;
  --border: rgba(255, 255, 255, 0.08);
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, .hero-name {
  font-family: 'Playfair Display', Georgia, serif;
}

/* Navbar */
.navbar {
  background: rgba(11, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  font-weight: 600;
  font-size: 1.15rem;
  color: #fff;
}

.nav-link {
  color: var(--text-muted) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.9rem !important;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--orange) !important;
}

.btn-cta {
  background: var(--orange);
  color: #0b1628 !important;
  font-weight: 600;
  border: none;
  padding: 0.55rem 1.4rem;
  border-radius: 6px;
  transition: all 0.25s;
}

.btn-cta:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(240, 165, 0, 0.35);
}

/* Hero */
.hero-section {
  padding: 4rem 0 3.5rem;
  background: linear-gradient(180deg, #0d1a2f 0%, var(--bg-dark) 100%);
  border-bottom: 1px solid var(--border);
}

.hero-logo-wrapper {
  display: inline-block;
  max-width: 340px;
  filter: drop-shadow(0 8px 25px rgba(240, 165, 0, 0.25));
}

.hero-logo {
  width: 100%;
  height: auto;
  max-width: 340px;
  display: block;
}

.hero-name {
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
  letter-spacing: -0.5px;
}

.hero-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.7;
}

/* Sections common */
.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-heading {
  font-size: 2.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
}

/* About */
.section-about {
  padding: 4.5rem 0;
}

.about-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 900px;
  margin-bottom: 0.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: all 0.25s;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(240, 165, 0, 0.25);
  transform: translateY(-3px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(240, 165, 0, 0.12);
  color: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.feature-card h5 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* Expertise */
.section-expertise {
  padding: 4rem 0;
  background: #0a1424;
}

.expertise-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.6rem 1.4rem;
  height: 100%;
  transition: all 0.25s;
}

.expertise-card:hover {
  border-color: rgba(240, 165, 0, 0.3);
}

.exp-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(240, 165, 0, 0.12);
  color: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-right: 1rem;
}

.expertise-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.expertise-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.expertise-card ul li {
  color: var(--text-muted);
  font-size: 0.92rem;
  padding: 0.25rem 0;
  position: relative;
  padding-left: 1.1rem;
}

.expertise-card ul li::before {
  content: "•";
  color: var(--orange);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Approach */
.section-approach {
  padding: 4.5rem 0;
}

.approach-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 2rem;
}

.step-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  max-width: 180px;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: #0b1628;
  font-weight: 700;
  font-size: 1.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
  box-shadow: 0 4px 15px rgba(240, 165, 0, 0.3);
}

.step-item h6 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.4rem;
}

.step-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.step-arrow {
  color: var(--orange);
  font-size: 1.4rem;
  margin-top: 12px;
  opacity: 0.7;
}

/* Map & Impact */
.section-map-impact {
  padding: 4rem 0;
  background: #0a1424;
}

.map-card,
.impact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  height: 100%;
}

.map-card h3,
.impact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.map-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.us-map-placeholder {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #0d1c30;
}

.map-img {
  width: 100%;
  opacity: 0.85;
  filter: brightness(0.9) contrast(1.1);
  border-radius: 8px;
}

.map-overlay-stats {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-badge {
  background: rgba(240, 165, 0, 0.1);
  border: 1px solid rgba(240, 165, 0, 0.25);
  color: var(--text-light);
  font-size: 0.88rem;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stat-badge i {
  color: var(--orange);
}

/* Metrics */
.metric-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.1rem 0.75rem;
  text-align: center;
  height: 100%;
}

.metric-icon {
  color: var(--orange);
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.metric-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.metric-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.text-orange {
  color: var(--orange) !important;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.partner-quote {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--orange);
  padding: 1rem 1.1rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  border-radius: 0 8px 8px 0;
  margin: 0;
}

.partner-quote footer {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  opacity: 0.85;
}

.achievements-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.achievements-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.achievements-list i {
  color: var(--orange);
  margin-top: 3px;
  flex-shrink: 0;
}

/* Contact / Why */
.section-contact {
  padding: 4.5rem 0 5rem;
}

.why-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff;
}

.why-text {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.why-list {
  list-style: none;
  padding: 0;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--text-light);
  font-size: 0.98rem;
  padding: 0.4rem 0;
}

.why-list i {
  color: var(--orange);
  font-size: 1.15rem;
  margin-top: 2px;
}

.contact-info p {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.contact-info a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info a:hover {
  color: var(--orange);
}

.contact-info i {
  color: var(--orange);
  margin-right: 0.5rem;
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
}

.contact-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.form-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.form-control {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: #fff;
  border-radius: 8px;
  padding: 0.7rem 1rem;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(240, 165, 0, 0.15);
}

.form-control::placeholder {
  color: #6b7c94;
}

/* Footer */
.site-footer {
  background: #070f1c;
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-name {
    font-size: 2.5rem;
  }
  .approach-steps {
    justify-content: center;
  }
  .step-arrow {
    display: none;
  }
  .step-item {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-name {
    font-size: 2.1rem;
  }
  .hero-logo-wrapper {
    max-width: 260px;
  }
  .section-heading {
    font-size: 1.7rem;
  }
}
