/* ============================================================
   SPARKLE PRO MAINTENANCE LTD — DESIGN SYSTEM
   Palette: #446ed3 | #2b55b9 | #6d8edd | #e5f8ff | #1a1a1a | #000000
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --spm-primary:       #446ed3;
  --spm-primary-dark:  #2b55b9;
  --spm-primary-mid:   #6d8edd;
  --spm-light:         #e5f8ff;
  --spm-black:         #000000;
  --spm-dark:          #1a1a1a;
  --spm-white:         #ffffff;
  --spm-bg:            #f7faff;
  --spm-text:          #444444;
  --spm-muted:         #7a8a9a;
  --spm-border:        #dce8f8;
  --spm-radius:        12px;
  --spm-radius-lg:     20px;
  --spm-shadow:        0 4px 24px rgba(68, 110, 211, 0.12);
  --spm-shadow-lg:     0 8px 40px rgba(68, 110, 211, 0.18);
  --spm-transition:    0.3s ease;
  --spm-font-head:     'Montserrat', sans-serif;
  --spm-font-body:     'Open Sans', sans-serif;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--spm-font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--spm-text);
  background: var(--spm-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--spm-font-head);
  font-weight: 700;
  color: var(--spm-dark);
  line-height: 1.25;
}

a { transition: color var(--spm-transition); text-decoration: none; }
a:hover { color: var(--spm-primary); }

img { max-width: 100%; height: auto; }

/* ============================================================
   UTILITIES
   ============================================================ */
.spm-section { padding: 90px 0; }
.spm-section-sm { padding: 60px 0; }

.text-primary  { color: var(--spm-primary) !important; }
.text-dark-spm { color: var(--spm-dark) !important; }
.bg-primary-spm { background: var(--spm-primary) !important; }
.bg-dark-spm    { background: var(--spm-dark) !important; }
.bg-light-spm   { background: var(--spm-light) !important; }

.section-label {
  display: inline-block;
  font-family: var(--spm-font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--spm-primary);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--spm-primary);
  vertical-align: middle;
  margin-right: 10px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--spm-dark);
  margin-bottom: 16px;
}
.section-title span { color: var(--spm-primary); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--spm-muted);
  max-width: 580px;
  margin-bottom: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-spm-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--spm-primary);
  color: #fff;
  font-family: var(--spm-font-head);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--spm-primary);
  cursor: pointer;
  transition: all var(--spm-transition);
}
.btn-spm-primary:hover {
  background: var(--spm-primary-dark);
  border-color: var(--spm-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(68,110,211,0.35);
}

.btn-spm-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: var(--spm-font-head);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 12px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.7);
  cursor: pointer;
  transition: all var(--spm-transition);
}
.btn-spm-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.btn-spm-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--spm-dark);
  color: #fff;
  font-family: var(--spm-font-head);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--spm-dark);
  cursor: pointer;
  transition: all var(--spm-transition);
}
.btn-spm-dark:hover {
  background: transparent;
  color: var(--spm-dark);
  transform: translateY(-2px);
}

/* ============================================================
   PRELOADER
   ============================================================ */
#spm-preloader {
  position: fixed;
  inset: 0;
  background: var(--spm-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease;
}
#spm-preloader .spm-loader-logo {
  font-family: var(--spm-font-head);
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
#spm-preloader .spm-loader-logo span { color: var(--spm-primary); }
.spm-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(68,110,211,0.25);
  border-top-color: var(--spm-primary);
  border-radius: 50%;
  animation: spm-spin 0.8s linear infinite;
}
@keyframes spm-spin { to { transform: rotate(360deg); } }

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.spm-cookie {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background: var(--spm-dark);
  color: #fff;
  border-radius: var(--spm-radius-lg);
  padding: 24px 28px;
  z-index: 9998;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  display: none;
  animation: spm-slideUp 0.4s ease;
}
@keyframes spm-slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.spm-cookie h6 {
  color: #fff;
  font-family: var(--spm-font-head);
  font-weight: 700;
  margin-bottom: 8px;
}
.spm-cookie p { font-size: 0.88rem; color: rgba(255,255,255,0.75); margin-bottom: 16px; }
.spm-cookie-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.spm-cookie-btns button {
  flex: 1;
  padding: 9px 20px;
  border-radius: 50px;
  font-family: var(--spm-font-head);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}
#spm-accept-btn {
  background: var(--spm-primary);
  color: #fff;
  border-color: var(--spm-primary);
}
#spm-accept-btn:hover { background: var(--spm-primary-dark); }
#spm-reject-btn {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
#spm-reject-btn:hover { border-color: #fff; }

/* ============================================================
   TOPBAR
   ============================================================ */
