* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f5f5;
}

.footer-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1a1a2e;
    padding: 30px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #0099ff, #6633ff);
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 20px;
    padding: 20px 0;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1565c0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.foot-menu {
    list-style: none;
}

.foot-menu-item {
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.foot-menu-item a {
    color: #0d47a1;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.foot-menu-item a:hover {
    color: #1976d2;
    transform: translateX(8px);
}

.foot-menu-item a::before {
    content: '▸';
    color: #00d4ff;
    font-weight: bold;
}

.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(25, 118, 210, 0.1);
    border: 2px solid #1976d2;
    color: #1976d2;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #1976d2;
    color: #e3f2fd;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(25, 118, 210, 0.3);
}

.footer-info {
    background: rgba(25, 118, 210, 0.08);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #1976d2;
    margin-bottom: 20px;
}

.footer-info p {
    font-size: 14px;
    line-height: 1.8;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.footer-info p:last-child {
    margin-bottom: 0;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
    margin: 30px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    font-size: 12px;
    color: #555;
}

.copyright strong {
    color: #00d4ff;
}

.footer-links-bottom {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links-bottom a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #00d4ff;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .footer-links-bottom {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

.badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 8px;
    margin-bottom: 5px;
}