/* General Styles */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    overflow: hidden;
}

.section-center {
    position: relative;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
}

#booking {
    background-image: url('../assets/img/bikeimg/4.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-in-out;
}

#booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.booking-form {
    background: rgba(16, 17, 19, 0.9);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.8s ease-out;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h1 {
    font-size: 48px;
    text-transform: uppercase;
    font-weight: 700;
    color: #ffc001;
    margin: 0;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.form-header p {
    color: #fff;
    font-size: 16px;
    margin-top: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    background-color: rgba(245, 245, 245, 0.9);
    border: none;
    height: 50px;
    border-radius: 8px;
    box-shadow: none;
    font-weight: 400;
    color: #101113;
    padding: 0 20px;
    width: 100%;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    box-shadow: 0 0 8px rgba(255, 192, 1, 0.6);
    transform: scale(1.02);
}

.form-control::placeholder {
    color: rgba(16, 17, 19, 0.5);
}

.select-arrow {
    position: absolute;
    right: 15px;
    bottom: 15px;
    pointer-events: none;
    color: #101113;
}

.submit-btn {
    color: #101113;
    background-color: #ffc001;
    font-weight: 700;
    height: 50px;
    border: none;
    width: 100%;
    display: block;
    border-radius: 8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 192, 1, 0.4);
}

.submit-btn:hover {
    background-color: #e0a800;
    box-shadow: 0 6px 20px rgba(255, 192, 1, 0.6);
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-header h1 {
        font-size: 36px;
    }

    .booking-form {
        padding: 20px;
    }

    .form-control {
        height: 45px;
    }
}