.spm-topbar {
  background: var(--spm-dark);
  padding: 10px 0;
  font-size: 0.82rem;
}
.spm-topbar a {
  color: rgba(255,255,255,0.75);
  transition: color var(--spm-transition);
}
.spm-topbar a:hover { color: #fff; }
.spm-topbar .spm-top-info {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.spm-topbar .spm-top-info span {
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}
.spm-topbar .spm-top-info span i { color: var(--spm-primary-mid); }
.spm-topbar .spm-top-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.spm-topbar .spm-top-social a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  transition: all var(--spm-transition);
}
.spm-topbar .spm-top-social a:hover {
  background: var(--spm-primary);
  color: #fff;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.spm-navbar {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 9000;
  transition: box-shadow 0.3s;
}
.spm-navbar.scrolled {
  box-shadow: 0 4px 30px rgba(68,110,211,0.12);
}
.spm-navbar .navbar-brand {
  display: flex;
  align-items: center;
  padding: 6px 0;
}
.spm-logo-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.spm-logo-brand img {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
}
.spm-logo-brand .brand-name-block {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.spm-logo-brand .brand-name-block .bn-top {
  font-family: var(--spm-font-head);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--spm-dark);
  letter-spacing: 0.02em;
}
.spm-logo-brand .brand-name-block .bn-top span {
  color: var(--spm-primary);
}
.spm-logo-brand .brand-name-block .bn-bottom {
  font-family: var(--spm-font-head);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--spm-muted);
  margin-top: 2px;
}
@media (max-width: 991px) {
  .spm-logo-brand { gap: 8px; }
  .spm-logo-brand img { height: 44px; }
  .spm-logo-brand .brand-name-block .bn-top { font-size: 0.85rem; letter-spacing: 0; }
  .spm-logo-brand .brand-name-block .bn-bottom { display: none; }
  .spm-navbar .navbar-toggler { flex-shrink: 0; padding: 6px 10px; }
  /* Keep brand row tight so toggler stays on same line */
  .spm-navbar .navbar-brand { margin-right: auto; }
}
@media (max-width: 400px) {
  .spm-logo-brand img { height: 36px; }
  .spm-logo-brand .brand-name-block .bn-top { font-size: 0.78rem; }
}

.spm-navbar .nav-link {
  font-family: var(--spm-font-head);
  font-weight: 600;
  font-size: 0.87rem;
  color: var(--spm-dark) !important;
  padding: 28px 14px !important;
  letter-spacing: 0.02em;
  position: relative;
  transition: color var(--spm-transition);
}
.spm-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 18px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--spm-primary);
  transform: scaleX(0);
  transition: transform var(--spm-transition);
}
.spm-navbar .nav-link:hover,
.spm-navbar .nav-link.active {
  color: var(--spm-primary) !important;
}
.spm-navbar .nav-link:hover::after,
.spm-navbar .nav-link.active::after {
  transform: scaleX(1);
}

.spm-navbar .navbar-nav .dropdown-menu {
  border: none;
  box-shadow: var(--spm-shadow-lg);
  border-radius: var(--spm-radius);
  padding: 8px;
  margin-top: 4px;
}
.spm-navbar .dropdown-item {
  font-family: var(--spm-font-head);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 8px;
  color: var(--spm-dark);
  transition: all 0.2s;
}
.spm-navbar .dropdown-item:hover {
  background: var(--spm-light);
  color: var(--spm-primary);
}

.spm-navbar .navbar-toggler {
  border: 2px solid var(--spm-border);
  border-radius: 8px;
  padding: 6px 10px;
}
.spm-navbar .navbar-toggler:focus { box-shadow: none; }

.spm-navbar .nav-cta {
  background: var(--spm-primary);
  color: #fff !important;
  border-radius: 50px;
  padding: 10px 22px !important;
  font-size: 0.85rem;
  margin-left: 8px;
  align-self: center;
}
.spm-navbar .nav-cta::after { display: none; }
.spm-navbar .nav-cta:hover {
  background: var(--spm-primary-dark) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(68,110,211,0.3);
}

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.spm-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.spm-hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.spm-hero-carousel .carousel-item {
  height: 92vh;
}
.spm-hero-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.spm-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.75) 0%,
    rgba(27,49,92,0.7) 60%,
    rgba(68,110,211,0.5) 100%
  );
  z-index: 1;
}
.spm-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.spm-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(68,110,211,0.25);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(109,142,221,0.4);
  border-radius: 50px;
  padding: 7px 18px;
  font-family: var(--spm-font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease 0.2s both;
}
.spm-hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--spm-primary-mid);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.spm-hero-title {
  font-family: var(--spm-font-head);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.spm-hero-title .highlight {
  color: var(--spm-primary-mid);
}

.spm-hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.spm-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeInUp 0.8s ease 0.65s both;
}

