/* =============================================
   Base
   ============================================= */
body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

h1, h2, h3, h4 {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 800;
}

/* =============================================
   Navigation
   ============================================= */
.nav-link {
  color: #475569;
  font-weight: 500;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-link:hover {
  color: #1E40AF;
}

/* =============================================
   Buttons
   ============================================= */
.btn-primary {
  background: linear-gradient(to right, #00288e, #1e40af);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 20px 25px -5px rgba(0, 40, 142, 0.1);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
}
.btn-primary:hover { opacity: 0.95; }
.btn-primary:active { transform: scale(0.97); }

.btn-secondary {
  background: #dfe3e7;
  color: #171c1f;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn-secondary:hover { background: #e4e9ed; }
.btn-secondary:active { transform: scale(0.97); }

.btn-submit {
  width: 100%;
  background: #00288e;
  color: #fff;
  padding: 1rem;
  border-radius: 0.75rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
  transition: opacity 0.2s, transform 0.1s;
}
.btn-submit:hover { opacity: 0.9; }
.btn-submit:active { transform: scale(0.97); }

/* =============================================
   Hero
   ============================================= */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: #d0e1fb;
  color: #54647a;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: #ffdcc3;
  color: #2f1500;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  max-width: 200px;
}
.hero-badge .icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero-bg-deco {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -10;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, rgba(0,40,142,0.05), transparent);
}

/* =============================================
   Cards
   ============================================= */
.card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s;
  cursor: pointer;
}
.card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

.icon-box {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: transform 0.2s;
}
.card:hover .icon-box { transform: scale(1.1); }

/* =============================================
   Chips & Links
   ============================================= */
.chip {
  padding: 0.375rem 1rem;
  background: #d0e1fb;
  color: #54647a;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  color: #00288e;
  font-weight: 700;
  text-decoration: none;
}
.link-arrow:hover { text-decoration: underline; }

/* =============================================
   Emergency Section
   ============================================= */
.contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a8b8ff;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

/* =============================================
   Form
   ============================================= */
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  opacity: 0.7;
}

.form-input {
  width: 100%;
  background: #f0f4f8;
  border: none;
  border-bottom: 2px solid #757684;
  padding: 0.75rem 0;
  transition: border-color 0.2s;
  outline: none;
  font-family: inherit;
  font-size: 1rem;
  box-sizing: border-box;
}
.form-input:focus { border-color: #00288e; }

/* =============================================
   Tips
   ============================================= */
.tip-card {
  padding: 2rem;
  background: #eaeef2;
  border-radius: 1.5rem;
  text-align: left;
}

/* =============================================
   Footer
   ============================================= */
.footer-link {
  color: #64748b;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: #000; }
