/* Header & Layout */

/* Login Page Design Revamp */
.login-page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    overflow-y: auto;
    background-color: #fff;
}

.login-page-wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    font-family: "Inter", sans-serif;
    width: 100%;
}

.login-header {
    width: 100%;
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
    padding: 16px 0;
    flex-shrink: 0;
}

.header-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-shrink: 0;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    
    img {
        height: 30px;
        width: auto;
    }

    .logo-text {
        font-weight: 800;
        font-size: 20px;
        color: #000;
        letter-spacing: 1px;
        white-space: nowrap;
    }
}

.header-nav {
    display: flex;
    gap: 20px;

    a {
        text-decoration: none !important;
        color: #000;
        font-weight: 600;
        font-size: 14px;
        white-space: nowrap;
        flex-shrink: 0;
        
        &:hover {
            color: #FF4D1C;
        }
    }
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1.5px solid #000;
    border-radius: 8px;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    transition: all 0.2s ease;

    &:hover {
        background-color: #000;
        color: #fff;
    }
}

.login-page .header-login-btn {
    display: none !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 1.5px solid #111827;
    border-radius: 8px;
    padding: 8px;
    color: #000;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.mobile-tutor-stepper {
    display: none;
}

.login-main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 20px;
    background-color: #fff;
    padding-bottom: 0;

    @media (max-width: 767.98px) {
        padding-top: 0;
    }
}


/* Footer */

.login-footer {
    background-color: rgba(13, 19, 56, 1);
    color: #fff;
    padding: 80px 0 40px;
    width: 100%;
    flex-shrink: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 60px;
}

.footer-brand-section {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    
    img {
        height: 40px;
        width: auto;
        filter: brightness(0) invert(1);
    }

    .logo-text {
        font-weight: 800;
        font-size: 24px;
        color: #fff;
        letter-spacing: 1px;
    }
}

.footer-tagline {
    font-size: 16px;
    line-height: 1.6;
    color: #9ca3af;
    margin-bottom: 24px;
    text-align: start;
}

.footer-social-icons {
    display: flex;
    gap: 20px;
    
    a {
        color: #fff;
        opacity: 0.8;
        transition: opacity 0.2s ease;
        
        &:hover {
            opacity: 1;
            color: #FF4D1C;
        }
    }
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    flex: 1;
}