.spm-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  animation: fadeInUp 0.8s ease 0.8s both;
}
.spm-hero-stat .num {
  font-family: var(--spm-font-head);
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.spm-hero-stat .num span { color: var(--spm-primary-mid); }
.spm-hero-stat .lbl {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
  font-weight: 600;
  margin-top: 4px;
}

/* Carousel controls */
.spm-hero-carousel .carousel-control-prev,
.spm-hero-carousel .carousel-control-next {
  width: 50px;
  z-index: 3;
}
.spm-hero-carousel .carousel-control-prev-icon,
.spm-hero-carousel .carousel-control-next-icon {
  background-color: rgba(68,110,211,0.7);
  border-radius: 50%;
  padding: 20px;
  background-size: 50%;
}

/* ============================================================
   FLOATING CONTACT BADGES (below hero)
   ============================================================ */
.spm-contact-strip {
  background: var(--spm-dark);
  padding: 0;
}
.spm-contact-strip .strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background var(--spm-transition);
}
.spm-contact-strip .strip-item:hover { background: rgba(68,110,211,0.12); }
.spm-contact-strip .strip-item:last-child { border-right: none; }
.spm-contact-strip .strip-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(68,110,211,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--spm-primary-mid);
  flex-shrink: 0;
}
.spm-contact-strip .strip-text strong {
  display: block;
  font-family: var(--spm-font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.spm-contact-strip .strip-text span {
  font-family: var(--spm-font-head);
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
}
.strip-social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(68,110,211,0.18);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  transition: background var(--spm-transition), transform var(--spm-transition);
}
.strip-social-link:hover { background: var(--spm-primary); transform: translateY(-2px); color: #fff; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.spm-about-img-wrap {
  position: relative;
}
.spm-about-img-wrap img {
  border-radius: var(--spm-radius-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: var(--spm-shadow-lg);
}
.spm-about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--spm-primary);
  color: #fff;
  border-radius: var(--spm-radius-lg);
  padding: 22px 26px;
  text-align: center;
  box-shadow: var(--spm-shadow-lg);
}
.spm-about-badge .num {
  font-family: var(--spm-font-head);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}
.spm-about-badge .lbl {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0.85;
  margin-top: 4px;
}

.spm-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.spm-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-weight: 500;
  color: var(--spm-dark);
}
.spm-check-list li i {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--spm-primary);
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.spm-service-card {
  background: #fff;
  border-radius: var(--spm-radius-lg);
  padding: 36px 28px;
  box-shadow: 0 2px 20px rgba(68,110,211,0.07);
  border: 1px solid var(--spm-border);
  transition: all 0.35s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.spm-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--spm-primary), var(--spm-primary-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.spm-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--spm-shadow-lg);
  border-color: var(--spm-primary);
}
.spm-service-card:hover::before { transform: scaleX(1); }

.spm-service-icon {
  width: 64px; height: 64px;
  background: var(--spm-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--spm-primary);
  margin-bottom: 20px;
  transition: all 0.35s ease;
}
.spm-service-card:hover .spm-service-icon {
  background: var(--spm-primary);
  color: #fff;
}

.spm-service-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--spm-dark);
}
.spm-service-card p {
  font-size: 0.9rem;
  color: var(--spm-muted);
  margin-bottom: 20px;
  line-height: 1.65;
}
.spm-service-link {
  font-family: var(--spm-font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--spm-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--spm-transition);
}
.spm-service-link:hover { gap: 10px; color: var(--spm-primary-dark); }

/* Image service cards (services page) */
.spm-service-img-card {
  background: #fff;
  border-radius: var(--spm-radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(68,110,211,0.07);
  border: 1px solid var(--spm-border);
  transition: all 0.35s ease;
  height: 100%;
}
.spm-service-img-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--spm-shadow-lg);
}
.spm-service-img-card .card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.spm-service-img-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.spm-service-img-card:hover .card-img-wrap img {
  transform: scale(1.06);
}
.spm-service-img-card .card-img-wrap .card-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--spm-primary);
  color: #fff;
  font-family: var(--spm-font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 5px 14px;
  border-radius: 50px;
}
.spm-service-img-card .card-body {
  padding: 28px;
}
.spm-service-img-card .card-body h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.spm-service-img-card .card-body p {
  font-size: 0.88rem;
  color: var(--spm-muted);
  margin-bottom: 20px;
}

/* ============================================================
   BEFORE & AFTER SECTION
   ============================================================ */
.spm-ba-section { background: var(--spm-dark); }

