/* Section Title */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #111;
    font-weight: 700;
    text-align: center;
}

/* Tabs */
.tabs {
    text-align: center;
    margin-bottom: 50px;
}

.tab-btn {
    background: #fff;
    color: #007bff;
    border: 2px solid #007bff;
    border-radius: 6px;
    padding: 10px 25px;
    margin: 0 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: #007bff;
    color: #fff;
}

.tab-btn.active {
    background: #007bff;
    color: #fff;
}

/* Grid Layout */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.amenities-grid.active {
    opacity: 1;
    transform: translateY(0);
}

/* Cards */
.amenity-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
    cursor: default;
}

.amenity-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* Icon */
.icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #007bff;
}

/* Card Title */
.amenity-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #222;
}

/* Card Description */
.amenity-card p {
    color: #555;
    line-height: 1.6;
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .tab-btn {
        margin: 10px 5px;
    }
}
