.footer {
    padding-top: 0;
    color: #ffffff;
}

.footer-top {
    display: flex;
    align-items: flex-end;
    justify-content: end;
    background-color: var(--primary-color);
}

.footer-top .footer-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 55px;
    cursor: pointer;
    padding: 10px;
}

.footer-top .footer-links li a {
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: 0.2s ease;
    color: #ffffff;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    background-color: black;
}

.footer-logo {
    background-color: var(--primary-color);
}

.logo {
    width: 200px;
    padding: 50px;
}

.footer-content-wrapper {
    flex: 1;
    padding: 20px 0 20px 40px;
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 30px 0;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-box {
    background-color: #8d4533;
    width: 35px;
    height: 35px;
    min-width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid #8b8b8b;
    color: #ffffff;
    font-size: 1.1rem;
}

.contact-text span {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2px;
}

.contact-text strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
}

.footer-divider {
    border: 0;
    border-top: 1px solid #4b4b4b;
    margin: 10px 0 20px 0;
}

.footer-bottom-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #ffffff;
    font-size: 1.1rem;
    opacity: 0.8;
    transition: 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.highlight {
    color: #b35a45;
    font-weight: bold;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: #666;
}

.cl {
    color: #3973b7;
    font-weight: bold;
}
.tech {
    color: #b11f3e;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .footer-top {
        justify-content: center;
    }

    .footer-top .footer-links {
        gap: 25px;
        justify-content: center;
    }

    .footer-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-logo {
        width: 100%;
        padding: 20px 0;
    }

    .logo {
        width: 150px;
        padding: 20px;
    }

    .footer-content-wrapper {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .footer-top .footer-links {
        gap: 15px;
        flex-direction: column;
    }

    .footer-top .footer-links li a {
        font-size: 0.8rem;
    }

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

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

    .contact-item {
        justify-content: flex-start;
    }

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

@media (max-width: 480px) {
    .footer-top .footer-links {
        justify-content: space-around;
        width: 100%;
    }
}
