/*
* Haricane Consultancy Services - Consultation Page CSS
* This file contains custom styles for the Consultation page
*/

/* Import base styles from main stylesheet */
@import url('styles.css');


/*----------------------------------
# Page Header Styles
----------------------------------*/
.consultation-hero {
    min-height: 70vh;
    background: linear-gradient(135deg, rgba(228, 95, 43, 0.9) 100%), url('../images/consultation-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.consultation-hero .hero-title,
.consultation-hero .hero-subtitle {
    color: #fff;
    text-align: center;
}

.consultation-hero .hero-title::after {
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color-2);
}

.consultation-hero .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    opacity: 0.9;
}

.hero-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.hero-btn {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--secondary-color-2);
    color: var(--dark-color);
    border: none;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(246, 196, 69, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #fff;
    transition: width 0.5s ease;
    z-index: -1;
    border-radius: 50px;
}

.hero-btn:hover,
.hero-btn:focus {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(246, 196, 69, 0.5);
    color: var(--primary-color);
}

.hero-btn:hover::before,
.hero-btn:focus::before {
    width: 100%;
}

.btn-outline-light {
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background-color: transparent;
    border-radius: 50px;
    padding: 14px 38px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: var(--primary-color);
    border-color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/*----------------------------------
# Benefits Section
----------------------------------*/
.benefit-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    
    background-color: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background: var(--secondary-color-1);
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.benefit-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-bg);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.benefit-icon i {
    font-size: 2.2rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.benefit-card:hover .benefit-icon i {
    color: #fff;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.benefit-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/*----------------------------------
# Consultation Types Section
----------------------------------*/
.consultation-type-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.consultation-type-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 6px;
    background: var(--primary-color);
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.consultation-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.consultation-type-card:hover::before {
    opacity: 1;
}

.consultation-type-icon {
    width: 90px;
    height: 90px;
    background-color: var(--light-bg);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.consultation-type-icon i {
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.consultation-type-card:hover .consultation-type-icon {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.consultation-type-card:hover .consultation-type-icon i {
    color: #fff;
}

.consultation-type-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.consultation-type-card p {
    color: var(--gray);
    margin-bottom: 25px;
}

.consultation-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
    text-align: left;
}

.consultation-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    color: var(--gray);
    font-size: 0.95rem;
}

.consultation-features li i {
    color: var(--secondary-color-1);
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 3px;
}

.btn-select-type {
    margin-top: auto;
    background-color: transparent;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 0;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-select-type:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(65, 105, 225, 0.2);
}

.btn-select-type i {
    transition: transform 0.3s ease;
}

.btn-select-type:hover i {
    transform: translateX(5px);
}

/*----------------------------------
# Expert Team Section
----------------------------------*/
.expert-card {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.expert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.expert-image {
    position: relative;
    overflow: hidden;
}

.expert-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.95);
}

.expert-card:hover .expert-image img {
    transform: scale(1.05);
    filter: brightness(1);
}

.expert-availability {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #22c55e;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.expert-content {
    padding: 25px;
    text-align: center;
}

.expert-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.expert-position {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: block;
}

.expert-bio {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
    min-height: 60px;
}

.expert-specialties {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.expert-specialties span {
    background-color: var(--light-bg);
    color: var(--primary-color);
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

.btn-book-expert {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 25px;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(65, 105, 225, 0.25);
}

.btn-book-expert:hover {
    background-color: var(--secondary-color-1);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(228, 95, 43, 0.25);
}

.btn-book-expert i {
    transition: transform 0.3s ease;
}

.btn-book-expert:hover i {
    transform: translateX(3px);
}

/*----------------------------------
# Booking Form Section
----------------------------------*/
.booking-form-wrapper {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: clamp(30px, 5vw, 50px);
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100%;
}

.form-section-title {
    font-size: 1.3rem;
    color: var(--dark-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.form-section-title i {
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    color: var(--dark-color);
    font-weight: 500;
    margin-bottom: 8px;
    display: inline-block;
}

.form-control, .form-select, .date-picker {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 1rem;
    color: var(--dark-color);
    background-color: #fdfdfd;
    transition: all 0.3s ease;
    width: 100%;
}

.form-control:focus, .form-select:focus, .date-picker:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(65, 105, 225, 0.15);
    background-color: #fff;
    outline: none;
}

.form-control.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    color: var(--gray);
    font-size: 0.95rem;
}

.form-check-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-check-label a:hover {
    color: var(--secondary-color-1);
}

.date-picker {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23333' d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    cursor: pointer;
}

.btn-submit-booking {
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 10px 25px rgba(65, 105, 225, 0.25);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-submit-booking .loading-text {
    display: none;
}

.btn-submit-booking.loading .default-text {
    display: none;
}

.btn-submit-booking.loading .loading-text {
    display: flex;
    align-items: center;
}

.btn-submit-booking:hover, .btn-submit-booking:focus {
    background-color: var(--secondary-color-1);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(228, 95, 43, 0.3);
    outline: none;
}

/* Booking Response */
.booking-response {
    display: none;
    padding: 40px 0;
    text-align: center;
}

.booking-success {
    background-color: #f0fdf4;
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid #86efac;
}

.booking-success i {
    font-size: 5rem;
    color: #22c55e;
    margin-bottom: 20px;
}

.booking-success h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.booking-success p {
    color: var(--gray);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.booking-details {
    background-color: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
    display: inline-block;
}

.detail-item {
    display: flex;
    margin-bottom: 10px;
    text-align: left;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-label {
    font-weight: 600;
    color: var(--dark-color);
    width: 100px;
}

.detail-value {
    color: var(--gray);
}

.reminder-text {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 25px;
}

.calendar-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.calendar-link {
    background-color: #fff;
    color: var(--primary-color);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}

.calendar-link i {
    font-size: 1.2rem;
    margin-right: 8px;
}

.calendar-link:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(65, 105, 225, 0.2);
}

/*----------------------------------
# Booking Sidebar
----------------------------------*/
.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100%;
}

.sidebar-section {
    background-color: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.sidebar-section h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.sidebar-section h3 i {
    color: var(--primary-color);
}

.sidebar-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.sidebar-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: var(--gray);
}

.sidebar-list li:last-child {
    margin-bottom: 0;
}

.sidebar-list li i {
    color: var(--secondary-color-1);
    position: absolute;
    left: 0;
    top: 4px;
}

.sidebar-list li strong {
    color: var(--dark-color);
}

.sidebar-testimonial {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.sidebar-testimonial:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-testimonial p {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.sidebar-testimonial p::before {
    content: '\201C';
    font-size: 30px;
    color: var(--secondary-color-1);
    position: absolute;
    left: 0;
    top: -10px;
}

.testimonial-author {
    text-align: right;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color-1) 100%);
    border-radius: 20px;
    padding: 30px;
    color: #fff;
    text-align: center;
}

.sidebar-cta h3 {
    color: #fff;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 10px;
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.btn-whatsapp-support, .btn-call-support {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.btn-whatsapp-support {
    background-color: #25d366;
    color: #fff;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-support:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    color: #fff;
}

.btn-call-support {
    background-color: #fff;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-call-support:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
    color: var(--primary-color);
}

/*----------------------------------
# AI Assistant Section
----------------------------------*/
.ai-assistant-container {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 600px;
}

.ai-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color-1) 100%);
    padding: 20px;
    display: flex;
    align-items: center;
    color: #fff;
}

.ai-avatar {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.ai-avatar i {
    font-size: 1.8rem;
}

.ai-info {
    flex-grow: 1;
}

.ai-info h3 {
    margin-bottom: 0;
    font-size: 1.3rem;
    color: #fff;
}

.ai-info p {
    margin-bottom: 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

.ai-status {
    display: flex;
    align-items: center;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.status-indicator.online {
    background-color: #22c55e;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.status-text {
    font-size: 0.85rem;
}

.ai-conversation {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #f9fafb;
}

.message {
    max-width: 80%;
    padding: 15px;
    border-radius: 15px;
    position: relative;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.ai-message {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.user-message {
    background-color: var(--primary-color);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.message-content p {
    margin-bottom: 10px;
}

.message-content p:last-child {
    margin-bottom: 0;
}

.message-time {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 5px;
    text-align: right;
}

.ai-quick-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.quick-option {
    background-color: #fff;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-option:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.ai-input {
    padding: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.ai-input form {
    display: flex;
    gap: 10px;
}

.ai-input input {
    flex-grow: 1;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 30px;
    outline: none;
    transition: all 0.3s ease;
}

.ai-input input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(65, 105, 225, 0.15);
}

.ai-input button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ai-input button:hover {
    background-color: var(--secondary-color-1);
    transform: translateY(-2px);
}

.ai-input-footer {
    margin-top: 10px;
    text-align: center;
}

.ai-input-footer p {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 0;
}

.ai-input-footer a {
    color: var(--primary-color);
    text-decoration: underline;
}

.ai-input-footer a:hover {
    color: var(--secondary-color-1);
}

/*----------------------------------
# Process Timeline
----------------------------------*/
#consultation-process .process-timeline {
    padding: 40px 0;
}

#consultation-process .process-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
}

#consultation-process .process-icon {
    position: relative;
    margin-right: 30px;
    flex-shrink: 0;
}

#consultation-process .process-number {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--secondary-color-2);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#consultation-process .process-icon-inner {
    width: 80px;
    height: 80px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    z-index: 1;
}

#consultation-process .process-icon-inner i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

#consultation-process .process-item:hover .process-icon-inner {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

#consultation-process .process-item:hover .process-icon-inner i {
    color: #fff;
}

#consultation-process .process-content {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    flex-grow: 1;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

#consultation-process .process-item:hover .process-content {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

#consultation-process .process-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

#consultation-process .process-content p {
    color: var(--gray);
    margin-bottom: 0;
}

#consultation-process .process-connector {
    height: 40px;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color-1));
    margin: 0 auto 30px 40px;
    position: relative;
}

#consultation-process .process-connector::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background-color: var(--secondary-color-1);
    border-radius: 50%;
}

