/* Footer Section */
.footer-section {
    background: linear-gradient(to bottom, #2c3e50 0%, #34495e 100%);
    padding: 60px 20px 0;
    color: #ecf0f1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 320px;
    margin-bottom: 0rem;
    padding-top: 0.2rem;
    margin-left: 0.5rem;
    background: transparent url(/static/img/brand/quill_footer.png)11px 11px no-repeat;
    background-size: 52px auto;
    padding-left: 74px;
    filter: drop-shadow(0 2px 6px rgba(255, 255, 255, 0.1));
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 9px;
    text-decoration: none;
}
.footer-logo-text {
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 2.1rem;
    height: 40px;
    background: linear-gradient(to bottom, #fff, #caffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.footer-tagline {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 125px;
}
.footer-tagline span{
    display: block;
    white-space: nowrap;
    margin: 0 auto;
    text-align: center;
}
.footer-tagline .tagline-light {
    color: #e6fdfd;
}
.footer-tagline .tagline-bold {
    color: #d7fbfb;
}
.lg-es .footer-tagline .tagline-bold {
    font-size: 14px;
    font-weight: 400;
}
.lg-es .footer-tagline {
    max-width: 132px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-my-account,
.footer-signup,
.footer-signin,
.footer-upgrade-pro,
.footer-upgrade-premium {
    display: none;
}

.is_noplan .footer-signup,
.is_noplan .footer-signin {
    display: block;
}

.is_start .footer-my-account,
.is_start .footer-upgrade-pro,
.is_start .footer-upgrade-premium {
    display: block;
}

.is_pro .footer-my-account,
.is_pro .footer-upgrade-premium {
    display: block;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.footer-links a:hover {
    color: #3498db;
    transform: translateX(3px);
}

.footer-bottom {
    padding: 30px 0;
    display: block;
    text-align: center;
    font-size: 14px;
    color: #95a5a6;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #3498db;
}

@media (max-width: 910px) {
    .footer-content {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / 5;
        text-align: center;
        margin-bottom: 1rem;
    }

    .footer-column {
        grid-column: span 1;
        padding-left: 1rem;
    }
}
@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / 3;
        text-align: center;
        margin-bottom: 1rem;
    }

    .footer-column {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 320px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: 1;
    }

    .footer-column {
        grid-column: 1;
        width: 160px;
        margin: 0 auto;
        padding-left: 0;
    }
}
@media (max-width: 372px) {
    .footer-brand {
        margin-left: 5%;
    }
}