
.showcase-slider{
  position:relative;
  width:100%;
  height:460px;
  overflow:hidden;
  background:var(--popup-navy);
}

.showcase-track{ position:absolute; inset:0; }

.showcase-slide{
  position:absolute; inset:0;
  opacity:0;
  transition:opacity 1.2s ease;
}
.showcase-slide.is-active{ opacity:1; z-index:1; }

.showcase-img{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1);
  animation:showcaseZoom 8s ease forwards;
}
@keyframes showcaseZoom{
  from{ transform:scale(1); }
  to{ transform:scale(1.12); }
}

.showcase-shade{
  position:absolute; inset:0; z-index:2;
  background:linear-gradient(90deg, rgba(15,27,61,.92) 0%, rgba(15,27,61,.55) 45%, rgba(15,27,61,.25) 100%);
}

.showcase-content{
  position:absolute; z-index:3;
  left:6%; top:50%; transform:translateY(-50%);
  max-width:480px;
  color:#fff;
}
.showcase-eyebrow{
  font:600 12px/1 'Inter',sans-serif;
  letter-spacing:.08em; text-transform:uppercase;
  color:var(--popup-gold);
  margin:0 0 14px;
}
.showcase-title{
  font:700 34px/1.3 'Sora',sans-serif;
  margin:0 0 26px;
}
.showcase-cta{
  display:inline-flex; align-items:center; gap:8px;
  padding:14px 26px;
  border-radius:10px;
  background:linear-gradient(135deg, var(--popup-blue), #2450D6);
  color:#fff; text-decoration:none;
  font:600 14px 'Inter',sans-serif;
  box-shadow:0 10px 24px rgba(61,107,255,.35);
  transition:transform .15s, box-shadow .15s;
}
.showcase-cta:hover{ transform:translateY(-2px); box-shadow:0 14px 28px rgba(61,107,255,.45); }

.showcase-arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  z-index:4;
  width:44px; height:44px; border-radius:50%;
  border:1px solid rgba(255,255,255,.3);
  background:rgba(255,255,255,.08);
  color:#fff; font-size:24px; line-height:1;
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s;
}
.showcase-arrow:hover{ background:rgba(255,255,255,.22); }
.showcase-arrow-left{ left:24px; }
.showcase-arrow-right{ right:24px; }

.showcase-dots{
  position:absolute; z-index:4;
  bottom:24px; left:50%; transform:translateX(-50%);
  display:flex; gap:8px;
}
.showcase-dots .dot{
  width:8px; height:8px; border-radius:50%;
  background:rgba(255,255,255,.4);
  cursor:pointer;
  transition:background .2s, width .2s;
}
.showcase-dots .dot.is-active{
  background:var(--popup-gold);
  width:22px; border-radius:4px;
}

@media (max-width:768px){
  .showcase-slider{ height:380px; }
  .showcase-title{ font-size:24px; }
  .showcase-content{ left:6%; max-width:88%; }
  .showcase-arrow{ display:none; }
}
/* FOOTER */
.footer{
  background: linear-gradient(120deg,#f8fafc,#eef2ff,#fff7ed);
  padding:60px 20px 20px;
}

/* GRID */
.footer-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
  max-width:1200px;
  margin:auto;
}

/* BOX */
.footer-box h2,
.footer-box h3{
  color:#1e293b;
  margin-bottom:15px;
}

.footer-box p{
  color:#64748b;
  font-size:14px;
  line-height:1.6;
}

/* LINKS */
.footer-box ul{
  list-style:none;
}

.footer-box ul li{
  margin-bottom:8px;
}

.footer-box ul li a{
  text-decoration:none;
  color:#64748b;
  font-size:14px;
  transition:0.3s;
}

.footer-box ul li a:hover{
  color:#f97316;
  padding-left:5px;
}

/* SOCIAL */
.footer-social{
  text-align:center;
  margin-top:30px;
}

.footer-social a{
  font-size:20px;
  margin:0 10px;
  text-decoration:none;
  color:#1e3a8a;
  transition:0.3s;
}

.footer-social a:hover{
  color:#f97316;
  transform:scale(1.2);
}

/* BOTTOM */
.footer-bottom{
  text-align:center;
  margin-top:20px;
  font-size:13px;
  color:#64748b;
  border-top:1px solid #ddd;
  padding-top:15px;
}
.whatsapp-float{
    position: fixed;
    right: 25px;
    bottom: 95px;   /* Keeps it just above the footer area */
    width: 65px;
    height: 65px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: 0.3s ease;
}

.whatsapp-float:hover{
    transform: scale(1.1);
    color: #fff;
    background: #20ba5a;
}

@media (max-width:768px){
    .whatsapp-float{
        width: 58px;
        height: 58px;
        font-size: 30px;
        right: 18px;
        bottom: 85px;
    }
}