/* ==========================================================================
   Semia InfoTech — custom styles on top of Bootstrap 5.3.8
   Palette derived from the company logo (slate blue).
   ========================================================================== */

:root {
  --si-navy: #16233c;
  --si-navy-2: #1f3357;
  --si-slate: #4c638a;
  --si-accent: #5da9e9;
  --si-accent-strong: #2f6db3;
  --si-light: #f3f6fb;
  --si-ink: #1c2b45;
  --si-muted: #5b6b85;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--si-ink);
}

section[id] {
  scroll-margin-top: 4.5rem;
}

/* --- Navbar -------------------------------------------------------------- */
.si-navbar {
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.08);
  transition: box-shadow 0.25s ease;
}
.si-navbar.si-navbar-scrolled {
  box-shadow: 0 0.75rem 1.75rem rgba(16, 24, 40, 0.14);
}
.si-logo {
  height: 44px;
  width: auto;
}

/* --- Buttons ------------------------------------------------------------- */
.btn-si-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--si-accent-strong);
  --bs-btn-border-color: var(--si-accent-strong);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #265d9c;
  --bs-btn-hover-border-color: #265d9c;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #265d9c;
  --bs-btn-active-border-color: #265d9c;
  --bs-btn-focus-shadow-rgb: 47, 109, 179;
}
.btn-si-light {
  --bs-btn-color: #fff;
  --bs-btn-border-color: rgba(255, 255, 255, 0.6);
  --bs-btn-hover-color: var(--si-navy);
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-border-color: #fff;
  --bs-btn-active-color: var(--si-navy);
  --bs-btn-active-bg: #fff;
  --bs-btn-active-border-color: #fff;
}

/* --- Hero ---------------------------------------------------------------- */
.si-hero {
  position: relative;
  color: #fff;
  background: linear-gradient(135deg, var(--si-navy) 0%, var(--si-navy-2) 55%, var(--si-slate) 115%);
  overflow: hidden;
}
.si-hero::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto auto;
  width: 60%;
  height: 130%;
  background: radial-gradient(closest-side, rgba(93, 169, 233, 0.35), transparent 70%);
  pointer-events: none;
}
.si-hero .lead {
  color: rgba(255, 255, 255, 0.82);
}
.si-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #cfe3f7;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  background: rgba(255, 255, 255, 0.06);
}
.si-hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.25rem;
  backdrop-filter: blur(6px);
  color: #fff;
}
.si-hero-card .bi {
  color: #9ec9f0;
}

/* --- Sections ------------------------------------------------------------ */
.si-section {
  padding: 5rem 0;
}
.si-section-alt {
  background-color: var(--si-light);
}
.si-section-subtitle {
  color: var(--si-muted);
}

/* --- Cards / icons ------------------------------------------------------- */
.si-card {
  height: 100%;
  background: #fff;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.si-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1rem 2.5rem rgba(22, 35, 60, 0.12);
}
.si-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.8rem;
  background: rgba(47, 109, 179, 0.1);
  color: var(--si-accent-strong);
  font-size: 1.35rem;
}
.si-chip {
  display: inline-block;
  background: var(--si-light);
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.875rem;
  color: var(--si-muted);
}

/* --- Stats --------------------------------------------------------------- */
.si-stat-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--si-accent-strong);
}
.si-stat-label {
  color: var(--si-muted);
}

/* --- Process ------------------------------------------------------------- */
.si-step {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--si-navy);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

/* --- CTA band ------------------------------------------------------------ */
.si-cta {
  background: linear-gradient(120deg, var(--si-navy), var(--si-slate));
  color: #fff;
  border-radius: 1.5rem;
}

/* --- Legal pages --------------------------------------------------------- */
.si-page-header {
  background: linear-gradient(135deg, var(--si-navy), var(--si-slate));
  color: #fff;
  padding: 3.5rem 0;
}
.si-legal h2 {
  margin-top: 2.5rem;
  font-size: 1.35rem;
}
.si-legal address {
  font-style: normal;
}
.si-notice {
  background: #fff8e1;
  border: 1px solid #f0d98c;
  border-radius: 0.75rem;
}
/* Visually highlights every placeholder that must be replaced before go-live */
.ph {
  /*background: #fff1c2;
  color: #664d03;
  border-radius: 0.25rem;
  padding: 0 0.3rem;
  font-weight: 600;*/
}

/* --- Footer -------------------------------------------------------------- */
.si-footer {
  background-color: var(--si-navy);
  color: rgba(255, 255, 255, 0.72);
}
.si-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}
.si-footer a:hover {
  color: #fff;
}
.si-footer-heading {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.si-footer-logo {
  display: inline-block;
  background: #fff;
  border-radius: 0.6rem;
  padding: 0.45rem 0.8rem;
}
.si-footer-logo img {
  height: 34px;
  width: auto;
}
.si-footer hr {
  border-color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 991.98px) {
  .si-section {
    padding: 3.5rem 0;
  }
  .si-logo {
    height: 38px;
  }
}
