/* ========================================
   MAIN FOOTER - PINK TO BLUE GRADIENT
======================================== */
.main-footer {
    background: linear-gradient(135deg, #F8A5DA 0%, #C8A7F1 25%, #B498DD 50%, #C0D7F1 75%, #B8E0F0 100%);
    color: #ffffff;
    padding: 80px 0 40px;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.main-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 11, 40, 0.1);
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

/* ========================================
   BRAND SECTION
======================================== */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-footer .footer-logo {
    height: 55px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

.main-footer .footer-logo:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(255, 255, 255, 0.5));
}

.main-footer .footer-quote {
    font-size: 1.1rem;
    color: #ffffff;
    font-style: italic;
    margin: 0;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    text-shadow: 2px 2px 8px rgba(20, 11, 40, 0.3);
    max-width: 300px;
}

/* ========================================
   SOCIAL MEDIA SECTION
======================================== */
.main-footer .footer-social {
    text-align: center;
}

.main-footer .social-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-primary);
    text-shadow: 2px 2px 8px rgba(20, 11, 40, 0.3);
}

.main-footer .social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.main-footer .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.main-footer .social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    transition: left 0.3s ease;
}

.main-footer .social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid #ffffff;
    color: #ffffff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.main-footer .social-link:hover::before {
    left: 0;
}

.main-footer .social-link svg {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 2;
}

/* ========================================
   COPYRIGHT SECTION
======================================== */
.main-footer .footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.main-footer .copyright {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-medium);
    text-shadow: 1px 1px 4px rgba(20, 11, 40, 0.3);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 768px) {
    .main-footer {
        padding: 60px 0 30px;
        margin-top: 80px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .main-footer .footer-logo {
        height: 48px;
    }
    
    .main-footer .footer-quote {
        font-size: 1rem;
        text-align: center;
        max-width: 280px;
    }
    
    .main-footer .social-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .main-footer .social-links {
        gap: 15px;
    }
    
    .main-footer .social-link {
        width: 45px;
        height: 45px;
    }
    
    .main-footer .social-link svg {
        width: 20px;
        height: 20px;
    }
    
    .main-footer .copyright {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 50px 0 25px;
        margin-top: 60px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-content {
        gap: 35px;
        margin-bottom: 35px;
    }
    
    .main-footer .footer-logo {
        height: 42px;
    }
    
    .main-footer .footer-quote {
        font-size: 0.95rem;
        max-width: 250px;
    }
    
    .main-footer .social-title {
        font-size: 1.1rem;
        margin-bottom: 18px;
    }
    
    .main-footer .social-links {
        gap: 12px;
    }
    
    .main-footer .social-link {
        width: 42px;
        height: 42px;
    }
    
    .main-footer .social-link svg {
        width: 18px;
        height: 18px;
    }
    
    .main-footer .copyright {
        font-size: 0.85rem;
    }
    
    .main-footer .footer-bottom {
        padding-top: 30px;
    }
}

/* ========================================
   SPECIAL EFFECTS
======================================== */
.main-footer .social-link:nth-child(1):hover {
    box-shadow: 0 8px 25px rgba(248, 165, 218, 0.4);
}

.main-footer .social-link:nth-child(2):hover {
    box-shadow: 0 8px 25px rgba(66, 103, 178, 0.4);
}

.main-footer .social-link:nth-child(3):hover {
    box-shadow: 0 8px 25px rgba(37, 244, 238, 0.4);
}

.main-footer .social-link:nth-child(4):hover {
    box-shadow: 0 8px 25px rgba(0, 195, 0, 0.4);
}