:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-color: #ff3e00; /* Orange vibrant */
    --glass: rgba(255, 255, 255, 0.03);
}




footer {
    background: var(--bg-color);
    color: #ffffff;
    padding: 4rem 5% 2rem 5%;
    position: relative;
    overflow: hidden;
    /* margin-top: 4rem; */
}


.darkmode footer {
    background: var(--bg-color);
}


.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
}


.footer-about h2,
.footer-nav h2,
.footer-nav h3,
.footer-contact h2 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
}

.footer-about h2::after,
.footer-nav h2::after,
.footer-nav h3::after,
.footer-contact h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}


.footer-about p {
    line-height: 1.8;
    color: #B9B9B9;
    margin-bottom: 1.5rem;
}


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

.social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background: var(--accent-color);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(58, 24, 13, 0.42);
}


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

.footer-nav li {
    margin-bottom: 0.8rem;
}

.footer-nav a {
    color: #B9B9B9;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-nav a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-nav a:hover {
    color: #ffffff;
    padding-left: 10px;
}

.footer-nav a:hover::before {
    width: 100%;
}


.footer-nav .serv {
    color: #B9B9B9;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-nav .serv::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-nav .serv:hover {
    color: #ffffff;
    padding-left: 10px;
}

.footer-nav .serv:hover::before {
    width: 100%;
}


.footer-contact {
    color: #B9B9B9;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--accent-color);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(58, 24, 13, 0.42);
    border-radius: 8px;
    flex-shrink: 0;
}

.contact-item:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.contact-item span {
    font-size: 0.95rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-about,
.footer-nav,
.footer-contact {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.footer-about { animation-delay: 0.1s; }
.footer-nav:nth-child(2) { animation-delay: 0.2s; }
.footer-nav:nth-child(3) { animation-delay: 0.3s; }
.footer-contact { animation-delay: 0.4s; }


@media screen and (max-width: 768px) {
    footer {
        padding: 3rem 5% 1.5rem 5%;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}