/* =========================================================
   ARASCA LUXURY DARK SITE FOOTER STYLES
   ========================================================= */

/* Root Variables (Fallback) */
:root {
    --gold-primary: #d4af37;
    --text-muted: #888888;
    --font-serif: 'Cinzel', serif;
}

.site-footer {
    background: #050505;
    color: #ffffff;
    padding: 80px 60px 0 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-container {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.5fr;
    /* 4-Column Grid */
    gap: 50px;
    padding-bottom: 60px;
}

/* --- Column 1: Brand Info --- */
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    margin-bottom: 22px;
}

.footer-logo .logo-icon {
    color: var(--gold-primary);
    font-size: 26px;
}

.footer-logo .logo-title {
    font-family: var(--font-serif);
    font-size: 22px;
    color: #ffffff !important;
    letter-spacing: 2px;
    display: block;
    line-height: 1;
}

.footer-logo .logo-subtitle {
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--gold-primary) !important;
    display: block;
    margin-top: 4px;
    text-transform: uppercase;
}

.brand-desc {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 380px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff !important;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.footer-socials a:hover {
    border-color: var(--gold-primary);
    background: var(--gold-primary);
    color: #000000 !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

/* --- Common Column Titles --- */
.footer-title {
    font-family: var(--font-serif);
    font-size: 15px;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 500;
}

/* --- Navigation & Categories Lists --- */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-links a {
    color: var(--text-muted) !important;
    font-size: 13px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold-primary) !important;
    transform: translateX(4px);
    /* Subtle slide hover effect */
}

/* --- Contact & Headquarters --- */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--gold-primary);
    font-size: 15px;
    margin-top: 3px;
    width: 16px;
    text-align: center;
}

.footer-contact a {
    color: var(--text-muted) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--gold-primary) !important;
}

/* --- Footer Bottom Bar --- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 25px 0;
}

.bottom-container {
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 12px;
}

.bottom-links {
    display: flex;
    gap: 24px;
}

.bottom-links a {
    color: var(--text-muted) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.bottom-links a:hover {
    color: var(--gold-primary) !important;
}

/* =========================================================
   RESPONSIVE LAYOUT (TABLET & MOBILE)
   ========================================================= */

@media (max-width: 1024px) {
    .site-footer {
        padding: 70px 40px 0 40px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        /* Converts to 2x2 grid */
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 60px 20px 0 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        /* Stacks vertically on mobile */
        gap: 35px;
    }

    .bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .bottom-links {
        justify-content: center;
    }
}