.spm-ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--spm-radius-lg);
  cursor: col-resize;
  user-select: none;
  touch-action: pan-y;
  box-shadow: var(--spm-shadow-lg);
}
.spm-ba-slider img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.spm-ba-after {
  position: absolute;
  top: 0; left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  transition: width 0.01s;
}
.spm-ba-after img {
  width: 200%;     /* initial value for 50% split — JS updates this dynamically */
  height: 100%;
  position: absolute;
  left: 0; top: 0;
  object-fit: cover;
}
.spm-ba-divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: #fff;
  z-index: 2;
  transform: translateX(-50%);
}
.spm-ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px; height: 42px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  z-index: 3;
  color: var(--spm-primary);
  font-size: 0.9rem;
}
.spm-ba-label {
  position: absolute;
  bottom: 12px;
  font-family: var(--spm-font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.45);
  padding: 4px 12px;
  border-radius: 50px;
}
.spm-ba-label-before { left: 12px; }
.spm-ba-label-after  { right: 12px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.spm-why-item {
  display: flex;
  gap: 18px;
  padding: 24px;
  border-radius: var(--spm-radius);
  transition: all var(--spm-transition);
}
.spm-why-item:hover {
  background: var(--spm-light);
}
.spm-why-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--spm-primary);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.spm-why-item h6 {
  font-family: var(--spm-font-head);
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--spm-dark);
}
.spm-why-item p {
  font-size: 0.88rem;
  color: var(--spm-muted);
  margin: 0;
}

/* Years card */
.spm-years-card {
  background: linear-gradient(135deg, var(--spm-primary) 0%, var(--spm-primary-dark) 100%);
  border-radius: var(--spm-radius-lg);
  padding: 52px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.spm-years-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
}
.spm-years-card::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -30px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.spm-years-card .big-num {
  font-family: var(--spm-font-head);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  display: block;
  position: relative;
  z-index: 1;
}
.spm-years-card .big-label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  opacity: 0.85;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  margin-top: 8px;
  display: block;
}
.spm-years-card .cert-icon {
  font-size: 3rem;
  opacity: 0.35;
  margin-bottom: 12px;
  display: block;
  position: relative;
  z-index: 1;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.spm-process-section { background: var(--spm-bg); }

.spm-step {
  text-align: center;
  padding: 28px 16px;
  position: relative;
}
.spm-step-num {
  width: 70px; height: 70px;
  background: #fff;
  border: 3px solid var(--spm-primary);
  border-radius: 50%;
  font-family: var(--spm-font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--spm-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(68,110,211,0.15);
  transition: all var(--spm-transition);
}
.spm-step:hover .spm-step-num {
  background: var(--spm-primary);
  color: #fff;
  transform: scale(1.1);
}
.spm-step h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--spm-dark);
  margin-bottom: 8px;
}
.spm-step p {
  font-size: 0.88rem;
  color: var(--spm-muted);
  margin: 0;
}

/* Arrow connector between steps (desktop) */
.spm-step-connector {
  position: absolute;
  top: 52px;
  right: -20%;
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, var(--spm-primary) 0%, var(--spm-primary-mid) 100%);
  z-index: 0;
}
@media (max-width: 991px) {
  .spm-step-connector { display: none; }
}

/* ============================================================
   PRICING
   ============================================================ */
.spm-pricing-section { background: var(--spm-bg); }

