.cards-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.overlay-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.airbnb-container {
    position: relative;
    z-index: 10000;
    background: white;
    border-radius: 15px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: fadeInScale 0.3s ease-out;
}

.airbnb-header {
    position: sticky;
    top: 0;
    background: white;
    border-radius: 15px 15px 0 0;
    padding: 40px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.airbnb-header .close-btn {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.airbnb-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin: 0;
}

.close-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #f7f7f7;
    color: #717171;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.close-btn:hover {
    background: #e7e7e7;
    color: #484848;
}

.airbnb-content {
    padding: 30px;
}

.service-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.service-card .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.service-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin: 0;
    text-align: center;
}

.service-card .service-icon {
    font-size: 2rem;
    color: #5143d9;
    margin-bottom: 12px;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.90);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}



@media (max-width: 768px) {
    .airbnb-container {
        margin: 10px;
        max-height: 95vh;
    }
    
    .airbnb-header {
        padding: 15px 20px;
    }
    
    .airbnb-content {
        padding: 20px;
    }
    
    .service-card {
        height: 120px;
    }

    .logo-icon {
        width: 175px;
    }
}