        .nav-logo {
    max-height: 115px;
    width: auto;
}


.footer-logo {
    height: 100px;
    width: auto;
}

.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 20px;
    left: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    line-height: 55px;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    color: #fff;
}


.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 220px; /* same height for all */
    object-fit: cover; /* crop karega but clean dikhega */
    display: block;
    transition: 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}


/* Section Spacing */
.container-xxl {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Section Title */
.section-title {
    letter-spacing: 1px;
    font-weight: 600;
}

/* ================== AMENITIES ================== */
.amenities .col-md-3 {
    background: #fff;
    padding: 25px 15px;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.amenities .col-md-3:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.amenities i {
    font-size: 30px;
}

/* ================== ROOM DETAILS ================== */
.room-details ul li {
    font-size: 16px;
    margin-bottom: 10px;
}

.room-details i {
    color: #0d6efd;
}

/* ================== FEATURES ================== */
.features .col-md-4 {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.features .col-md-4:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.features i {
    font-size: 35px;
}

/* ================== CTA ================== */
.cta-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('img/room-1.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    border-radius: 10px;
    padding: 60px 20px;
}

.cta-section h1 {
    font-weight: 700;
}

.cta-section .btn {
    font-size: 18px;
    border-radius: 8px;
    transition: 0.3s;
}

.cta-section .btn:hover {
    transform: scale(1.05);
}

/* ================== RESPONSIVE ================== */
@media (max-width: 768px) {
    .amenities .col-md-3,
    .features .col-md-4 {
        margin-bottom: 15px;
    }
}


.facility-card {
    transition: 0.3s;
    border-radius: 12px;
}
.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.facility-icon {
    width: 35px;
}
.facility-bg {
    background: #f8f9fa;
}