/* Consultation Modal Styles */
.consultation-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow-y: auto;
    padding: 2rem 1rem;
}

.consultation-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.consultation-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 1000px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: grid;
    grid-template-columns: 300px 1fr;
    overflow: hidden;
    max-height: 90vh;
}

.consultation-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.consultation-modal-close:hover {
    background: white;
    transform: rotate(90deg);
}

.consultation-sidebar {
    background: linear-gradient(135deg, #db8a70 0%, #c67862 100%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-align: center;
}

.consultation-headshot {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.consultation-headshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.consultation-sidebar h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.consultation-sidebar p {
    font-size: 0.95rem;
    opacity: 0.95;
    line-height: 1.5;
}

.consultation-main {
    padding: 2.5rem;
    overflow-y: auto;
}

.consultation-main h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.consultation-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.challenge-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.challenge-item {
    padding: 1rem 0;
    border-bottom: 1px solid #ecf0f1;
}

.challenge-item:last-child {
    border-bottom: none;
}

.challenge-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.challenge-description {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.call-benefits {
    background: #f8f9fa;
    border-left: 4px solid #db8a70;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.call-benefits h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.call-benefits li {
    padding: 0.5rem 0;
    color: #555;
    display: flex;
    align-items: flex-start;
}

.call-benefits li i {
    color: #db8a70;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.consultation-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #ecf0f1;
}

.consultation-footer p {
    color: #7f8c8d;
    font-size: 0.95rem;
    font-style: italic;
}

.calendar-embed {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ecf0f1;
}

.calendar-embed iframe {
    width: 100%;
    min-height: 600px;
    border: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .consultation-modal-content {
        grid-template-columns: 1fr;
        max-height: 95vh;
    }
    
    .consultation-sidebar {
        padding: 1.5rem;
    }
    
    .consultation-headshot {
        width: 120px;
        height: 120px;
        margin-bottom: 1rem;
    }
    
    .consultation-sidebar h3 {
        font-size: 1.1rem;
    }
    
    .consultation-sidebar p {
        font-size: 0.9rem;
    }
    
    .consultation-main {
        padding: 1.5rem;
    }
    
    .consultation-main h2 {
        font-size: 1.6rem;
    }
    
    .consultation-subtitle {
        font-size: 1rem;
    }
    
    .calendar-embed iframe {
        min-height: 500px;
    }
}

@media (max-width: 480px) {
    .consultation-modal {
        padding: 0;
    }
    
    .consultation-modal-content {
        border-radius: 0;
        max-height: 100vh;
        height: 100vh;
    }
    
    .consultation-headshot {
        width: 100px;
        height: 100px;
    }
    
    .consultation-main h2 {
        font-size: 1.4rem;
    }
    
    .challenge-title {
        font-size: 1rem;
    }
    
    .challenge-description {
        font-size: 0.9rem;
    }
}
