/* 1O1 Nutrition Mentorship Page Styles */

/* ===== Mentorship Hero Section ===== */
.mentorship-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.92), rgba(27, 94, 32, 0.95)),
                url('https://images.unsplash.com/photo-1490645935967-10de6ba17061?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') no-repeat center center/cover;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.mentorship-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(96, 173, 94, 0.25) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(46, 125, 50, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.mentorship-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--white);
    clip-path: ellipse(55% 60% at 50% 100%);
    z-index: 2;
}

.mentorship-hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.mentorship-hero-content {
    max-width: 620px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.6s ease;
}

.mentorship-hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: fadeInUp 0.7s ease;
}

.mentorship-hero-content h1 span {
    display: block;
    font-size: 1.6rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.mentorship-hero .hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.92;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.9s ease;
}

.hero-cta-group .btn {
    font-size: 1.05rem;
    padding: 14px 32px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.hero-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-stat {
    text-align: center;
    position: relative;
}

.hero-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-stat .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.hero-stat .stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual {
    position: relative;
}

.hero-visual img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.hero-visual img:hover {
    transform: scale(1.02);
}

.hero-floating-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--white);
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.hero-floating-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.hero-floating-card .floating-text {
    font-size: 0.85rem;
    color: var(--text-color);
    font-weight: 600;
}

.hero-floating-card .floating-text span {
    display: block;
    font-weight: 400;
    font-size: 0.75rem;
    color: var(--text-light);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Ask Yourself Section ===== */
.ask-yourself {
    padding: 6rem 0;
    background: var(--white);
}

.ask-yourself .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ask-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    text-align: center;
    max-width: 650px;
    margin: 1rem auto 3rem;
    line-height: 1.7;
}

.ask-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.ask-card {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.04), rgba(96, 173, 94, 0.06));
    border: 1px solid rgba(46, 125, 50, 0.12);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.ask-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-light));
    border-radius: 4px 0 0 4px;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.ask-card:hover::before {
    transform: scaleY(1);
}

.ask-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(46, 125, 50, 0.12);
}

.ask-card .ask-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.ask-card p {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.65;
    font-weight: 500;
}

.ask-challenge {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.ask-challenge::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.ask-challenge p {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.ask-challenge p strong {
    display: block;
    margin-top: 0.5rem;
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 400;
}

/* ===== What This Is Section ===== */
.what-this-is {
    padding: 6rem 0;
    background: linear-gradient(rgba(46, 125, 50, 0.04), rgba(96, 173, 94, 0.04));
}

.what-this-is .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.what-this-is .section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.what-this-is .section-header h2 em {
    font-style: normal;
    color: var(--primary-color);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pillar-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    border: 1px solid rgba(46, 125, 50, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pillar-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.pillar-card:hover::after {
    transform: scaleX(1);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(46, 125, 50, 0.12);
}

.pillar-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.08) rotate(-3deg);
}

.pillar-card h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.pillar-card p {
    color: var(--text-light);
    line-height: 1.65;
    font-size: 1rem;
}

/* ===== Curriculum Section ===== */
.curriculum-section {
    padding: 6rem 0;
    background: var(--white);
}

.curriculum-section .section-header {
    text-align: center;
    margin-bottom: 1rem;
}

.curriculum-intro {
    font-size: 1.05rem;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0.5rem auto 3rem;
    line-height: 1.7;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.8rem;
}

.curriculum-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(46, 125, 50, 0.1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.curriculum-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(46, 125, 50, 0.13);
}

.curriculum-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.5rem 0;
}

.module-num {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.curriculum-card-header h3 {
    font-size: 1.15rem;
    color: var(--primary-dark);
    font-weight: 600;
    line-height: 1.35;
}

.curriculum-card-body {
    padding: 1rem 1.5rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.curriculum-card-body .booklet-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.08), rgba(96, 173, 94, 0.08));
    color: var(--primary-color);
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 500;
    border: 1px solid rgba(46, 125, 50, 0.15);
    margin-bottom: 1rem;
    width: fit-content;
}

.curriculum-card-body .booklet-tag i {
    font-size: 0.7rem;
}

.curriculum-topics {
    list-style: none;
    padding: 0;
    margin: 0;
}

.curriculum-topics li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.55;
}

.curriculum-topics li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--primary-light);
    border-radius: 50%;
}

