/* Footer Styles */
.site-footer {
    background-color: #0F172A;
    color: white;
    padding-top: 5rem;
    padding-bottom: 2.5rem;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        gap: 2rem;
    }
}

.footer-brand-col {
    grid-column: span 1 / span 1;
}

@media (min-width: 1024px) {
    .footer-brand-col {
        grid-column: span 4 / span 4;
    }
}

.footer-link-col {
    grid-column: span 1 / span 1;
}

@media (min-width: 1024px) {
    .footer-link-col {
        grid-column: span 2 / span 2;
    }
}

.footer-contact-col {
    grid-column: span 1 / span 1;
}

@media (min-width: 1024px) {
    .footer-contact-col {
        grid-column: span 4 / span 4;
    }
}

.footer-heading {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #FFA500;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-link {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link:hover {
    color: #FFA500;
}

.footer-link-dash {
    width: 0;
    height: 1px;
    background-color: #FFA500;
    transition: width 0.3s;
}

.footer-link:hover .footer-link-dash {
    width: 0.5rem;
}

.footer-social-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-social-icon:hover {
    background-color: #FFA500;
    border-color: #FFA500;
}

.footer-bottom-bar {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-bottom-bar {
        flex-direction: row;
    }
}

.footer-bottom-link {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s;
}

.footer-bottom-link:hover {
    color: white;
}

.footer-decorative-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255, 165, 0, 0.3), transparent);
}