#consultation-process .process-connector::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/*----------------------------------
# FAQ Section
----------------------------------*/
#consultation-faqs .accordion-item {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

#consultation-faqs .accordion-button {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--dark-color);
    background-color: #fff;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
}

#consultation-faqs .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: var(--light-bg);
    box-shadow: none;
}

#consultation-faqs .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.1);
}

#consultation-faqs .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234169E1' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    transition: transform 0.3s ease;
}

#consultation-faqs .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

#consultation-faqs .accordion-body {
    padding: 20px 25px 25px;
    background-color: #fff;
}

#consultation-faqs .accordion-body p {
    color: var(--gray);
    margin-bottom: 15px;
}

#consultation-faqs .accordion-body p:last-child {
    margin-bottom: 0;
}

#consultation-faqs .accordion-body ul,
#consultation-faqs .accordion-body ol {
    color: var(--gray);
    padding-left: 20px;
    margin-bottom: 15px;
}

#consultation-faqs .accordion-body li {
    margin-bottom: 8px;
}

/*----------------------------------
# CTA Section
----------------------------------*/
#consultation-cta {
    position: relative;
}

#consultation-cta .cta-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 30px 0;
}

#consultation-cta .cta-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#consultation-cta .cta-stat-number {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

#consultation-cta .cta-stat-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 8px;
}

