/* ===== CONSULTATION PAGE ===== */

.page-hero {
    background: linear-gradient(135deg, #377850 0%, #327457 100%);
    color: #fff;
    padding: 48px 0 56px;
}

.page-hero-content {
    max-width: 700px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 20px;
}

.breadcrumbs a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: #F17210;
}

.page-hero h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.15;
}

.page-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    max-width: 560px;
}

/* Consultation Section */
.consultation-section {
    padding: 64px 0;
    background: #F8F9FA;
}

.consultation-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: start;
}

.consultation-form-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #E9ECEF;
}

.consultation-form-wrap h2 {
    font-size: 24px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 6px;
}

.form-hint {
    font-size: 14px;
    color: #6C757D;
    margin-bottom: 28px;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.consultation-form-compact {
    max-width: 520px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #495057;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #DEE2E6;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: #212529;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #78AF69;
    box-shadow: 0 0 0 3px rgba(120, 175, 105, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #ADB5BD;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%236C757D'%3E%3Cpath d='M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-row-consult {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 15px;
    width: 100%;
}

.form-note {
    font-size: 12px;
    color: #ADB5BD;
    text-align: center;
    line-height: 1.4;
}

.form-note a {
    color: #78AF69;
    text-decoration: underline;
}

.personal-data-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.4;
    color: #495057;
    cursor: pointer;
}

.personal-data-consent input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: #78AF69;
    flex-shrink: 0;
}

/* Consultation Info */
.consultation-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #E9ECEF;
}

.info-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
}

.info-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-step {
    display: flex;
    align-items: center;
    gap: 14px;
}

.step-num {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: #78AF69;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-text {
    display: flex;
    flex-direction: column;
}

.step-text strong {
    font-size: 14px;
    color: #212529;
    font-weight: 600;
}

.step-text span {
    font-size: 13px;
    color: #6C757D;
}

.info-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-phone {
    font-size: 20px;
    font-weight: 700;
    color: #212529;
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-phone:hover {
    color: #78AF69;
}

.info-email {
    font-size: 14px;
    color: #6C757D;
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-email:hover {
    color: #78AF69;
}

.info-hours {
    font-size: 13px;
    color: #ADB5BD;
}

/* FAQ Section */
.faq-section {
    padding: 64px 0;
    background: #fff;
}

.faq-section .section-title {
    font-size: 28px;
    font-weight: 700;
    color: #212529;
    text-align: center;
    margin-bottom: 36px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #E9ECEF;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #78AF69;
}

.faq-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    color: #ADB5BD;
    transition: transform 0.25s ease, color 0.2s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
    color: #78AF69;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 14px;
    color: #6C757D;
    line-height: 1.7;
    margin: 0;
}

.nav-link.active {
    background: #2a6b3f;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.15);
}

/* ===== ADAPTIVE ===== */
@media (max-width: 1024px) {
    .consultation-layout {
        grid-template-columns: 1fr;
    }
    .consultation-info {
        flex-direction: row;
    }
    .info-card {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 32px 0 40px;
    }
    .page-hero h1 {
        font-size: 26px;
    }
    .consultation-section {
        padding: 40px 0;
    }
    .consultation-form-wrap {
        padding: 24px 20px;
    }
    .form-row-consult {
        grid-template-columns: 1fr;
    }
    .consultation-info {
        flex-direction: column;
    }
    .faq-section {
        padding: 40px 0;
    }
    .faq-section .section-title {
        font-size: 22px;
    }
    .faq-question {
        font-size: 14px;
        padding: 16px 0;
    }
}
