/* theme/baru1/assets/style.css */

/* =========================
   TOKENS (Medical Pharmacy vibe)
========================= */
:root{
  color-scheme: light;

  --mp-green: #7fb23b;
  --mp-green2:#6aa62a;

  --mp-cream:#f6efe2;
  --mp-white:#ffffff;

  --mp-ink:#111827;
  --mp-muted: rgba(17,24,39,.70);

  --mp-card: rgba(255,255,255,.82);
  --mp-border: rgba(0,0,0,.06);

  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

@media (max-width: 991.98px){
  :root{ scroll-padding-top: 72px; }
}

[id]{ scroll-margin-top: 88px; }
@media (max-width: 991.98px){
  [id]{ scroll-margin-top: 72px; }
}

body{
  background: var(--mp-white);
}

/* global image safety */
img{
  max-width: 100%;
  height: auto;
}

/* =========================
   NAVBAR (tanpa ubah HTML/menu)
========================= */
#spNavbar{
  background: transparent !important;
  border-bottom: 0 !important;
}

#spNavbar .container{
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
}

/* brand bubble */
#spNavbar .navbar-brand{
  background: var(--mp-green);
  color: #fff !important;
  padding: 10px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: 10px;
  max-width: 70%;
}

.brand-logo{
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex: 0 0 auto;
  display:block;
}

.brand-text{
  letter-spacing: .3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color:#fff !important;
  font-weight: 800;
}

/* nav links */
#spNavbar .navbar-nav .nav-link{
  font-weight: 600;
  color: rgba(17,24,39,.86) !important;
  padding: 10px 14px;
  border-radius: 999px;
}

#spNavbar .navbar-nav .nav-link:hover{
  background: rgba(0,0,0,.06);
}

#spNavbar .dropdown-menu{
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 50px rgba(0,0,0,.16);
}

#spNavbar .btn.btn-success{
  background: var(--mp-green2) !important;
  border: 0 !important;
  border-radius: 999px !important;
  padding: 10px 16px !important;
  box-shadow: 0 12px 26px rgba(0,0,0,.14);
}

@media (max-width: 991.98px){
  #spNavbar .container{
    border-radius: 18px;
    padding: 10px 12px;
  }
}

/* mobile hide/show navbar (punyamu) */
@media (max-width: 991.98px){
  .sp-nav-auto{
    transition: transform .22s ease;
    will-change: transform;
  }
  .sp-nav-auto.is-hidden{
    transform: translateY(-110%);
  }
}

/* =========================
   HERO (Medical Pharmacy style)
========================= */
.mp-hero{
  position: relative;
  background: var(--mp-cream);
  overflow: hidden;
  padding-top: 10px;
}

/* corner circles like demo */
.mp-hero::before{
  content:"";
  position:absolute;
  left:-120px;
  top:-120px;
  width: 260px;
  height: 260px;
  background: var(--mp-green);
  border-radius: 999px;
  box-shadow: inset 0 0 0 14px rgba(255,255,255,.75);
  z-index: 1;
}

.mp-hero::after{
  content:"";
  position:absolute;
  right:-140px;
  bottom:-140px;
  width: 320px;
  height: 320px;
  background: rgba(127,178,59,.22);
  border-radius: 999px;
  z-index: 1;
}

/* background ambience */
.mp-hero-bg{
  position:absolute;
  inset:0;
  z-index: 0;
  opacity: .16;
  pointer-events:none;
}

.mp-hero-bgimg{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
}

/* main hero card */
.mp-hero-card{
  position: relative;
  z-index: 2;
  border-radius: 34px;
  overflow: hidden;
  background: var(--mp-card);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 22px 65px rgba(0,0,0,.12);
}

/* left */
.mp-hero-left{
  background: rgba(255,255,255,.68);
}

.mp-chip{
  display:inline-flex;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(0,0,0,.08);
  font-weight: 800;
  color: rgba(17,24,39,.75);
  font-size: 13px;
}

.mp-hero-title{
  color: #0b1220;
  font-weight: 900;
  letter-spacing: -.4px;
  line-height: 1.05;
  font-size: clamp(30px, 4vw, 54px);
}

.mp-hero-sub{
  color: var(--mp-muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 540px;
}

.mp-hero-note{
  color: rgba(17,24,39,.60);
}

/* buttons */
.mp-btn-pill{
  border-radius: 999px !important;
  padding: 12px 18px !important;
  font-weight: 800 !important;
}

.mp-btn-solid{
  background: var(--mp-green2) !important;
  border: 0 !important;
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(0,0,0,.16);
}

.mp-btn-outline{
  background: rgba(255,255,255,.90) !important;
  border: 2px solid var(--mp-green2) !important;
  color: var(--mp-green2) !important;
}

.mp-btn-outline:hover{
  background: rgba(106,166,42,.10) !important;
}

/* dots */
.mp-hero-dots{
  display:flex;
  align-items:center;
  gap: 8px;
}
.mp-hero-dots button{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.20);
  background: rgba(0,0,0,.20);
  opacity: .55;
}
.mp-hero-dots button.active{
  background: var(--mp-green2);
  border-color: rgba(0,0,0,.16);
  opacity: 1;
}

