@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@600;700&display=swap');

.site-footer {
    background-color: #111111;
    color: #b0b0b0;
    padding: 80px 0 30px;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        rgba(17, 17, 17, 1) 0%,
        rgba(212, 175, 55, 1) 50%,
        rgba(17, 17, 17, 1) 100%
    );
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}

.logo-icon-gold {
    width: 40px;
    height: 40px;
    background-color: #D4AF37;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

.logo-text-white {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: white;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-desc {
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #222;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ccc;
    transition: 0.3s;
    text-decoration: none;
}

.social-links a i {
    font-size: 22px;
}

.social-links a:hover {
    background-color: #D4AF37;
    color: white;
    transform: translateY(-3px);
}

.footer-heading {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #D4AF37;
    padding-left: 5px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #b0b0b0;
    font-size: 0.95rem;
}

.footer-contact-list i {
    color: #D4AF37;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
}

.footer-legal a:hover {
    color: #D4AF37;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 60px 0 30px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .footer-logo,
    .social-links,
    .footer-contact-list li {
        justify-content: center;
    }
    .footer-links a:hover {
        padding-left: 0;
        color: #D4AF37;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}