:root {
  --luxury-gold: #c5a46d;
  --luxury-blue: #003b5c;
}

/* Buttons */
.btn-luxury {
  background: linear-gradient(135deg, var(--luxury-blue), var(--luxury-gold));
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-luxury:hover {
  background: linear-gradient(135deg, var(--luxury-gold), var(--luxury-blue));
  transform: translateY(-2px);
}

/* Floating Buttons */
#social .fl-fl {
  background: linear-gradient(90deg, var(--luxury-blue), var(--luxury-gold));
  border-radius: 0 30px 30px 0;
  padding: 6px 10px;
  width: 190px;
  position: fixed;
  right: -145px;
  z-index: 1000;
  transition: all 0.35s ease;
  display: flex;
  align-items: center;
}

#social .fl-fl i {
  font-size: 22px;
  width: 40px;
  text-align: center;
}

#social .fl-fl span {
  font-size: 14px;
  font-weight: 600;
}

#social .fl-fl:hover {
  right: -35px;
  transform: scale(1.05);
}

/* Modal */
.glass-form {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.modal-header {
  border: none;
}

.modal-title {
  color: var(--luxury-blue);
  font-weight: 700;
}

/* Floating Labels */
.floating-label {
  position: relative;
  margin-bottom: 25px;
}

.floating-label input {
  border: 2px solid #ccc;
  border-radius: 10px;
  padding: 12px 10px;
  width: 100%;
  transition: 0.3s;
}

.floating-label label {
  position: absolute;
  top: 12px;
  left: 15px;
  color: #777;
  font-size: 14px;
  pointer-events: none;
  transition: 0.3s;
}

.floating-label input:focus {
  border-color: var(--luxury-gold);
  outline: none;
}

.floating-label input:focus + label,
.floating-label input:not(:placeholder-shown) + label {
  top: -10px;
  left: 12px;
  background: white;
  font-size: 12px;
  color: var(--luxury-blue);
  padding: 0 4px;
}

/* Enquiry Buttons */
.container-box {
  position: fixed;
  left: 10px;
  z-index: 99;
}

.rotated {
  transform: rotate(-90deg);
  transform-origin: top left;
}

.container-box {
  top: 70%;
}

.visit {
  top: 45%;
}

/* Responsive */
@media (max-width: 767px) {
  .rotated {
    transform: rotate(0);
    left: auto;
    right: 10px;
  }

  .container-box {
    bottom: 50px;
    top: auto;
  }

  .visit {
    bottom: 110px;
  }

  #social .fl-fl {
    right: 0 !important;
    border-radius: 0;
    width: 50%;
    justify-content: center;
  }
}

/* Container */
.premium-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem;
  flex-wrap: wrap;
}

/* Card Styles */
.lux-card {
  background: linear-gradient(145deg, #fafafa, #ffffff);
  border-radius: 20px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  padding: 2rem 1.5rem;
  width: 270px;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}
.lux-card:hover {
  transform: translateY(-8px);
}

/* Card Header */
.lux-card-header {
  font-size: 1rem;
  font-weight: 600;
  color: #ff6a00;
  border: 1px solid #ff6a00;
  border-radius: 12px;
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 1rem;
}

/* Price */
.lux-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 5px;
}
.lux-onwards {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1rem;
}

/* Size */
.lux-size {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 1.5rem;
}
.lux-size span {
  font-weight: 600;
  color: #111;
}

/* Enquire Button */
.lux-btn {
  background: linear-gradient(270deg, #ff6a00, #ff9c33, #ff6a00);
  background-size: 200% auto;
  color: #fff;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 8px 15px rgba(255, 106, 0, 0.25);
  animation: gradientMove 2s linear infinite;
  transition: all 0.3s ease;
}
.lux-btn:hover,
.lux-btn:active {
  animation-play-state: paused;
  transform: scale(1.05);
}

@keyframes gradientMove {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* ✨ Luxury Floating Image Effect ✨ */
.lux-img {
  display: inline-block;
  border-radius: 2px; /* smooth rounded corners */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); /* light elevation */
  transform: translateY(0);
  transition: all 0.4s ease;
}

/* Hover effect */
.lux-img:hover {
  transform: translateY(-10px) scale(1.03); /* lift & zoom softly */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35); /* deeper shadow */
  filter: brightness(1.05); /* make it pop */
}
