:root{
   --sp-header-h: 110px; 
} 
html { scroll-behavior: auto !important; 
  font-family: 'Cairo', 'Montserrat'; 
}  
.font-hero { 
  font-family: "Cairo", system-ui, sans-serif; 
  font-style: normal; } /* Make all hash targets stop under navbar */ 
  .sp-section { padding: 60px 0; 
} 
  @media (max-width: 768px){ 
    .sp-section { padding: 48px 0; 
  } 
} 
   /* ========== */
  html, body {
  overflow-x: hidden;
}
img, video, svg {
  max-width: 100%;
}

body { 
  font-family: "Cairo", "Montserrat", system-ui, 
  -apple-system, "Segoe UI", Arial, sans-serif; 
}

/* =============== */
/* Home page */
.sp-cta-press {
  transition: transform 120ms ease, box-shadow 120ms ease, filter 120ms ease;
  box-shadow: 0 10px 22px rgba(0,0,0,.12), inset 0 -2px 0 #daceb0;
}
/* FIX: Home section (id="home") starts at the very top – no extra padding */
#home {
  scroll-margin-top: 0 !important;
  padding-top: var(--sp-header-h); /* adds space so content isn't hidden under fixed header */
}
.sp-cta-press:hover {
  filter: brightness(1.02);
  transform: translateY(-2px);
}

.sp-cta-press:active {
  transform: translateY(2px) scale(0.99);
  box-shadow: 0 6px 14px rgba(0,0,0,.14), inset 0 -1px 0 #f4b000;
}
/* ========================= */
/* Navbar  */

/* applies to div/section/etc */
/* Make all hash targets stop under navbar */
.sp-section[id],
div[id],
section[id]{
  scroll-margin-top: calc(var(--sp-header-h) + 12px);
}
/* topbar */
.sp-topbar{
   background:#97dbecff; 
   border-bottom:1px solid rgba(31,41,51,.08); 
}
.sp-topbar-link{ color: #1f2933; 
  text-decoration: none; 
  padding:6px 10px; border-radius:999px;  
} 
.sp-topbar-link:hover{ background: rgba(255,255,255,.55); 
  transform: translateY(-1px);
}
  .sp-brand-top { 
  letter-spacing: .08em; 
  color: #1f2933; 
  font-weight: 800; }

