/* ═══════════════════════════════════════════
   CONSULTATION PAGE STYLES
═══════════════════════════════════════════ */

/* ── Page Section ── */
.consultation-page-section {
    position: relative;
    z-index: 1;
    padding: 10rem 5% 4rem;
    min-height: 100vh;
}

.consultation-page-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.consultation-page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.consultation-page-header p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.consultation-page-header .section-label {
    animation: fadeInUp 0.8s ease both;
}

/* ── Trust Badges ── */
.consultation-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.trust-item {
    text-align: center;
    padding: 1rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-icon {
    font-size: 1.2rem;
}

.trust-item p {
    color: var(--gray);
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0;
}

/* ── Next Steps Section ── */
.consultation-next-steps {
    position: relative;
    z-index: 1;
    padding: 6rem 5%;
}

.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.next-step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--card-bg-soft);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.next-step-card:hover {
    border-color: rgba(236, 77, 158, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(236, 77, 158, 0.1);
}

.next-step-num {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(236, 77, 158, 0.4);
}

.next-step-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.next-step-card p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ── Active Nav Link ── */
.nav-links a.active-nav {
    color: var(--primary-light);
}
.nav-links a.active-nav::after {
    width: 100%;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .next-steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .consultation-page-section {
        padding: 8rem 5% 3rem;
    }

    .consultation-trust {
        gap: 1rem;
    }

    .trust-item {
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
    }

    .next-steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .next-step-card {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 1rem;
        padding: 1.25rem;
    }

    .next-step-num {
        margin: 0;
        flex-shrink: 0;
    }
}
