/* ======================================
   COLOR SYSTEM & BASE TYPOGRAPHY
====================================== */
:root {
  --sp-blue: #12356f;        /* main royal blue */
  --sp-blue-dark: #071933;   /* deep navy */
  --sp-blue-lite: #0752bc;   /* accent blue */
  --sp-gold: #f6c344;        /* richer gold */
  --sp-light: #f5f7fb;       /* light background */
  --sp-deep: #050b16;        /* deep background */
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #253040;
  background-color: #ffffff;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", "Times New Roman", serif;
  color: var(--sp-blue-dark);
  margin-top: 0;
}

a {
  color: var(--sp-blue-lite);
}

a:hover {
  color: var(--sp-gold);
}

.text-gold {
  color: var(--sp-gold) !important;
}

/* ======================================
   TOP BAR
====================================== */
.sp-topbar {
  background: linear-gradient(90deg, var(--sp-blue-dark), var(--sp-blue));
  padding: 6px 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e4ecff;
}

.sp-topbar-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sp-topbar-label {
  font-weight: 600;
}

.sp-topbar-dot {
  opacity: 0.7;
}

.sp-topbar-section {
  opacity: 0.9;
}

.sp-topbar-right {
  display: flex;
  align-items: center;
}

.sp-topbar-link {
  color: var(--sp-gold);
  text-decoration: none;
  font-weight: 500;
}

.sp-topbar-link:hover {
  text-decoration: underline;
}

/* ======================================
   NAVBAR / BRAND
====================================== */
.sp-navbar {
  background: var(--sp-blue);
  padding: 0.65rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Circle logo */
.brand-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--sp-gold);
  color: var(--sp-blue-dark);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Alternative brand mark (if used anywhere) */
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--sp-gold);
  color: var(--sp-blue-dark);
  font-weight: 700;
}

/* Brand text */
.brand-title {
  line-height: 1.2;
}

.brand-main {
  display: block;
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.08rem;
}

.brand-sub {
  display: block;
  color: #d7e1f3;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-top: -1px;
}

.brand-text {
  line-height: 1.1;
  font-size: 0.9rem;
}

.brand-text small {
  font-size: 0.7rem;
  opacity: 0.8;
}

/* Nav links */
.nav-link {
  color: #dde7ff !important;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.87rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 12px 16px !important;
  position: relative;
  transition: color 0.25s ease;
}

.nav-link:hover {
  color: var(--sp-gold) !important;
}

/* Active + hover underline */
.nav-link.active::after,
.nav-link:hover::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--sp-gold);
  border-radius: 10px;
}

/* Keep .active color for compatibility */
.nav-link.active {
  color: var(--sp-gold) !important;
}

/* ======================================
   LAYOUT HELPERS
====================================== */
.sp-main {
  min-height: 60vh;
}

.sp-section {
  padding: 4rem 0;
}

.sp-page-hero {
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(135deg, var(--sp-blue-dark), var(--sp-blue));
  color: #fff;
}

.sp-page-hero h1,
.sp-page-hero p {
  color: #fff;
}

.sp-page-hero p {
  max-width: 640px;
}

/* ======================================
   HERO V1 (used in older layout, keeping for safety)
====================================== */
.sp-hero {
  padding: 5rem 0 4rem;
  background: radial-gradient(circle at top left, #174b93 0, #071f3d 45%, #040b13 100%);
  color: #fff;
}

.hero-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-title {
  margin-top: 1rem;
  font-size: 2.4rem;
  max-width: 720px;
}

.hero-sub {
  margin-top: 1rem;
  max-width: 620px;
  font-size: 1rem;
  opacity: 0.9;
}

.hero-card {
  background: rgba(5, 16, 26, 0.9);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ======================================
   HERO V2 (LIGHT HOMEPAGE HERO)
====================================== */
.sp-hero-v2.sp-hero-light {
  padding: 4rem 0 3.5rem;
  background: linear-gradient(180deg, #f6f8fc 0, #ffffff 100%);
  color: #152238;
}

.hero-title-v2 {
  margin-top: 1rem;
  font-size: 2.25rem;
  max-width: 640px;
  color: #0b1f42;
}

.hero-sub-v2 {
  margin-top: 1rem;
  max-width: 520px;
  font-size: 0.96rem;
  color: #5a6783;
}

.hero-kicker {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.28rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 53, 111, 0.18);
  background: rgba(255, 255, 255, 0.8);
  color: #12356f;
}

/* Secondary hero button */
.hero-secondary-btn {
  border-radius: 999px;
}

/* Hero metrics */
.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1rem;
}

.hero-metric {
  min-width: 160px;
}

.hero-metric-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #7b86a1;
}