/* ✅ logo bigger (client logo must stay) */
.sp-logo-top{
  width: 95px;
  height: 95px;
  object-fit: contain;
    margin: 0;

}
@media (min-width: 576px){
  .sp-logo-top{ width: 78px; height: 78px; }
}
/* Bootstrap dropdown on hover (desktop only) */
@media (min-width: 992px) {
  .sp-services-dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* Optional styling */
.sp-dropdown-menu {
  border-radius: 12px;
  padding: 8px;
}

.sp-dropdown-item {
  border-radius: 10px;
  padding: 10px 12px;
}


/* Give header content a bit more breathing room on very small screens */
.sp-topbar .container,
.sp-main-nav .container{
  padding-left: 14px;
  padding-right: 14px;
}

@media (min-width: 576px){
  .sp-topbar .container,
  .sp-main-nav .container{
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 360px){
  .sp-topbar .container,
  .sp-main-nav .container{
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* On small screens, stack contact info nicely */
.sp-topbar-contact{
  row-gap: 6px;          /* space between wrapped rows */
}

/* Force each item to take a full row on very small screens */
@media (max-width: 420px){
  .sp-topbar-contact a{
    width: 100%;
    justify-content: flex-end;
  }
}

/* ================================= */
/* Main nav */
.sp-main-nav{
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31,41,51,.08);
  box-shadow: 0 6px 18px rgba(15,23,42,.08);
}

/* Nav icon no bg */
.sp-nav-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:22px; height:22px;
  background:transparent;
}

/* ✅ your link style + underline animation */
.sp-nav-link{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: .55rem .80rem !important;
  border-radius: 999px;
  color:#1f2933 !important;
  letter-spacing: .06em;
  transition: transform .12s ease, background-color .18s ease;
}

.sp-nav-link::after{
  content:'';
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2.5px;
  background: #97dbecff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
  border-radius: 999px;
}

.sp-nav-link:hover::after{
  transform: scaleX(1);
}

.sp-nav-link.is-active{
  background: #97dbecff;
  box-shadow: inset 0 -2px 0 #f4b000;
}

.sp-nav-link.is-active::after{
  transform: scaleX(1);
}

/* Toggler */
.sp-toggler{
  border:1px solid rgba(31,41,51,.14);
  border-radius: 12px;
  padding: 8px 10px;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}

/* ✅ CTA: “shiny” + high engagement */
.sp-nav-cta{
  background: #97dbecff;
  border: 1px solid rgba(31,41,51,.12);
  border-radius: 14px;
  padding: .60rem 1rem;
  font-weight: 800;
  letter-spacing: .06em;
  box-shadow: 0 10px 22px rgba(151,219,236,.55);
  position: relative;
  overflow: hidden;
  transition: transform .12s ease, box-shadow .18s ease, background-color .18s ease;
}

.sp-nav-cta::after{
  content:"";
  position:absolute;
  top:-40%;
  left:-30%;
  width: 40%;
  height: 180%;
  background: rgba(255,255,255,.45);
  transform: rotate(18deg);
  filter: blur(2px);
  opacity: 0;
}

.sp-nav-cta:hover{
  background: #ffbf1f;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(0,0,0,.12);
}
.sp-nav-cta:hover::after{
  opacity: 1;
  animation: sp-shine 0.9s ease forwards;
}

@keyframes sp-shine{
  from { left: -30%; }
  to   { left: 120%; }
}


/* Mobile dropdown panel */
@media (max-width: 991.98px){
  .navbar-collapse{
    background: rgba(255,255,255,.96);
    border-radius: 16px;
    padding: 12px;
    margin-top: 10px;
    box-shadow: 0 10px 24px rgba(0,0,0,.10);
  }
  .sp-nav-link{ width: 100%; justify-content: flex-start; }
}

/* ================ */
/* FAQ cards */
.faq-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.85rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background-color 0.12s ease;
}

/* “button pressed” feeling */
.faq-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.faq-card:active {
  transform: translateY(2px) scale(0.995);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-card-open {
  border-left: 3px solid #3bb4ff;
  background-color: #f9fcff;
}

.faq-question {
  font-family: 'Roboto', sans-serif;
}

.faq-icon {
  font-size: 1.4rem;
  line-height: 1;
}

/* animated expansion */
.faq-answer {
  overflow: hidden;
  transition:
    max-height 0.2s ease,
    opacity 0.2s ease,
    margin-top 0.2s ease;
  margin-top: 0;
}

.faq-card-open .faq-answer {
  margin-top: 0.5rem;
}


/* ================== */

/* Gallery: */

/* =========================
   Shower Power Gallery
   ========================= */

.sp-gallery-page{
  padding: 48px 0 70px;
  background: #ffffff;
}

.sp-gallery-header{
  margin-bottom: 18px;
}

.sp-gallery-title{
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: .02em;
  color: #111827;
}

.sp-gallery-subtitle{
  margin: 0;
  font-size: 1.05rem;
  color: #6b7280;
}

/* ✅ Responsive grid */
.sp-gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

@media (max-width: 1200px){
  .sp-gallery-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px){
  .sp-gallery-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px){
  .sp-gallery-grid{ grid-template-columns: 1fr; }
}

/* Tile button */
.sp-gallery-tile{
  position: relative;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0;
  cursor: pointer;
}
.sp-gallery-overlay{
  position: absolute;
  inset: 0;
  border-radius: 16px;          /* match your tile rounding */
  background: rgba(0,0,0,.18);  /* darker overlay */
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.sp-gallery-tile:hover .sp-gallery-overlay{
  opacity: 1;
}

.sp-gallery-tile:hover .sp-gallery-img{
  transform: scale(1.03);
  filter: brightness(.90);
}


.sp-gallery-tile:focus{
  outline: none;
}

/* ✅ Frame keeps a consistent tile size, image shows FULL */
.sp-gallery-frame{
  width: 100%;
  aspect-ratio: 3 / 4;                 /* portrait for shower images */
  border-radius: 16px;
  overflow: hidden;
  background: transparent;  /* let blur fill gaps */
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
  display: flex;
  isolation: isolate;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease;
}

.sp-gallery-frame::before {
  content: "";
  position: absolute;
  inset: -22px;
  background-image: var(--sp-img);
  background-size: cover;
  background-position: center;
  filter: blur(18px) brightness(.92);
  transform: scale(1.08);
  opacity: .80; /* increased for better fill */
  z-index: -1;
}

/* subtle “engagement” overlay */
.sp-gallery-frame::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.22), rgba(0,0,0,.10));
  opacity: 0;
  transition: opacity .18s ease;
}

