.gallery-swiper {
    width: 100%;
    height: 400px;
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
}
.gallery-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}
.gallery-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px 20px;
    border-radius: 5px;
}
.gallery-swiper .swiper-button-next:after,
.gallery-swiper .swiper-button-prev:after {
    font-size: 20px;
}
.gallery-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.7;
}
.gallery-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}
.price-info {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a75ff;
}
.booking-widget {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.feature-icon {
    font-size: 1.2rem;
    color: #1a75ff;
}

@media (max-width: 768px) {
    .gallery-swiper .swiper-button-next,
    .gallery-swiper .swiper-button-prev {
        padding: 20px 15px;
        transform: scale(0.8);
    }

    .gallery-swiper {
        height: 300px; /* Smaller height for mobile */
    }

    .modal-fullscreen {
        width: 100%; /* Full width on mobile */
        height: 100%; /* Full height on mobile */
        margin: 0; /* No margin */
        border-radius: 0; /* Square corners */
    }

    #map {
        height: 100%; /* Full height for map on mobile */
    }
    .float-end {
        margin-left: 10px; /* Adjust margin to ensure spacing */
    }
}

@media (min-width: 769px) {
    .modal-fullscreen {
      width: 80%;
      height: auto;
      margin: 50px auto 0 auto; /* 50px margin on top */
      border-radius: 0;
    }
  
    #map {
      height: 500px !important;  /* Force height on PC */
      width: 100%;
      max-height: none; /* Remove potential conflicts with max-height */
    }
  }
  
  
  /*New Room Types and Prices */
   .hotel-card {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            
        }

        h2 a {
            color: #0071c2;
            text-decoration: none;
        }

        .price-for, .bed {
            font-size: 14px;
            color: #555;
        }

        .features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 10px;
        }

        .features span {
            background: #eee;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 12px;
        }

        .benefits {
            list-style: none;
            padding: 0;
            margin-top: 10px;
        }

        .benefits li {
            font-size: 14px;
            margin: 5px 0;
            color: #008000;
        }

        .benefits i {
            color: #008000;
            margin-right: 5px;
        }

        .pricing {
            margin-top: 10px;
            text-align: center;
        }

        .deal-tag {
            background: #008000;
            color: white;
            padding: 5px 10px;
            font-size: 12px;
            border-radius: 5px;
        }

        .old-price {
            text-decoration: line-through;
            color: red;
            font-size: 14px;
        }

        .new-price {
            font-size: 20px;
            font-weight: bold;
        }

        .taxes {
            font-size: 12px;
            color: #777;
        }

        .reserve-btn {
            background: #0071c2;
            color: white;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            margin-top: 10px;
            border-radius: 5px;
        }

        .reserve-btn:hover {
            background: #005ea6;
        }
        
        .amenities {
            display: flex;               /* Use flexbox for layout */
            flex-wrap: wrap;            /* Allow items to wrap */
            gap: 5px;                   /* Reduced space between items */
            margin-top: 10px;           /* Space above the amenities section */
        }

        .amenities div {
            display: flex;              /* Flexbox for each amenity item */
            align-items: center;        /* Center items vertically */
            background: #f8f9fa;       /* Light background for each item */
            padding: 3px 8px;          /* Reduced padding for each item */
            border-radius: 5px;        /* Rounded corners */
            font-size: 12px;           /* Smaller font size for text */
            color: #333;               /* Text color */
        }

        .amenities i {
            margin-right: 3px;         /* Space between icon and text */
            color: #0071c2;            /* Icon color */
            font-size: 0.9rem;           /* Smaller icon size */
        }