/* 
   Zolk Design System - Global Styles
*/

:root {
    /* Colors */
    --bg-body: #000000;
    --bg-sidebar: #0a0a0a;
    --bg-surface: #000000;
    --bg-surface-hover: #18181b;
    --bg-input: #121214;

    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --text-dim: #52525b;

    --primary: #FF914D;
    --primary-hover: #ff7b2b;

    --brand-orange: #FF914D;
    --accent-purple: #8b5cf6;

    --border: rgba(255, 145, 77, 0.15);
    --border-sidebar: rgba(255, 145, 77, 0.1);

    /* Gradient Variables - Updated Orange */
    --gradient-orange-black: linear-gradient(135deg, rgba(255, 145, 77, 0.3) 0%, #000000 100%);
    --gradient-orange-black-subtle: linear-gradient(135deg, rgba(255, 145, 77, 0.05) 0%, #000000 100%);
    --gradient-orange-glow: 0 0 15px rgba(255, 145, 77, 0.2);
    --gradient-orange-glow-hover: 0 0 20px rgba(255, 145, 77, 0.3);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --sidebar-width: 200px;
    --bottom-nav-height: 70px;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* NAVBAR / SIDEBAR */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: var(--sidebar-width);
    background: linear-gradient(180deg, rgba(255, 145, 77, 0.03) 0%, #000000 100%);
    border-right: 1px solid var(--border-sidebar);
    display: flex;
    flex-direction: column;
    padding: 24px;
    z-index: 1000;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
}

.brand-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
    padding-left: 12px;
}


.accent-dot {
    color: var(--primary);
}

.brand-text {
    display: inline-block;
}

.highlight-orange {
    color: var(--brand-orange);
}


.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    border-radius: 12px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
}

.nav-item svg {
    width: 20px;
    height: 20px;
    stroke-width: 2px;
}

.nav-item:hover {
    border: 1px solid transparent;
}

.nav-item.active {
    position: relative;
    color: var(--text-main);
    background: radial-gradient(circle at 40px 50%, rgba(255, 145, 77, 0.25) 0%, transparent 60%);
    border: none;
    box-shadow: none;
}

.nav-item.active::before,
.nav-item:hover::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1.5px;
    background: linear-gradient(to right, rgba(255, 145, 77, 0.6), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}


.btn-sidebar-login {
    padding: 12px 20px;
    font-size: 0.85rem;
    text-align: center;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 145, 77, 0.2) 0%, rgba(255, 145, 77, 0.05) 100%);
    color: var(--primary);
    border: 1px solid rgba(255, 145, 77, 0.3);
    border-radius: var(--radius-sm);
    box-shadow: var(--gradient-orange-glow);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    display: block;
}

.btn-sidebar-login:hover {
    background: linear-gradient(135deg, rgba(255, 145, 77, 0.3) 0%, rgba(255, 145, 77, 0.1) 100%);
    box-shadow: var(--gradient-orange-glow-hover);
    transform: translateY(-2px);
    color: #fff;
}

/* ================= LOGIN MODAL ================= */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    z-index: 10000;
    overflow-y: auto;
    padding: 40px 20px;
}

.login-modal.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    display: none;
    z-index: 10000;
    overflow-y: auto;
    padding: 20px;
    transition: all 0.4s ease;
}

.login-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-modal-content {
    max-width: 480px;
    width: 100%;
    background: #0d0d0d;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 145, 77, 0.2);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transform: scale(0.9) translateY(20px);
    opacity: 0;
}

.login-modal.active .login-modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Branded Background Text */
.modal-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    font-size: 10rem;
    font-weight: 900;
    color: rgba(255, 145, 77, 0.05);
    -webkit-text-stroke: 1px rgba(255, 145, 77, 0.03);
    text-shadow: 0 0 30px rgba(255, 145, 77, 0.1);
    user-select: none;
    pointer-events: none;
    z-index: 0;
    letter-spacing: -0.05em;
    opacity: 0.3;
}

