/* Already Have a Reservation Module */
.home-reservation-module {
    background-color: #213b73;
    color: #ffffff;
    padding: 25px 0;
}

.home-reservation-module h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #ffffff;
}

.reservation-items {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.reservation-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
    min-width: 300px;
}

.reservation-item-icon {
    flex-shrink: 0;
}

.reservation-item-icon img {
    width: 80px;
    height: 80px;
    display: block;
}

.reservation-item-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    MARGIN-TOP:0;
    color: #ffffff;
}

.reservation-item-content p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #ffffff;
}

.reservation-item-content a {
    color: #fef100;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s;
}

.reservation-item-content a:hover {
    opacity: 0.8;
}

.reservation-item-content a::after {
    content: '→';
    font-size: 20px;
    transition: transform 0.3s;
}

.reservation-item-content a:hover::after {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .home-reservation-module {
        padding: 25px 15px;
    }

    .reservation-items {
        flex-direction: column;
        gap: 40px;
    }

    .reservation-item {
        min-width: 100%;
    }

    .home-reservation-module h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .reservation-item-content h3 {
        font-size: 20px;
    }

    .reservation-item-icon img {
        width: 80px;
        height: 80px;
    }
}