.footer-middle {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column {
    h3 {
        font-size: 14px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 24px;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-align: start;
    }

    ul {
        list-style: none;
        padding: 0;
        margin: 0;

        li {
            margin-bottom: 12px;
            
            a {
                color: #9ca3af;
                text-decoration: none;
                font-size: 14px;
                transition: color 0.2s ease;
                
                &:hover {
                    color: #fff;
                }
            }
        }
    }

    p {
        font-size: 14px;
        color: #9ca3af;
        margin: 0;
        text-align: start;
    }
}

.social-list {
    li a {
        display: flex;
        align-items: center;
        gap: 10px;
    }
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: start;
    
    img {
        height: 40px;
        width: auto;
    }
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
    
    p {
        font-size: 14px;
        color: #6b7280;
        margin: 0;
    }
}

@media (max-width: 1024px) {
    .footer-top {
        flex-direction: column;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-middle {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-links-grid,
    .footer-middle {
        grid-template-columns: 1fr;
    }
}

/* Content & Overrides */

/* Tutor Landing Page Styles */
.tutor-landing-container {
    width: 100%;
    margin: 0;
    padding: 0px 80px;
    background-color: #fff;
    box-sizing: border-box;
    
    .tutor-landing-content {
        max-width: 1600px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 100px;
        
        @media (max-width: 1100px) {
            flex-direction: column;
            text-align: center;
            gap: 80px;
        }
    }
    
    .tutor-landing-text {
        flex: 1.2;
        text-align: left;
        
        @media (max-width: 1100px) {
            text-align: center;
        }
    }
    
    .tutor-landing-title {
        font-size: 58px;
        font-weight: 800;
        line-height: 1.0;
        color: #111827;
        margin-bottom: 40px;
        letter-spacing: -0.05em;
        font-family: 'Inter', 'Outfit', sans-serif;
        
        @media (max-width: 767.98px) {
            font-size: 48px;
        }
    }
    
    .tutor-steps {
        display: flex;
        gap: 40px;
        margin-bottom: 40px;
        position: relative;
        
        @media (max-width: 767.98px) {
            flex-direction: column;
            gap: 32px;
        }
        
        /* Horizontal line connecting steps */
        &::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 0;
            right: 0;
            height: 1px;
            background: #E5E7EB;
            z-index: 0;
            
            @media (max-width: 767.98px) {
                display: none;
            }
        }
    }
    
    .tutor-step {
        flex: 1;
        position: relative;
        z-index: 1;
        
        .step-badge {
            display: inline-block;
            background: #F3F4F6;
            color: #6B7280;
            padding: 4px 14px;
            border-radius: 100px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
            border: 1px solid #E5E7EB;
            box-shadow: 0 0 0 4px #fff; /* Clear space around badge on the line */
        }
        
        .step-info {
            h3 {
                font-size: 24px;
                font-weight: 700;
                color: #111827;
                margin-bottom: 8px;
                letter-spacing: -0.02em;
            }
            
            p {
                font-size: 15px;
                color: #4B5563;
                margin: 0;
                line-height: 1.5;
            }
        }
    }

    
    .tutor-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 16px;
        background-color: #002AD1;
        color: #fff !important;
        padding: 20px 48px;
        border-radius: 40px;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 15px -3px rgba(0, 42, 209, 0.2), 0 4px 6px -2px rgba(0, 42, 209, 0.1);
        
        &:hover {
            background-color: #0023B0;
            transform: translateY(-2px);
            box-shadow: 0 20px 25px -5px rgba(0, 42, 209, 0.2), 0 10px 10px -5px rgba(0, 42, 209, 0.1);
        }
        
        svg {
            transition: transform 0.3s ease;
        }
        
        &:hover svg {
            transform: translateX(8px);
        }
    }
    
    .tutor-landing-image {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        position: relative;
        
        @media (max-width: 1100px) {
            width: 100%;
            justify-content: center;
            margin-top: 80px;
            padding-bottom: 40px;
        }
    }
    
    .image-stack {
        position: relative;
        width: 100%;
        max-width: 500px;
        
        .main-img {
            width: 100%;
            height: auto;
            /* border-radius: 24px; */
            /* box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); */
            position: relative;
            z-index: 10;
            object-fit: cover;
        }
        
        /* Stacked effect */
        &::after, &::before {
            content: none;
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 24px;
            top: 0;
            left: 0;
            transition: transform 0.5s ease;
        }
        
        /* &::after { */
        /*     background: #F3F4F6; */
        /*     z-index: 5; */
        /*     transform: translate(20px, 20px); */
        /* } */
        
        /* &::before { */
        /*     background: #E5E7EB; */
        /*     z-index: 1; */
        /*     transform: translate(40px, 40px); */
        /* } */
    }

    /* Benefits Section */
    .tutor-benefits-section {
        padding: 80px 0;
        background: #fff;
        
        .benefits-grid {
            max-width: 1600px;
            margin: 0 auto;
            /* padding: 0 80px; */
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            
            @media (max-width: 1100px) {
                grid-template-columns: 1fr;
                padding: 0 40px;
            }
        }
        
        .benefit-card {
            background: rgba(249, 249, 249, 1);
            padding: 48px;
            border-radius: 32px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: start;
            
            &:hover {
                transform: translateY(-8px);
                box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
            }
            
            .benefit-icon {
                width: 56px;
                height: 56px;
                background: #fff;
                border-radius: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #111827;
                margin-bottom: 32px;
                /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); */
            }
            
            h3 {
                font-size: 28px;
                font-weight: 800;
                color: #111827;
                margin-bottom: 16px;
                letter-spacing: -0.02em;
            }
            
            p {
                font-size: 16px;
                line-height: 1.6;
                color: #4B5563;
                margin: 0;
            }
        }
    }

    /* Global Reach Section */
    .tutor-global-section {
        padding: 0 0 80px 0;
        background: #fff;
        
        
        .global-content {
            max-width: 1600px;
            margin: 0 auto;
            /* padding: 0 80px; */
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 120px;
            
            @media (max-width: 1100px) {
                flex-direction: column;
                text-align: center;
                gap: 80px;
                padding: 0 40px;
            }
        }
        
        .global-text {
            flex: 1.2;
            text-align: start;
        }
        
        .global-title {
            font-size: 58px;
            font-weight: 800;
            line-height: 1.05;
            color: #111827;
            margin-bottom: 32px;
            letter-spacing: -0.04em;
            text-align: start;
        }
        
        .global-subtitle {
            font-size: 20px;
            line-height: 1.6;
            color: #4B5563;
            margin-bottom: 48px;
            max-width: 600px;
            text-align: start;
        }
        
        .global-checklist {
            list-style: none;
            padding: 0;
            margin: 0 0 64px 0;
            display: flex;
            flex-direction: column;
            gap: 20px;
            
            li {
                display: flex;
                align-items: center;
                gap: 16px;
                font-size: 18px;
                font-weight: 600;
                color: #111827;
                
                svg {
                    color: #002AD1;
                    flex-shrink: 0;
                }
            }
        }
        
        .global-image {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            
            @media (max-width: 1100px) {
                justify-content: center;
            }
        }
    }

    /* Testimonial Section */
    .tutor-testimonial-section {
        padding: 0px 0;
        background: #fff;
        
        .testimonial-content {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 120px;
            
            @media (max-width: 1100px) {
                flex-direction: column;
                text-align: center;
                gap: 60px;
                padding: 0 40px;
            }
        }
        
        .testimonial-image {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            
            @media (max-width: 1100px) {
                justify-content: center;
                order: 2;
            }
        }
        
        .testimonial-text {
            flex: 1.2;
            text-align: start;
            
            @media (max-width: 1100px) {
                order: 1;
            }
        }
        
        .testimonial-quote {
            font-size: 50px;
            font-weight: 800;
            line-height: 1.1;
            color: #111827;
            margin-bottom: 32px;
            letter-spacing: -0.04em;
            
            @media (max-width: 767.98px) {
                font-size: 40px;
            }
        }
        
        .testimonial-author {
            font-size: 20px;
            color: #4B5563;
            margin-bottom: 48px;
            
            strong {
                color: #111827;
                font-weight: 800;
            }
        }
    }
    /* FAQ Section */
    .tutor-faq-section {
        padding: 80px 0;
        background: #fff;
        
        .faq-title {
            font-size: 48px;
            font-weight: 800;
            color: #111827;
            margin-bottom: 64px;
            letter-spacing: -0.03em;
            
            @media (max-width: 767.98px) {
                font-size: 32px;
                text-align: start;
            }
        }
        
        .faq-accordion {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .faq-item {
            background: #F9FAFB !important;
            border-radius: 16px !important;
            overflow: hidden;
            transition: all 0.2s ease;
            display: block;
            margin-bottom: 0;
            border: none !important;
            
            &:hover {
                background: #F3F4F6 !important;
            }
            
            summary {
                padding: 24px 32px !important;
                font-size: 18px !important;
                font-weight: 700 !important;
                color: #111827 !important;
                cursor: pointer;
                list-style: none !important;
                display: flex !important;
                align-items: center;
                justify-content: space-between;
                outline: none !important;
                
                /* Hide default arrow */
                &::-webkit-details-marker {
                    display: none !important;
                }
                &::marker {
                    display: none !important;
                }
                
                svg {
                    transition: transform 0.3s ease;
                    color: #6B7280;
                    pointer-events: none;
                }
            }
            
            &[open] summary svg {
                transform: rotate(180deg);
            }
            
            .faq-content {
                padding: 0 32px 24px 32px !important;
                color: #4B5563 !important;
                line-height: 1.6 !important;
                font-size: 16px !important;
                
                p {
                    margin: 0;
                    text-align: start;
                }
            }
        }
    }

    /* Final CTA Section */
    .tutor-final-cta-section {
        padding: 0 0 80px 0;
        background: #fff;
        
        .cta-container {
            max-width: 1400px;
            margin: 0 auto;
            background: #EEF2FF;
            border-radius: 40px;
            padding: 80px;
            display: flex;
            align-items: center;
            /* gap: 80px; */
            
            @media (max-width: 1100px) {
                flex-direction: column;
                padding: 60px 40px;
                gap: 60px;
                text-align: center;
            }
        }
        
        .cta-image {
            flex: 1;
            display: flex;
            justify-content: center;
            
            .image-stack {
                max-width: 450px;
            }
        }
        
        .cta-card {
            flex: 1;
            background: #fff;
            padding: 64px;
            border-radius: 30px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
            text-align: start;
            
            @media (max-width: 767.98px) {
                padding: 40px 32px;
            }
            
            h2 {
                font-size: 40px;
                font-weight: 800;
                line-height: 1.1;
                color: #111827;
                margin-bottom: 24px;
                letter-spacing: -0.04em;
                
                @media (max-width: 767.98px) {
                    font-size: 36px;
                }
            }
            
            p {
                font-size: 18px;
                line-height: 1.6;
                color: #4B5563;
                margin-bottom: 48px;
            }
            
            .cta-button {
                display: inline-block;
                background: #111827;
                color: #fff !important;
                padding: 20px 40px;
                border-radius: 100px;
                font-size: 18px;
                font-weight: 700;
                text-decoration: none !important;
                transition: all 0.3s ease;
                
                &:hover {
                    background: #000;
                    transform: translateY(-2px);
                    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
                }
            }
        }
    }

    @media (max-width: 767.98px) {
        padding: 40px 0px;

        .tutor-landing-title {
            font-size: 32px;
            text-align: start;
            margin-bottom: 32px;
            line-height: 1.2;
        }

        .header-container {
            padding: 0 16px;
        }

        .header-right {
            gap: 12px;
        }

        .mobile-tutor-stepper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 32px;

            .mobile-step {
                background: #F3F4F6;
                color: #6B7280;
                padding: 6px 16px;
                border-radius: 100px;
                font-size: 12px;
                font-weight: 600;
                border: 1px solid #E5E7EB;
            }

            .mobile-step-line {
                flex: 1;
                max-width: 40px;
                height: 1px;
                background: #E5E7EB;
            }
        }

        .tutor-steps {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 32px;
            

            &::before {
                display: none;
            }
        }

        .tutor-step {
            background: #F4F7FF;
            padding: 24px;
            border-radius: 20px;
            border: none;
            text-align: start;

            .step-badge {
                display: none;
            }

            .step-info {
                h3 {
                    font-size: 18px;
                    margin-bottom: 4px;
                }
                p {
                    font-size: 14px;
                }
            }
        }

        .tutor-cta-btn {
            display: flex;
            width: 100%;
            justify-content: center;
            padding: 16px 32px;
            font-size: 15px;
        }

        .tutor-landing-image {
            margin-top: 60px;
        }

        .image-stack {
            position: relative;
            z-index: 1;

            .main-img {
                border-radius: 20px;
                position: relative;
                z-index: 10;
            }
        }

        /* Benefits Section Mobile */
        .tutor-benefits-section {
            padding: 0;

            .benefits-grid {
                padding: 0 16px;
                gap: 20px;
            }

            .benefit-card {
                padding: 32px 24px;
                border-radius: 24px;
                background: #F9F9FB;
                text-align: left;

                .benefit-icon {
                    width: 48px;
                    height: 48px;
                    border-radius: 12px;
                    margin-bottom: 24px;
                    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
                    background: #fff;
                    display: flex !important;
                    align-items: center;
                    justify-content: center;
                }

                h3 {
                    font-size: 20px;
                    margin-bottom: 12px;
                    letter-spacing: -0.01em;
                    text-align: left;
                }

                p {
                    font-size: 14px;
                    line-height: 1.5;
                    text-align: left;
                }
            }
        }

        /* Global Reach Section Mobile */
        .tutor-global-section {
            padding: 40px 0;

            .global-content {
                padding: 0 16px;
                gap: 0px;
            }

            .global-text {
                text-align: left;
            }

            .global-title {
                font-size: 32px;
                text-align: left;
                margin-bottom: 24px;
                line-height: 1.2;
            }

            .global-subtitle {
                font-size: 16px;
                text-align: left;
                margin-bottom: 32px;
                line-height: 1.5;
            }

            .global-checklist {
                margin-bottom: 40px;
                text-align: left;
                padding-left: 0;

                li {
                    font-size: 16px;
                    text-align: left;
                    display: flex;
                    align-items: flex-start;
                    justify-content: flex-start;
                    gap: 12px;
                }
            }

            .global-image {
                margin-top: 40px;
                order: 2;
                width: 100%;
                justify-content: center;
            }
        }
    }
}


