.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    font-size: 1.3rem;
    text-decoration: none;
}

.social-link:hover {
    background: #D4AF37;
    color: #1a1a1a;
    transform: translateY(-3px);
}


.footer {
    background: #010100;
    color: #f5f5f5;
    padding: 3rem 0 0;
    position: relative;
    border-top: 3px solid #D4AF37;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.footer .container {
    max-width: 75rem; /* 1200px */
    margin: 0 auto;
    padding: 0 1.25rem; /* 20px */
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 2.5fr;
    gap: 2rem; /* 32px */
    margin-bottom: 2.5rem; /* 40px */
}

/* Footer Columns */
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-about {
    max-width: 22rem; /* 352px */
}

.footer-logo {
    margin-bottom: 1.25rem; /* 20px */
}

.footer-logo img {
    max-width: 200px;
    height: auto;
}

.footer-description {
    font-size: 0.9375rem; /* 15px */
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem; /* 24px */
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 0.75rem; /* 12px */
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem; /* 36px */
    height: 2.25rem; /* 36px */
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.social-link:hover {
    background: #D4AF37;
    color: #1a1a1a;
    transform: translateY(-0.1875rem); /* -3px */
    border-color: #D4AF37;
}

/* Footer Titles */
.footer-title {
    font-size: 1.25rem; /* 20px */
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.25rem; /* 20px */
    position: relative;
    padding-bottom: 0.75rem; /* 12px */
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2.5rem; /* 40px */
    height: 0.1875rem; /* 3px */
    background: #D4AF37;
    border-radius: 0.125rem; /* 2px */
}

/* Footer Menus */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.625rem; /* 10px */
}

.footer-menu li a,
.footer-menu li {
    color: #b0b0b0;
    font-size: 0.9375rem; /* 15px */
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem; /* 8px */
}

.footer-menu li a i {
    font-size: 0.7rem; /* 11.2px */
    color: #D4AF37;
    transition: transform 0.3s ease;
}

.footer-menu li a:hover {
    color: #D4AF37;
    padding-left: 0.25rem; /* 4px */
}

.footer-menu li a:hover i {
    transform: translateX(0.1875rem); /* 3px */
}

.footer-menu li i.fa-map-marker-alt {
    color: #D4AF37;
    width: 1.5rem; /* 24px */
}

/* Contact List */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem; /* 0 0 24px */
}

.footer-contact li {
    display: flex;
    gap: 0.75rem; /* 12px */
    margin-bottom: 1rem; /* 16px */
    color: #b0b0b0;
    font-size: 0.9375rem; /* 15px */
    line-height: 1.5;
}

.footer-contact li i {
    color: #D4AF37;
    font-size: 1rem;
    width: 1.25rem; /* 20px */
    margin-top: 0.1875rem; /* 3px */
}

.footer-contact li strong {
    color: #ffffff;
    font-weight: 600;
}

.footer-contact li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: #D4AF37;
}

/* CTA Button */
.footer-cta {
    margin-top: 1rem; /* 16px */
}

.btn-small {
    padding: 0.625rem 1.25rem; /* 10px 20px */
    font-size: 0.875rem; /* 14px */
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0; /* 24px 0 */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.875rem; /* 14px */
    color: #808080;
}

.copyright {
    color: #808080;
}

.footer-links {
    display: flex;
    gap: 0.75rem; /* 12px */
    align-items: center;
}

.footer-links a {
    color: #808080;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D4AF37;
}

.separator {
    color: #404040;
}
.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    font-size: 1.3rem;
    text-decoration: none;
}

.social-link:hover {
    background: #D4AF37;
    color: #1a1a1a;
    transform: translateY(-3px);
}
/* Responsive Design */
@media (max-width: 62rem) { /* 992px */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-about {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 48rem) { /* 768px */
    .footer {
        padding: 2.5rem 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-about {
        grid-column: span 1;
    }
    
    .footer-title {
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1.25rem 0;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 30rem) { /* 480px */
    .footer {
        padding: 2rem 0 0;
    }
    
    .footer-grid {
        gap: 1.25rem;
    }
    
    .footer-logo img {
        max-width: 10rem; /* 160px */
    }
    
    .footer-description {
        font-size: 0.875rem; /* 14px */
    }
    
    .footer-title {
        font-size: 1.125rem; /* 18px */
    }
    
    .footer-menu li a,
    .footer-menu li,
    .footer-contact li {
        font-size: 0.875rem; /* 14px */
    }
    
    .footer-bottom {
        font-size: 0.8125rem; /* 13px */
        padding: 1rem 0;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}

@media (max-width: 360px) {
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact li {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .footer-contact li i {
        margin-bottom: 0.25rem;
    }
}