/* ===========================
   1-on-1 Mentoring Section
=========================== */

#mentoring{
    position: relative;
    overflow: hidden;
    padding: 110px 20px;
    background: #ffffff;
}

#mentoring::before{
    content: "";
    position: absolute;
    top: -180px;
    left: -150px;
    width: 350px;
    height: 350px;
    background: #667A4D;
    opacity: .04;
    filter: blur(120px);
    border-radius: 50%;
}

#mentoring::after{
    content: "";
    position: absolute;
    bottom: -180px;
    right: -150px;
    width: 380px;
    height: 380px;
    background: #667A4D;
    opacity: .04;
    filter: blur(120px);
    border-radius: 50%;
}

.mentoring-container{
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: auto;
}

/* ===========================
   Heading
=========================== */

.mentoring-heading{
    max-width: 760px;
    margin: auto;
    text-align: center;
}

.mentoring-tag{
    display: inline-block;
    padding: 8px 18px;
    background: rgba(102,122,77,.12);
    color: #667A4D;
    border: 1px solid rgba(102,122,77,.25);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

.mentoring-heading h2{
    margin-top: 22px;
    font-size: 48px;
    color: #111827;
    line-height: 1.2;
}

.mentoring-heading p{
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.8;
    color: #6B7280;
}

/* ===========================
   Cards
=========================== */

.mentoring-grid{
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.mentoring-card{
    position: relative;
    padding: 38px;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    transition: .35s;
    box-shadow: 0 10px 35px rgba(0,0,0,.06);
}

.mentoring-card:hover{
    transform: translateY(-8px);
    border-color: #667A4D;
    box-shadow: 0 20px 45px rgba(0,0,0,.12);
}

.mentoring-card.popular{
    border: 2px solid #667A4D;
    box-shadow: 0 20px 45px rgba(102,122,77,.16);
}

.popular-badge{
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 7px 14px;
    background: #667A4D;
    color: #fff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.mentoring-icon{
    font-size: 52px;
}

.mentoring-card h3{
    margin-top: 20px;
    color: #111827;
    font-size: 28px;
    line-height: 1.35;
}

.mentoring-card p{
    margin-top: 16px;
    color: #6B7280;
    line-height: 1.8;
}

.mentoring-meta{
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #374151;
    font-size: 15px;
}

/* ===========================
   Pricing
=========================== */

.mentoring-price{
    margin-top: 30px;
    display: flex;
    align-items: end;
    flex-wrap: wrap;
    gap: 12px;
}

.price{
    font-size: 42px;
    font-weight: 700;
    color: #667A4D;
}

.old{
    color: #9CA3AF;
    font-size: 20px;
    text-decoration: line-through;
}

.discount{
    padding: 5px 12px;
    border-radius: 999px;
    background: #E8F5E9;
    color: #2E7D32;
    font-size: 12px;
    font-weight: 700;
}

/* ===========================
   Buttons
=========================== */

.mentoring-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 35px;
    height: 56px;
    background: #667A4D;
    color: #fff;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 600;
    transition: .3s;
}

.mentoring-btn:hover{
    background: #55653F;
    transform: translateY(-2px);
}

/* ===========================
   Bottom CTA
=========================== */

.mentoring-bottom{
    margin-top: 90px;
    text-align: center;
}

.mentoring-bottom h3{
    font-size: 38px;
    color: #111827;
}

.mentoring-bottom p{
    max-width: 700px;
    margin: 18px auto 0;
    font-size: 18px;
    line-height: 1.8;
    color: #6B7280;
}

.mentoring-main-btn{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 35px;
    padding: 18px 40px;
    background: #667A4D;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    transition: .3s;
}

.mentoring-main-btn:hover{
    background: #55653F;
    transform: translateY(-3px);
}

/* ===========================
   Responsive
=========================== */

@media (max-width:1100px){

    .mentoring-grid{
        grid-template-columns: 1fr;
    }

}

@media (max-width:768px){

    #mentoring{
        padding: 80px 20px;
    }

    .mentoring-heading h2{
        font-size: 34px;
    }

    .mentoring-heading p{
        font-size: 16px;
    }

    .mentoring-card{
        padding: 30px;
    }

    .mentoring-card h3{
        font-size: 24px;
    }

    .price{
        font-size: 34px;
    }

    .mentoring-bottom h3{
        font-size: 30px;
    }

    .mentoring-bottom p{
        font-size: 16px;
    }

}