/* Reset login styles for tutor landing page */
.login-wrapper.tutor-landing-page-on .login-container {
    padding: 0px;
}
.login-page-overlay.tutor-landing-page {
    background: #fff !important;
    display: block !important;
    /* height: auto !important; */
    min-height: 100%;
    padding: 0 !important;
    overflow: auto;
    z-index: 1000;
    
    .login-page-wrapper {
        background: transparent !important;
        box-shadow: none !important;
        max-width: none !important;
        width: 100% !important;
        padding: 0 !important;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }
    
    .login-header {
        background: #fff;
        border-bottom: 1px solid #F3F4F6;
        padding: 16px 0;
        position: sticky;
        top: 0;
        z-index: 100;
        
        .header-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            
            @media (max-width: 767.98px) {
                padding: 0 24px;
            }
        }

        .header-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none !important;

            img {
                height: 30px;
                width: auto;
            }

            .logo-text {
                font-size: 24px;
                font-weight: 800;
                color: #002AD1;
                letter-spacing: -0.02em;
            }
        }

        .header-nav {
            display: flex;
            gap: 24px;
            /* margin-left: 48px; */

            a {
                color: #111827;
                font-size: 15px;
                font-weight: 600;
                text-decoration: none !important;
                transition: color 0.2s ease;

                &:hover {
                    color: #002AD1;
                }
            }

            @media (max-width: 1000px) {
                display: none;
            }
        }

        .header-right {
            display: flex;
            align-items: center;
        }

        .header-lang {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #4B5563;
            font-size: 14px;
            font-weight: 500;
            margin-right: 24px;
            cursor: pointer;

            @media (max-width: 767.98px) {
                display: none;
            }
        }

        .header-login-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            border: 1.5px solid #111827;
            border-radius: 8px;
            color: #111827;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none !important;
            transition: all 0.2s ease;

            &:hover {
                background: #111827;
                color: #fff !important;
            }

            @media (max-width: 767.98px) {
                padding: 8px 16px;
                font-size: 14px;
            }
        }
    }

    }

