/* ===== Premium Skewed Gallery ===== */
.premium-gallery {
  padding: 50px 0;
  background: #000;
  overflow: hidden; /* Prevent scroll from skew overflow */
}

.premium-gallery .container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 5vmin;
  transform: skew(5deg);
  overflow: hidden;
}

.premium-gallery .container .card {
  flex: 1;
  transition: all 0.8s ease-in-out;
  height: 75vmin;
  position: relative;
  margin-right: 1em;
  cursor: pointer;
}

.premium-gallery .container .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.8s ease-in-out;
}

.premium-gallery .container .card .card__head {
  color: black;
  background: rgba(224,150,56,0.75);
  padding: 0.5em;
  transform: rotate(-90deg);
  transform-origin: 0% 0%;
  transition: all 0.5s ease-in-out;
  min-width: 100%;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 1em;
  white-space: nowrap;
}

/* Hover effects */
.premium-gallery .container .card:hover {
  flex-grow: 10;
}

.premium-gallery .container .card:hover img {
  filter: grayscale(0%);
}

.premium-gallery .container .card:hover .card__head {
  text-align: center;
  top: calc(100% - 2em);
  color: #fff;
  background: rgba(0,0,0,0.5);
  font-size: 2em;
  transform: rotate(0deg) skew(-5deg);
}

/* ===== Responsive Adjustments ===== */
@media(max-width: 1024px) {
  .premium-gallery .container {
    flex-direction: column; /* Stack cards vertically */
    transform: none; /* Remove skew */
    margin: 0 2vmin;
  }

  .premium-gallery .container .card {
    flex-grow: 1 !important; /* Disable hover expand */
    margin-right: 0;
    margin-bottom: 20px;
    height: 50vmin;
  }

  .premium-gallery .container .card:hover {
    flex-grow: 1 !important;
  }

  .premium-gallery .container .card .card__head {
    transform: rotate(0deg);
    font-size: 1.5em;
    background: rgba(224,150,56,0.75);
    white-space: normal; /* Wrap text if needed */
  }

  .premium-gallery .container .card:hover .card__head {
    font-size: 1.5em;
    background: rgba(0,0,0,0.5);
  }
}

@media(max-width: 600px){
  .premium-gallery .container .card {
    height: 35vmin;
  }

  .premium-gallery .container .card .card__head {
    font-size: 1.2em;
  }
}
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(135deg, #e09638, #f5b96a);
  color: #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  box-shadow: 0 6px 25px rgba(224,150,56,0.45);
  z-index: 999;
  transition: all 0.35s ease;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 0 30px rgba(224,150,56,0.7);
  background: linear-gradient(135deg, #f5b96a, #e09638);
}

.whatsapp-float i {
  line-height: 1;
}
