﻿/* Footer Styles */
.footer-container {
    position: relative;
    background: linear-gradient(135deg, #0c2c4a 0%, #1a4870 25%, #0d3b66 50%, #092642 75%, #051a30 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 40px 0 20px;
    overflow: hidden;
    border-top: 3px solid #ff9800;
}

/* Floating Bubbles */
.bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bubble {
    position: absolute;
    bottom: -50px;
    width: var(--size);
    height: var(--size);
    background: radial-gradient(circle at 30% 30%, rgba(255, 152, 0, 0.3), rgba(255, 152, 0, 0.1));
    border-radius: 50%;
    opacity: 0.5;
    animation: floatUp 10s var(--delay) infinite linear;
    filter: blur(2px);
    left: var(--left);
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-100vh) scale(0.5);
        opacity: 0;
    }
}

/* Construction Icons */
.construction-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.construction-icon {
    position: absolute;
    bottom: -50px;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    animation: floatUp 15s var(--delay) infinite linear;
    text-shadow: 0 0 10px rgba(255, 152, 0, 0.5);
    left: var(--left);
}

.footer-content {
    position: relative;
    z-index: 3;
}

/* Premium MANT Branding */
.mant-brand {
    text-align: center;
    margin-bottom: 25px;
    padding: 0 15px;
}

.mant-logo {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.15) 0%, rgba(255, 152, 0, 0.05) 100%);
    padding: 15px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 152, 0, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 15px;
}

    .mant-logo i {
        font-size: 2.8rem;
        color: #ff9800;
        margin-right: 15px;
        text-shadow: 0 0 15px rgba(255, 152, 0, 0.4);
    }

.mant-logo-text {
    text-align: left;
}

    .mant-logo-text .main {
        font-size: 2.5rem;
        font-weight: 800;
        color: #fff;
        letter-spacing: 1px;
        line-height: 1;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        display: block;
    }

    .mant-logo-text .sub {
        color: #ff9800;
        font-size: 0.9rem;
        letter-spacing: 3px;
        text-transform: uppercase;
        font-weight: 500;
    }

.company-description {
    margin-bottom: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
}

/* Content Sections */
.footer-sections {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 0 15px;
}

.footer-heading {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

    .footer-heading::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: #ff9800;
        border-radius: 2px;
    }

    .footer-heading.center::after {
        left: 50%;
        transform: translateX(-50%);
    }

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a, .footer-links li {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        display: block;
        font-size: 0.95rem;
    }

        .footer-links a:hover {
            color: #ff9800;
            transform: translateX(5px);
        }

    .footer-links i {
        margin-right: 10px;
        width: 20px;
        color: #ff9800;
        font-size: 0.9rem;
    }

.contact-info {
    margin-top: 5px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

    .contact-item i {
        color: #ff9800;
        margin-right: 12px;
        margin-top: 4px;
        min-width: 16px;
        font-size: 0.9rem;
    }

/* Newsletter */
.newsletter-text {
    margin-bottom: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.newsletter-form {
    margin-bottom: 20px;
}

    .newsletter-form .input-group {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        padding: 5px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

        .newsletter-form .input-group:focus-within {
            border-color: #ff9800;
            box-shadow: 0 0 0 0.2rem rgba(255, 152, 0, 0.25);
        }

    .newsletter-form .form-control {
        background: transparent;
        border: none;
        color: #fff;
        padding: 10px 15px;
        font-size: 0.95rem;
    }

        .newsletter-form .form-control::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .newsletter-form .form-control:focus {
            box-shadow: none;
        }

    .newsletter-form .btn {
        border-radius: 8px;
        padding: 10px 20px;
        background: #ff9800;
        border: none;
        transition: all 0.3s ease;
        font-weight: 600;
        font-size: 0.9rem;
    }

        .newsletter-form .btn:hover {
            background: #e68900;
            transform: translateY(-2px);
        }

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

    /* Original social media colors */
    .social-link.facebook {
        background: #3b5998;
    }

    .social-link.twitter {
        background: #1da1f2;
    }

    .social-link.linkedin {
        background: #0077b5;
    }

    .social-link.instagram {
        background: radial-gradient(circle at 33% 100%, #fed373 4%, #f15245 30%, #d92e7f 62%, #9b36b7 85%, #515ecf);
    }

    .social-link.youtube {
        background: #ff0000;
    }

    .social-link:hover {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

/* Footer Bottom */
.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright, .design-credit {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-align: center;
}

    .design-credit a {
        color: #ff9800;
        text-decoration: none;
        font-weight: 600;
    }

/* Responsive adjustments */
@media (max-width: 992px) {
    .footer-sections {
        gap: 20px;
    }

    .footer-section {
        min-width: 220px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 30px 0 15px;
    }

    .mant-logo {
        padding: 12px 15px;
    }

        .mant-logo i {
            font-size: 2.2rem;
            margin-right: 12px;
        }

    .mant-logo-text .main {
        font-size: 2rem;
    }

    .footer-sections {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        text-align: center;
        max-width: 100%;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-item {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}