.hero-metric-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e2942;
}

/* Hero visual (light) */
.hero-visual {
  position: relative;
}

.hero-visual.hero-visual-light .hero-visual-img {
  border-radius: 18px;
  height: 260px;
  background-image: url("../img/hero-invest.jpg"); /* make sure this file exists */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 16px 36px rgba(20, 38, 85, 0.22);
}

/* Premium Frosted Glass Investment Snapshot Card */
.hero-visual-card {
  position: relative;
  z-index: 5;
  max-width: 460px;
  margin: 2rem auto 0; /* Clean spacing under the slider */
  padding: 1.6rem 1.8rem;

  /* Frosted Glass Background */
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  /* Gold Accent Border */
  border-radius: 18px;
  border: 1px solid rgba(246, 195, 68, 0.35);

  /* Premium Shadow */
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.42);
}

/* Title inside card */
.hero-visual-card .small {
  color: #e4e7ef;
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

/* Labels (Horizon, Sector, Risk) */
.hero-stat-label {
  font-size: 0.76rem;
  color: #c7d0e9;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.2rem;
}

/* Values */
.hero-stat-value {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
}

/* ========================================
   DEAL SNAPSHOT PANEL (HERO RIGHT CARD)
======================================== */

.deal-snapshot {
  padding: 1.4rem 1.6rem; /* a bit roomier than default */
}

.snapshot-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #c7d0e9;
  margin-bottom: 0.65rem;
  opacity: 0.9;
}

.snapshot-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.45rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.snapshot-row:first-of-type {
  border-top: none;
}

.snapshot-label {
  font-size: 0.78rem;
  color: #98a4c3;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  flex: 0 0 42%;
}

.snapshot-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--sp-gold);
  text-align: right;
  flex: 1;
}

/* Mobile: stack rows nicely */
@media (max-width: 575.98px) {
  .snapshot-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .snapshot-value {
    text-align: left;
  }
}


/* ======================================
   SECTION HEADINGS & CARDS
====================================== */
.section-heading h2 {
  margin-bottom: 0.5rem;
}

.sp-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.75rem;
  border: 1px solid #dde3f0;
  box-shadow: 0 6px 18px rgba(9, 22, 44, 0.04);
}

.sp-card h4,
.sp-card h5 {
  margin-bottom: 0.75rem;
}

/* ======================================
   TIMELINE (used in About)
====================================== */
.sp-timeline {
  border-left: 2px solid rgba(11, 60, 125, 0.3);
  padding-left: 1.5rem;
}

.sp-timeline .step {
  position: relative;
  padding-bottom: 1.3rem;
  font-size: 0.95rem;
}

.sp-timeline .step-badge {
  position: absolute;
  left: -1.9rem;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--sp-gold);
  color: var(--sp-blue-dark);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ======================================
   CHECKLIST
====================================== */
.sp-checklist {
  list-style: none;
  padding-left: 0;
}

.sp-checklist li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.6rem;
}

.sp-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sp-gold);
  font-weight: 700;
}

/* ======================================
   WHO WE SERVE TILES
====================================== */
.sp-tile {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.3rem 1.15rem;
  border: 1px solid #dde3f0;
  box-shadow: 0 6px 18px rgba(9, 22, 44, 0.03);
  height: 100%;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.sp-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 60, 125, 0.35);
  box-shadow: 0 12px 28px rgba(9, 22, 44, 0.08);
}

.tile-label {
  font-weight: 600;
  color: var(--sp-blue-dark);
  margin-bottom: 0.3rem;
}

.tile-text {
  font-size: 0.86rem;
  color: #5a6783;
}