.sp-gallery-tile:hover .sp-gallery-frame{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,.14);
}
.sp-gallery-tile:hover .sp-gallery-frame::after{
  opacity: 1;
}

.sp-gallery-img{
  width: 100%;
  height: 100%;
  object-fit: contain;    /* ✅ shows whole photo */
  object-position: center;
  display: block;
  padding: 0px;
  cursor: pointer;
  transition: transform .25s ease, filter .25s ease, opacity .25s ease;

}
.sp-gallery-img:hover{
  transform: scale(1.0); /* Scale the image by 1.1 on hover */
  transition: transform 0.3s ease;
  opacity: 0.6;
}

.sp-gallery-imgWrap {
  width: 100% !important;
  height: 100% !important;
}

/* meta under each tile */
.sp-gallery-meta{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding: 0 2px;
}

.sp-gallery-count{
  font-size: .9rem;
  color: #6b7280;
}

.sp-gallery-hint{
  font-size: .9rem;
  color: #111827;
  opacity: .65;
}

/* =========================
   Modal
   ========================= */
.sp-gallery-modal{
  background: rgba(17, 24, 39, .96);
  border: none;
  border-radius: 18px;
  overflow: hidden;
}

.sp-modal-body{
  position: relative;
  padding: 14px;
}

/* full image in modal */
.sp-modal-img{
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  display: block;
}

/* close button */
.sp-modal-close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
}

/* arrows */
.sp-modal-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  transform: translateY(-50%);

  border-radius: 999px;
  border: 0;
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 2;
}
.sp-modal-arrow:hover{
  background: rgba(0,0,0,.55);
  transform: translateY(-50%) scale(1.04);
  transition: transform .15s ease, background .15s ease;
}

.sp-download-btn{
  text-decoration:none;
}
.sp-modal-arrow-left{ left: 10px; }
.sp-modal-arrow-right{ right: 10px; }

@media (max-width: 576px){
  .sp-modal-arrow{ width: 42px; height: 42px; font-size: 26px; }
}

/* footer */
.sp-modal-footer{
  border-top: 1px solid rgba(255,255,255,.12);
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
}

.sp-modal-footer-left{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sp-modal-counter{
  color: rgba(255,255,255,.92);
  font-weight: 600;
}

.sp-modal-tip{
  color: rgba(255,255,255,.55);
  font-size: .9rem;
}

/* Download button */
.sp-modal-download{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: #111827;
  background: rgba(255,255,255,.92);
}

.sp-modal-download:hover{
  transform: translateY(-1px);
  opacity: .95;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease;
}
/* =========================
   Modal
   ========================= */
.sp-gallery-modal{
  background: rgba(17, 24, 39, .96);
  border: none;
  border-radius: 18px;
  overflow: hidden;
}

.sp-modal-body{
  position: relative;
  padding: 14px;
}

/* full image in modal */
.sp-modal-img{
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  display: block;
}

/* close button */
.sp-modal-close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
}

/* arrows */
.sp-modal-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  transform: translateY(-50%);

  border-radius: 999px;
  border: 0;
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 2;
}
.sp-modal-arrow:hover{
  background: rgba(0,0,0,.55);
  transform: translateY(-50%) scale(1.04);
  transition: transform .15s ease, background .15s ease;
}

.sp-download-btn{
  text-decoration:none;
}
.sp-modal-arrow-left{ left: 10px; }
.sp-modal-arrow-right{ right: 10px; }

