.gallery {
  padding: 70px 8%;
  background: #000;
  gap: 20px;
  text-align: center;
}

.gallery h2 {
  color: #FFFDD0;
  font-size: clamp(22px,4vw,30px);
  margin-bottom: 40px;
}

.gallery-slider {
  position: relative;
}

.gallery-window {
  overflow: hidden;
  padding: 0 60px;
}

.gallery-track {
  display: flex;
  gap: 20px; 
  transition: transform 0.8s ease;
}

/* EACH IMAGE = 1/3 WIDTH */
.img-box {
  flex: 0 0 calc(100% / 3);
  /* padding: 10px; */
}

.img-box img {
  width: 100%;
  height: 230px;
  gap: 20px;
  object-fit: cover;
  border-radius: 22px;
  /* border: 1px solid rgba(201,162,39,0.35); */
  transition: transform 0.4s ease;
}

.img-box img:hover {
  transform: scale(1.06);
}

/* ARROWS */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0,0,0,0.8);
  border: 1px solid #c9a227;
  color: #c9a227;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
}

.slide-btn.prev { left: 10px; }
.slide-btn.next { right: 10px; }

.slide-btn:hover {
  background: #c9a227;
  color: #000;
}

/* RESPONSIVE */
@media(max-width:1024px){
  .img-box{ flex:0 0 50%; }
}

@media(max-width:600px){
  .img-box{ flex:0 0 100%; }
  .gallery-window{ padding:0; }
  .slide-btn{ display:none; }
}

.float-buttons{
  position: fixed;
  right: 25px;
  bottom: 125px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 9999;
}

/* Common Circle Style */
.float-btn{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* WhatsApp */
.whatsapp{
  background: #25D366;

  color: #fff;
}

.whatsapp:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}
#phone{
  height: 20px;

}
/* Call */
.call{
  background: #1f4037;
  color: #fff;
}

.call:hover{
  transform: translateY(-4px);
  background: #16352d;
}

/* Scroll Button */
.scroll-top{
  background: #333;
  color: #fff;
  font-size: 22px;
}

.scroll-top:hover{
  transform: translateY(-4px);
  background: #000;
}

@media (max-width: 576px){
  .float-buttons{
    right: 15px;
    bottom: 25px;
    gap: 12px;
  }

  .float-btn{
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .float-btn i{
    font-size: 16px;
  }
}