/* right panel */
.mp-hero-right{
  position: relative;
  background: var(--mp-green);
  min-height: 360px;
}

.mp-hero-blob{
  position:absolute;
  inset: 0;
  border-top-left-radius: 130px;
  border-bottom-left-radius: 130px;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding: 18px 18px 0 18px;
}

/* doctor/cutout image */
.mp-hero-person{
  width: min(520px, 92%);
  height: 100%;
  max-height: 520px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.22));
  display:block;
  transform: translateY(8px);
}

/* placeholder */
.mp-hero-person-ph{
  width: min(520px, 92%);
  height: 70%;
  border-radius: 22px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.22);
  margin-bottom: 18px;
}

/* bubbles overlay */
.mp-hero-bubbles{
  position:absolute;
  inset:0;
  pointer-events:none;
}
.mp-hero-bubbles span{
  position:absolute;
  display:block;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.20);
}
.mp-hero-bubbles .b1{ right: 22px; top: 26px; width: 120px; height: 120px; }
.mp-hero-bubbles .b2{ right: 120px; top: 110px; width: 80px; height: 80px; opacity: .85; }
.mp-hero-bubbles .b3{ right: 40px; bottom: 32px; width: 70px; height: 70px; opacity: .7; }

@media (max-width: 991.98px){
  .mp-hero-card{ border-radius: 26px; }
  .mp-hero-right{ min-height: 320px; }
  .mp-hero-blob{
    position: relative;
    border-top-left-radius: 26px;
    border-bottom-left-radius: 26px;
    padding-top: 18px;
  }
}

@media (max-width: 575.98px){
  .mp-hero-left{ padding: 18px !important; }
  .mp-btn-pill{
    width: 100%;
    justify-content: center;
  }
}

/* =========================
   SECTIONS (komponen existing kamu)
========================= */
.section{ width:100%; }
.section.bg-soft{ background: #f6f7fb; }

.value-card{
  border: 1px solid rgba(0,0,0,.06);
}

.value-icon{
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.08);
}

.value-icon-fallback{
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0,0,0,.06);
}

.post-card{
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  overflow: hidden;
}

.post-cover-wrap{ position: relative; display: block; }

.post-cover{
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.post-badge{ position: absolute; top: 12px; left: 12px; }

.price-box{
  border-top: 1px dashed rgba(0,0,0,.12);
  padding-top: .75rem;
}

.about-placeholder{
  height: 360px;
  background: linear-gradient(135deg, rgba(0,0,0,.06), rgba(0,0,0,.02));
}

.booking-steps{ margin: 0; padding-left: 1.2rem; }

.team-card, .review-card{
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
}

.team-avatar{
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,.08);
  flex: 0 0 auto;
}

.team-avatar-fallback,
.review-avatar-fallback{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.06);
}

.review-avatar{
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,.08);
}

.stars i{ margin-right: 2px; }

.maps-embed iframe{
  width: 100% !important;
  height: 420px !important;
  border: 0 !important;
  display: block;
}

/* Mobile tweaks */
@media (max-width: 575.98px){
  .post-cover{ height: 190px; }
  .about-placeholder{ height: 260px; }
  .maps-embed iframe{ height: 320px !important; }
}

/* link chip (content) */
.link-chip{
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border: 1px solid rgba(0,0,0,.12);
  color: rgba(0,0,0,.80) !important;
  text-decoration: none;
  padding: .35rem .6rem;
  border-radius: 999px;
  font-size: .875rem;
  background: #fff;
}
.link-chip:hover{
  color: rgba(0,0,0,.95) !important;
  border-color: rgba(0,0,0,.2);
}

/* gallery */
.gallery-item{ box-shadow: 0 10px 30px rgba(0,0,0,.08); }
.gallery-img{
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .25s ease;
  display:block;
}
.gallery-item:hover .gallery-img{ transform: scale(1.04); }

/* lightbox */
.lb{
  position:fixed; inset:0;
  background: rgba(0,0,0,.86);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}
.lb.show{ display:flex; }
.lb-inner{
  max-width:min(92vw, 980px);
  max-height:86vh;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}