/* ======================================
   DEEP SECTION (if used)
====================================== */
.bg-deep {
  background: radial-gradient(circle at top left, #174b93 0, #071f3d 45%, #040b13 100%);
}

/* ======================================
   PROCESS ROW (LIGHT)
====================================== */
.sp-process-light {
  background: #f8f9fc;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.process-step {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.2rem 1rem;
  border: 1px solid #dde3f0;
  font-size: 0.9rem;
  box-shadow: 0 6px 16px rgba(9, 22, 44, 0.03);
}

.process-badge {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--sp-gold);
  color: var(--sp-blue-dark);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.45rem;
}

.process-title {
  font-weight: 600;
  margin-bottom: 0.15rem;
  color: #1e2942;
}

.process-text {
  font-size: 0.84rem;
  color: #5a6783;
}

/* ======================================
   BUTTONS
====================================== */
.btn-gold {
  background: var(--sp-gold);
  color: var(--sp-blue-dark);
  font-weight: 600;
  border-radius: 999px;
  border: none;
}

.btn-gold:hover {
  background: #ffcf4d;
  color: var(--sp-blue-dark);
}

.btn-outline-light {
  border-radius: 999px;
}

.btn-outline-primary {
  border-radius: 999px;
}

/* ======================================
   FOOTER (CLEAN + ALIGNED)
====================================== */
.sp-footer {
  background: #071933;
  color: #cfd6ea;
  font-size: 0.86rem;
}

.footer-inner {
  padding: 3.25rem 0 2.25rem;
}

.footer-main-row {
  row-gap: 2rem;
}

/* Brand */
.footer-circle {
  width: 36px;
  height: 36px;
  font-size: 0.9rem;
}

.footer-title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #ffffff;
}

.footer-sub {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  color: #9aa7c6;
}

.footer-text {
  color: #cfd6ea;
  line-height: 1.6;
}

.footer-text-long {
  max-width: 460px;
}

/* Headings & labels */
.footer-heading {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #f4f6ff;
  margin-bottom: 0.7rem;
}

.footer-label {
  color: #9aa7c6;
  margin-right: 4px;
}

.footer-strong {
  color: #e6edff;
  font-weight: 500;
}

/* Links */
.footer-links li {
  margin-bottom: 0.25rem;
}

.footer-links a,
.footer-link {
  color: #cfd6ea;
  text-decoration: none;
}

.footer-links a:hover,
.footer-link:hover {
  color: var(--sp-gold);
}

/* Divider & bottom */
.footer-divider-line {
  border-color: rgba(255, 255, 255, 0.08);
  margin-top: 2.5rem;
  margin-bottom: 1.7rem;
}

.footer-bottom {
  font-size: 0.8rem;
}

.footer-bottom-links span,
.footer-bottom-links a {
  margin-left: 4px;
}