/* Auth Mode Toggling */
.auth-view {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.auth-view.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.login-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.login-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

/* Login Form Section */
.login-section {
    padding: 60px 40px 40px;
    text-align: center;
}

.login-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.login-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.login-form {
    max-width: 100%;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.field {
    flex: 1;
    position: relative;
    text-align: left;
}

.login-form input {
    width: 100%;
    padding: 15px 25px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.login-form input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(255, 145, 77, 0.2);
}

/* Custom Dropdown */
.custom-dropdown {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.custom-dropdown .selected-option {
    padding: 15px 25px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
}

.custom-dropdown .selected-option::after {
    content: "";
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--primary);
    transition: transform 0.3s ease;
}

.custom-dropdown.open .selected-option::after {
    transform: rotate(180deg);
}

.custom-dropdown .dropdown-options {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    display: none;
    z-index: 100;
    border: 1px solid rgba(255, 145, 77, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.custom-dropdown.open .dropdown-options {
    display: block;
    animation: slideDown 0.3s ease;
}

.dropdown-option {
    padding: 12px 25px;
    color: #fff;
    font-size: 14px;
    transition: all 0.2s ease;
}

.dropdown-option:hover {
    background: var(--primary);
}

/* Submit Button */
.submit-login {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--gradient-orange-black);
    color: #fff;
    border: 1px solid var(--primary);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: var(--gradient-orange-glow);
}

.submit-login:hover {
    transform: translateY(-2px);
    box-shadow: var(--gradient-orange-glow-hover);
}

.login-forgot {
    display: block;
    margin-top: 15px;
    font-size: 13px;
    color: var(--primary);
    text-decoration: none;
}

.login-forgot:hover {
    text-decoration: underline;
}

/* Social Login */
.social-login-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 25px;
}

.btn-social-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-social-login:hover {
    background: rgba(255, 255, 255, 0.1);
}

.login-signup-prompt {
    margin-top: 30px;
    font-size: 14px;
    color: var(--text-muted);
}

.login-signup-prompt a {
    color: var(--primary);
    font-weight: 600;
}

/* Sign Up Specifics */
.signup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.signup-footer {
    margin-top: 25px;
}

.login-form .form-group,
.signup-form-modal .form-group {
    margin-bottom: 15px;
    text-align: left;
}

.login-form label,
.signup-form-modal label {
    display: block;
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 8px;
    margin-left: 15px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .login-modal {
        padding: 20px 15px;
    }


    .login-modal-content {
        border-radius: 30px;
    }


    .login-section {
        padding: 50px 25px 30px;
    }

    .signup-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Errors */
.error-msg {
    color: #ff4d4d;
    font-size: 11px;
    margin-top: 6px;
    padding-left: 15px;
    display: none;
}

.input-error {
    border-color: #ff4d4d !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media(max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .eligibility-section {
        padding: 50px 25px 30px;
    }

    .eligibility-modal {
        padding: 10px;
    }
}

/* GLOBAL BUTTONS */
.btn-glow {
    display: inline-block;
    background: var(--gradient-orange-black);
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    box-shadow: var(--gradient-orange-glow);
    border: 1px solid rgba(255, 145, 77, 0.5);
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: var(--gradient-orange-glow-hover);
    color: white;
}

/* SIDEBAR SOCIAL ICONS */
.sidebar-social {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border-sidebar);
}

.social-links-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.sidebar-social a {
    color: var(--text-muted);
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.sidebar-social a:hover {
    color: #FF914D;
    background: rgba(255, 145, 77, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 10px rgba(255, 145, 77, 0.2);
}

/* Course icon style (used for sidebar course shortcuts) */
.sidebar-social a.course-icon {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.sidebar-social a.course-icon:hover {
    color: #fff;
    background: linear-gradient(135deg, rgba(255, 145, 77, 0.18), rgba(255, 145, 77, 0.05));
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.12);
}

.sidebar-social a svg {
    width: 20px;
    height: 20px;
    stroke-width: 2px;
}

/* 📱 MOBILE FIX — FORCE GroThh INTO ONE LINE */
@media (max-width: 768px) {

    .nav-grothh {
        flex-direction: column;
        /* keep icon above text like others */
    }

    .nav-grothh .nav-text {
        display: flex;
        /* 🔥 key */
        white-space: nowrap;
        /* 🔥 key */
        flex-direction: row;
        /* 🔥 key */
        gap: 0;
    }

    .nav-grothh .nav-text span {
        display: inline;
        /* 🔥 override global span rule */
    }
}

/* MAIN CONTENT */
.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    padding-bottom: 10px;
    background: var(--bg-body);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-content>* {
    width: 100%;
    max-width: 1200px;
    padding-left: 40px;
    padding-right: 40px;
}





.btn-toggle {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
}

.btn-toggle.active {
    background: var(--gradient-orange-black);
    color: white;
    box-shadow: var(--gradient-orange-glow);
}



.view-container {
    transition: opacity 0.3s ease;
    display: none;
    opacity: 0;
}

.view-container.active {
    display: block;
    opacity: 1;
}

/* PAGE & TITLE STYLES */
.page-title-row {
    margin-bottom: 40px;
}

.page-title-row h1 {
    font-size: 3rem;
    margin-bottom: 8px;
}

.page-title-row p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 60px 0;
}

/* TRUST STRIP */
.trust-strip {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--border);
    margin-top: 80px;
}

.trust-strip p {
    color: var(--text-dim);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.logos-row-static {
    display: flex;
    justify-content: center;
    gap: 60px;
    opacity: 0.5;
    flex-wrap: wrap;
}

.logos-row-static span {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* GLOBAL RESPONSIVE RULES */
@media (max-width: 900px) {
    .sidebar {
        width: 80px;
        padding: 16px 8px;
    }

    .main-content {
        margin-left: 80px;
        padding: 0 24px;
    }

    .brand-logo {
        font-size: 1.5rem;
        padding-left: 0;
        justify-content: center;
    }

    .brand-text {
        display: none;
    }

    .nav-item span {
        display: none;
    }

    .nav-item {
        justify-content: center;
        padding: 12px 8px;
    }

    .nav-item svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 768px) {
    .main-content {
        margin-left: 0;
        padding: 0 20px 100px 20px;
    }

    .main-content {
        margin-left: 0 !important;
        padding: 0 16px 10px 16px !important;
    }

    .main-content>* {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .sidebar {
        position: fixed;
        bottom: 0;
        top: auto;
        left: 0;
        right: 0;
        width: 100%;
        height: 70px;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 0 env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
        padding-bottom: max(env(safe-area-inset-bottom), 8px);
        border-right: none;
        border-top: 1px solid var(--border);
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 9999;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    }

    .brand-logo {
        display: none;
    }

    .nav-menu {
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        width: 100%;
        max-width: 500px;
        gap: 0;
        margin: 0;
    }

    .nav-item {
        flex-direction: column;
        gap: 4px;
        border: none !important;
        background: transparent !important;
        padding: 8px 16px;
        min-width: 60px;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .nav-item:active {
        transform: scale(0.95);
    }

    .nav-item.active {
        background: transparent !important;
    }

    .nav-item.active svg {
        color: var(--primary);
    }

    .nav-item.active span {
        color: var(--primary);
    }

    .nav-item span {
        display: block;
        font-size: 10px;
        font-weight: 600;
        text-align: center;
        white-space: nowrap;
    }

    .nav-item svg {
        width: 22px;
        height: 22px;
    }

    .sidebar-social {
        display: flex;
        position: absolute;
        top: -65px;
        left: 0;
        width: 100%;
        padding: 0 16px;
        border-top: none;
        justify-content: center;
        background: transparent;
    }

    .social-links-row {
        display: none;
    }

    .btn-sidebar-login {
        display: none !important;
    }

    .btn-eligibility {
        margin-bottom: 0 !important;
        max-width: 400px;
        background: var(--brand-orange) !important;
        color: #000 !important;
        box-shadow: 0 4px 15px rgba(255, 145, 77, 0.4);
    }

    .page-title-row h1 {
        font-size: 2rem;
    }

    .page-title-row p {
        font-size: 1rem;
    }

    .logos-row-static {
        gap: 30px;
    }

    .logos-row-static span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .main-content>* {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* ================= FOOTER SECTION (Global) ================= */
.site-footer {
    background: #000;
    padding: 50px 0 30px;
    position: relative;
    overflow: hidden;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-left: var(--sidebar-width);
}

.footer-zolk-text {
    font-family: 'Outfit', sans-serif;
    font-size: 28vw;
    /* Reduced size */
    font-weight: 400;
    text-align: center;
    line-height: 0.75;
    /* Reduced line-height */
    letter-spacing: -0.06em;
    margin-bottom: 5px;
    width: 100%;
    user-select: none;
    pointer-events: none;
    position: relative;

    /* 🟠 New Design: Smooth Black to Orange Gradient */
    color: transparent;
    background: linear-gradient(180deg,
            #000000 0%,
            #FF914D 100%);
    -webkit-background-clip: text;
    background-clip: text;

    /* Clean Outline */
    -webkit-text-stroke: 1px rgba(255, 145, 77, 0.3);

    /* Display Half Effect */
    clip-path: inset(0 0 5% 0);
    /* Slightly more clipped */

    /* Remove previous animations */
    animation: none;

    /* Smooth Ambient Glow */
    text-shadow: 0 10px 30px rgba(255, 145, 77, 0.2);

    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
    transition: all 0.5s ease;
}

@keyframes chrome-flow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 100px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-column h4 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    color: white;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    opacity: 0.9;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 20px;
    max-width: 450px;
}

.footer-column ul li {
    flex: 0 0 calc(50% - 10px);
    margin-bottom: 0;
    text-align: left;
}

.footer-column ul li a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: white;
    transform: translateX(2px);
}

@media (max-width: 1024px) {
    .footer-links {
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .site-footer {
        margin-left: 80px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 80px 0 40px;
        margin-left: 0;
    }

    .footer-zolk-text {
        font-size: 35vw;
        margin-bottom: 20px;
        clip-path: inset(0 0 10% 0);
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
        padding-top: 10px;
        text-align: center;
        /* Centered content for tablet */
    }

    .footer-column ul {
        display: block;
        max-width: 100%;
    }

    .footer-column ul li {
        width: 100%;
        margin-bottom: 12px;
        text-align: center;
    }

    .footer-content {
        padding: 0 24px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 60px 0 10px;
        /* Increased bottom padding for mobile nav */
    }

    .footer-zolk-text {
        font-size: 35vw;
        /* Match tablet size for full width */
        margin-bottom: 15px;
        clip-path: inset(0 0 10% 0);
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
        /* Centered content for mobile */
    }

    .footer-column h4 {
        margin-bottom: 16px;
    }
}

/* ================= MOBILE LOGIN TRIGGER ================= */
.mobile-login-trigger {
    position: fixed;
    right: 20px;
    bottom: 75px;
    /* Above bottom bar */
    background: var(--gradient-orange-black);
    color: #fff;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 10001;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid rgba(255, 145, 77, 0.3);
    overflow: hidden;
    white-space: nowrap;
    width: 48px;
    height: 48px;
}

.mobile-login-trigger svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.mobile-login-trigger span {
    font-size: 14px;
    font-weight: 700;
    max-width: 0;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: hidden;
}

.mobile-login-trigger.expanded {
    width: 120px;
    padding: 12px 16px;
    gap: 8px;
}

.mobile-login-trigger.expanded span {
    max-width: 65px;
    opacity: 1;
}

/* Modal Smoothness Tweaks */
.login-modal-content {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    animation: modalSpring 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes modalSpring {
    0% {
        transform: scale(0.85) translateY(30px);
        opacity: 0;
        filter: blur(10px);
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
        filter: blur(0);
    }
}

@media (max-width: 768px) {
    .mobile-login-trigger {
        display: flex;
    }
}

/* Hide login elements when popup is open */
body.login-active .btn-sidebar-login,
body.login-active .mobile-login-trigger,
body.modal-active .mobile-login-trigger {
    display: none !important;
}