/* Modern Gaming Footer Styles */
.footer-container {
    background: linear-gradient(135deg,
        rgba(5, 5, 15, 0.98) 0%,
        rgba(15, 10, 30, 0.95) 25%,
        rgba(25, 15, 45, 0.95) 50%,
        rgba(20, 10, 40, 0.95) 75%,
        rgba(10, 5, 25, 0.98) 100%);
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Floating Elements */
.footer-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.2));
    filter: blur(40px);
    animation: floatOrb 20s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -100px;
    animation-delay: 7s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    left: 50%;
    animation-delay: 14s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.6; }
    25% { transform: translate(30px, -20px) rotate(90deg); opacity: 0.8; }
    50% { transform: translate(-20px, 30px) rotate(180deg); opacity: 0.4; }
    75% { transform: translate(20px, 20px) rotate(270deg); opacity: 0.7; }
}

/* Particle System */
.floating-particle-system {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 12s linear infinite;
}

.particle-1 { left: 10%; animation-delay: 0s; }
.particle-2 { left: 25%; animation-delay: 2.4s; }
.particle-3 { left: 50%; animation-delay: 4.8s; }
.particle-4 { left: 75%; animation-delay: 7.2s; }
.particle-5 { left: 90%; animation-delay: 9.6s; }

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 1; transform: translateY(90vh) scale(1); }
    90% { opacity: 1; transform: translateY(-10vh) scale(1); }
    100% { opacity: 0; transform: translateY(-20vh) scale(0); }
}

/* Background Overlay */
.footer-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(240, 147, 251, 0.06) 0%, transparent 50%);
    animation: overlayShift 15s ease-in-out infinite;
    z-index: 1;
}

@keyframes overlayShift {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Footer Content */
.footer-content {
    position: relative;
    z-index: 10;
    padding: 5rem 0 2rem;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Brand Section */
.footer-brand-section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.brand-logo-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.brand-logo {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-glow-effect {
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #667eea);
    border-radius: 50%;
    animation: logoRotate 4s linear infinite;
    z-index: 1;
}

.logo-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: relative;
    z-index: 5;
    background: rgba(20, 10, 40, 0.9);
    padding: 10px;
}

.logo-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.3);
    animation: logoPulse 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes logoRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.1; }
}

.brand-text {
    flex: 1;
}

.brand-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.brand-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Social Section */
.social-section {
    margin-top: 2rem;
}

.social-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.social-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.social-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.social-card:hover::before {
    transform: translateX(100%);
}

.social-card.facebook:hover {
    border-color: #1877f2;
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
}

.social-card.discord:hover {
    border-color: #5865f2;
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.3);
}

.social-card.youtube:hover {
    border-color: #ff0000;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    flex-shrink: 0;
}

.social-info {
    flex: 1;
}

.social-name {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
}

.social-desc {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.social-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

/* Navigation Section */
.footer-nav-section {
    display: flex;
    gap: 3rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out 0.2s;
}

.nav-column {
    flex: 1;
}

.nav-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.title-icon {
    font-size: 1.1rem;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 0.5rem 0;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 6px;
    padding-left: 1rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #f093fb;
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link:hover::before {
    width: 20px;
}

/* Extra Section */
.footer-extra-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out 0.4s;
}

.newsletter-card, .stats-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.newsletter-title, .stats-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.newsletter-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-input.error {
    border-color: #ff4757;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.newsletter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.newsletter-btn.success {
    background: linear-gradient(135deg, #2ed573, #1e90ff);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    z-index: 10;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.5), transparent);
    margin-bottom: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.security-badge, .uptime-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer Visibility Animation */
.footer-container.footer-visible .footer-brand-section,
.footer-container.footer-visible .footer-nav-section,
.footer-container.footer-visible .footer-extra-section {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-extra-section {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 3rem 0 2rem;
    }

    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-nav-section {
        flex-direction: column;
        gap: 2rem;
    }

    .brand-logo-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .brand-title {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 2rem 0 1rem;
    }

    .social-grid {
        gap: 0.5rem;
    }

    .social-card {
        padding: 0.8rem;
    }

    .newsletter-card, .stats-card {
        padding: 1.5rem;
    }

    .footer-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

/* RTL Support */
[dir="rtl"] .nav-link:hover {
    transform: translateX(-5px);
}

[dir="rtl"] .nav-link::before {
    right: 0;
    left: auto;
}

[dir="rtl"] .social-title::before {
    right: 0;
    left: auto;
}

[dir="rtl"] .brand-logo-container {
    flex-direction: row-reverse;
}

/* Print Styles */
@media print {
    .footer-container {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }

    .footer-floating-elements,
    .footer-bg-overlay {
        display: none !important;
    }
}

.footer-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(240, 147, 251, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    33% { opacity: 0.8; transform: scale(1.05) rotate(1deg); }
    66% { opacity: 0.9; transform: scale(0.98) rotate(-1deg); }
}

/* Animated particles */
.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.footer-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    animation: floatUp 15s linear infinite;
    opacity: 0;
}

.footer-particle:nth-child(odd) {
    background: linear-gradient(45deg, #f093fb, #667eea);
    animation-duration: 18s;
}

.footer-particle:nth-child(3n) {
    width: 2px;
    height: 2px;
    animation-duration: 12s;
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.8;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 0.8;
        transform: translateY(-10vh) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-20vh) scale(0);
    }
}

/* Footer content sections */
.footer-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0 2rem;
}

.footer-section {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo section enhancements */
.footer-logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: logoGlow 3s ease-in-out infinite alternate;
    box-shadow:
        0 0 20px rgba(102, 126, 234, 0.4),
        0 0 40px rgba(118, 75, 162, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.footer-logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: logoShine 4s ease-in-out infinite;
}

@keyframes logoGlow {
    0% {
        box-shadow:
            0 0 20px rgba(102, 126, 234, 0.4),
            0 0 40px rgba(118, 75, 162, 0.2);
    }
    100% {
        box-shadow:
            0 0 30px rgba(102, 126, 234, 0.6),
            0 0 60px rgba(118, 75, 162, 0.4);
    }
}

@keyframes logoShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.footer-logo-text {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
    letter-spacing: 1px;
}

/* Enhanced description text */
.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 400px;
    font-size: 1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Social buttons enhancements */
.footer-social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.footer-social-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.footer-social-btn:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.footer-social-btn:hover::before {
    width: 100%;
    height: 100%;
}

/* Platform-specific social button styles */
.footer-social-btn.facebook {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.3), rgba(24, 119, 242, 0.1));
}