@media (max-width: 576px){
  .sp-modal-arrow{ width: 42px; height: 42px; font-size: 26px; }
}

/* footer */
.sp-modal-footer{
  border-top: 1px solid rgba(255,255,255,.12);
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
}

.sp-modal-footer-left{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sp-modal-counter{
  color: rgba(255,255,255,.92);
  font-weight: 600;
}

.sp-modal-tip{
  color: rgba(255,255,255,.55);
  font-size: .9rem;
}

/* Download button */
.sp-modal-download{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: #111827;
  background: rgba(255,255,255,.92);
}

.sp-modal-download:hover{
  transform: translateY(-1px);
  opacity: .95;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease;
}

/* ========== */
/* =========================
   Services 
   ========================= */

.sp-service-row {
  scroll-margin-top: calc(var(--sp-header-h, 110px) + 20px);
  margin-bottom: 5rem;
  padding: 40px 20px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;

  display: grid;
  grid-template-columns: 1.4fr 2fr;     /* wider image column for all */
  gap: 4rem;
  align-items: center;
}

.sp-service-row:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
  background: rgba(151, 219, 236, 0.03);
}

/* Reverse layout */
.sp-reverse {
  grid-template-columns: 2fr 1.4fr;
}

/* Image container */
.sp-service-img-container {
  display: flex;
  justify-content: center;
}

/* Clean frame - no blur, minimal padding */
.sp-service-imgWrap {
  width: 100%;
  max-width: 580px;
  padding: 8px;                 /* very little padding */
  background: white;
  border-radius: 28px;
  border: 3px solid #d0d9e8;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

/* Main image - default for Installations & Insurance */
.sp-service-img {
  width: 100% !important;
  height: auto !important;
  max-height: 620px;
  object-fit: contain;
  object-position: center;
  background: white;
  border-radius: 24px;
  padding: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}
/* box-shadow: 0 6px 14px rgba(0,0,0,.14), inset 0 -1px 0 #f4b000;55 */
/* Hover */
.sp-service-row:hover .sp-service-img {
  transform: scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
}

/* Glow (optional, subtle) */
.sp-service-imgGlow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 30%, rgba(151, 219, 236, 0.25), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 28px;
  pointer-events: none;
  z-index: 2;
}

.sp-service-row:hover .sp-service-imgGlow {
  opacity: 0.6;  /* very subtle */
}

/* Text */
.sp-service-text-container {
  padding: 20px 0;
  text-align: left;
}

/* ────────────────────────────────────────────────
   LARGER & WIDER for Repairs, EnduroShield, Renovations
   ──────────────────────────────────────────────── */

#service-repairs .sp-service-imgWrap,
#service-enduroshield .sp-service-imgWrap,
#service-renovations .sp-service-imgWrap {
  max-width: 780px !important;    /* much wider */
  padding: 10px;
}

#service-repairs .sp-service-img,
#service-enduroshield .sp-service-img,
#service-renovations .sp-service-img {
  max-height: 720px !important;
  object-fit: cover;              /* fills frame, crops minimally */
  padding: 0;                     /* no inner padding → bigger photo */
}

/* Tablet */
@media (max-width: 1200px) {
  #service-installations .sp-service-imgWrap,
  #service-repairs .sp-service-imgWrap,
  #service-enduroshield .sp-service-imgWrap,
  #service-renovations .sp-service-imgWrap,
  #service-insurance .sp-service-imgWrap {
    max-width: 680px !important;
  }
}

/* Mobile - stack + still large */
@media (max-width: 992px) {
  .sp-service-row,
  .sp-reverse {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 2.5rem;
  }

  .sp-service-text-container {
    text-align: left;
  }

  .sp-service-imgWrap {
    max-width: 100%;
    margin: 0 auto;
    padding: 12px;
  }

  #service-repairs .sp-service-imgWrap,
  #service-enduroshield .sp-service-imgWrap,
  #service-renovations .sp-service-imgWrap {
    max-width: 100% !important;
  }

  .sp-service-img {
    max-height: 520px;
  }
}

