@charset "utf-8";

/* Extracted from index.css: cookie + to top */
.cookie-container {
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.7);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    padding: 16px 0;
    margin: 0 auto;
}

.cookie-div {
    color: #ffffff;
    margin: 0 20px 0 0;
}

.cookie-div>h2 {
    margin: 0;
    padding: 0;
    border: none;
    font-size: 18px;
    font-weight: 500;
}

.cookie-div>p {
    margin: 0;
    font-size: 14px;
}

.cookie-div>p>a {
    color: #ffffff;
    text-decoration: underline;
}

.cookie-content .button-div {
    display: flex;
    flex-direction: row;
}

.cookie-btn {
    border: none;
    cursor: pointer;
    padding: 8px 30px;
    border-radius: 4px;
    white-space: nowrap;
}

.cookie-accept {
    background: #ffffff;
    margin: 0 20px 0 0;
}

.cookie-reject {
    color: #ffffff;
    background: transparent;
    border: 1px solid #ffffff;
}

.cookie-accept:hover {
    filter: brightness(0.9);
}

.cookie-reject:hover {
    color: #333333;
    background: #ffffff;
}

.totop {
    display: none;
    cursor: pointer;
    position: fixed;
    z-index: 999;
    padding: 6px;
    bottom: 160px;
    right: 20px;
    background-color: #194eb9;
    border: 1px solid #fff;
    transition: all 0.3s;
    opacity: 0.8;
    font-size: 30px;
    color: #fff;
}

.totop:hover {
    opacity: 1;
}

/* Extracted from index.css: Neo Footer */
.footer-neo {
    background: #0f172a;
    color: #94a3b8;
    padding: 60px 0 0;
    font-size: 14px;
    border-top: 1px solid #1e293b;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.footer-neo-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand-col .footer-brand-logo img {
    height: 32px;
    width: auto;
    display: block;
    margin-bottom: 24px;
}

.footer-awards {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.footer-awards img {
    max-width: 240px;
    height: auto;
    display: block;
    margin: 0 auto;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.footer-awards img:hover {
    opacity: 1;
    transform: scale(1.02);
}

.footer-link-col h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-section-title i {
    display: none;
}

.footer-link-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-col ul li {
    margin-bottom: 12px;
}

.footer-link-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link-col ul li a:hover {
    color: #38bdf8;
    transform: translateX(4px);
}

.footer-socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1e293b;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-socials a:hover {
    background: #38bdf8;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
}

.footer-socials a.social-fb:hover {
    background: #1877f2;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.footer-socials a.social-x:hover {
    background: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer-socials a.social-yt:hover {
    background: #ff0000;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.footer-socials a.social-sup:hover {
    background: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.footer-socials a.social-blog:hover {
    background: #f97316;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.footer-neo-bottom {
    border-top: 1px solid #1e293b;
    padding: 24px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #64748b;
    font-size: 13px;
    text-align: center;
}

.footer-neo-bottom p {
    margin: 0;
}

@media (max-width: 1480px) {
    .cookie-content {
        padding: 16px 20px;
    }
}

@media (max-width: 1200px) {
    .footer-neo-grid {
        gap: 24px;
    }
}

@media (max-width: 1200px) and (min-width: 821px) {
    .footer-neo {
        padding-top: 52px;
    }

    .footer-neo>.container {
        max-width: 1080px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer-neo-grid {
        grid-template-columns: 1fr repeat(4, minmax(150px, 180px)) 1fr;
        gap: 24px 20px;
        margin-bottom: 44px;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr repeat(4, minmax(150px, 180px)) 1fr;
        align-items: center;
        gap: 14px 20px;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-brand-col .footer-section-title {
        grid-column: 2 / span 3;
        padding: 0;
    }

    .footer-brand-col .footer-brand-logo img {
        margin-bottom: 0;
        height: 30px;
    }

    .footer-brand-col .footer-section-content {
        grid-column: 5;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .footer-awards {
        display: none;
    }

    .footer-socials {
        justify-content: flex-start;
        gap: 8px;
        flex-wrap: nowrap;
    }

    .footer-socials a {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .footer-link-col h3 {
        margin-bottom: 14px;
        font-size: 15px;
    }

    .footer-link-col:nth-child(2) {
        grid-column: 2;
    }

    .footer-link-col:nth-child(3) {
        grid-column: 3;
    }

    .footer-link-col:nth-child(4) {
        grid-column: 4;
    }

    .footer-link-col:nth-child(5) {
        grid-column: 5;
    }

    .footer-link-col ul li {
        margin-bottom: 8px;
    }
}

@media (max-width: 820px) {
    .footer-neo {
        padding-top: 30px;
    }

    .footer-neo>.container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .cookie-content {
        flex-direction: column;
        justify-content: center;
        padding: 16px 20px;
    }

    .cookie-div {
        margin: 0 0 20px 0;
    }

    .footer-neo-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-brand-col {
        grid-column: span 1;
        margin-bottom: 0;
        align-items: stretch;
    }

    .footer-brand-col .footer-brand-logo img {
        margin-bottom: 0;
        height: 24px;
        display: block;
    }

    .footer-section {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-section:last-of-type {
        border-bottom: none;
    }

    .footer-link-col h3.footer-section-title,
    .footer-brand-col .footer-section-title {
        margin-bottom: 0;
        padding: 20px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-size: 16px;
        font-weight: 500;
        -webkit-tap-highlight-color: transparent;
        color: #f1f5f9;
        transition: color 0.3s ease;
        pointer-events: auto;
        touch-action: manipulation;
    }

    .footer-section.expanded h3.footer-section-title,
    .footer-section.expanded .footer-brand-title {
        color: #fff;
    }

    .footer-link-col h3.footer-section-title i,
    .footer-brand-col .footer-section-title i {
        display: block;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.35s ease;
        font-size: 14px;
        color: #64748b;
    }

    .footer-section.expanded h3.footer-section-title i,
    .footer-section.expanded .footer-brand-title i {
        transform: rotate(180deg);
        color: #38bdf8;
    }

    .footer-section .footer-section-content {
        max-height: 0;
        overflow: hidden;
        padding-bottom: 0;
        opacity: 0;
        transition: max-height 0.4s ease-out, opacity 0.3s ease-out, padding-bottom 0.4s ease-out;
    }

    .footer-section.expanded .footer-section-content {
        max-height: 500px;
        padding-bottom: 24px;
        opacity: 1;
    }

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

@media (max-width: 576px) {
    .footer-neo-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

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

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