/**
 * Consultation Section Styles
 * Free consultation form and features
 */

.consultation {
    background: #fff;
}

.consultation__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.consultation__content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.consultation__content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.consultation__features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.consultation__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: #333;
}

.consultation__features li svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #10b981;
}

.consultation__form {
    background: #fff;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.consultation__form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 24px;
    text-align: center;
}

/* Form Upload Styles */
.form-upload {
    position: relative;
    border: 2px dashed #ddd;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.form-upload:hover {
    border-color: #d4488e;
    background: #fef7f9;
}

.form-upload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.form-upload__icon {
    color: #ccc;
    margin-bottom: 8px;
}

.form-upload__text {
    color: #666;
    font-size: 14px;
}

.form-upload__title {
    margin-bottom: 16px;
    color: #333;
}

.form-upload__angles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.form-upload__angles--2 {
    display: flex;
    justify-content: center;
    gap: 16px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.form-upload__angles--3 {
    display: flex;
    justify-content: center;
    gap: 16px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.form-upload__angle {
    text-align: center;
}

.form-upload__angle-icon {
    width: 50px;
    height: 50px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    color: #888;
}

.form-upload__angle span {
    font-size: 12px;
    color: #666;
}

.form-upload__hint {
    font-size: 12px;
    color: #999;
}

.form-upload__specs {
    font-size: 11px;
    color: #aaa;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dashed #eee;
}

.form-disclaimer {
    font-size: 12px;
    color: #888;
    text-align: center;
    margin-top: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
    .consultation__grid {
        grid-template-columns: 1fr;
    }

    .consultation__content h2 {
        font-size: 1.75rem;
    }

    .consultation__features {
        margin: 20px auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .consultation__features li {
        font-size: 0.9rem;
        justify-content: center;
    }
}
