@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}
html, body {
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100%;
}
/* * {
  outline: 1px dashed rgba(255,0,0,0.2);
} */


.playfair {
  font-family: "Playfair Display", serif;
}

.hero-bg {
  background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.4) 100%
    ),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23f8f9fa" width="1200" height="800"/><rect fill="%23e9ecef" x="0" y="0" width="400" height="800"/><rect fill="%23dee2e6" x="400" y="0" width="400" height="800"/><rect fill="%23ced4da" x="800" y="0" width="400" height="800"/></svg>');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
}

.fade-in-delay-1 {
  animation-delay: 0.2s;
}
.fade-in-delay-2 {
  animation-delay: 0.4s;
}
.fade-in-delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 0.8s ease-out forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 0.8s ease-out forwards;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hover-scale {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gradient-text {
  background: linear-gradient(135deg, #d4af37, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.property-card {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.property-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37, #ffd700);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.parallax {
  transform: translateZ(0);
  transition: transform 0.1s ease-out;
}

.stats-counter {
  font-size: 3rem;
  font-weight: 700;
  color: #d4af37;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  margin: 1rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

.playfair {
  font-family: "Playfair Display", serif;
}

.hero-bg {
  background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.5) 100%
    ),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23f8f9fa" width="1200" height="800"/><rect fill="%23e9ecef" x="0" y="0" width="300" height="800"/><rect fill="%23dee2e6" x="300" y="0" width="300" height="800"/><rect fill="%23ced4da" x="600" y="0" width="300" height="800"/><rect fill="%23adb5bd" x="900" y="0" width="300" height="800"/></svg>');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
}

.fade-in-delay-1 {
  animation-delay: 0.2s;
}
.fade-in-delay-2 {
  animation-delay: 0.4s;
}
.fade-in-delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Slide in from left */
.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 0.8s ease-out forwards;
  animation-play-state: paused; /* default pause */
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide in from right */
.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 0.8s ease-out forwards;
  animation-play-state: paused;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


.hover-scale {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gradient-text {
  background: linear-gradient(135deg, #c9a96e, #f4d03f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, #c9a96e, #f4d03f);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(201, 169, 110, 0.4);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #c9a96e;
  color: #c9a96e;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #c9a96e;
  color: white;
  transform: translateY(-2px);
}

.amenity-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  margin: 1rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.amenity-card:hover {
  transform: translateY(-5px);
}

.floor-plan-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.floor-plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.price-highlight {
  background: linear-gradient(135deg, #c9a96e, #f4d03f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.sticky-form {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  background: white;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  width: 300px;
  transition: all 0.3s ease;
}

.sticky-form.hidden {
  transform: translateY(-50%) translateX(320px);
}

@media (max-width: 768px) {
  .sticky-form {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    margin: 2rem 0;
  }
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(135deg, #c9a96e, #f4d03f);
  z-index: 50;
  transition: width 0.3s ease;
}

.location-pin {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.glass-card {
  background: rgba(68, 68, 68, 0.08); /* halki transparency */
  backdrop-filter: blur(20px) saturate(180%); /* blur + thoda vibrant colors */
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2); /* soft border */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25); /* depth ke liye shadow */
  transition: all 0.3s ease;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.15); /* hover pe zyada glossy */
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.card {
  perspective: 1000px;
}

.card img {
  transform-style: preserve-3d;
}

.card:hover img {
  transform: rotateY(8deg) rotateX(8deg) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/*  */
.amenity-card {
  animation: bubble 2s ease-in-out infinite;
}

@keyframes bubble {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px) scale(1.05);
  }
}
.amenity-card:nth-child(1) { animation-delay: 0s; }
.amenity-card:nth-child(2) { animation-delay: 0.5s; }
.amenity-card:nth-child(3) { animation-delay: 1s; }
.amenity-card:nth-child(4) { animation-delay: 1.5s; }
.amenity-card:nth-child(5) { animation-delay: 2s; }
.amenity-card:nth-child(6) { animation-delay: 2.5s; }
.amenity-card:nth-child(7) { animation-delay: 3s; }
.amenity-card:nth-child(8) { animation-delay: 3.5s; }

.bg-yellow-400 {
  animation: bubblePulse 2s infinite ease-in-out;
}

@keyframes bubblePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(212, 175, 55, 0.6);
  }
  50% {
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
  }
}

.bg-yellow-400:nth-child(1) { animation-delay: 0s; }
.bg-yellow-400:nth-child(2) { animation-delay: 0.5s; }
.bg-yellow-400:nth-child(3) { animation-delay: 1s; }
.bg-yellow-400:nth-child(4) { animation-delay: 1.5s; }
.bg-yellow-400:nth-child(5) { animation-delay: 2s; }
.bg-yellow-400:nth-child(6) { animation-delay: 2.5s; }
.bg-yellow-400:nth-child(7) { animation-delay: 3s; }
.bg-yellow-400:nth-child(8) { animation-delay: 3.5s; }




.text-red-600 {
  color: #dc2626;
}
.text-xs {
  font-size: 0.75rem;
}
.mt-1 {
  margin-top: 0.25rem;
}


#scrollTopBtn {
    display: none; /* Hide by default */
  }