@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Clash+Display:wght@400;500;600;700&display=swap');

/* ===== FOOTER ===== */
.site-footer {
    background: #1a1b1e;
    color: #ffffff;
    width: 100%;
}

.footer-inner {
    width: 100%;
    box-sizing: border-box;
    padding: 70px clamp(40px, 6vw, 120px) 40px;
}

.footer-cta-content {
    padding-bottom: 50px;
}

.footer-cta-title {
    font-family: 'Michroma', sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 16px;
}

.footer-cta-desc {
    font-family: 'Clash Display', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 24px;
    max-width: 800px;
    line-height: 24px;
}

.footer-cta-bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.footer-cta-row {
    display: flex;
    flex-direction: row;
    gap: 60px;
}

.footer-cta-row span {
    font-family: 'Clash Display', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
}

.footer-cta-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 51px;
    background: #ffffff;
    border-radius: 100px;
    font-family: 'Clash Display', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.footer-cta-btn:hover {
    background: #1A3C6E;
    color: #ffffff;
}

.footer-divider {
    border: none;
    border-top: 2px solid rgba(255, 255, 255, 0.5);
    margin: 0 0 40px;
}

.footer-brand {
    padding-bottom: 40px;
}

.footer-brand img {
    width: 115px;
    height: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    font-family: 'Clash Display', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    line-height: 24px;
    max-width: 800px;
    margin: 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h4 {
    font-family: 'Michroma', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffffff;
    display: inline-block;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col ul li a {
    font-family: 'Clash Display', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #b8960c;
}

.footer-contact-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

.footer-contact-list li {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 12px !important;
}

.footer-icon {
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-list li div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-contact-label {
    font-family: 'Michroma', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
}

.footer-contact-list li div a,
.footer-contact-list li div span {
    font-family: 'Clash Display', sans-serif;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    line-height: 1.4;
}

.footer-contact-list li div a:hover {
    color: #b8960c;
}

.footer-socials {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.footer-social-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.8);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.footer-social-btn:hover {
    background: #1A3C6E;
    border-color: #1A3C6E;
}

.footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom span,
.footer-bottom a {
    font-family: 'Clash Display', sans-serif;
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #b8960c;
}

.footer-bottom-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

@media (min-width: 1600px) {
    .footer-inner {
        padding: 90px 80px 60px;
    }

    .footer-columns {
        gap: 60px;
    }

    .footer-brand img {
        width: 140px;
    }
}

@media (max-width: 768px) {
    .footer-inner {
        padding: 50px 24px 30px;
    }

    .footer-cta-row {
        flex-direction: column;
        gap: 10px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}