/* ===== Bonus Modules Section ===== */
.bonus-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.06), rgba(96, 173, 94, 0.04));
}

.bonus-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.bonus-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 2px solid rgba(46, 125, 50, 0.12);
    transition: var(--transition);
    position: relative;
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(46, 125, 50, 0.15);
}

.bonus-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.bonus-card-badge.new-badge {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.bonus-card-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.bonus-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(transparent, var(--white));
}

.bonus-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.bonus-card:hover .bonus-card-image img {
    transform: scale(1.08);
}

.bonus-card-content {
    padding: 1.5rem 2rem 2rem;
}

.bonus-card-content h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.bonus-card-content .bonus-booklet {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.bonus-card-content .bonus-booklet i {
    font-size: 0.7rem;
}

.bonus-topics {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bonus-topics li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.55rem;
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.55;
}

.bonus-topics li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.75rem;
    top: 3px;
}

/* ===== Everything Included Section ===== */
.everything-included {
    padding: 6rem 0;
    background: var(--white);
}

.everything-included .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 950px;
    margin: 0 auto;
}

.included-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.3rem 1.5rem;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.04), rgba(96, 173, 94, 0.04));
    border: 1px solid rgba(46, 125, 50, 0.1);
    border-radius: 14px;
    transition: var(--transition);
}

.included-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.1);
    border-color: rgba(46, 125, 50, 0.2);
}

.included-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.included-item span {
    color: var(--text-color);
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.5;
}

/* ===== Is This For You Section ===== */
.is-this-for-you {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.06), rgba(27, 94, 32, 0.04));
    position: relative;
    overflow: hidden;
}

.is-this-for-you::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.06), transparent 70%);
    border-radius: 50%;
}

.for-you-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.for-you-content .section-subtitle {
    padding-left: 0;
}

.for-you-content .section-subtitle::before {
    display: none;
}

.for-you-content h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.manifesto-text {
    text-align: left;
    margin-bottom: 2.5rem;
}

.manifesto-text p {
    font-size: 1.15rem;
    color: var(--text-color);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.manifesto-text p.emphasis {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1.2rem;
}

.manifesto-text p.italic {
    font-style: italic;
    color: var(--text-light);
}

.for-you-connect {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.connect-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: var(--white);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.connect-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.12);
}

.connect-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.connect-item span {
    font-weight: 500;
    color: var(--text-color);
}

/* ===== Final CTA Section ===== */
.mentorship-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.92), rgba(27, 94, 32, 0.95)),
                url('https://images.unsplash.com/photo-1490645935967-10de6ba17061?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    position: relative;
}

.mentorship-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    z-index: 1;
}

.mentorship-cta .cta-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
}

.mentorship-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mentorship-cta h3 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
}

.mentorship-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.mentorship-cta .btn-primary {
    font-size: 1.15rem;
    padding: 16px 36px;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .mentorship-hero .container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .mentorship-hero-content {
        max-width: 100%;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-visual img {
        height: 350px;
    }

    .hero-floating-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
    }

    @keyframes float {
        0%, 100% { transform: translateX(-50%) translateY(0); }
        50% { transform: translateX(-50%) translateY(-10px); }
    }

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

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

@media (max-width: 768px) {
    .mentorship-hero {
        padding: 110px 0 80px;
    }

    .mentorship-hero-content h1 {
        font-size: 2.4rem;
    }

    .mentorship-hero-content h1 span {
        font-size: 1.2rem;
    }

    .hero-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .hero-stat:nth-child(2)::after {
        display: none;
    }

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

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

    .for-you-content h2 {
        font-size: 2rem;
    }

    .mentorship-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .mentorship-hero {
        padding: 100px 0 70px;
    }

    .mentorship-hero-content h1 {
        font-size: 2rem;
    }

    .hero-stats-bar {
        grid-template-columns: 1fr 1fr;
        padding: 1rem;
    }

    .hero-visual img {
        height: 280px;
    }

    .ask-yourself,
    .what-this-is,
    .curriculum-section,
    .bonus-section,
    .everything-included,
    .is-this-for-you,
    .mentorship-cta {
        padding: 4rem 0;
    }

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

    .for-you-connect {
        flex-direction: column;
        align-items: center;
    }

    .mentorship-cta h2 {
        font-size: 1.7rem;
    }

    .mentorship-cta h3 {
        font-size: 1.1rem;
    }
}
