.booking-section {
    position: relative;
    padding: 100px 0;
    background: #000;
    overflow: hidden;
}

.booking-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.booking-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
}

.booking-content {
    position: relative;
    z-index: 10;
}

.booking-header {
    text-align: center;
    margin-bottom: 50px;
}

.booking-title {
    color: #dba849;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.booking-subtitle {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 500;
}

.booking-form-wrapper {
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px 40px;
    border: 2px solid rgba(219,168,73,0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.booking-form .form-label {
    color: #dba849;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
    display: block;
}

.booking-form .form-label .required {
    color: #ff4444;
    margin-left: 5px;
}

.booking-form .form-control,
.booking-form .form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(219,168,73,0.3);
    border-radius: 10px;
    padding: 15px 20px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #dba849;
    box-shadow: 0 0 0 0.25rem rgba(219,168,73,0.15);
    color: #fff;
}

.booking-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.booking-form .form-select option {
    background: #1a1a1a;
    color: #fff;
}

.booking-submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #dba849 0%, #c99235 100%);
    border: none;
    border-radius: 50px;
    color: #000;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(219, 168, 73, 0.4);
    position: relative;
    overflow: hidden;
}

.booking-submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.booking-submit-btn:hover::before {
    width: 400px;
    height: 400px;
}

.booking-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(219, 168, 73, 0.6);
}

.doctor-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.contact-floating {
    position: fixed;
    left: 30px;
    top: 80%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-floating a {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #dba849 0%, #c99235 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.4rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(219, 168, 73, 0.4);
    transition: all 0.3s ease;
}

.contact-floating a:hover {
    transform: scale(1.15) translateX(5px);
    box-shadow: 0 8px 25px rgba(219, 168, 73, 0.6);
}

/* Responsive */
@media (max-width: 991px) {
    .booking-title {
        font-size: 2.2rem;
    }
    
    .booking-form-wrapper {
        padding: 40px 30px;
    }
    
    .doctor-image-wrapper {
        margin-top: 40px;
    }
    
    .contact-floating {
        left: 15px;
        gap: 10px;
    }
    
    .contact-floating a {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .booking-section {
        padding: 60px 0;
    }
    
    .booking-title {
        font-size: 1.8rem;
    }
    
    .booking-subtitle {
        font-size: 1.1rem;
    }
    
    .booking-form-wrapper {
        padding: 30px 20px;
    }
    
    .booking-form .form-control,
    .booking-form .form-select {
        padding: 12px 15px;
    }
    
    .booking-submit-btn {
        padding: 15px;
        font-size: 1.1rem;
    }
}
