/* Footer — site footer UI */

footer.site-footer {
    background: linear-gradient(180deg, #12121f 0%, #0a0a12 100%) !important;
    color: #fff;
    padding: 0 0 1.5rem !important;
    position: relative;
    overflow: hidden;
}

footer.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e67a22, #f4a261, #e67a22, transparent);
}

footer.site-footer::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(230, 122, 34, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.footer-container {
    display: grid !important;
    grid-template-columns: 1.4fr repeat(3, 1fr) !important;
    gap: 2rem 2.5rem !important;
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding: 3.5rem 1.5rem 2.5rem !important;
    text-align: left;
    position: relative;
    z-index: 1;
    animation: none !important;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: inline-flex !important;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    text-decoration: none;
    color: inherit;
}

.footer-logo img {
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    border: 2px solid rgba(230, 122, 34, 0.6) !important;
    object-fit: cover;
    transition: transform 0.4s ease, border-color 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.05) !important;
    border-color: #e67a22 !important;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.footer-logo-text strong {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.footer-logo-text span {
    font-size: 0.72rem;
    font-weight: 600;
    color: #e67a22;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-brand > p {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 0.9rem !important;
    line-height: 1.65 !important;
    margin: 0 0 1.25rem !important;
}

.footer-social {
    display: flex !important;
    gap: 0.65rem !important;
    margin-top: 0 !important;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1.2rem !important;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.footer-social a:hover {
    background: #e67a22 !important;
    border-color: #e67a22 !important;
    color: #fff !important;
    transform: translateY(-3px) !important;
}

.footer-links h3 {
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    color: #e67a22 !important;
    margin: 0 0 1rem !important;
    font-weight: 700 !important;
}

.footer-links ul {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.55rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.88rem !important;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.45;
}

.footer-links li i {
    flex-shrink: 0;
    color: #e67a22;
    font-size: 1rem;
    margin-top: 0.1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
    transition: color 0.2s ease, padding 0.2s ease !important;
}

.footer-links a:hover {
    color: #f4a261 !important;
    padding-left: 0 !important;
}

.footer-cta-mini {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    padding: 0.5rem 0.9rem;
    background: rgba(230, 122, 34, 0.15);
    border: 1px solid rgba(230, 122, 34, 0.35);
    border-radius: 999px;
    color: #f4a261 !important;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease;
}

.footer-cta-mini:hover {
    background: #e67a22;
    color: #fff !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 1.25rem 1.5rem 0 !important;
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0 0 0.5rem;
    color: rgba(255, 255, 255, 0.45) !important;
    font-size: 0.82rem !important;
    line-height: 1.5;
}

.footer-credit {
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 0.78rem !important;
}

.footer-credit a {
    color: #e67a22;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-credit a:hover {
    color: #f4a261;
    text-decoration: underline;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem !important;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr !important;
        padding: 2.5rem 1rem 1.75rem !important;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center !important;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links li {
        justify-content: center;
    }

    .footer-cta-mini {
        margin-left: auto;
        margin-right: auto;
    }
}
