/* Banner Quick Booking Component Styles */
.banner-quick-booking-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    overflow: hidden;
}

.banner-quick-booking-wrapper {
    position: relative;
    width: 100%;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.banner-quick-booking-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-quick-booking-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 42, 58, 0.85) 0%, rgba(26, 42, 58, 0.65) 100%);
}

.banner-quick-booking-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px 0;
}

.banner-quick-booking-text {
    max-width: 600px;
}

.banner-quick-booking-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner-quick-booking-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: var(--blue-accent-light);
    margin-bottom: 20px;
}

.banner-quick-booking-description {
    font-size: 18px;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.banner-quick-booking-form-wrapper {
    background: rgba(26, 42, 58, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.banner-quick-booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.banner-quick-booking-form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.banner-quick-booking-form-field label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.banner-quick-booking-form-field label i {
    color: var(--blue-accent-light);
    font-size: 18px;
}

.banner-quick-booking-form-field input {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.banner-quick-booking-form-field input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(74, 144, 226, 0.5);
}

.banner-quick-booking-form-field input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.banner-quick-booking-submit {
    padding: 18px 40px;
    background: var(--gradient-blue-accent);
    border: 1px solid rgba(74, 144, 226, 0.6);
    border-radius: 50px;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.banner-quick-booking-submit:hover {
    background: var(--gradient-blue-4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .banner-quick-booking-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .banner-quick-booking-wrapper {
        min-height: 500px;
    }

    .banner-quick-booking-title {
        font-size: 36px;
    }

    .banner-quick-booking-subtitle {
        font-size: 20px;
    }

    .banner-quick-booking-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .banner-quick-booking-title {
        font-size: 28px;
    }

    .banner-quick-booking-subtitle {
        font-size: 18px;
    }

    .banner-quick-booking-form-wrapper {
        padding: 30px 20px;
    }
}
