/* ==========================================================================
   Footer Section
   ========================================================================== */
   .footer-section {
    color: var(--text-body);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.footer-nav-section,
.footer-cta-section {
    flex: 1;
    min-width: 200px;
}

.footer-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: var(--spacing-lg);
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50%;
    height: 4px;
    background: linear-gradient(to right, var(--accent-pink) 0%, var(--accent-orange) 100%);
    border-radius: 2px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: flex-start;
}

.footer-nav li {
    transform: translateY(5px);
    opacity: 0;
    animation: slideIn 0.5s ease forwards;
}

.footer-nav li:nth-child(odd) { transform: translateX(-10px); }
.footer-nav li:nth-child(even) { transform: translateX(10px); }
.footer-nav li:nth-child(1) { animation-delay: 0.1s; }
.footer-nav li:nth-child(2) { animation-delay: 0.2s; }
.footer-nav li:nth-child(3) { animation-delay: 0.3s; }
.footer-nav li:nth-child(4) { animation-delay: 0.4s; }
.footer-nav li:nth-child(5) { animation-delay: 0.5s; }
.footer-nav li:nth-child(6) { animation-delay: 0.6s; }

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 500;
    position: relative;
    padding-bottom: 2px;
    transition: var(--transition-default);
}

.footer-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-pink);
    transition: width 0.3s ease;
}

.footer-link:hover::before,
.footer-link:focus::before {
    width: 100%;
}

.footer-link:hover {
    color: var(--text-heading);
    transform: translateX(5px);
}

.footer-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    background: rgba(0, 0, 0, 0.1);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.footer-cta {
    background: linear-gradient(to right, #db2777 0%, #fb923c 100%);
    color: var(--background-color);
    border: none;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    font-weight: 700;
    font-size: var(--font-size-md);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    position: relative;
    overflow: hidden;
    transition: var(--transition-default);
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.footer-cta:hover::before {
    left: 100%;
}

.footer-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: var(--text-active);
}

.footer-cta:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.footer-copyright-section {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-copyright {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.footer-copyright a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-default);
}

.footer-copyright a:hover {
    color: var(--text-heading);
}

.footer-copyright a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}