/* Learn Page Specific Styles */

/* Hero Section */
.learn-hero {
    background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.preview-banner {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.preview-banner span {
    font-size: 0.875rem;
    font-weight: 500;
}

.learn-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Journey Navigation */
.journey-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
}

.journey-step:hover,
.journey-step.active {
    opacity: 1;
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    backdrop-filter: blur(10px);
}

.journey-step.active .step-number {
    background: white;
    color: #4c1d95;
}

.step-name {
    font-weight: 600;
}

/* Section Styling */
.launch-section,
.learn-section,
.lead-section {
    padding: 80px 0;
}

.launch-section {
    background: #f9fafb;
}

.learn-section {
    background: white;
}

.lead-section {
    background: #f9fafb;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
}

/* Demo Cards */
.demo-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.video-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.video-placeholder {
    position: relative;
    aspect-ratio: 16/9;
    background: #4c1d95;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    color: #4c1d95;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background: white;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.duration {
    display: inline-block;
    background: #e5e7eb;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Timeline */
.timeline-container {
    margin: 3rem 0;
}

.timeline-container h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #e5e7eb;
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    align-items: center;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    flex: 1;
    text-align: right;
    padding-right: 3rem;
    font-weight: 600;
    color: #6b7280;
}

.timeline-item:nth-child(even) .timeline-date {
    text-align: left;
    padding-left: 3rem;
    padding-right: 0;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.timeline-item.active .timeline-content {
    border: 2px solid #4c1d95;
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.timeline-content p {
    color: #6b7280;
    margin: 0;
}

/* Module Grid */
.modules-preview {
    margin: 4rem 0;
}

.modules-preview h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.module-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.module-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.module-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.module-card p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.module-duration {
    display: inline-block;
    background: #e5e7eb;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
}

/* Community Preview */
.community-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.whatsapp-preview {
    background: #075e54;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.chat-header {
    background: #128c7e;
    color: white;
    padding: 1rem;
    font-weight: 600;
}

.chat-messages {
    padding: 1rem;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23e5ddd5"/><path d="M0,50 Q25,40 50,50 T100,50" stroke="%23d4cfc7" fill="none" stroke-width="0.5"/></svg>');
    min-height: 200px;
}

.message {
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.demo-overlay {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
}

.newsletter-preview {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.newsletter-preview h4 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.newsletter-content p {
    margin-bottom: 0.5rem;
    color: #6b7280;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 4rem;
}

.cta-primary {
    background: #4c1d95;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #5b21b6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 29, 149, 0.3);
}

.cta-secondary {
    background: transparent;
    color: #4c1d95;
    border: 2px solid #4c1d95;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #4c1d95;
    color: white;
}

.cta-note {
    margin-top: 1rem;
    color: #6b7280;
    font-size: 0.875rem;
}

/* LMS Demo */
.lms-mockup {
    background: #f3f4f6;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: 500px;
    position: relative;
}

.lms-sidebar {
    background: #1f2937;
    padding: 1.5rem;
}

.lms-menu-item {
    color: #9ca3af;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lms-menu-item:hover,
.lms-menu-item.active {
    background: #374151;
    color: white;
}

.lms-content {
    padding: 2rem;
    background: white;
}

.course-progress {
    margin-bottom: 2rem;
}

.progress-bar {
    height: 12px;
    background: #e5e7eb;
    border-radius: 50px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4c1d95 0%, #7c3aed 100%);
    transition: width 0.5s ease;
}

.lesson-preview {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 12px;
}

.video-thumbnail {
    aspect-ratio: 16/9;
    background: #4c1d95;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
    cursor: pointer;
}

.play-overlay {
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    color: #4c1d95;
}

.demo-watermark {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #fbbf24;
    color: #1f2937;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Quiz Section */
.quiz-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 0 auto;
}

.quiz-options {
    margin: 1.5rem 0;
}

.quiz-option {
    display: block;
    padding: 1rem;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quiz-option:hover {
    border-color: #4c1d95;
    background: #f3f4f6;
}

.quiz-option input {
    margin-right: 1rem;
}

.quiz-submit {
    background: #10b981;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

/* TV Grid */
.tv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tv-episode {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tv-episode:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.episode-thumb {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 100%);
    position: relative;
}

.episode-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

.tv-episode h5 {
    padding: 1rem;
    margin: 0;
    color: #1f2937;
}

.tv-episode p {
    padding: 0 1rem 1rem;
    margin: 0;
    color: #6b7280;
    font-size: 0.875rem;
}

/* Mentor Grid */
.mentor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mentor-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.mentor-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.mentor-role {
    color: #4c1d95;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.mentor-bio {
    color: #6b7280;
    margin-bottom: 1rem;
}

.mentor-availability .available {
    display: inline-block;
    background: #d1fae5;
    color: #065f46;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Impact Stories */
.story-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.impact-story {
    display: grid;
    grid-template-columns: 300px 1fr;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.story-image {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    min-height: 250px;
}

.story-content {
    padding: 2rem;
}

.story-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.story-leader {
    color: #4c1d95;
    font-weight: 600;
    margin-bottom: 1rem;
}

.impact-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.impact-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}

/* Opportunities */
.opportunity-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.opp-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.opp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.opp-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.opp-status {
    display: inline-block;
    background: #d1fae5;
    color: #065f46;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 1rem;
}

.opp-status.coming-soon {
    background: #fef3c7;
    color: #92400e;
}

/* Path Timeline */
.path-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem 0;
}

.path-step {
    text-align: center;
    flex: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #e5e7eb;
    color: #6b7280;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.path-step.highlight .step-icon {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    font-size: 2rem;
}

.path-arrow {
    font-size: 2rem;
    color: #e5e7eb;
    margin: 0 1rem;
}

/* Final CTA */
.final-cta {
    text-align: center;
    background: white;
    padding: 4rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 4rem;
}

.final-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.cta-primary.large,
.cta-secondary.large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

.social-share {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.share-btn {
    background: #f3f4f6;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .learn-hero h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .journey-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .video-preview {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        margin-left: 40px;
    }
    
    .timeline-date {
        text-align: left !important;
        padding: 0 0 1rem 0 !important;
    }
    
    .community-showcase {
        grid-template-columns: 1fr;
    }
    
    .lms-mockup {
        grid-template-columns: 1fr;
    }
    
    .lms-sidebar {
        display: none;
    }
    
    .impact-story {
        grid-template-columns: 1fr;
    }
    
    .story-image {
        min-height: 200px;
    }
    
    .path-timeline {
        flex-direction: column;
    }
    
    .path-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .share-buttons {
        flex-direction: column;
    }
} 