/* Mentorship Page Specific Styles */
:root {
    --ms-primary: #21D891;
    --ms-secondary: #0988FF;
    --ms-dark: #0f172a;
    --ms-light-bg: #f8fafc;
    --ms-card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --ms-radius: 16px;
}

html,
body {
    overflow-x: hidden !important;
    position: relative;
    width: 100%;
}

.ms-page {
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
}

/* Hero Section */
.ms-hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(2, 6, 23, 1) 100%);
    padding: 160px 0 100px;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ms-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(33, 216, 145, 0.05) 0%, transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}

.ms-hero-badge {
    background: rgba(33, 216, 145, 0.1);
    color: var(--ms-primary);
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 30px;
    border: 1px solid rgba(33, 216, 145, 0.2);
}

.ms-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.ms-hero-title span {
    color: #52ABFF;
    display: block;
}

.ms-hero-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
    font-style: italic;
}

.ms-hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.ms-btn-primary {
    background: var(--ms-secondary);
    color: #ffffff;
    padding: 16px 35px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(9, 136, 255, 0.3);
}

.ms-btn-outline {
    background: #ffffff;
    color: var(--ms-dark);
    padding: 16px 35px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ms-btn-primary:hover,
.ms-btn-outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Beliefs & Objectives */
.ms-belief-section {
    padding: 100px 0;
    background: #ffffff;
}

.ms-belief-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--ms-radius);
    padding: 50px;
    height: 100%;
    box-shadow: var(--ms-card-shadow);
}

.ms-dark-card {
    background: #020617;
    color: #ffffff;
    border: none;
}

.ms-card-label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--ms-secondary);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.ms-card-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--ms-dark);
}

.ms-section-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--ms-dark);
    font-family: 'Sora', sans-serif;
}

.ms-dark-card .ms-card-title {
    color: #ffffff;
}

.belief-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.belief-num {
    width: 50px;
    height: 50px;
    background: rgba(9, 136, 255, 0.08);
    color: var(--ms-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.belief-content h4 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.belief-content p {
    color: #64748b;
    margin-bottom: 0;
}

.obj-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
    border-radius: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.obj-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--ms-secondary);
}

.obj-dot {
    width: 8px;
    height: 8px;
    background: var(--ms-secondary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--ms-secondary);
}

/* 10-Phase Model */
.ms-phases {
    padding: 100px 0;
    background: var(--ms-light-bg);
}

.phase-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.phase-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--ms-radius);
    padding: 35px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.phase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--ms-secondary);
}

.phase-num {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: #f1f5f9;
    line-height: 1;
    z-index: 0;
}

.phase-title {
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    color: var(--ms-dark);
}

.phase-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.phase-list li {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.phase-list li i {
    color: var(--ms-secondary);
    margin-top: 4px;
    font-size: 0.85rem;
}

/* Final Post-Investment Card (Phase 10) */
.phase-card-wide {
    background: #eff6ff;
    border: 1.5px solid #bfdbfe;
    padding: 50px;
    margin-top: 40px;
}

.phase-card-wide .phase-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.phase-card-wide .phase-tagline {
    font-style: italic;
    color: var(--ms-secondary);
    font-weight: 600;
    margin-bottom: 30px;
}

.wide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.wide-item {
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

/* Footer Section */
.ms-footer-info {
    padding: 100px 0;
    background: #ffffff;
}

.info-card {
    background: #f8fafc;
    border-radius: var(--ms-radius);
    padding: 40px;
    height: 100%;
}

.info-title {
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    margin-bottom: 25px;
    display: flex;
    gap: 20px;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ms-secondary);
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.info-text h5 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-text p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.commercial-card {
    background: #020617;
    color: #ffffff;
    padding: 60px;
    border-radius: var(--ms-radius);
    position: relative;
    overflow: hidden;
}

.commercial-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(9, 136, 255, 0.1) 0%, transparent 70%);
}

.comm-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.comm-pill .light-white {
    color: rgba(179, 179, 179, 0.75) !important;
}

.comm-val {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
}

.comm-label {
    color: #94a3b8;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 700;
}

.ms-final-cta {
    background: var(--ms-secondary);
    color: #ffffff;
    width: 100%;
    border: none;
    padding: 20px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.ms-final-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(9, 136, 255, 0.4);
}

@media (max-width: 991px) {
    .ms-hero-title {
        font-size: 3rem;
    }

    .ms-belief-card {
        padding: 30px;
    }

    .ms-card-title {
        font-size: 1.5rem;
    }
}

/* Force visibility for scroll animations if observer fails or on mobile */
.slide-up-animate {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}