.spm-pricing-card {
  background: #fff;
  border-radius: var(--spm-radius-lg);
  padding: 40px 32px;
  border: 2px solid var(--spm-border);
  transition: all 0.35s ease;
  text-align: center;
  height: 100%;
}
.spm-pricing-card:hover, .spm-pricing-card.featured {
  border-color: var(--spm-primary);
  box-shadow: var(--spm-shadow-lg);
  transform: translateY(-6px);
}
.spm-pricing-card.featured {
  background: linear-gradient(135deg, var(--spm-primary) 0%, var(--spm-primary-dark) 100%);
  color: #fff;
}
.spm-pricing-card.featured h4,
.spm-pricing-card.featured p,
.spm-pricing-card.featured li { color: rgba(255,255,255,0.9) !important; }
.spm-pricing-card.featured .price-tag { color: #fff; }
.spm-pricing-card.featured .spm-pricing-tag { background: rgba(255,255,255,0.2); color: #fff; }
.spm-pricing-tag {
  background: var(--spm-light);
  color: var(--spm-primary);
  font-family: var(--spm-font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 16px;
}
.spm-pricing-card h4 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.price-tag {
  font-family: var(--spm-font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--spm-primary);
  line-height: 1;
  margin: 16px 0 8px;
}
.price-tag .currency { font-size: 1.2rem; vertical-align: super; }
.price-tag .per { font-size: 0.85rem; font-weight: 500; color: var(--spm-muted); }
.spm-pricing-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 20px 0 28px;
}
.spm-pricing-card ul li {
  padding: 7px 0;
  font-size: 0.9rem;
  color: var(--spm-text);
  display: flex;
  align-items: center;
  gap: 9px;
}
.spm-pricing-card ul li i {
  color: var(--spm-primary);
  font-size: 0.75rem;
  flex-shrink: 0;
}
.spm-pricing-card.featured ul li i { color: rgba(255,255,255,0.85); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.spm-testimonial-section { background: var(--spm-light); }
.spm-testi-card {
  background: #fff;
  border-radius: var(--spm-radius-lg);
  padding: 32px;
  box-shadow: 0 2px 20px rgba(68,110,211,0.07);
  height: 100%;
}
.spm-testi-stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 14px; }
.spm-testi-text {
  font-style: italic;
  color: var(--spm-text);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.spm-testi-author { display: flex; align-items: center; gap: 12px; }
.spm-testi-author img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--spm-primary);
}
.spm-testi-author strong {
  display: block;
  font-family: var(--spm-font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--spm-dark);
}
.spm-testi-author span {
  font-size: 0.8rem;
  color: var(--spm-muted);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.spm-cta-section {
  background: linear-gradient(135deg, var(--spm-primary) 0%, var(--spm-primary-dark) 100%);
  position: relative;
  overflow: hidden;
}
.spm-cta-section::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.spm-cta-section::after {
  content: '';
  position: absolute;
  left: -60px; bottom: -100px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.spm-cta-section .content { position: relative; z-index: 1; }

/* ============================================================
   CONTACT
   ============================================================ */
.spm-contact-card {
  background: #fff;
  border-radius: var(--spm-radius-lg);
  padding: 36px;
  box-shadow: var(--spm-shadow);
  border: 1px solid var(--spm-border);
}
.spm-contact-info-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--spm-border);
}
.spm-contact-info-item:last-child { border-bottom: none; }
.spm-contact-info-item .icon-wrap {
  width: 48px; height: 48px;
  background: var(--spm-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--spm-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.spm-contact-info-item strong {
  display: block;
  font-family: var(--spm-font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--spm-muted);
  margin-bottom: 3px;
}
.spm-contact-info-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--spm-dark);
}
.spm-social-contact a {
  width: 42px; height: 42px;
  background: var(--spm-light);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--spm-primary);
  font-size: 0.9rem;
  transition: all var(--spm-transition);
  margin-right: 8px;
}
.spm-social-contact a:hover {
  background: var(--spm-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Form styles */
.spm-form .form-control,
.spm-form .form-select {
  border: 2px solid var(--spm-border);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 0.92rem;
  color: var(--spm-dark);
  transition: border-color var(--spm-transition), box-shadow var(--spm-transition);
  background: #fff;
}
.spm-form .form-control:focus,
.spm-form .form-select:focus {
  border-color: var(--spm-primary);
  box-shadow: 0 0 0 3px rgba(68,110,211,0.12);
  outline: none;
}
.spm-form label {
  font-family: var(--spm-font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--spm-dark);
  letter-spacing: 0.04em;
  margin-bottom: 7px;
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.spm-page-header {
  background: linear-gradient(135deg, var(--spm-dark) 0%, #1e2d50 100%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.spm-page-header::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(68,110,211,0.1);
}
.spm-page-header .header-content { position: relative; z-index: 1; }
.spm-page-header h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 12px;
}
.spm-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--spm-font-head);
  font-size: 0.82rem;
  font-weight: 600;
}
.spm-breadcrumb a { color: var(--spm-primary-mid); }
.spm-breadcrumb span { color: rgba(255,255,255,0.5); }
.spm-breadcrumb .active { color: rgba(255,255,255,0.85); }

/* ============================================================
   TEAM CARDS
   ============================================================ */
.spm-team-card {
  background: #fff;
  border-radius: var(--spm-radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--spm-border);
  box-shadow: 0 2px 20px rgba(68,110,211,0.07);
  transition: all 0.35s ease;
}
.spm-team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--spm-shadow-lg);
  border-color: var(--spm-primary);
}
.spm-team-card img {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--spm-light);
  margin-bottom: 16px;
  transition: border-color var(--spm-transition);
}
.spm-team-card:hover img { border-color: var(--spm-primary); }
.spm-team-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.spm-team-card .role {
  font-size: 0.8rem;
  color: var(--spm-primary);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.spm-team-card p {
  font-size: 0.87rem;
  color: var(--spm-muted);
  font-style: italic;
  line-height: 1.7;
}

/* ============================================================
   VALUES / MISSION
   ============================================================ */
.spm-value-item {
  background: #fff;
  border-radius: var(--spm-radius);
  padding: 28px 24px;
  border-left: 4px solid var(--spm-primary);
  box-shadow: 0 2px 16px rgba(68,110,211,0.06);
  transition: all var(--spm-transition);
}
.spm-value-item:hover {
  transform: translateX(4px);
  box-shadow: var(--spm-shadow);
}
.spm-value-item h6 {
  font-family: var(--spm-font-head);
  font-weight: 700;
  color: var(--spm-dark);
  margin-bottom: 6px;
}
.spm-value-item p {
  font-size: 0.88rem;
  color: var(--spm-muted);
  margin: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.spm-faq-accordion .accordion-item {
  border: 1px solid var(--spm-border);
  border-radius: var(--spm-radius) !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.spm-faq-accordion .accordion-button {
  font-family: var(--spm-font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--spm-dark);
  background: #fff;
  padding: 18px 22px;
  box-shadow: none !important;
}
.spm-faq-accordion .accordion-button:not(.collapsed) {
  color: var(--spm-primary);
  background: var(--spm-light);
}
.spm-faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23446ed3'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.spm-faq-accordion .accordion-body {
  padding: 14px 22px 20px;
  font-size: 0.93rem;
  color: var(--spm-text);
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.spm-footer {
  background: var(--spm-dark);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}
.spm-footer h5 {
  font-family: var(--spm-font-head);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(68,110,211,0.3);
}
.spm-footer .footer-brand .brand-name {
  font-family: var(--spm-font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}
.spm-footer .footer-brand .brand-name span { color: var(--spm-primary-mid); }
.spm-footer .footer-brand .tagline {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--spm-primary-mid);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
  display: block;
}
.spm-footer p { font-size: 0.9rem; line-height: 1.8; }
.spm-footer a { color: rgba(255,255,255,0.65); transition: color var(--spm-transition); }
.spm-footer a:hover { color: var(--spm-primary-mid); }

.spm-footer .footer-links { list-style: none; padding: 0; }
.spm-footer .footer-links li { margin-bottom: 10px; }
.spm-footer .footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}
.spm-footer .footer-links a i {
  color: var(--spm-primary-mid);
  font-size: 0.75rem;
}
.spm-footer .footer-links a:hover { padding-left: 4px; }

.spm-footer .footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}
.spm-footer .footer-contact-item i {
  color: var(--spm-primary-mid);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.spm-footer-social { display: flex; gap: 10px; margin-top: 20px; }
.spm-footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  transition: all var(--spm-transition);
}
.spm-footer-social a:hover {
  background: var(--spm-primary);
  border-color: var(--spm-primary);
  color: #fff;
}

.spm-footer .newsletter-form .form-control {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 0.88rem;
  margin-bottom: 10px;
}
.spm-footer .newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.4); }
.spm-footer .newsletter-form .form-control:focus {
  border-color: var(--spm-primary);
  background: rgba(68,110,211,0.12);
  outline: none;
  box-shadow: none;
}