@media (max-width: 576px) {
  .sp-service-imgWrap {
    padding: 8px;
  }

  .sp-service-img {
    max-height: 460px;
  }
}
/* =========================
   Why Choose Us (high engagement, same text)
   ========================= */
.sp-why-card{
  width: min(980px, 100%);
  background: #fff;
  border-radius: 20px;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 18px 55px rgba(0,0,0,.10);
  border: 1px solid rgba(0,0,0,.06);
  position: relative;
  overflow: hidden;
}

/* the corner color */
.sp-why-card::before{
  content:"";
  position:absolute;
  inset: -80px -90px auto auto; /* top-right corner */
  width: 220px;
  height: 220px;
  background: rgba(151, 219, 236, 0.35);
  filter: blur(10px);
  border-radius: 999px;
}
 .sp-why-wrap{
  display: flex;
  justify-content: center;
}

.sp-why-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  position: relative;
  z-index: 1;
}

.sp-why-item{
  display: flex;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(241,245,249,0.75);
  border: 1px solid rgba(0,0,0,.05);
  transition: transform .16s ease, box-shadow .16s ease;
}

.sp-why-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
}

.sp-why-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(151, 219, 236, 0.55);
  box-shadow: inset 0 -2px 0 #f4b000;
  flex: 0 0 auto;
  font-size: 20px;
}

/* make last item span full width */
.sp-why-item-wide{
  grid-column: 1 / -1;
}

@media (max-width: 768px){
  .sp-why-grid{ grid-template-columns: 1fr; }
  .sp-why-item-wide{ grid-column: auto; }
}
/* ========================== */

/* ---partners */

/* Partners: premium cards + hover engagement */
/* Partners: 4 per row on desktop (bigger + cleaner) */
.sp-partners-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 14px;
}

@media (max-width: 992px){
  .sp-partners-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px){
  .sp-partners-grid{ grid-template-columns: 1fr; }
}

.sp-partner-card{
  background: rgba(255,255,255,.92);
  border-radius: 18px;
  padding: 18px 14px 14px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  text-align: center;
  /* transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease; */
}

.sp-partner-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
  background: rgba(151, 219, 236, 0.12);
}

/* bigger logo area */
.sp-partner-logo{
  height: 78px;           /* bigger */
  width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto 10px;
  filter: grayscale(1) contrast(1.05);
  opacity: .9;
  /* transition: filter .18s ease, opacity .18s ease, transform .18s ease; */
}

.sp-partner-logo{
  filter: grayscale(0) contrast(1.05);
  opacity: 1;
  transform: scale(1.03);
}

.sp-partner-name{
  font-size: .88rem;
  letter-spacing: .02em;
  color: #334;
  opacity: .88;
}

/* EnduroShield badge on image */
.sp-service-badge{
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 999px;
  padding: 5px 10px;
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
}

.sp-service-badge img{
  height: 32px;
  width: auto;
  display: block;
}

/* ======== */

/* Contct us */

/* ===== Contact popup (transparent + premium) ===== */

.popup{
  position: fixed;
  top: calc(var(--sp-header-h) + 18px); /* stays under your fixed header */
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;

  width: min(720px, calc(100% - 24px));
  padding: 14px 18px;
  border-radius: 16px;

  color: #fff;
  text-align: center;
  font-weight: 600;
  letter-spacing: .01em;
  
  /* ✅ transparent glass look */
  background: rgba(17, 24, 39, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
  
  animation: popIn .18s ease-out;
}

.popup p{ margin: 0; }

.popup--success{
  /* ✅ brand-blue glow (NOT green) */
  background: rgba(17, 24, 39, 0.55);
  border-color: rgba(151, 219, 236, 0.55);
  box-shadow: 0 18px 45px rgba(151, 219, 236, 0.22);
}

.popup--error{
  background: rgba(17, 24, 39, 0.60);
  border-color: rgba(255, 99, 99, 0.55);
  box-shadow: 0 18px 45px rgba(255, 99, 99, 0.18);
}

@keyframes popIn{
  from { opacity: 0; transform: translateX(-50%) translateY(-8px) scale(.98); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}