/* Footer Styles */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
}

.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 8px 0;
    margin-top: auto;
    border-top: 1px solid #86e3ff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-center {
    text-align: center;
    flex: 1;
    margin: 0 20px;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    height: 40px;
    width: auto;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.1);
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    color: #ecf0f1;
}

.footer-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.footer-icon:hover {
    background: #86e3ff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(134, 227, 255, 0.4);
    color: white;
    text-decoration: none;
}

.footer-icon i {
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-left,
    .footer-center,
    .footer-right {
        margin: 10px 0;
    }
    
    .footer-center {
        order: 1;
    }
    
    .footer-left {
        order: 2;
    }
    
    .footer-right {
        order: 3;
    }
    
    .footer-text {
        font-size: 0.8rem;
    }
    
    .footer-logo {
        height: 35px;
    }
    
    .footer-icon {
        width: 30px;
        height: 30px;
    }
    
    .footer-icon i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 5px 0;
    }
    
    .footer-text {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .footer-logo {
        height: 30px;
    }
    
    .footer-icon {
        width: 28px;
        height: 28px;
    }
    
    .footer-icon i {
        font-size: 12px;
    }
}