/*----------------------------------
# Responsive Styles
----------------------------------*/
@media (max-width: 1199.98px) {
    .expert-bio {
        min-height: 80px;
    }
    
    .ai-assistant-container {
        height: 700px;
    }
}

@media (max-width: 991.98px) {
    .benefit-card,
    .consultation-type-card,
    .expert-card {
        margin-bottom: 30px;
    }
    
    .booking-form-wrapper,
    .booking-sidebar {
        margin-bottom: 30px;
    }
    
    .expert-bio {
        min-height: auto;
    }
    
    #consultation-process .process-timeline {
        padding-left: 20px;
    }
    
    #consultation-cta .cta-stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .consultation-hero {
        min-height: 60vh;
        padding: 100px 0 60px;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-outline-light {
        margin-top: 15px;
    }
    
    .form-section-title {
        font-size: 1.2rem;
    }
    
    .booking-form-wrapper {
        padding: 30px;
    }
    
    #consultation-process .process-icon {
        margin-right: 20px;
    }
    
    #consultation-process .process-icon-inner {
        width: 60px;
        height: 60px;
    }
    
    #consultation-process .process-content {
        padding: 20px;
    }
    
    #consultation-process .process-content h3 {
        font-size: 1.3rem;
    }
    
    #consultation-process .process-connector {
        margin: 0 auto 20px 30px;
    }
    
    .ai-conversation {
        padding: 15px;
    }
    
    .message {
        max-width: 90%;
    }
    
    #consultation-cta .cta-stats {
        gap: 20px;
    }
    
    .calendar-links {
        flex-direction: column;
        align-items: center;
    }
    
    .calendar-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .consultation-hero {
        min-height: 50vh;
        padding: 80px 0 50px;
    }
    
    .expert-card {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .sidebar-section h3 {
        font-size: 1.2rem;
    }
    
    .booking-form-wrapper {
        padding: 25px;
    }
    
    #consultation-process .process-icon-inner {
        width: 50px;
        height: 50px;
    }
    
    #consultation-process .process-icon-inner i {
        font-size: 1.5rem;
    }
    
    #consultation-process .process-content h3 {
        font-size: 1.1rem;
    }
    
    #consultation-faqs .accordion-button {
        font-size: 1rem;
        padding: 15px 20px;
    }
    
    .ai-assistant-container {
        height: 500px;
    }
    
    .message {
        max-width: 95%;
        padding: 12px;
    }
    
    .ai-input input {
        padding: 10px 15px;
    }
    
    .ai-input button {
        width: 40px;
        height: 40px;
    }
    
    #consultation-cta .cta-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    #consultation-cta .btn-outline-light {
        margin-left: 0 !important;
    }
}

