/* ===== ENHANCED FOOTER STYLING - ROW LAYOUT ===== */
.footer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem 2rem;
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 2rem;
}

.footer-col {
    text-align: left;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #667eea;
    transform: translateX(5px);
}

/* Social Icons Column - Horizontal Row */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-icons-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-icon:hover {
    transform: translateY(-5px) rotate(360deg);
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    background: rgba(102, 126, 234, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-author a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-author a:hover {
    color: #f093fb;
    text-decoration: underline;
}

.footer-disclaimer {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Responsive Footer */
@media (max-width: 968px) {
    .footer-main-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer-social {
        grid-column: 1 / -1;
        align-items: center;
    }

    .social-icons-row {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .footer-links a:hover {
        transform: none;
    }

    .social-icons-row {
        justify-content: center;
        gap: 0.75rem;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .footer {
        padding: 2rem 1.5rem 1.5rem;
    }
}