/* Booking Appointment Section */
.booking-appointment-section {
    background-color: var(--primaryColor);
    padding: 80px 0;
    width: 100%;
    overflow: hidden;
}

.booking-container {
    
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    gap: 40px;
}

.booking-content {
    flex: 1;
    max-width: 500px;
}

.booking-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
}

.booking-content h2 .white-text {
    color: #fff;
}

.booking-content h2 .blue-text {
    color: var(--blue);
}

.booking-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
}

.booking-btn {
    background: #fff;
    color: var(--primaryColor);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.booking-btn:hover {
    /* background: transparent; */
    color:var(--blue);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.booking-image {
    flex: 1;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.booking-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 992px) {
    .booking-container {
        flex-direction: column;
        text-align: center;
        padding: 0 30px;
    }
    
    .booking-content h2 {
        font-size: 36px;
    }
    
    .booking-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .booking-image img {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .booking-appointment-section {
        padding: 60px 0;
    }
    
    .booking-content h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .booking-buttons {
        gap: 15px;
    }
    
    .booking-btn {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .booking-container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .booking-content h2 {
        font-size: 24px;
    }
    
    .booking-btn {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .booking-image img {
        max-width: 250px;
    }
}