/* Booking Section */
.booking-two {
    padding: 60px 0;
}

/* Main Container */
.main-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Column Width */
@media (min-width: 1200px) {
    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.6666666667%;
    }
}

/* Booking Right Section */
.booking-two__right {
    position: relative;
    display: block;
    margin-left: -120px;
    transform: translate(0px, 0px);
    opacity: 1;
    visibility: inherit;
}

/* Image Section */
.booking-two__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--gorent-bdr-radius);
}
.booking-two__img img {
    width: 100%;
    border-radius: var(--gorent-bdr-radius);
}

/* Form Section */
.form-section {
    flex: 1;
    padding: 0;
}
.image-section {
    flex: 1;
    background: url('assets/images/resources/booking-two-img-1.jpg');
    min-height: 600px;
    position: relative;
}

/* Form Header */
.form-header {
    background: var(--gorent-base);
    color: white;
    padding: 30px;
    text-align: center;
}
.form-header h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Form Body */
.form-body {
    padding: 40px 30px;
}

/* Tabs */
.nav-tabs {
    border: none;
    border-radius: 10px;
    padding: 5px;
    margin-bottom: 30px;
    background: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
}
.nav-tabs .nav-link {
    border: none;
    border-radius: 8px 8px 0 0;
    padding: 12px 25px;
    font-weight: 600;
    color: #666;
    margin-right: 5px;
    transition: all 0.3s ease;
}
.nav-tabs .nav-link.active {
    background: var(--gorent-base);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}
.nav-tabs .nav-link:hover {
    color: var(--gorent-base);
    background-color: rgba(102, 126, 234, 0.1);
}
.nav-tabs .nav-link.active:hover {
    color: white;
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
    position: relative;
}
.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.form-group label i {
    margin-right: 10px;
    color: var(--gorent-base);
    width: 16px;
}
.form-control {
    border: 2px solid #e0e6ed;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    background: white;
    transition: all 0.3s ease;
}
.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    background-color: white;
}
.form-control::placeholder {
    color: #aaa;
}

/* Buttons */
.btn-book,
.btn-default {
    background: var(--gorent-base);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    text-transform: uppercase;
}
.btn-book:hover,
.btn-default:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Booking Result */
.result {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
    font-weight: 500;
}
.result.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}
.result.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}
.card-body {
    padding: 40px;
}

/* Booking Title */
.booking-title {
    text-align: center;
    margin-bottom: 40px;
}
.booking-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}
.booking-title-shape {
    width: 60px;
    height: 4px;
    background: white;
    margin: 0 auto;
    border-radius: 2px;
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.tab-content {
    animation: fadeIn 0.5s ease-in-out;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .main-container {
        margin: 20px;
    }
}
@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
        margin: 20px;
    }
    .image-section {
        min-height: 250px;
        order: -1;
    }
    .form-header h2 {
        font-size: 24px;
    }
    .form-body {
        padding: 30px 20px;
    }
    .card-body {
        padding: 20px;
    }
    .booking-title h2 {
        font-size: 2rem;
    }
    .nav-tabs .nav-link {
        padding: 10px 15px;
        margin-right: 2px;
    }
}
