/* Footer Tab Styling */
.tab-header {
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.tab-header:hover {
    color: #2563eb !important;
}

.tab-header.active {
    color: #2563eb !important;
    border-bottom-color: #2563eb !important;
}

.tab-panel {
    transition: opacity 0.3s ease;
}

.tab-panel.active {
    opacity: 1;
}

.tab-panel.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Responsive tab headers */
@media (max-width: 768px) {
    .tab-header {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 640px) {
    .tab-header {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
}

/* Footer link hover effects */
.footer-link {
    transition: all 0.2s ease;
}

.footer-link:hover {
    transform: translateX(2px);
}

/* Social media icon animations */
.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Newsletter form animations */
.newsletter-input:focus {
    transform: scale(1.02);
}

.newsletter-btn:hover {
    transform: translateY(-1px);
}

/* Smooth transitions for all interactive elements */
a, button {
    transition: all 0.2s ease;
}

/* Custom scrollbar for tab content if needed */
.tab-content::-webkit-scrollbar {
    width: 4px;
}

.tab-content::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.tab-content::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 2px;
}

.tab-content::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
