
        /* hotel details */
        .hotel-main-content {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 30px;
            padding:100px 0 30px 0;
        }

        /* Hotel Info */
        .hotel-detail-title {
            font-size: 32px;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .hotel-location {
            color: #7f8c8d;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .stars {
            color: #f1c40f;
        }

        .rating-badge {
            background: #2c3e50;
            color: white;
            padding: 3px 10px;
            border-radius: 20px;
            font-weight: 600;
        }

        /* Gallery */
        .gallery {
            margin-bottom: 30px;
        }

        .main-image {
            width: 100%;
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 10px;
        }

        .main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .thumbnails {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }

        .thumbnail {
            height: 80px;
            border-radius: 5px;
            overflow: hidden;
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .thumbnail:hover {
            opacity: 1;
        }

        .thumbnail.active {
            opacity: 1;
            border: 2px solid #1a5fb4;
        }

        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Sections */
        .hotel-section {
            background: white;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }

        .hotel-section-title {
            font-size: 20px;
            color: #2c3e50;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hotel-section-title svg {
            color: #1a5fb4;
        }

        /* Overview */
        .overview-text {
            color: #555;
            line-height: 1.8;
        }

        /* Amenities */
        .amenities-grid {
            display: inline-block;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }

        .amenity {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 8px;
        }

        .amenity svg {
            color: #1a5fb4;
            width: 20px;
        }


        /* Booking Form Sidebar */
        .booking-sidebar {
            position: sticky;
            top: 20px;
            height: fit-content;
        }

        .booking-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 20px;
        }

        .booking-title {
            font-size: 22px;
            color: #2c3e50;
            margin-bottom: 20px;
            text-align: center;
        }

        .price-display {
            text-align: center;
            margin-bottom: 25px;
        }

        .price {
            font-size: 36px;
            font-weight: 700;
            color: #2c3e50;
        }

        .price-unit {
            color: #7f8c8d;
            display: block;
            margin-top: 5px;
        }

        .form-group {
            margin-bottom: 6px;
        }

        .form-label {
            display: block;
            margin-bottom: 1px;
            font-weight: 600;
            color: #2c3e50;
            font-size: 13.5px;
        }

        .hotel-form-input {
            width: 100%;
    	    height: 40px !important;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
            font-size: 16px;
        }

        .hotel-form-input:focus {
            outline: none;
            border-color: #1a5fb4;
        }


        .guest-selector {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 6px 15px;
        }

        .guest-btn {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 1px solid #ddd;
            background: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .guest-btn:hover {
            background: #f8f9fa;
        }

        .guest-count {
            font-weight: 600;
            font-size: 18px;
        }

        .book-btn {
            width: 100%;
            background: linear-gradient(135deg, #eab308 0%, #d97706 100%);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 5px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 10px;
        }


        /* Contact Card */
        .contact-card {
            text-align: center;
        }

        .contact-phone {
            font-size: 24px;
            color: #2c3e50;
            margin: 15px 0;
        }

        .whatsapp-btn {
            background: #098a39;
            font-size: 18px;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 5px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 10px;
            transition: background 0.3s;
        }
 .whatsapp-btn a {
color: white;
}



        /* Responsive Design */
        @media (max-width: 992px) {
            .hotel-main-content {
                grid-template-columns: 1fr;
            }

            .booking-sidebar {
                position: static;
                order: -1;
            }

            .main-image {
                height: 350px;
            }
        }

        @media (max-width: 768px) {
            .hotel-title {
                font-size: 28px;
            }

            .main-image {
                height: 300px;
            }

            .thumbnails {
                grid-template-columns: repeat(2, 1fr);
            }

            .amenities-grid {
                grid-template-columns: 1fr;
            }

        }

        @media (max-width: 480px) {
            .hotel-title {
                font-size: 24px;
            }

            .main-image {
                height: 250px;
            }

            .hotel-section {
                padding: 20px;
            }

            .booking-card {
                padding: 20px;
            }

            .price {
                font-size: 32px;
            }
        }

.price.on-request {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e11d48;
}


.alignnone{
width: 100%;
    height: 100%;
}