/* Mobile alignment */
@media (max-width: 767.98px) {
  .footer-brand-wrap {
    justify-content: center;
    text-align: center;
  }
  .footer-text-long {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .sp-footer .col-md-3,
  .sp-footer .col-lg-3,
  .sp-footer .col-lg-5 {
    text-align: center;
  }
  .footer-links {
    display: inline-block;
    text-align: left;
  }
}

/* ======================================
   FORMS
====================================== */
.sp-form .form-control {
  border-radius: 10px;
  border-color: #ced4e5;
}

/* ======================================
   RESPONSIVE TWEAKS
====================================== */
@media (max-width: 991.98px) {
  .sp-topbar {
    font-size: 0.7rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .sp-hero-v2.sp-hero-light {
    padding-top: 3.25rem;
  }
  .hero-visual.hero-visual-light .hero-visual-img {
    height: 230px;
  }
}

@media (max-width: 767.98px) {
  .process-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .process-row {
    grid-template-columns: 1fr;
  }
}


/* ======================================
   FIXED IMAGE BOX
====================================== */

.sp-fixed-image-container {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

/* Image fits fully inside the box WITHOUT cropping */
.sp-fixed-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* =========================================================
   MOBILE OPTIMIZATION — BELLA EDITION 💙
========================================================= */

/* ---------- Global mobile fixes ---------- */
@media (max-width: 991px) {
  .sp-section {
    padding: 2.5rem 0;
  }
  .sp-page-hero {
    padding: 2.2rem 0 1.8rem;
  }
  h1 {
    font-size: 1.9rem;
  }
  h2 {
    font-size: 1.55rem;
  }
  .lead {
    font-size: 1rem;
  }
}

/* ---------- Mobile navbar spacing ---------- */
@media (max-width: 991px) {
  .navbar-nav .nav-link {
    padding: 12px 8px !important;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .navbar-toggler {
    border-color: var(--sp-gold);
  }
  .navbar-toggler-icon {
    filter: brightness(200%);
  }
}

/* ---------- FIXED IMAGE CONTAINER MOBILE ---------- */
@media (max-width: 768px) {
  .sp-fixed-image-container {
    height: 260px;               /* smaller for phones */
    margin-bottom: 1.5rem;
  }
}

/* Even smaller phones */
@media (max-width: 480px) {
  .sp-fixed-image-container {
    height: 210px;
  }
}

/* ---------- Ensure image always fits ---------- */
.sp-fixed-image {
  object-fit: contain;
}

/* ---------- Cards mobile spacing ---------- */
@media (max-width: 768px) {
  .sp-card {
    padding: 1.3rem;
  }
  .sp-card h5 {
    font-size: 1.05rem;
  }
}

/* ---------- Checklists spacing ---------- */
@media (max-width: 768px) {
  .sp-checklist li {
    margin-bottom: 0.45rem;
  }
}

/* ---------- Footer mobile layout ---------- */
@media (max-width: 768px) {
  .footer-inner {
    text-align: center;
  }
  .footer-links {
    display: inline-block;
    text-align: left;
  }
  .footer-bottom {
    text-align: center;
  }
}

/* ---------- Hero & intro tightening ---------- */
@media (max-width: 576px) {
  .sp-page-hero h1 {
    font-size: 1.65rem;
  }
  .sp-page-hero p {
    font-size: 0.95rem;
  }
}

/* ---------- Prevent horizontal scroll issues ---------- */
* {
  -webkit-overflow-scrolling: touch;
}
html, body {
  overflow-x: hidden;
}

/* ======================================
   HARD BRAND OVERRIDES FOR HEADER/FOOTER
   (Fix for mobile + any Bootstrap overrides)
====================================== */

/* Topbar */
.sp-topbar {
  background: linear-gradient(90deg, var(--sp-blue-dark), var(--sp-blue)) !important;
  color: #e4ecff !important;
}

/* Main navbar strip */
.sp-navbar,
nav.sp-navbar,
header .navbar.sp-navbar {
  background-color: var(--sp-blue) !important;
  background-image: none !important;
}

/* Navbar links */
.sp-navbar .nav-link,
.navbar.sp-navbar .nav-link {
  color: #dde7ff !important;
}

.sp-navbar .nav-link:hover,
.sp-navbar .nav-link.active,
.navbar.sp-navbar .nav-link:hover,
.navbar.sp-navbar .nav-link.active {
  color: var(--sp-gold) !important;
}

/* Navbar toggler on mobile */
.sp-navbar .navbar-toggler,
.navbar.sp-navbar .navbar-toggler {
  border-color: var(--sp-gold) !important;
}
.sp-navbar .navbar-toggler-icon,
.navbar.sp-navbar .navbar-toggler-icon {
  filter: brightness(250%);
}

/* Footer */
.sp-footer,
footer.sp-footer {
  background-color: #071933 !important;
  color: #cfd6ea !important;
}

.sp-footer a,
.sp-footer .footer-link,
.sp-footer .footer-links a {
  color: #cfd6ea !important;
}
.sp-footer a:hover,
.sp-footer .footer-link:hover,
.sp-footer .footer-links a:hover {
  color: var(--sp-gold) !important;
}


/* ===============================
   MOBILE REFINEMENTS
================================= */

/* Hero spacing & title on tablets/phones */
@media (max-width: 991.98px) {
  .sp-hero-v2.sp-hero-light {
    padding-top: 3.25rem;
    padding-bottom: 3rem;
  }

  .hero-title-v2 {
    font-size: 2.1rem;
    line-height: 1.2;
  }
}

/* Very small phones */
@media (max-width: 575.98px) {
  .sp-hero-v2.sp-hero-light {
    padding-top: 2.75rem;
    padding-bottom: 2.5rem;
  }

  .hero-kicker {
    font-size: 0.8rem;
  }

  .hero-title-v2 {
    font-size: 1.8rem;
  }

  .hero-sub-v2 {
    font-size: 0.95rem;
  }

  /* Metrics: stack cleanly */
  .hero-metrics {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-metric {
    min-width: 100%;
  }

  /* General section padding */
  .sp-section {
    padding: 2.75rem 0;
  }
}

/* Services fixed image box – avoid giant box on phones */
@media (max-width: 768px) {
  .sp-fixed-image-container {
    height: 260px;
  }
}

/* Footer text alignment already good; slight tweaks */
@media (max-width: 768px) {
  .footer-inner {
    text-align: center;
  }

  .footer-links {
    display: inline-block;
    text-align: left;
  }
}

/* ===============================
   CONTACT PAGE
================================= */

.sp-page-hero-contact {
  background: radial-gradient(circle at top left, #f5f7fb, #e4ecff);
  padding: 3.5rem 0 2.75rem;
}

.sp-page-hero-contact .page-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sp-blue-lite);
  margin-bottom: 0.6rem;
}

.sp-page-hero-contact .page-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 2.4rem;
  line-height: 1.25;
  color: var(--sp-blue-dark);
  margin-bottom: 0.75rem;
}

.sp-page-hero-contact .page-sub {
  max-width: 520px;
  font-size: 0.98rem;
  color: #4a5668;
}

/* Right hero badge */
.sp-page-hero-badge {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(7, 25, 51, 0.10);
}

.sp-page-hero-badge .badge-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7a8495;
  margin-bottom: 0.4rem;
}

.sp-page-hero-badge .badge-item {
  font-size: 0.9rem;
  color: var(--sp-blue-dark);
}

/* Contact section */
.sp-contact {
  background: #f9fbff;
}

.sp-contact-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.75rem 1.75rem 1.5rem;
  border: 1px solid rgba(7, 25, 51, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.04);
}

.sp-contact-title {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.sp-contact-text {
  font-size: 0.95rem;
  color: #4a5668;
  margin-bottom: 1.3rem;
}

.sp-contact-block {
  margin-bottom: 1.1rem;
}

.sp-contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8892a4;
  margin-bottom: 0.2rem;
}

.sp-contact-link {
  text-decoration: none;
  color: var(--sp-blue-dark);
  font-weight: 500;
}

.sp-contact-link:hover {
  color: var(--sp-blue-lite);
}

.sp-contact-note {
  font-size: 0.85rem;
  color: #7a8495;
}

.sp-contact-list {
  padding-left: 1.2rem;
  margin: 0;
  font-size: 0.9rem;
  color: #4a5668;
}

.sp-contact-form-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.75rem 1.75rem 1.5rem;
  border: 1px solid rgba(7, 25, 51, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.04);
}