.lb-inner img{
  max-width:100%;
  max-height:86vh;
  border-radius:16px;
  display:block;
}
.lb-count{
  position:absolute;
  left:12px; bottom:12px;
  background:rgba(0,0,0,.45);
  color:#fff;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
}
.lb-close{
  position:absolute;
  top:14px; right:14px;
  width:42px; height:42px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
}
.lb-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:46px; height:46px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:28px;
  line-height:1;
  display:flex; align-items:center; justify-content:center;
}
.lb-prev{ left:14px; }
.lb-next{ right:14px; }

/* CONTACT MAP full */
#contact .map-card{ border:0 !important; }
#contact .maps-embed{ width:100%; height:100%; min-height: 320px; }
#contact .maps-embed iframe{ display:block; width:100% !important; height:100% !important; border:0 !important; }
@media (min-width: 992px){
  #contact .maps-embed{ min-height: 100%; }
}

/* =========================
   PREMIUM FOOTER (punyamu)
========================= */
.sp-footer{
  background: radial-gradient(1200px 500px at 20% 0%, rgba(255,255,255,.10), transparent 60%),
              radial-gradient(900px 450px at 90% 30%, rgba(127,178,59,.16), transparent 55%),
              #0b1220;
  color: rgba(255,255,255,.88);
  border-top: 1px solid rgba(255,255,255,.10);
}
.sp-hr{ border-color: rgba(255,255,255,.12) !important; opacity: 1; }
.sp-footer-brand{ color: rgba(255,255,255,.95); }
.sp-footer-title{ font-weight: 800; letter-spacing: .5px; font-size: 18px; line-height: 1.1; }
.sp-footer-subtitle{ font-size: 12px; color: rgba(255,255,255,.65); }

.sp-footer-logo{
  width: 44px; height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.sp-footer-logo--placeholder{
  display: inline-flex;
  align-items:center; justify-content:center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
}
.sp-footer-desc{
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}
.sp-footer-h{ font-weight: 700; color: rgba(255,255,255,.92); margin-bottom: 12px; }
.sp-footer-list{ list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.sp-footer-link{ color: rgba(255,255,255,.72); text-decoration: none; }
.sp-footer-link:hover{ color: rgba(255,255,255,.95); text-decoration: underline; text-underline-offset: 3px; }
.sp-footer-muted{ color: rgba(255,255,255,.65); }

.sp-chip{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.80);
  text-decoration: none;
  font-size: 12px;
}
.sp-chip:hover{
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.95);
}

.sp-trust{ display:flex; flex-wrap:wrap; gap:8px; }
.sp-badge{
  display:inline-flex; align-items:center; gap:6px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.82);
  font-size: 12px;
}
.sp-badge i{ transform: translateY(1px); }

.sp-footer-social{ display:flex; flex-wrap:wrap; gap:10px; }
.sp-social{
  width: 38px; height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  text-decoration: none;
}
.sp-social:hover{
  color: rgba(255,255,255,.98);
  background: rgba(255,255,255,.12);
}
.sp-cta .btn{ border-radius: 14px; }
@media (max-width: 576px){
  .sp-footer{ padding-bottom: 12px; }
}

/* =========================
   Floating Action Buttons (punyamu)
========================= */
.sp-fab{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sp-fab-btn{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  color: #111;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  text-decoration: none;
}
.sp-fab-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,0,0,.16);
}
.sp-fab-wa{
  background: #25D366;
  border-color: rgba(0,0,0,.06);
  color: #fff;
}
.sp-fab-top{
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
}
.sp-fab-top.is-show{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.sp-toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 1060;
  background: rgba(17,17,17,.92);
  color: #fff;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  max-width: calc(100vw - 32px);
  text-align: center;
}
.sp-toast.is-show{
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}
@media (max-width: 576px){
  .sp-fab{ right: 12px; bottom: 12px; }
  .sp-fab-btn{ width: 44px; height: 44px; }
}
/* =========================
   SINGLE PAGE (match Medical Pharmacy theme)
========================= */

/* background single biar nyatu sama home */
body.single-page,
.single-page body{
  background: var(--mp-cream);
}

/* section single */
.single-page .section{
  background: transparent;
}

/* title + meta pills */
.single-title{
  color: var(--mp-ink);
  letter-spacing: -.3px;
  line-height: 1.08;
}

.meta-row .badge{
  border-radius: 999px;
  padding: .45rem .65rem;
  font-weight: 700;
  background: rgba(255,255,255,.82) !important;
  border-color: rgba(0,0,0,.08) !important;
  color: rgba(17,24,39,.72);
}

/* wrapper card content */
.post-wrap{
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 22px 65px rgba(0,0,0,.10);
  overflow: hidden;
}

/* cover image */
.post-cover-wrap{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.06);
}

.post-cover-img{
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
}

/* discount badge on cover */
.post-disc{
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 999px;
  padding: .45rem .6rem;
  font-weight: 800;
}

