/* Booking System Styles */

.booking-section {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.booking-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.booking-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.booking-shape-1 {
    width: 300px;
    height: 300px;
    background-color: var(--primary-color);
    top: -100px;
    right: -100px;
}

.booking-shape-2 {
    width: 200px;
    height: 200px;
    background-color: var(--accent-color);
    bottom: -50px;
    left: -50px;
}

.booking-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .booking-container {
        flex-direction: row;
    }
}

.booking-info {
    flex: 1;
}

.booking-info-header {
    margin-bottom: 25px;
}

.booking-info-header h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.booking-info-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.booking-benefits {
    margin-top: 30px;
}

.booking-benefits h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-benefits h4 i {
    color: var(--primary-color);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.benefit-content h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.benefit-content p {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.8;
}

.booking-widget {
    flex: 1;
    background-color: var(--bg-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.booking-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.booking-widget h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.booking-widget p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 25px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-color);
}

.form-group select,
.form-group input {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: var(--bg-color);
    color: var(--text-color);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group select:focus,
.form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 576px) {
    .form-row {
        flex-direction: row;
    }
    
    .form-row .form-group {
        flex: 1;
    }
}

.booking-form button {
    margin-top: 10px;
    padding: 14px;
    border: none;
    border-radius: var(--border-radius);
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.booking-form button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.booking-form button i {
    font-size: 1.1rem;
}

.booking-note {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    color: var(--text-color);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.booking-note i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 2px;
}

/* Dark mode adjustments */
html[data-theme="dark"] .booking-widget {
    background-color: var(--bg-dark);
}

html[data-theme="dark"] .form-group select,
html[data-theme="dark"] .form-group input {
    background-color: var(--bg-dark);
    border-color: var(--border-color);
}

/* Success message */
.booking-success {
    display: none;
    text-align: center;
    padding: 30px 20px;
}

.booking-success.show {
    display: block;
}

.booking-success i {
    font-size: 3rem;
    color: #2ecc71;
    margin-bottom: 20px;
}

.booking-success h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.booking-success p {
    margin-bottom: 25px;
}

.booking-success .details {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
    text-align: left;
}

.booking-success .details p {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.booking-success .details p span:last-child {
    font-weight: 600;
}

.booking-success .btn {
    display: inline-block;
}
