/* Learn Center Section Styles */
.learn-center-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #FFF9F5 0%, #FFFFFF 100%);
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.learn-center-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Public Disclosure Button */
.disclosure-wrapper {
    margin-bottom: 40px;
    display: inline-block;
}

.disclosure-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #F58221;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(245, 130, 33, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.disclosure-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.disclosure-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(245, 130, 33, 0.4);
    background: #e0690a;
}

.disclosure-btn:hover::before {
    left: 100%;
}

.btn-icon,
.btn-arrow {
    font-size: 18px;
}

.btn-arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.disclosure-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Section Title */
.learn-center-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.title-highlight {
    color: #F58221;
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(245, 130, 33, 0.2);
    z-index: -1;
    transform: skewX(-15deg);
}

/* Login Grid */
.login-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

/* Login Cards */
.login-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    overflow: hidden;
}

.login-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(245, 130, 33, 0.15);
    border-color: #F58221;
    text-decoration: none !important;
}

.card-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: #F58221;
    border-radius: 50%;
    opacity: 0.05;
    transition: all 0.4s ease;
}

.login-card:hover .card-decoration {
    transform: scale(8);
    opacity: 0.1;
}

.card-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(245, 130, 33, 0.1);
    color: #F58221;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.login-card:hover .card-icon-wrapper {
    background: #F58221;
    color: white;
    transform: rotateY(180deg);
}

.card-content {
    text-align: left;
    flex-grow: 1;
    z-index: 1;
}

.card-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    transition: color 0.3s ease;
    text-decoration: none !important;
}

.login-card:hover .card-content h3 {
    color: #F58221;
}

.login-link-text {
    font-size: 15px;
    color: #666;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    text-decoration: none !important;
}

.login-card:hover .login-link-text {
    color: #333;
}

.login-link-text i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.login-card:hover .login-link-text i {
    transform: translateX(5px);
}

/* Variant Styling for Teacher/Student distinction if needed, currently uniform for clean look */

/* Responsive Design */
@media screen and (max-width: 768px) {
    .learn-center-section {
        padding: 60px 20px;
    }

    .learn-center-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .login-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .login-card {
        padding: 30px;
        flex-direction: row;
        /* Keep icon side-by-side on mobile too for creative look, or column if preferred */
    }

    .disclosure-btn {
        padding: 14px 24px;
        font-size: 14px;
        width: 100%;
        /* Full width on mobile */
        justify-content: center;
    }

    .btn-text {
        white-space: normal;
        /* Allow text wrap carefully */
    }
}

@media screen and (max-width: 480px) {
    .login-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
        gap: 15px;
    }

    .card-content {
        text-align: center;
        width: 100%;
    }

    .login-link-text {
        justify-content: center;
    }

    .card-icon-wrapper {
        margin: 0 auto;
    }
}