body{
  margin:0;
  font-family:Poppins, Arial;
}

header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 40px;
  background:#800000;
  color:white;
  position:sticky;
  top:0;
}

.logo{
  display:flex;
  align-items:center;
}

.logo img{
  height:60px;
  margin-right:10px;
}

nav a{
  color:white;
  margin:0 15px;
  text-decoration:none;
  font-weight:bold;
}

.hero{
  background:url('images/building.jpg') center/cover;
  color:white;
  padding:150px 20px;
  text-align:center;
}

.btn{
  background:orange;
  padding:12px 25px;
  display:inline-block;
  margin-top:20px;
  cursor:pointer;
}

.section{
  padding:60px 40px;
  text-align:center;
}

.cards{
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

.card{
  width:300px;
  box-shadow:0 0 10px #ccc;
  padding:15px;
  border-radius:10px;
}

.card img{
  width:100%;
  border-radius:10px;
}

.gallery{
  display:flex;
  gap:15px;
  justify-content:center;
  flex-wrap:wrap;
}

.gallery img{
  width:250px;
  border-radius:10px;
}

.video{
  margin-top:30px;
}

.contact form{
  display:flex;
  flex-direction:column;
  max-width:400px;
  margin:auto;
}

.contact input,
.contact textarea{
  margin:10px 0;
  padding:10px;
}

footer{
  background:#222;
  color:white;
  text-align:center;
  padding:20px;
}


/* Amenities Section */

.amenities-section{
  background:#eef2f6;
  padding:80px 40px;
  text-align:center;
}

.amenities-title{
  font-size:36px;
  margin-bottom:50px;
  color:#1d3557;
}

.amenities-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:40px;
  max-width:1100px;
  margin:auto;
}

.amenity{
  text-align:center;
}

.icon{
  width:90px;
  height:90px;
  background:#0b2a4a;
  color:white;
  font-size:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  margin:0 auto 15px;
  transition:0.3s;
}

.icon:hover{
  background:#e63946;
  transform:scale(1.1);
}

.amenity p{
  font-weight:500;
  color:#333;
}

/* ===== FOOTER ===== */

.svs-footer{
  background:#16345b;
  color:white;
  padding:60px 40px 20px;
}

.footer-container{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:40px;
  max-width:1200px;
  margin:auto;
}

.footer-col p,
.footer-col a{
  margin:12px 0;
  color:white;
  text-decoration:none;
  display:block;
  font-size:15px;
}

.footer-col a:hover{
  text-decoration:underline;
}

.address{
  margin-top:20px;
  line-height:1.6;
}

.social-icons{
  margin-top:15px;
}

.social-icons a{
  display:inline-block;
  width:35px;
  height:35px;
  line-height:35px;
  text-align:center;
  border:1px solid white;
  border-radius:50%;
  margin-right:10px;
  font-weight:bold;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.3);
  margin-top:40px;
  padding-top:20px;
  text-align:center;
  font-size:14px;
}

.footer-bottom a{
  color:white;
  text-decoration:underline;
}

/* Mobile Responsive */

@media(max-width:768px){

  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }

}


/* ===================================
   WhatsApp Floating Button
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--text-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
}