.consultation-section {
    background: linear-gradient(
        180deg,
        #f7fbf1 0%,
        #ffffff 100%
    );
    position: relative;
    overflow: hidden;
    
    font-family: var(--body-font );
}

/* ======================
   LEFT CONTENT
====================== */

.consultation-section__badge {
    display: inline-block;
    background: #a7c438;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.consultation-section__title {
    font-size: 24px;
    line-height: 1.15;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.consultation-section__description {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 30px;
}

/* ======================
   DOCTOR CARD
====================== */

.consultation-section__doctor-card {
    margin-bottom: 30px;
}

.consultation-section__doctor-image-wrapper {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.consultation-section__doctor-image {
    width: 100%;
    display: block;
}

.consultation-section__achievement {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.consultation-section__achievement-number {
    /*display: block;*/
    font-size: 24px;
    font-weight: 700;
    color: #76a40c;
}

.consultation-section__achievement-text {
    font-size: 13px;
    color: #666;
}

/* ======================
   BENEFITS
====================== */

.consultation-section__benefits {
    display: grid;
    gap: 6px;
    margin-bottom: 35px;
}

.consultation-section__benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    color: #374151;
}

.consultation-section__benefit span {
    color: #76a40c;
    font-weight: 700;
}

/* ======================
   STEPS
====================== */

.consultation-section__steps {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.consultation-section__step {
    text-align: center;
}

.consultation-section__step-number {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #a7c438;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 10px;
}

.consultation-section__step p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

/* ======================
   FORM CARD
====================== */

.consultation-section__form-card {
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(18px);
    border-radius: 28px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.consultation-section__form-header {
    text-align: center;
    margin-bottom: 30px;
}

.consultation-section__form-header h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

.consultation-section__form-header p {
    color: #6b7280;
    margin: 0;
}

/* Inputs */

.consultation-section__form-card .form-control,
.consultation-section__form-card .form-select {
    min-height: 54px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: none;
}

.consultation-section__form-card textarea.form-control {
    min-height: 120px;
}

.consultation-section__form-card .form-control:focus,
.consultation-section__form-card .form-select:focus {
    border-color: #a7c438;
    box-shadow: 0 0 0 4px rgba(167,196,56,.15);
}

/* CTA */

.consultation-section__form-card .btn-success {
    background: linear-gradient(
        135deg,
        #8db331,
        #b6d64c
    );
    border: none;
    min-height: 58px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
}

.consultation-section__form-card .btn-success:hover {
    transform: translateY(-2px);
}

/* Trust */

.consultation-section__trust {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 20px;
    font-size: 14px;
    color: #6b7280;
}

/* ======================
   RESPONSIVE
====================== */

@media (max-width: 991px) {

    .consultation-section__title {
        font-size: 40px;
    }

    .consultation-section__content {
        text-align: center;
    }

    .consultation-section__steps {
        justify-content: center;
    }

}

@media (max-width: 767px) {

    .consultation-section {
        padding: 60px 0;
    }

    .consultation-section__title {
        font-size: 32px;
    }

    .consultation-section__description {
        font-size: 16px;
    }

    .consultation-section__form-card {
        padding: 25px;
    }

    .consultation-section__steps {
        gap: 15px;
    }

    .consultation-section__step-number {
        width: 48px;
        height: 48px;
    }

}