/* Small consent text */
.sp-contact-small {
  font-size: 0.8rem;
  color: #7a8495;
}
/* ===============================
   CONTACT HERO
================================= */

.sp-page-hero-contact {
  background: radial-gradient(circle at top left, #12356f, #050b16);
  color: #f6f7fb;
  padding: 3.2rem 0 3rem;
}

.sp-page-hero-contact .text-gold {
  color: var(--sp-gold);
}

.sp-pill-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(246, 195, 68, 0.85);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f6f7fb;
  margin-bottom: 0.75rem;
  background: rgba(7, 25, 51, 0.7);
}

.sp-contact-hero-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 2.4rem;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.sp-contact-hero-sub {
  max-width: 580px;
  font-size: 0.98rem;
  color: #d3def5;
}

/* Right hero card */
.sp-contact-hero-card {
  background: radial-gradient(circle at top left, rgba(255,255,255,0.14), rgba(5,11,22,0.95));
  border-radius: 18px;
  padding: 1.6rem 1.7rem;
  border: 1px solid rgba(246,195,68,0.4);
  box-shadow: 0 22px 60px rgba(0,0,0,0.45);
}

.sp-contact-hero-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #c5d0ea;
  margin-bottom: 0.6rem;
}

.sp-contact-hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sp-contact-hero-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.35rem 0;
  border-bottom: 1px dashed rgba(255,255,255,0.12);
  font-size: 0.9rem;
}

