@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;600&display=swap');

:root {
    --footer-bg: #050505;
    --footer-text: #f8fafc;
    --footer-muted: #a1a1aa;
    --footer-border: #27272a;
}

.site-footer {
    background: var(--footer-bg) !important;
    background-image: none !important;
    color: var(--footer-text);
    padding: 4.25rem 0 2.5rem;
    border-top: 1px solid var(--footer-border);
    font-family: 'Inter', 'Kanit', sans-serif;
}

.site-footer ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0;
}

.site-footer a {
    text-decoration: none !important;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    letter-spacing: -0.3px;
}

.footer-desc {
    color: #8a8a93;
    font-size: 0.8rem;
    line-height: 1.5;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #d8d8de;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-list li {
    margin: 0;
}

.footer-list li::marker {
    color: transparent;
}

.footer-list a {
    color: var(--footer-muted);
    text-decoration: none;
    font-size: 0.84rem;
    transition: color 0.2s ease, transform 0.2s ease;
    border-bottom: none !important;
    background-image: none !important;
    box-shadow: none !important;
}

.footer-list a:visited,
.footer-list a:hover,
.footer-list a:active,
.footer-list a:focus {
    text-decoration: none !important;
}

.footer-list a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-divider {
    height: 1px;
    background: var(--footer-border);
    margin: 2rem 0 2rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-size: 0.82rem;
    font-weight: 600;
}

.footer-bottom-links a {
    color: var(--footer-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-muted);
    transition: all 0.2s ease;
    font-size: 19px;
}

.footer-social a:hover {
    color: #fff;
    transform: scale(1.1);
}

.footer-copy {
    margin-top: 1.1rem;
    font-size: 0.74rem;
    color: #5c5c66;
    max-width: 48rem;
}

@media (max-width: 960px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .site-footer {
        padding: 3.5rem 0 2rem;
    }
}
