﻿
.footer-modern {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #E2E8F0;
    position: relative;
    overflow: hidden;
}

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

/* Logo */
.footer-logo {
    filter: brightness(1.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .footer-logo:hover {
        transform: scale(1.2);
    }

/* Badge */
.badge-modern {
    background: #AA122D;
    color: #F8FAFC;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(170, 18, 45, 0.3);
}

/* Company Description */
.company-description {
    font-size: 1.025rem;
    line-height: 1.65;
    color: #CBD5E1;
    max-width: 650px;
}

/* Headings */
.footer-heading {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 12px;
}

    .footer-heading::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background: #AA122D;
        border-radius: 2px;
    }

/* Navigation */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-nav li {
        margin-bottom: 12px;
    }

.footer-link {
    color: #CBD5E1;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-left: 4px;
}

    .footer-link:hover {
        color: white;
        padding-left: 12px;
        transform: translateX(4px);
        font-weight: 600;
    }

    .footer-link::before {
        position: absolute;
        left: 0;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .footer-link:hover::before {
        opacity: 1;
        left: 4px;
    }

/* Social Buttons */
.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.social-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-facebook:hover {
    background: blue;
    color: white;
    transform: translateY(-4px) scale(1.08);
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.btn-youtube:hover {
    background: red;
    color: white;
    transform: translateY(-4px) scale(1.08);
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.btn-pinterest:hover {
    background: #E60023;
    color: white;
    transform: translateY(-4px) scale(1.08);
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.btn-linkedin:hover {
    background: #0A66C2;
    color: white;
    transform: translateY(-4px) scale(1.08);
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

/* Contact Items */
.contact-list {
    display: flex;
    flex-direction: column;
/*    align-items:center;
    justify-content:center;*/
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #CBD5E1;
    text-decoration: none;
    padding: 10px 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
    max-width: 600px;
}

    .contact-item:hover {
        background: rgba(255,255,255,0.08);
        transform: translateX(6px);
        color: white;
    }

    .contact-item i {
        font-size: 1.35rem;
        width: 24px;
        color: #AA122D;
        margin-top: 2px;
        margin-right: 10px;
    }

    .contact-item span {
        display: block;
        font-weight: 500;
    }

/* Bottom Bar */
.footer-bottom {
    background: rgba(15, 23, 42, 0.8);
    border-top: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
}

.copyright-text {
    color: #94A3B8;
    font-size: 0.95rem;
}

.insoft-link {
    color: #E2E8F0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .insoft-link:hover {
        color: #AA122D;
    }

@media (max-width: 991px) {
    .footer-modern .row > div {
        text-align: center;
    }

    .social-grid {
        justify-content: center;
    }

    .contact-list {
        align-items: center;
    }
}

@media (min-width: 992px) {
    .company-description {
        max-width: 100%;
    }
}

@media (max-width: 998px) {
    .social-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        place-items: center;
    }

    .contact-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .footer-heading::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 2px;
        background: #AA122D;
        border-radius: 2px;
    }

    ..company-description {
        max-width: 500px;
    }
}

/* Animations */
.footer-modern {
    animation: footerFadeIn 0.8s ease forwards;
}

@keyframes footerFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-link,
.contact-item,
.social-btn {
    will-change: transform;
}