/* Global theme */
:root {
  --dark-blue: #081f3b;
  --dark-blue-light: #0e305a;
  --gold: #d4af37;
  --light-gray: #f4f5f7;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #ffffff;
  color: #212529;
  padding-top: 70px; /* for fixed navbar */
}

/* Navbar */
.bg-dark-blue {
  background-color: var(--dark-blue) !important;
}
.navbar .navbar-brand {
  font-size: 1rem;
}
.text-gold {
  color: var(--gold) !important;
}
.btn-gold {
  background-color: var(--gold);
  border-color: var(--gold);
  color: #212529;
}
.btn-gold:hover {
  background-color: #c09c2f;
  border-color: #c09c2f;
  color: #212529;
}
.btn-outline-gold {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover {
  background-color: var(--gold);
  color: #212529;
}

/* Sections */
.hero-section {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-blue-light) 50%, #122844 100%);
  padding: 4rem 0 3rem;
}
.hero-summary-card {
  border-radius: 0.5rem;
}
.section-title {
  font-size: 1.5rem;
  font-weight: 600;
}
.bg-light-gray {
  background-color: var(--light-gray) !important;
}

/* Cards */
.feature-card,
.plan-card {
  border-radius: 0.5rem;
  border: none;
}
.border-gold {
  border: 1px solid var(--gold) !important;
}
.badge-gold {
  background-color: var(--gold);
}
.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

/* Page header */
.page-header {
  padding: 3rem 0 1.5rem;
  background-color: #f8f9fb;
  border-bottom: 1px solid #e4e6eb;
}
.page-title {
  font-size: 1.6rem;
  font-weight: 600;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 20px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #dee2e6;
}
.timeline-item {
  position: relative;
  margin-bottom: 1.5rem;
}
.timeline-icon {
  position: absolute;
  left: -2px;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--gold);
  color: #212529;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-content {
  margin-left: 30px;
}

/* Footer */
.footer {
  font-size: 0.85rem;
}

/* Small cards */
.small-card {
  min-height: 80px;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
  body {
    padding-top: 60px;
  }
  .hero-section {
    padding-top: 3rem;
  }
  .page-header {
    padding: 2.5rem 0 1.25rem;
  }
}