/* Course Chip Styles */
.course-chip {
    background: #9E73C3;
    border-radius: 6px;
    padding: 12px 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.course-chip.active .chip-content {
    border-radius: 20px;
    padding: 8px 16px;
}

.chip-content {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 500;
    font-size: 14px;
}

.chip-icon {
    font-size: 16px;
    color: white;
}

.chip-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
}

.course-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(158, 115, 195, 0.3);
}

.course-chip.active:hover {
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

/* Glass Effect Styles */
.glass-effect {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.glass-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease-in-out;
}

.glass-effect:hover::before {
    left: 100%;
}

.glass-effect:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(94, 25, 155, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.countdown-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.countdown-item:hover {
    transform: scale(1.08);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.countdown-number {
    animation: pulse 3s ease-in-out infinite;
}

.countdown-number:hover {
    animation: none;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 15px 45px rgba(94, 25, 155, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
    50% { box-shadow: 0 15px 45px rgba(94, 25, 155, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
}

.countdown-number {
    animation: pulse 3s ease-in-out infinite, glow 4s ease-in-out infinite;
}

/* Responsive Countdown Styles */
.countdown-text {
    font-size: 2rem;
    line-height: 1;
}

.countdown-label-text {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .countdown-timer {
        gap: 8px !important;
    }

    .countdown-number {
        min-width: 60px !important;
        min-height: 60px !important;
        max-width: 80px !important;
        max-height: 80px !important;
        padding: 8px !important;
    }

    .countdown-text {
        font-size: 1.5rem !important;
    }

    .countdown-label-text {
        font-size: 0.7rem !important;
        letter-spacing: 0.3px !important;
    }

    .countdown-item {
        margin-bottom: 10px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .countdown-timer {
        gap: 6px !important;
    }

    .countdown-number {
        min-width: 50px !important;
        min-height: 50px !important;
        max-width: 70px !important;
        max-height: 70px !important;
        padding: 6px !important;
    }

    .countdown-text {
        font-size: 1.2rem !important;
    }

    .countdown-label-text {
        font-size: 0.6rem !important;
        letter-spacing: 0.2px !important;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .countdown-number {
        min-width: 80px !important;
        min-height: 80px !important;
        max-width: 100px !important;
        max-height: 100px !important;
    }

    .countdown-text {
        font-size: 1.8rem !important;
    }

    .countdown-label-text {
        font-size: 0.75rem !important;
    }
}

/* Why Learn with Marazin Styles */
.rbt-why-learn-area {
    position: relative;
    overflow: hidden;
}

.rbt-why-learn-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(94, 25, 155, 0.05) 0%, rgba(158, 115, 195, 0.05) 100%);
    pointer-events: none;
}

.rbt-feature-box {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.rbt-feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9E73C3, #5E199B);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.rbt-feature-box:hover::before {
    transform: scaleX(1);
}

.rbt-feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(94, 25, 155, 0.15);
}

.rbt-feature-box .icon-wrapper {
    margin-bottom: 25px;
}

.rbt-feature-box .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9E73C3, #5E199B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    transition: all 0.4s ease;
}

.rbt-feature-box .icon i {
    font-size: 32px;
    color: white;
    transition: all 0.4s ease;
}

.rbt-feature-box:hover .icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(94, 25, 155, 0.3);
}

.rbt-feature-box:hover .icon i {
    transform: scale(1.1);
}

.rbt-feature-box .content h5.title {
    font-size: 20px;
    font-weight: 600;
    color: #27374D;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.rbt-feature-box:hover .content h5.title {
    color: #5E199B;
}

.rbt-feature-box .content p.description {
    color: #6C757D;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .rbt-feature-box {
        padding: 30px 20px;
    }
    
    .rbt-feature-box .icon {
        width: 60px;
        height: 60px;
    }
    
    .rbt-feature-box .icon i {
        font-size: 24px;
    }
    
    .rbt-feature-box .content h5.title {
        font-size: 18px;
    }
}

/* Who It's For Styles */
.rbt-who-its-for-area {
    position: relative;
    overflow: hidden;
}

.rbt-who-its-for-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(158, 115, 195, 0.03) 0%, rgba(94, 25, 155, 0.03) 100%);
    pointer-events: none;
}

/* Timeline Design */
.target-audience-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.target-audience-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #9E73C3, #5E199B);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: flex-start;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: relative;
    z-index: 2;
    margin-right: 40px;
    flex-shrink: 0;
}

.marker-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9E73C3, #5E199B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(94, 25, 155, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.marker-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #9E73C3, #5E199B);
    border-radius: 50%;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.marker-icon i {
    font-size: 24px;
    color: white;
    transition: all 0.4s ease;
}

.timeline-item:hover .marker-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(94, 25, 155, 0.4);
}

.timeline-item:hover .marker-icon::before {
    transform: scale(1.2);
    opacity: 0.5;
}

.timeline-item:hover .marker-icon i {
    transform: scale(1.1);
}

.timeline-content {
    flex: 1;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #9E73C3;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9E73C3, #5E199B);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(94, 25, 155, 0.15);
}