.sp-contact-hero-list li:last-child {
  border-bottom: none;
}

.sp-contact-hero-list .item-label {
  color: #c5d0ea;
}

.sp-contact-hero-list .item-value {
  color: #ffffff;
  font-weight: 500;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .sp-page-hero-contact {
    padding: 2.7rem 0 2.5rem;
  }

  .sp-contact-hero-title {
    font-size: 2rem;
  }

  .sp-contact-hero-card {
    margin-top: 1.2rem;
  }
}

@media (max-width: 575.98px) {
  .sp-contact-hero-title {
    font-size: 1.7rem;
  }

  .sp-contact-hero-sub {
    font-size: 0.92rem;
  }
}

/* Cleaner contact form fields */
.sp-input {
  border-radius: 10px;
  border: 1px solid rgba(7,25,51,0.12);
  font-size: 0.95rem;
  padding: 0.6rem 0.75rem;
}

.sp-input:focus {
  border-color: var(--sp-blue-lite);
  box-shadow: 0 0 0 0.15rem rgba(7,82,188,0.15);
}

/* Form title */
.sp-card h2 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--sp-blue-dark);
}

/* Submit button */
.btn-gold {
  background: var(--sp-gold);
  color: #000;
  border-radius: 30px;
  font-weight: 600;
  padding: 0.55rem 1.4rem;
  border: none;
}

.btn-gold:hover {
  background: #ffdd70;
}

/* Small note */
.sp-contact-small {
  font-size: 0.8rem;
  color: #7a8495;
}

/* ===============================
   PREMIUM PHONE INPUT
================================= */

.iti {
  width: 100%;
}

/* Wrap the phone input so it feels like a designed component */
#phone_full.sp-input {
  padding-left: 82px !important; /* space for flag + code */
}

/* Flag area */
.iti__flag-container {
  background: linear-gradient(135deg, rgba(7, 25, 51, 0.96), rgba(7, 82, 188, 0.95));
  border-radius: 999px 0 0 999px;
  border: 1px solid rgba(246, 195, 68, 0.6);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

/* Selected flag/content */
.iti__selected-flag {
  padding: 0 14px;
}

/* Dial code text */
.iti__dial-code {
  font-weight: 600;
  color: #f6f2e8;
}

/* Dropdown arrow */
.iti__arrow {
  border-top-color: #f6f2e8;
}

/* Dropdown list */
.iti__country-list {
  border-radius: 16px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.25);
  font-size: 0.9rem;
}

/* Hover/highlight in list */
.iti__country.iti__highlight {
  background-color: rgba(7, 82, 188, 0.08);
}

/* Keep overall input in harmony with your design */
.sp-input {
  border-radius: 999px;
  border: 1px solid rgba(7,25,51,0.12);
  font-size: 0.95rem;
  padding: 0.6rem 0.9rem;
}

.sp-input:focus {
  border-color: var(--sp-blue-lite);
  box-shadow: 0 0 0 0.15rem rgba(7,82,188,0.15);
}


/* ================================
   EVOLUTION TIMELINE (PREMIUM)
================================ */

.sp-timeline-evo {
  border-left: 2px solid rgba(7,25,51,0.15);
  padding-left: 1.4rem;
}

.evo-item {
  margin-bottom: 2rem;
  position: relative;
}

.evo-item::before {
  content: "";
  width: 14px;
  height: 14px;
  background: var(--sp-gold);
  border-radius: 50%;
  position: absolute;
  left: -2.1rem;
  top: 4px;
  box-shadow: 0 0 0 5px rgba(246,195,68,0.25);
}

.evo-year {
  display: inline-block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--sp-blue-lite);
  margin-bottom: 0.15rem;
  letter-spacing: 0.5px;
}

.evo-text {
  font-size: 0.9rem;
  color: #4a5668;
  margin: 0;
}

.evo-item:last-child {
  margin-bottom: 0;
}

/* ========================================
   HERO V3 — PREMIUM DARK LANDING
======================================== */

