/* Section */
.amenities-premium {
    background: #f5f1ea;
    padding: 60px 0;
}

/* Title */
.section-title h2 {
    font-size: 35px;
    font-weight: 600;
    color: #2d2d2d;
}

/* Card */
.amenity-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    position: relative;
    margin-bottom: 30px;
    transition: 0.3s;
    border: 1px solid #e6dcd2;
}

/* Hover */
.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Number Badge */
.amenity-card .count {
    position: absolute;
    top: -12px;
    left: -12px;
    /* background: #5a3b1f; */
    background: #6f2d0a;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon Circle */
.amenity-card .icon {
    width: 70px;
    height: 70px;
    background: #6f2d0a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.amenity-card .icon img {
    width: 36px;
}

/* Title */
.amenity-card h4 {
    /* font-size: 18px; */
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

/* Text */
.amenity-card p {
    /* font-size: 14px; */
    font-size: 17px;
    color: #444;
    margin-bottom: 15px;
}

/* Image */
.card-img img {
    width: 100%;
    border-radius: 12px;
}

/* Responsive */
@media(max-width: 768px){
    .section-title h2 {
        font-size: 24px;
    }
}

.card-img img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
}