.footer-social-btn.facebook::before {
    background: linear-gradient(135deg, #1877f2, #0d5dc7);
}

.footer-social-btn.twitter {
    background: linear-gradient(135deg, rgba(29, 161, 242, 0.3), rgba(29, 161, 242, 0.1));
}

.footer-social-btn.twitter::before {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.footer-social-btn.discord {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.3), rgba(88, 101, 242, 0.1));
}

.footer-social-btn.discord::before {
    background: linear-gradient(135deg, #5865f2, #4752c4);
}

.footer-social-btn.youtube {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.3), rgba(255, 0, 0, 0.1));
}

.footer-social-btn.youtube::before {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

/* Section headings */
.footer-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite alternate;
}

@keyframes underlineGlow {
    0% {
        box-shadow: 0 0 5px rgba(102, 126, 234, 0.5);
        width: 40px;
    }
    100% {
        box-shadow: 0 0 15px rgba(102, 126, 234, 0.8);
        width: 50px;
    }
}

/* Links styling */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    border-radius: 4px;
    font-weight: 500;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #f093fb;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(240, 147, 251, 0.5);
}

.footer-link:hover::before {
    width: 100%;
}

/* Copyright section */
.footer-copyright {
    border-top: 1px solid rgba(102, 126, 234, 0.2);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    position: relative;
}

.footer-copyright-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive design */
@media (max-width: 768px) {
    .footer-content {
        padding: 3rem 0 1.5rem;
    }

    .footer-logo-icon {
        width: 50px;
        height: 50px;
    }

    .footer-logo-text {
        font-size: 1.5rem;
    }

    .footer-section {
        margin-bottom: 2rem;
    }

    .footer-social-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .footer-social-links {
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 2rem 0 1rem;
    }

    .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .footer-description {
        text-align: center;
        font-size: 0.9rem;
    }

    .footer-social-links {
        justify-content: center;
        gap: 0.5rem;
    }

    .footer-social-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .footer-section-title {
        text-align: center;
        font-size: 1.1rem;
    }

    .footer-section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        text-align: center;
    }
}

/* RTL Support */
[dir="rtl"] .footer-link {
    padding-right: 0;
    padding-left: 0;
}

[dir="rtl"] .footer-link:hover {
    transform: translateX(-5px);
}

[dir="rtl"] .footer-section-title::after {
    left: auto;
    right: 0;
}

[dir="rtl"] .footer-logo {
    flex-direction: row-reverse;
}

[dir="rtl"] .footer-social-links {
    flex-direction: row-reverse;
}

/* Hover effects for sections */
.footer-section:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.footer-section:hover .footer-section-title::after {
    width: 60px;
    box-shadow: 0 0 20px rgba(102, 126, 234, 1);
}

/* Loading animation for footer */
.footer-container.loading .footer-section {
    opacity: 0;
    transform: translateY(50px);
}

/* Entrance animation when footer comes into view */
@keyframes footerEntrance {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-container.animate-in {
    animation: footerEntrance 1s ease-out forwards;
}
