[x-cloak] { display: none !important; }

/* ===== Hero ===== */
.hero-gradient {
  background: linear-gradient(135deg, rgba(15,15,26,0.7) 0%, rgba(139,26,26,0.4) 100%);
}

/* ===== Glass effects ===== */
.glass {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
}

.glass-light {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,0,0,0.06);
}

/* ===== Cards ===== */
.card-hover {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px -12px rgba(0,0,0,0.15);
}

/* ===== Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.tag-badge {
  background: linear-gradient(135deg, #8B1A1A, #a52a2a);
}

html {
  scroll-behavior: smooth;
}

/* ===== Property image zoom ===== */
.prop-img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.group:hover .prop-img {
  transform: scale(1.08);
}

/* ===== Navbar ===== */
.nav-blur {
  backdrop-filter: blur(16px);
  background: rgba(255,255,255,0.85);
}
.nav-blur.scrolled {
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}

/* ===== Float animation ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float-anim {
  animation: float 6s ease-in-out infinite;
}

/* ===== WhatsApp Widget ===== */
.wa-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
}

.wa-btn {
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  outline: none;
}
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}
.wa-btn i {
  color: white;
  font-size: 28px;
}

.wa-popup {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 320px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  overflow: hidden;
  transform: scale(0.8) translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: bottom right;
}
.wa-popup.active {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.wa-popup-header {
  background: #075e54;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-popup-header img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.wa-popup-header-info h4 {
  color: white;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}
.wa-popup-header-info p {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  margin: 2px 0 0;
}

.wa-popup-body {
  padding: 20px;
  background: #e5ddd5;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h100v100H0z' fill='%23e5ddd5'/%3E%3Cpath d='M20 20h2v2h-2zM40 40h2v2h-2zM60 60h2v2h-2zM80 80h2v2h-2z' fill='%23d4ccb5' opacity='.3'/%3E%3C/svg%3E");
}

.wa-message {
  background: white;
  padding: 12px 16px;
  border-radius: 0 12px 12px 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
  max-width: 85%;
}

.wa-popup-footer {
  padding: 16px 20px;
  background: white;
}

.wa-chat-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: #25d366;
  color: white;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.wa-chat-link:hover {
  background: #1fa855;
}

/* ===== Responsive fixes ===== */
@media (max-width: 640px) {
  .wa-popup {
    width: 290px;
    right: -8px;
  }
}
