/* ---------- Reset & Base ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #1a1a1a;
  background-color: #fafafa;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #111;
}

p {
  font-size: 15px;
  color: #444;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ---------- Header ---------- */
.header {
  background: #0a2a66;
  color: #fff;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon svg {
  color: #fff;
}

.logo-text h1 {
  font-size: 18px;
  margin-bottom: 4px;
}

.logo-text p {
  font-size: 13px;
  opacity: 0.8;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge {
  background: #ffcc00;
  color: #000;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
}

.btn-outline {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: #fff;
  color: #0a2a66;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(to right, #0a2a66, #144aad);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.hero-title {
  font-size: 36px;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 500;
}

.hero-description {
  max-width: 650px;
  margin: 0 auto 24px;
  font-size: 16px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.btn-primary,
.btn-secondary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.btn-primary {
  background: #25d366;
  color: #fff;
}

.btn-primary:hover {
  background: #1ea555;
}

.btn-secondary {
  background: #fff;
  color: #0a2a66;
}

.btn-secondary:hover {
  background: #eaeaea;
}

/* ---------- Section Base ---------- */
section {
  padding: 70px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 28px;
  margin-bottom: 10px;
}

.section-description {
  font-size: 16px;
  color: #555;
}

/* ---------- About ---------- */
.about-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.feature-card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  margin-bottom: 12px;
  color: #0a2a66;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.2s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  margin-bottom: 12px;
  color: #0a2a66;
}

/* ---------- Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  text-align: center;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0a2a66;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-weight: bold;
}

/* ---------- Citizen Message ---------- */
.citizen-message {
  background: #f0f4ff;
  text-align: center;
  padding: 60px 20px;
}

.citizen-message blockquote {
  font-size: 18px;
  font-style: italic;
  color: #333;
  margin-bottom: 16px;
}

.attribution {
  font-weight: 600;
  margin-bottom: 10px;
}

.commitment-badge {
  background: #0a2a66;
  color: #fff;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
}

/* ---------- Emergency ---------- */
.helplines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.helpline-card {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s;
}

.helpline-card:hover {
  transform: translateY(-5px);
}

.helpline-card h3 {
  font-size: 22px;
  margin-top: 10px;
  margin-bottom: 6px;
}

.helpline-card p {
  font-size: 14px;
  color: #555;
}

/* ---------- Footer ---------- */
.footer {
  background: #0a2a66;
  color: #fff;
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo h3 {
  font-size: 18px;
}

.footer-description {
  margin-top: 12px;
  font-size: 14px;
  color: #ccc;
}

.footer-links {
  list-style: none;
  margin-top: 10px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ffcc00;
}

.contact-info p {
  font-size: 14px;
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 16px;
  text-align: center;
  font-size: 13px;
  color: #ccc;
}
