/* Enhanced Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #6366F1, transparent);
}

.footer-content {
    text-align: center;
}

.footer-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: #E5E7EB;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
}

.footer-links a:hover {
    color: white;
    background: rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

/* Sleek Contact Section */
.footer-contact {
    margin: 40px auto;
    max-width: 400px;
}

.contact-toggle {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #E5E7EB;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.contact-toggle:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-2px);
}

.contact-toggle .arrow {
    transition: transform 0.3s ease;
    display: inline-block;
}

.contact-toggle.active .arrow {
    transform: rotate(180deg);
}

.contact-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.3s ease;
    opacity: 0;
    margin-top: 20px;
}

.contact-details.show {
    max-height: 200px;
    opacity: 1;
}

.contact-items {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-item a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #6366F1;
}

/* Designer Credit - Minimal */
.footer-designer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #6B7280;
}

.footer-designer a {
    color: #9CA3AF;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.footer-designer a:hover {
    color: #6366F1;
}

.github-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-copyright {
    color: #6B7280;
    font-size: 0.85rem;
    margin-top: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-links a {
        display: block;
        width: fit-content;
        margin: 0 auto;
    }
    
    .footer-designer {
        flex-direction: column;
        gap: 10px;
    }
}