/* booking-section.css - Add this to your project's css folder */

.booking-section {
    padding: 80px 0;
    background-color: #f8fafc;
    position: relative;
}

    .booking-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    }

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.booking-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.booking-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .booking-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

.booking-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(77, 127, 122, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .booking-icon i {
        color: var(--primary-color);
        width: 28px;
        height: 28px;
    }

.booking-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.booking-card p {
    color: #64748b;
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.booking-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    color: #64748b;
    font-size: 0.9rem;
}

.booking-duration {
    display: flex;
    align-items: center;
    gap: 5px;
}

    .booking-duration i {
        width: 16px;
        height: 16px;
        color: var(--primary-color);
    }

.btn-book {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

    .btn-book:hover {
        background-color: var(--secondary-color);
        transform: translateY(-2px);
    }

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .booking-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .booking-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .booking-options {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .booking-card {
        padding: 25px;
    }
}

@media screen and (max-width: 480px) {
    .booking-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .booking-card {
        padding: 20px;
    }

        .booking-card h3 {
            font-size: 1.2rem;
        }

    .btn-book {
        width: 100%;
        padding: 10px;
        font-size: 0.9rem;
    }
}