.spm-footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 18px 0;
  margin-top: 60px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
}
.spm-footer-bottom a { color: rgba(255,255,255,0.55); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px; height: 44px;
  background: var(--spm-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(68,110,211,0.4);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 8000;
  border: none;
  text-decoration: none;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
#back-to-top:hover {
  background: var(--spm-primary-dark);
  transform: translateY(-3px);
}

/* ============================================================
   BOOKING MODAL
   ============================================================ */
.spm-modal .modal-content {
  border: none;
  border-radius: var(--spm-radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.spm-modal .modal-header {
  border-bottom: 1px solid var(--spm-border);
  padding: 20px 24px 14px;
}
.spm-modal .modal-title {
  font-family: var(--spm-font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--spm-dark);
}
.spm-modal .progress-bar { background: var(--spm-primary); }
.spm-modal .form-control,
.spm-modal .form-select,
.spm-modal select {
  border: 2px solid var(--spm-border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.9rem;
}
.spm-modal .form-control:focus,
.spm-modal select:focus {
  border-color: var(--spm-primary);
  box-shadow: 0 0 0 3px rgba(68,110,211,0.1);
}
.spm-modal label {
  font-family: var(--spm-font-head);
  font-size: 0.82rem;
  font-weight: 700;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* ============================================================
   AREA BADGE
   ============================================================ */
.spm-area-map {
  background: var(--spm-bg);
  border-radius: var(--spm-radius-lg);
  padding: 40px;
  text-align: center;
  border: 2px dashed var(--spm-border);
}
.spm-area-map i { font-size: 3rem; color: var(--spm-primary); margin-bottom: 12px; }
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 16px; }
.area-chip {
  background: var(--spm-light);
  color: var(--spm-primary);
  border: 1px solid var(--spm-border);
  border-radius: 50px;
  padding: 6px 18px;
  font-family: var(--spm-font-head);
  font-size: 0.82rem;
  font-weight: 600;
}

/* ============================================================
   HERO V2 — EDITORIAL SPLIT + IMAGE V-STACK
   ============================================================ */
.spm-hero-v2 {
  min-height: 96vh;
  background: #0c0f16;
  display: grid;
  grid-template-columns: 52% 48%;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Subtle angled divider */
.spm-hero-v2 .hero-angle-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 52%;
  width: 100px;
  background: linear-gradient(90deg, #0c0f16 0%, transparent 100%);
  z-index: 4;
  pointer-events: none;
}

/* Left panel */
.spm-hero-v2 .hero-left {
  padding: 100px 48px 100px 80px;
  position: relative;
  z-index: 5;
}

/* Right panel */
.spm-hero-v2 .hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px 80px 0;
  position: relative;
  z-index: 3;
  min-height: 96vh;
}

/* Blue radial glow behind images */
.hero-bg-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68,110,211,0.18) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* Dot grid decoration */
.hero-dot-grid {
  position: absolute;
  bottom: 80px; right: 30px;
  width: 130px; height: 100px;
  background-image: radial-gradient(circle, rgba(109,142,221,0.35) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 1;
}
.hero-dot-grid-2 {
  position: absolute;
  top: 70px; left: 10px;
  width: 80px; height: 60px;
  background-image: radial-gradient(circle, rgba(109,142,221,0.25) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  pointer-events: none;
  z-index: 1;
}

/* ── IMAGE STACK ── */
/* ── DUAL SERVICE CARDS ── */
.hero-dual-cards {
  display: flex;
  gap: 8px;
  align-items: flex-end;   /* bottoms converge */
  z-index: 2;
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-svc-card {
  flex: 1;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 28px 70px rgba(0,0,0,0.55);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: default;
}
/* Left card tips outward at top → bottoms meet */
.hero-svc-card--left  { transform: rotate(-5deg) translateY(-28px); }
/* Right card mirrors */
.hero-svc-card--right { transform: rotate(5deg) translateY(-28px); }

.hero-svc-card--left:hover {
  transform: rotate(-3deg) translateY(-32px) scale(1.02);
  box-shadow: 0 36px 90px rgba(68,110,211,0.5), 0 0 0 3px rgba(109,142,221,0.3);
}
.hero-svc-card--right:hover {
  transform: rotate(3deg) translateY(-32px) scale(1.02);
  box-shadow: 0 36px 90px rgba(68,110,211,0.4), 0 0 0 3px rgba(109,142,221,0.3);
}

.hero-svc-img {
  width: 100%;
  height: 360px;
}
.hero-svc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.hero-svc-card:hover .hero-svc-img img { transform: scale(1.06); }

/* ── FLOATING BADGES ── */
.hero-badge {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  white-space: nowrap;
}
.hero-badge-rating { display: none; }
.hero-badge-avail  { display: none; }
.hero-badge-exp    { display: none; }
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0px);  }
  50%       { transform: translateY(-9px); }
}
.badge-icon-wrap {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.badge-text-block strong {
  display: block;
  font-family: var(--spm-font-head);
  font-size: 0.8rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
}
.badge-text-block span {
  font-size: 0.7rem;
  color: #888;
  font-weight: 500;
}

/* Stars */
.badge-stars { color: #f59e0b; font-size: 0.7rem; letter-spacing: 1px; }

/* ── HERO TEXT ── */
.spm-hero-v2 .h-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(68,110,211,0.12);
  border: 1px solid rgba(68,110,211,0.28);
  border-radius: 50px;
  padding: 6px 16px;
  font-family: var(--spm-font-head);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--spm-primary-mid);
  margin-bottom: 22px;
  animation: fadeInDown 0.7s ease 0.1s both;
}
.spm-hero-v2 .h-eyebrow .pulse-dot {
  width: 6px; height: 6px;
  background: var(--spm-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.spm-hero-v2 .h-title {
  font-family: var(--spm-font-head);
  font-size: clamp(2.6rem, 4.2vw, 4rem);
  font-weight: 900;
  line-height: 1.07;
  color: #fff;
  margin-bottom: 22px;
  animation: fadeInUp 0.7s ease 0.25s both;
}
.spm-hero-v2 .h-title .t-blue  { color: var(--spm-primary-mid); display: block; }
.spm-hero-v2 .h-title .t-ghost {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.4);
  color: transparent;
  display: block;
}

.spm-hero-v2 .h-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.58);
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 38px;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.spm-hero-v2 .h-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  animation: fadeInUp 0.7s ease 0.55s both;
}

.spm-hero-v2 .h-divider {
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--spm-primary), transparent);
  border-radius: 2px;
  margin-bottom: 18px;
  animation: fadeInUp 0.7s ease 0.65s both;
}

