/* Theme: Classic Blue */
:root {
  --theme-primary: #0B3D91;
  --theme-secondary: #062A5E;
  --theme-accent: #1E90FF;
  --theme-bg: #F4F7FB;
  --theme-radius: 8px;
}

body {
  font-family: 'Segoe UI', system-ui, sans-serif !important;
  background-color: var(--theme-bg);
}

.header .main-menu li a:hover,
.header .main-menu li a.active,
.text--base,
a:hover {
  color: var(--theme-primary) !important;
}

.btn--base,
.btn-primary,
.bg--base,
.plan-card__header,
.nav-tabs .nav-link.active {
  background: var(--theme-primary) !important;
  border-color: var(--theme-primary) !important;
}

.section--bg2,
.footer,
.header.menu-fixed .header__bottom,
.choose-card,
.btn--dark {
  background: var(--theme-secondary) !important;
}

.banner-section,
.hero-section,
.banner,
.inner-banner {
  background-image: linear-gradient(135deg, #0B3D91 0%, #1E90FF 100%) !important;
  background-color: var(--theme-secondary) !important;
}

.card,
.plan-card,
.service-card,
.feature-card,
.loan-card,
.choose-card {
  border-radius: var(--theme-radius) !important;
  overflow: hidden;
}

.btn,
.form--control,
.custom--btn {
  border-radius: calc(var(--theme-radius) * 0.75) !important;
}

.btn--base:hover,
.btn-primary:hover {
  background: var(--theme-accent) !important;
  border-color: var(--theme-accent) !important;
}

.theme-badge {
  display: inline-block;
  margin: 8px 0 0;
  padding: 4px 10px;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--theme-accent);
  border-radius: 999px;
}