/* ===== FOOTER STYLES ===== */
.unified-footer {
    font-size: var(--text-sm);
    color: var(--white);
}

.unified-footer a:hover {
    color: var(--secondary-color);
}

/* Company Info Section */
.company-logo {
    margin-bottom: var(--space-4);
}

.company-description {
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    background-color: rgba(255, 255, 255, 0.1);
    padding: var(--space-8) var(--space-4);
    border-radius: var(--rounded-lg);
}

/* Copyright Section */
.copyright-section {
    font-size: var(--text-xs);
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--gray-500);
    padding: var(--space-3);
    text-align: center;
}

.copyright-section p a {
    text-decoration: underline;
}

/* Social Media Icons */
.social-media-icons {
    display: flex;
    gap: var(--space-2);
}

.social-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--rounded);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
    transition: all 0.3s ease;
}

.social-icon i {
    display: flex;
}

.social-icon:hover {
    transform: translateY(-2px);
}

/* Desktop Content Layout Adjustments */
@media (min-width: 992px) {
    .contact-section {
        background: none;
        padding: 0;
    }

    .copyright-section {
        text-align: left;
    }
}