.spm-hero-v2 .h-stats {
  display: flex;
  gap: 40px;
  animation: fadeInUp 0.7s ease 0.75s both;
}
.spm-hero-v2 .h-stat .n {
  font-family: var(--spm-font-head);
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.spm-hero-v2 .h-stat .n em { font-style: normal; color: var(--spm-primary-mid); }
.spm-hero-v2 .h-stat .l {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Vertical left accent */
.hero-left-line {
  position: absolute;
  left: 52px; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 110px;
  background: linear-gradient(180deg, transparent, var(--spm-primary) 50%, transparent);
  border-radius: 3px;
}

/* Bottom scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px; left: 80px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--spm-font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  z-index: 5;
}
.scroll-line {
  width: 32px; height: 1px;
  background: rgba(255,255,255,0.2);
}

/* ── RESPONSIVE ── */
@media (max-width: 1199px) {
  .spm-hero-v2 .hero-left { padding: 80px 32px 80px 56px; }
  .hero-dual-cards { max-width: 440px; }
  .hero-svc-img { height: 320px; }
}

/* Tablet — single column, images below text */
@media (max-width: 991px) {
  .spm-hero-v2 {
    grid-template-columns: 1fr;
    min-height: auto;
    overflow: visible;
  }
  .spm-hero-v2 .hero-angle-divider { display: none; }
  .spm-hero-v2 .hero-left {
    padding: 84px 32px 32px;
    text-align: center;
  }
  .spm-hero-v2 .h-sub,
  .spm-hero-v2 .h-actions,
  .spm-hero-v2 .h-stats { margin-left: auto; margin-right: auto; }
  .spm-hero-v2 .h-sub { max-width: 100%; }
  .spm-hero-v2 .h-actions { justify-content: center; }
  .spm-hero-v2 .h-stats { justify-content: center; }
  .hero-left-line { display: none; }
  /* Give hero-right a controlled height & centering on tablet */
  .spm-hero-v2 .hero-right {
    padding: 20px 24px 80px;
    min-height: auto;
    overflow: visible;
  }
  /* Dual cards — fluid on tablet */
  .hero-dual-cards { max-width: 100%; gap: 8px; }
  .hero-svc-img { height: 280px; }
  .hero-svc-card--left  { transform: rotate(-4deg) translateY(-22px); }
  .hero-svc-card--right { transform: rotate(4deg) translateY(-22px); }
  .hero-scroll-hint { left: 50%; transform: translateX(-50%); }
  .hero-dot-grid, .hero-dot-grid-2 { display: none; }
}

/* Mobile phones ≤575px */
@media (max-width: 575px) {
  /* ── Text panel ── */
  .spm-hero-v2 .hero-left {
    padding: 80px 24px 24px;
  }
  .spm-hero-v2 .h-title {
    font-size: 1.95rem;
    line-height: 1.1;
    margin-bottom: 14px;
  }
  .spm-hero-v2 .h-sub {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 24px;
  }
  .spm-hero-v2 .h-divider { margin-bottom: 12px; }
  .spm-hero-v2 .h-stats { gap: 20px; }
  .spm-hero-v2 .h-stat .n { font-size: 1.55rem; }
  .spm-hero-v2 .h-stat .l { font-size: 0.65rem; }

  /* Full-width CTA buttons stacked */
  .spm-hero-v2 .h-actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }
  .spm-hero-v2 .h-actions .btn-spm-primary,
  .spm-hero-v2 .h-actions .btn-spm-outline {
    width: 100%;
    justify-content: center;
    padding: 13px 24px;
  }

  /* ── Image panel ── */
  .spm-hero-v2 .hero-right {
    padding: 16px 16px 48px;
  }
  /* Fluid dual cards — nearly full width on phone */
  .hero-dual-cards {
    gap: 6px;
    max-width: calc(100% - 16px);
  }
  .hero-svc-img { height: 240px; }
  .hero-svc-card--left  { transform: rotate(-3.5deg) translateY(-18px); }
  .hero-svc-card--right { transform: rotate(3.5deg) translateY(-18px); }
  /* Hide badges — no room on narrow screens */
  .hero-badge        { display: none; }
  .hero-scroll-hint  { display: none; }
  .hero-bg-glow      { display: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .spm-section { padding: 70px 0; }
  .spm-hero { min-height: 80vh; }
  .spm-hero-carousel .carousel-item { height: 80vh; }
  .spm-navbar .nav-link { padding: 12px 14px !important; }
  .spm-navbar .nav-link::after { display: none; }
  .spm-navbar .nav-cta { margin: 12px 14px; }
  .spm-topbar .spm-top-info { display: none; }
  .spm-about-badge { right: 0; bottom: -10px; }
}

@media (max-width: 767px) {
  .spm-section { padding: 55px 0; }
  .spm-hero { min-height: 100svh; }
  .spm-hero-carousel .carousel-item { height: 100svh; }
  .spm-hero-stats { gap: 20px; }
  .spm-contact-strip .strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .spm-about-img-wrap img { height: 320px; }
  .spm-about-badge { position: relative; bottom: auto; right: auto; margin-top: 16px; display: inline-flex; align-items: center; gap: 12px; }
  .spm-ba-slider img { height: 250px; }
  .spm-years-card { padding: 40px 24px; }
}

@media (max-width: 575px) {
  .spm-hero-actions { flex-direction: column; }
  .spm-hero-actions .btn-spm-primary,
  .spm-hero-actions .btn-spm-outline { justify-content: center; }
  .spm-footer { padding: 60px 0 0; }
}
