/* Footer */
footer {
    width: 100%;
    margin-top: 60px;
}

.footer-nav {
    background-color: #2D2D5E;
    padding: 20px 0;
    border-radius: 15px 15px 0 0;
}

.footer-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Footer Navigation Buttons */
.footer-nav-container a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.footer-nav-container a:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(228, 64, 95, 0.3);
    border-color: transparent;
    color: white;
}

.footer-nav-container a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.footer-nav-container a:hover::after {
    left: 100%;
}

/* Footer Main Links */
.footer-column ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 4px 0;
    position: relative;
}

.footer-column ul li a:hover {
    color: #E4405F;
    transform: translateX(5px);
}

.footer-column ul li a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover::before {
    opacity: 1;
    left: -20px;
}

/* Footer Logo Glow */
.footer-logo {
    color: #E4405F;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #f09433, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(228, 64, 95, 0.1));
}


.footer-main {
    background-color: #F8F9FA;
    padding: 40px 0;
    border-left: 1px solid #E0E0E0;
    border-right: 1px solid #E0E0E0;
}

.footer-main-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    padding: 0 20px;
}

.footer-logo {
    color: #E4405F;
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    max-width: 400px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.footer-column h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 4px 0;
    position: relative;
}

.footer-column ul li a:hover {
    color: #E4405F;
    transform: translateX(5px);
}


.footer-bottom {
    background-color: #0F0F1E;
    color: white;
    padding: 20px 0;
    text-align: center;
    border-radius: 0 0 15px 15px;
}

.footer-bottom-container p {
    font-size: 13px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-main-container {
        grid-template-columns: 1fr;
    }
    .footer-nav-container {
        gap: 20px;
    }
}
