/* ==========================================
   VIK AUTO TRADING - Footer Styles
   서브페이지 공용 하단바
   ========================================== */

.site-footer {
    background: #0A0A0A;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding: 50px 40px 30px;
    margin-top: 80px;
    position: relative;
    z-index: 10;
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Company Info */
.footer__logo {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 600;
    color: #D4AF37;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.footer__company p {
    color: #999999;
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 6px;
    font-family: 'Cormorant Garamond', serif;
}

/* Contact */
.footer__contact-title,
.footer__social-title {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 600;
    color: #D4AF37;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.footer__contact p {
    color: #999999;
    font-size: 14px;
    line-height: 2;
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
}

.footer__contact a {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__contact a:hover {
    color: #D4AF37;
}

/* Social Links */
.footer__social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #999999;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer__social a:hover {
    color: #D4AF37;
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-2px);
}

/* Bottom Bar */
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.footer__links {
    display: flex;
    gap: 25px;
}

.footer__links a {
    color: #666666;
    font-size: 13px;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: #D4AF37;
}

.footer__copyright {
    color: #555555;
    font-size: 13px;
    font-family: 'Cormorant Garamond', serif;
    margin: 0;
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 768px) {
    .site-footer {
        padding: 35px 20px 25px;
        margin-top: 50px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer__links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 25px 12px 20px;
        margin-top: 40px;
    }

    .footer__logo {
        font-size: 17px;
        letter-spacing: 2px;
    }

    .footer__social a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* ==========================================
   RTL Support
   ========================================== */
[dir="rtl"] .footer__grid {
    direction: rtl;
}

[dir="rtl"] .footer__bottom {
    flex-direction: row-reverse;
}

[dir="rtl"] .footer__links {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    [dir="rtl"] .footer__bottom {
        flex-direction: column;
    }
}