/* thumbs */
.thumb-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.thumb-btn{
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  transition: transform .18s ease, box-shadow .18s ease;
}

.thumb-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

.thumb-btn img{
  width: 100%;
  height: 78px;
  object-fit: cover;
  display: block;
}

/* content typography */
.post-content{
  color: rgba(17,24,39,.85);
  line-height: 1.8;
  font-size: 16px;
}

.post-content h2, .post-content h3, .post-content h4{
  color: var(--mp-ink);
  font-weight: 900;
  letter-spacing: -.2px;
  margin-top: 1.4rem;
}

.post-content img{
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 16px 45px rgba(0,0,0,.10);
  margin: .75rem 0;
}

/* sidebar sticky */
.sticky-side{
  position: sticky;
  top: 92px;
}

@media (max-width: 991.98px){
  .sticky-side{ position: static; top: auto; }
}

/* sidebar cards match theme */
.single-page .col-lg-4 .card{
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 22px 65px rgba(0,0,0,.10);
}

/* pricing box look */
.single-page .bg-light{
  background: rgba(127,178,59,.08) !important;
  border-color: rgba(127,178,59,.18) !important;
}

/* button pill look (biar sama home) */
.single-page .btn{
  border-radius: 999px !important;
  font-weight: 800;
}

.single-page .btn-success{
  background: var(--mp-green2) !important;
  border: 0 !important;
  box-shadow: 0 14px 28px rgba(0,0,0,.14);
}

.single-page .btn-outline-dark{
  border-width: 2px !important;
}

/* related items */
.rel-item{
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.75);
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease;
}

.rel-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
}

.rel-item img, .rel-ph{
  width: 74px;
  height: 74px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,.08);
  flex: 0 0 auto;
}

.rel-ph{
  background: rgba(0,0,0,.06);
}

.rel-txt{
  min-width: 0;
}

/* mobile thumbs */
@media (max-width: 767.98px){
  .thumb-grid{
    grid-template-columns: repeat(4, 1fr);
  }
  .thumb-btn img{
    height: 64px;
  }
}

/* optional: supaya breadcrumb nya soft */
.single-page .breadcrumb a{
  color: rgba(17,24,39,.72);
}
.single-page .breadcrumb a:hover{
  color: rgba(17,24,39,.95);
}
/* =========================
   FOOTER SOFT DARK (olive, ga terlalu gelap)
========================= */
.sp-footer{
  background:
    radial-gradient(1200px 520px at 18% 0%, rgba(127,178,59,.20), transparent 60%),
    radial-gradient(900px 460px at 92% 30%, rgba(255,255,255,.10), transparent 55%),
    linear-gradient(180deg, #2a3a25 0%, #31442b 45%, #2a3a25 100%) !important;
  color: rgba(255,255,255,.88) !important;
  border-top: 1px solid rgba(255,255,255,.14) !important;
}

/* garis */
.sp-footer .sp-hr{
  border-color: rgba(255,255,255,.18) !important;
  opacity: 1 !important;
}

/* judul */
.sp-footer .sp-footer-title,
.sp-footer .sp-footer-brand,
.sp-footer .sp-footer-h{
  color: rgba(255,255,255,.96) !important;
}

/* teks */
.sp-footer .sp-footer-desc,
.sp-footer .sp-footer-muted{
  color: rgba(255,255,255,.74) !important;
}

/* link */
.sp-footer .sp-footer-link{
  color: rgba(255,255,255,.78) !important;
}
.sp-footer .sp-footer-link:hover{
  color: rgba(255,255,255,.98) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* chips kategori */
.sp-footer .sp-chip{
  background: rgba(255,255,255,.10) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  color: rgba(255,255,255,.82) !important;
}
.sp-footer .sp-chip:hover{
  background: rgba(127,178,59,.22) !important;
  border-color: rgba(127,178,59,.34) !important;
}

/* social icon */
.sp-footer .sp-social{
  background: rgba(255,255,255,.10) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  color: rgba(255,255,255,.86) !important;
}
.sp-footer .sp-social:hover{
  background: rgba(127,178,59,.22) !important;
  border-color: rgba(127,178,59,.34) !important;
}

/* tombol footer */
.sp-footer .btn-sp-primary{
  background: var(--mp-green2) !important;
  border: 0 !important;
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(0,0,0,.22);
}
.sp-footer .btn-sp-outline{
  background: rgba(255,255,255,.08) !important;
  border: 2px solid rgba(127,178,59,.70) !important;
  color: rgba(255,255,255,.92) !important;
}
.sp-footer .btn-sp-outline:hover{
  background: rgba(127,178,59,.18) !important;
  border-color: rgba(127,178,59,.85) !important;
}
