/* Contact Footer */
.footer {
    background: #0f172a;
    /* Deep Dark Slate */
    color: #f8fafc;
    /* Slate-50 */
    padding: 6rem 0 12rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 640px) {
    .footer {
        padding-bottom: 16rem;
    }
}

.footer p {
    color: #9ca3af;
    /* Gray-400 */
}

.footer h2,
.footer h4 {
    color: white;
}


/* Footer Simplified */
.footer-simple {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    border: 2px solid transparent;
    /* Permanent border to prevent layout shift */
    border-radius: 16px;
    /* Match highlight radius */
    padding: 1rem;
    /* Add padding to match highlight state */
    transition: border-color 0.3s, box-shadow 0.3s;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-links-list {
        flex-direction: row;
        gap: 3rem;
    }
}

.simple-contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e1;
    /* Slate-300 */
    font-size: 1.1rem;
    transition: all 0.2s;
}

.simple-contact-link:hover {
    color: var(--accent-orange);
    transform: translateY(-2px);
}

.simple-contact-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Animations (moved from main css if specific to footer highlight) */
@keyframes borderPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4);
        border-color: transparent;
    }

    50% {
        box-shadow: 0 0 20px 0 rgba(249, 115, 22, 0.2);
        border-color: var(--accent-orange);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
        border-color: transparent;
    }
}

.highlight-effect {
    animation: borderPulse 2s ease-out forwards;
    /* Pulse 1 time */
    /* Removed static border-color to prevent snap-back */
}