.timeline-item:hover .timeline-content::before {
    transform: scaleX(1);
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

.audience-title {
    font-size: 22px;
    font-weight: 600;
    color: #27374D;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.timeline-item:hover .audience-title {
    color: #5E199B;
}

.audience-description {
    color: #6C757D;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.audience-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(158, 115, 195, 0.1), rgba(94, 25, 155, 0.1));
    color: #5E199B;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(158, 115, 195, 0.2);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: linear-gradient(135deg, rgba(158, 115, 195, 0.2), rgba(94, 25, 155, 0.2));
    transform: translateY(-2px);
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .target-audience-timeline::before {
        left: 30px;
    }

    .timeline-marker {
        margin-right: 25px;
    }

    .marker-icon {
        width: 50px;
        height: 50px;
    }

    .marker-icon i {
        font-size: 20px;
    }

    .timeline-content {
        padding: 20px;
    }

    .audience-title {
        font-size: 20px;
    }

    .audience-features {
        gap: 6px;
    }

    .feature-tag {
        font-size: 12px;
        padding: 5px 10px;
    }
}

/* New Content Sections - Simple Design */
.content-section {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.section-heading {
    color: #5E199B;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 2px solid #9E73C3;
    padding-bottom: 8px;
}

/* App Cards */
.app-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.app-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(94, 25, 155, 0.15);
}

.app-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9E73C3, #5E199B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.app-icon i {
    font-size: 20px;
    color: white;
}

.app-card h4 {
    color: #27374D;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.app-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.app-card ul li {
    color: #6C757D;
    font-size: 13px;
    margin-bottom: 4px;
    position: relative;
    padding-left: 12px;
}

.app-card ul li:before {
    content: '•';
    color: #9E73C3;
    position: absolute;
    left: 0;
}

.bonus-apps {
    background: #e8f4fd;
    border-radius: 8px;
    padding: 12px;
    border-left: 4px solid #2196F3;
    font-size: 14px;
}

/* Foundations Grid */
.foundations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.foundation-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 12px;
    text-align: center;
    font-weight: 600;
    color: #5E199B;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.foundation-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(158, 115, 195, 0.1), transparent);
    transition: left 0.6s ease;
}

.foundation-item:hover {
    background: linear-gradient(135deg, #9E73C3 0%, #5E199B 100%);
    color: white;
    transform: translateY(-3px);
    border-color: #9E73C3;
    box-shadow: 0 8px 25px rgba(94, 25, 155, 0.25);
}

.foundation-item:hover::before {
    left: 100%;
}

/* Workflow List */
.workflow-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.workflow-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #e9ecef;
    border-radius: 25px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #6C757D;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.workflow-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(158, 115, 195, 0.1), transparent);
    transition: left 0.6s ease;
}

.workflow-item:hover {
    background: linear-gradient(135deg, #9E73C3 0%, #5E199B 100%);
    color: white;
    transform: translateY(-2px);
    border-color: #9E73C3;
    box-shadow: 0 6px 20px rgba(94, 25, 155, 0.25);
}

.workflow-item:hover::before {
    left: 100%;
}

/* Outcome Cards */
.outcome-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #9E73C3;
}

.outcome-card h4 {
    color: #5E199B;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.outcome-card ul {
    list-style: none;
    padding: 0;
}

.outcome-card ul li {
    color: #6C757D;
    font-size: 15px;
    margin-bottom: 8px;
    padding-left: 18px;
    position: relative;
}

.outcome-card ul li:before {
    content: '✓';
    color: #9E73C3;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Project Cards */
.project-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(94, 25, 155, 0.15);
}

.project-number {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #9E73C3, #5E199B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    margin: 0 auto 15px;
}

.project-card h4 {
    color: #27374D;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.project-card p {
    color: #6C757D;
    font-size: 13px;
    margin: 0;
}

/* Month Cards */
.month-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.month-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(94, 25, 155, 0.15);
}

.month-header {
    background: linear-gradient(135deg, #9E73C3, #5E199B);
    color: white;
    padding: 18px;
    text-align: center;
}

.month-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.month-header span {
    font-size: 13px;
    opacity: 0.9;
}

.month-content {
    padding: 20px;
}

.month-content h5 {
    color: #5E199B;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.month-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.month-content ul li {
    color: #6C757D;
    font-size: 13px;
    margin-bottom: 6px;
    padding-left: 12px;
    position: relative;
}

.month-content ul li:before {
    content: '•';
    color: #9E73C3;
    position: absolute;
    left: 0;
}

.deliverable {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 10px;
    border-left: 3px solid #9E73C3;
    font-size: 13px;
    color: #5E199B;
}

.final-week {
    background: #fff3cd;
    border-radius: 8px;
    padding: 10px;
    border-left: 3px solid #ffc107;
    font-size: 13px;
    color: #856404;
    margin-top: 12px;
}

/* Mentor Cards */
.mentor-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.mentor-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(94, 25, 155, 0.15);
}

.mentor-info h4 {
    color: #5E199B;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.mentor-info span {
    color: #9E73C3;
    font-size: 15px;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.mentor-info p {
    color: #6C757D;
    font-size: 13px;
    margin: 0;
}

/* Policy Cards */
.policy-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #9E73C3;
}

.policy-card h4 {
    color: #5E199B;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.policy-card p {
    color: #6C757D;
    font-size: 14px;
    margin: 0;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card.featured {
    border-color: #9E73C3;
    transform: scale(1.03);
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(94, 25, 155, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-3px);
}

.pricing-card h4 {
    color: #27374D;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.price {
    color: #5E199B;
    font-size: 24px;
    font-weight: 700;
}

/* FAQ List */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 15px;
    border-left: 4px solid #9E73C3;
}

.faq-item h4 {
    color: #5E199B;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.faq-item p {
    color: #6C757D;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Gallery Thumbs */
.gallery-thumb {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gallery-thumb:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(94, 25, 155, 0.15);
}

.gallery-thumb img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

/* Reduce section gaps */
.rbt-section-gap {
    padding: 60px 0;
}

.mb--60 {
    margin-bottom: 40px !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .foundations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .workflow-list {
        justify-content: center;
    }

    .month-card {
        margin-bottom: 15px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-3px);
    }

    .rbt-section-gap {
        padding: 40px 0;
    }

    .mb--60 {
        margin-bottom: 30px !important;
    }
}

