/* Footer Section Styles */
.footer {
    background-color: #0d0d0d;
    padding: 80px 6% 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Brand Column */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
}

.footer-col .tagline {
    color: var(--neon-green);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
}

.btn-hire {
    background-color: var(--neon-green);
    color: #0d0d0d;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 30px;
    width: fit-content;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-hire:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon-circle {
    width: 40px;
    height: 40px;
    background-color: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-green);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.social-icon-circle:hover {
    transform: translateY(-5px) scale(1.1);
    background-color: var(--neon-green);
    color: #0d0d0d;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
}

/* Links & Services Columns */
.footer-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--neon-green);
    transform: translateX(5px);
}

/* Contact Column */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-item svg {
    color: var(--neon-green);
}

.btn-touch {
    background-color: transparent;
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    width: fit-content;
    font-size: 0.9rem;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.btn-touch:hover {
    background-color: var(--neon-green);
    color: #0d0d0d;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.2), transparent);
    margin-bottom: 30px;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.bottom-links {
    display: flex;
    gap: 20px;
}

.bottom-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.bottom-links a:hover {
    color: var(--neon-green);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer {
        padding: 80px 5% 30px;
    }

    .footer-container {
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 16px 30px; /* Consistent padding */
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
        margin-bottom: 40px;
    }

    .brand-col {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }

    .contact-col {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
        margin-top: 10px;
    }

    .footer-col {
        align-items: flex-start;
        text-align: left;
    }

    .footer-desc {
        max-width: 100%;
        margin: 0 auto;
    }

    .footer-socials {
        justify-content: center;
    }

    .bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}