.login-page-overlay.tutor-landing-page {
    overflow-x: hidden !important;
}

@media (max-width: 767.98px) {

    .tutor-landing-container .tutor-landing-content {
        gap: 0 !important;
    }

    .tutor-landing-container .tutor-testimonial-section .testimonial-content {
        padding: 0 !important;
    }

    .tutor-landing-container .tutor-faq-section .faq-title {
        margin-bottom: 20px;
    }

    .tutor-landing-container .tutor-faq-section .faq-accordion {
        padding: 0;
        text-align: start;
    }

    .tutor-landing-container .tutor-final-cta-section .cta-container {
        padding: 30px 20px;
        gap: 30px;
    }

    .tutor-landing-container .image-stack .main-img {
        border-radius: 0;
    }

    .tutor-landing-container .tutor-final-cta-section .cta-card .cta-button {
        font-size: 14px;
    }

    .tutor-landing-container .tutor-faq-section {
        padding-top: 20px;
    }

    .tutor-landing-container .tutor-final-cta-section {
        padding-bottom: 0;
    }

    .login-page-overlay.tutor-landing-page .login-header {
        .header-right {
            gap: 12px;
        }

        .mobile-menu-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            border: 1.5px solid #111827;
            border-radius: 8px;
            padding: 8px;
            color: #111827;
            cursor: pointer;
            width: 40px;
            height: 40px;
        }
    }

    .no-scroll {
        overflow: hidden !important;
    }

    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        backdrop-filter: blur(4px);

        &.active {
            opacity: 1;
            pointer-events: auto;
        }
    }

    .mobile-menu-drawer {
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 360px;
        height: 100%;
        background: #fff;
        z-index: 1001;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);

        &.open {
            transform: translateX(0);
        }

        .drawer-header {
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: end;
            border-bottom: 1px solid #F3F4F6;

            .header-logo img {
                height: 30px !important;
            }

            .drawer-close {
                background: none;
                border: none;
                padding: 8px;
                color: #111827;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: background 0.2s;

                &:hover {
                    background: #F3F4F6;
                }
            }
        }

        .drawer-content {
            flex: 1;
            overflow-y: auto;
            padding: 32px 20px;
        }

        .drawer-nav {
            display: flex;
            flex-direction: column;
            gap: 12px;

            a {
                display: flex;
                align-items: center;
                gap: 16px;
                padding: 16px;
                font-size: 17px;
                font-weight: 600;
                color: #111827;
                text-decoration: none !important;
                border-radius: 12px;
                transition: all 0.2s ease;
                background: #F9FAFB;

                i {
                    width: 24px;
                    font-size: 18px;
                    color: #002AD1;
                    text-align: center;
                }

                &:hover {
                    background: #EEF2FF;
                    color: #002AD1;
                }
            }
        }

        .drawer-footer {
            padding: 24px 20px;
            border-top: 1px solid #F3F4F6;
            display: flex;
            flex-direction: column;
            gap: 12px;

            .drawer-login-btn, .drawer-signup-btn {
                padding: 16px;
                border-radius: 12px;
                font-size: 16px;
                font-weight: 700;
                text-align: center;
                text-decoration: none !important;
                transition: all 0.2s ease;
            }

            .drawer-login-btn {
                background: #fff;
                border: 1.5px solid #111827;
                color: #111827;
            }

            .drawer-signup-btn {
                background: #002AD1;
                color: #fff !important;
                box-shadow: 0 10px 15px -3px rgba(0, 42, 209, 0.2);
            }
        }
    }

    .header-logo img {
        filter: brightness(0) invert(0);
    }
}

@media (max-width: 767.98px) {
    .header-nav, .header-lang {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: flex !important;
    }
}

@media (min-width: 768px) {
    .mobile-menu-drawer {
        display: none !important;
    }
}