/* Flatpickr Calendar Customization */
.flatpickr-calendar {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: none;
    font-family: var(--body-font);
}

.flatpickr-month {
    background-color: var(--primary-color);
    color: #fff;
    height: 60px;
    border-radius: 15px 15px 0 0;
}

.flatpickr-monthDropdown-months,
.flatpickr-current-month .numInputWrapper span.arrowUp,
.flatpickr-current-month .numInputWrapper span.arrowDown {
    color: #fff;
}

.flatpickr-months .flatpickr-prev-month, 
.flatpickr-months .flatpickr-next-month {
    color: #fff;
    fill: #fff;
    padding: 10px;
}

.flatpickr-day.selected, 
.flatpickr-day.startRange, 
.flatpickr-day.endRange, 
.flatpickr-day.selected.inRange, 
.flatpickr-day.startRange.inRange, 
.flatpickr-day.endRange.inRange, 
.flatpickr-day.selected:focus, 
.flatpickr-day.startRange:focus, 
.flatpickr-day.endRange:focus, 
.flatpickr-day.selected:hover, 
.flatpickr-day.startRange:hover, 
.flatpickr-day.endRange:hover, 
.flatpickr-day.selected.prevMonthDay, 
.flatpickr-day.startRange.prevMonthDay, 
.flatpickr-day.endRange.prevMonthDay, 
.flatpickr-day.selected.nextMonthDay, 
.flatpickr-day.startRange.nextMonthDay, 
.flatpickr-day.endRange.nextMonthDay {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.flatpickr-day.today {
    border-color: var(--secondary-color-1);
    color: var(--secondary-color-1);
}

.flatpickr-day.today:hover,
.flatpickr-day.today.selected {
    background-color: var(--secondary-color-1);
    border-color: var(--secondary-color-1);
    color: #fff;
}

.flatpickr-day:hover {
    background: var(--light-bg);
}

.flatpickr-day.selected:hover {
    background: var(--primary-color);
}

.flatpickr-time {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.flatpickr-time .numInputWrapper span.arrowUp:after,
.flatpickr-time .numInputWrapper span.arrowDown:after {
    border-color: var(--primary-color);
}

.flatpickr-time input:hover, 
.flatpickr-time .flatpickr-am-pm:hover, 
.flatpickr-time input:focus, 
.flatpickr-time .flatpickr-am-pm:focus {
    background: var(--light-bg);
}

.numInputWrapper span:hover {
    background: rgba(65, 105, 225, 0.1);
}/*
* Haricane Consultancy Services - Consultation Page CSS
* This file contains custom styles for the Consultation page
*/
