/* ===================================
   CONSULTATION BOOKING PAGE STYLES
   =================================== */

.consultation-booking-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f0fdfa 0%, #e0f2fe 50%, #f0f9ff 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.consultation-booking-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(40, 233, 193, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(60, 199, 113, 0.1) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.consultation-booking-page .container {
    position: relative;
    z-index: 1;
}

/* Back Link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #28E9C1;
    gap: 12px;
}

.back-link i {
    font-size: 18px;
}

/* Left Side - Information */
.consultation-info-side {
    padding-right: 40px;
}

.consultation-info-content {
    position: sticky;
    top: 100px;
}

.consultation-icon-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28E9C1 0%, #3CC771 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(40, 233, 193, 0.3);
}

.consultation-icon-badge i {
    font-size: 40px;
    color: #fff;
}

.consultation-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.2;
}

.consultation-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Benefits Section */
.consultation-benefits-section {
    margin-bottom: 35px;
}

.benefits-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    border-color: #28E9C1;
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(40, 233, 193, 0.1);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(40, 233, 193, 0.1) 0%, rgba(60, 199, 113, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefits-list li:hover .benefit-icon {
    background: linear-gradient(135deg, #28E9C1 0%, #3CC771 100%);
}

.benefit-icon i {
    font-size: 24px;
    color: #28E9C1;
    transition: color 0.3s ease;
}

.benefits-list li:hover .benefit-icon i {
    color: #fff;
}

.benefits-list li h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.benefits-list li p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Response Info Card */
.response-info-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(40, 233, 193, 0.1) 0%, rgba(60, 199, 113, 0.1) 100%);
    border-radius: 15px;
    border: 2px solid rgba(40, 233, 193, 0.3);
    margin-bottom: 30px;
}

.response-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #28E9C1 0%, #3CC771 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.response-icon i {
    font-size: 24px;
    color: #fff;
}

.response-info-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.response-info-card p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

/* Trust Badges */
.trust-badges-section {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.3s ease;
}

.trust-badge-item:hover {
    border-color: #28E9C1;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(40, 233, 193, 0.2);
}

.trust-badge-item i {
    color: #28E9C1;
    font-size: 18px;
}

/* Right Side - Form */
.consultation-form-side {
    padding-left: 20px;
}

.consultation-form-wrapper {
    background: #fff;
    border-radius: 25px;
    padding: 45px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
}

/* Form Sections */
.form-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid #f1f5f9;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 30px;
    padding-bottom: 0;
}

.form-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-section-title i {
    color: #28E9C1;
    font-size: 24px;
}

/* Form Controls */
.consultation-label {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: block;
}

.required {
    color: #ef4444;
}

.consultation-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    color: #1e293b;
    transition: all 0.3s ease;
    background: #fff;
}

.consultation-input:focus {
    border-color: #28E9C1;
    outline: none;
    box-shadow: 0 0 0 4px rgba(40, 233, 193, 0.1);
}

.consultation-input::placeholder {
    color: #94a3b8;
}

textarea.consultation-input {
    resize: vertical;
    min-height: 120px;
}

select.consultation-input {
    cursor: pointer;
}

/* Time Zone Note */
.time-zone-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(40, 233, 193, 0.05) 0%, rgba(60, 199, 113, 0.05) 100%);
    border-radius: 10px;
    border: 1px solid rgba(40, 233, 193, 0.2);
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 15px;
}

.time-zone-note i {
    color: #28E9C1;
    font-size: 18px;
}

/* Submit Section */
.form-submit-section {
    text-align: center;
}

.consultation-submit-btn {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, #28E9C1 0%, #3CC771 100%);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(40, 233, 193, 0.3);
}

.consultation-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(40, 233, 193, 0.4);
}

.consultation-submit-btn:active {
    transform: translateY(-1px);
}

.consultation-submit-btn i {
    font-size: 22px;
}

.submit-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 0;
}

/* Success/Error Messages */
.booking-message-area {
    margin-top: 25px;
}

.booking-success,
.booking-error {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid;
}

.booking-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-color: #10b981;
    color: #065f46;
}

.booking-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border-color: #ef4444;
    color: #991b1b;
}

.booking-success i,
.booking-error i {
    font-size: 28px;
    margin-top: 3px;
}

.booking-success i {
    color: #10b981;
}

.booking-error i {
    color: #ef4444;
}

.booking-success h4,
.booking-error h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.booking-success p,
.booking-error p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .consultation-info-side {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .consultation-info-content {
        position: static;
    }

    .consultation-form-side {
        padding-left: 0;
    }

    .consultation-title {
        font-size: 2rem;
    }

    .consultation-form-wrapper {
        padding: 35px 25px;
    }
}

@media (max-width: 767px) {
    .consultation-booking-page {
        padding: 40px 0;
    }

    .consultation-icon-badge {
        width: 70px;
        height: 70px;
    }

    .consultation-icon-badge i {
        font-size: 35px;
    }

    .consultation-title {
        font-size: 1.75rem;
    }

    .consultation-subtitle {
        font-size: 1rem;
    }

    .benefits-list li {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }

    .benefit-icon {
        margin: 0 auto;
    }

    .response-info-card {
        flex-direction: column;
        text-align: center;
    }

    .response-icon {
        margin: 0 auto;
    }

    .trust-badges-section {
        justify-content: center;
    }

    .consultation-form-wrapper {
        padding: 30px 20px;
    }

    .form-section-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .consultation-title {
        font-size: 1.5rem;
    }

    .benefits-title {
        font-size: 1.1rem;
    }

    .benefits-list li h4 {
        font-size: 1rem;
    }

    .benefits-list li {
        padding: 15px;
    }

    .consultation-submit-btn {
        padding: 16px 30px;
        font-size: 1rem;
    }
}