.sp-hero-v3 {
  background: radial-gradient(circle at top left, #12356f, #050b16);
  color: #f6f7fb;
  padding: 3.5rem 0 3.2rem;
}

.sp-hero-v3 .hero-kicker {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.85rem;
}

.hero-title-v3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 2.6rem;
  line-height: 1.25;
  margin-bottom: 0.7rem;
  color: #ffffff;
}

.hero-sub-v3 {
  max-width: 560px;
  font-size: 0.98rem;
  color: #d1dcf5;
}

.text-gold {
  color: var(--sp-gold);
}

/* Hero metrics row (under buttons) */
.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 0.75rem;
}

.hero-metric {
  min-width: 140px;
}

.hero-metric-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #98a4c3;
  margin-bottom: 0.15rem;
}

.hero-metric-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: #f6f7fb;
}

/* Secondary hero button (outline on dark) */
.hero-secondary-btn {
  border-radius: 999px;
  border-width: 1px;
}

/* ========================================
   HERO VISUAL (RIGHT SIDE)
======================================== */

/* HERO VISUAL — SIMPLE SLIDESHOW + SNAPSHOT UNDER IMAGE */

.hero-visual-v3 {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* Carousel wrapper */
#heroCarousel {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(246, 195, 68, 0.45);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
}

/* Slide images */
.hero-image-v3 {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  display: block;
}

/* Snapshot card beneath the image */
.hero-visual-card {
  background: #050b16;
  border-radius: 16px;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(246, 195, 68, 0.6);
  color: #f6f7fb;
}

/* Carousel indicators (dots) */
.hero-carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 12px;
  right: auto;
  margin: 0;
  justify-content: flex-start;
}

.hero-carousel-indicators [data-bs-target] {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.35);
}

.hero-carousel-indicators .active {
  background-color: var(--sp-gold);
}

.hero-stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #98a4c3;
  margin-bottom: 0.15rem;
}

.hero-stat-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: #f6f7fb;
}


/* ========================================
   PROCESS STRIP (REUSE, SMALL TWEAKS)
======================================== */

.sp-process-light {
  background: #f5f7fb;
}

.process-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
}

.process-step {
  flex: 1 1 180px;
  min-width: 180px;
  max-width: 260px;
  background: #ffffff;
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(7, 25, 51, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
}

.process-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--sp-blue-lite);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.process-title {
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--sp-blue-dark);
}

.process-text {
  font-size: 0.9rem;
  color: #4a5668;
}

/* ========================================
   RESPONSIVE TWEAKS
======================================== */

@media (max-width: 991.98px) {
  .sp-hero-v3 {
    padding: 2.8rem 0 2.6rem;
    text-align: left;
  }

  .hero-title-v3 {
    font-size: 2.2rem;
  }

  .hero-visual-card {
    right: 6%;
    bottom: 6%;
  }
}

@media (max-width: 767.98px) {
  .sp-hero-v3 {
    text-align: left;
  }

  .hero-visual-v3 {
    margin-top: 1.5rem;
  }

  .hero-visual-card {
    right: 8%;
    bottom: 8%;
    max-width: 280px;
  }
}

@media (max-width: 575.98px) {
  .hero-title-v3 {
    font-size: 1.8rem;
  }

  .hero-sub-v3 {
    font-size: 0.93rem;
  }

  .hero-metrics {
    gap: 1rem;
  }

  .process-row {
    gap: 1rem;
  }

  .process-step {
    max-width: 100%;
  }
}


/* SERVICES PAGE SLIDESHOW USES SAME STYLE AS HERO SLIDER */

/* Make the container behave nicely on services page */
.services-visual {
  padding: 0;
  background: transparent;
}

/* Reuse hero slider frame for services carousel */
#servicesCarousel {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(246, 195, 68, 0.45);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

/* Images already share .hero-image-v3 so same sizing */

/* --- FIX LOGO CIRCLE --- */
.brand-circle {
  width: 48px !important;
  height: 48px !important;
  background: var(--sp-gold) !important;
  border-radius: 50% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  overflow: hidden !important;
  padding: 4px !important;  /* you can adjust this */
}

/* --- FORCE LOGO TO FIT INSIDE CIRCLE --- */
.header-logo-img,
.footer-logo-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
}
