/* Footer Redesign - Dopamine Style */
footer {
    padding: 6rem 5% 4rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: radial-gradient(circle at bottom center, #0a0a0a 0%, #000 100%) !important;
    text-align: left !important;
    position: relative;
    overflow: hidden;
}

/* Subtle glow background for footer */
footer::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: 20%;
    width: 60%;
    height: 40%;
    background: var(--primary-color);
    filter: blur(150px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

/* Call to Action Section */
.footer-cta {
    flex: 1.5;
    min-width: 300px;
    max-width: 600px;
}

.footer-cta h2 {
    font-family: var(--font-heading);
    color: var(--text-color);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 2rem;
    font-weight: 500;
}

.footer-cta .highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.footer-cta p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 450px;
}

/* Info Section */
.footer-info {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: flex-start;
}

.contact-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-group .label {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.contact-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.contact-link:hover {
    color: white;
    text-shadow: 0 0 15px rgba(255, 123, 0, 0.5);
    transform: translateX(5px);
}

.contact-link .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--primary-color);
}

.contact-link:hover .arrow {
    transform: translate(5px, -5px) scale(1.2);
}

.social-links-footer {
    display: flex;
    gap: 2rem;
}

.social-links-footer a {
    font-family: var(--font-body);
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.social-links-footer a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.social-links-footer a:hover {
    color: white;
}

.social-links-footer a:hover::after {
    width: 100%;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: var(--text-muted);
    width: 100%;
    position: relative;
    z-index: 1;
}

.scroll-top {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.scroll-top:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-cta h2 {
        font-size: 2.2rem;
    }

    .contact-link {
        font-size: 1.3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}