/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    padding: 60px 0 30px 0;
    color: #fff;
}

.footer_content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Logo Section */
.footer_logo {
    text-align: center;
}

.footer_logo img {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
}

/* Contact Info Section */
.footer_info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 40px;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
}

.footer_info_item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 14px;
    padding: 10px;
    transition: all 0.3s ease;
}

.footer_info_item:hover {
    background: rgba(196, 171, 159, 0.1);
    border-radius: 5px;
}

.footer_info_item i {
    color: #c4ab9f;
    font-size: 20px;
    min-width: 24px;
    text-align: center;
}

/* Right Section */
.footer_right {
    text-align: center;
}

.footer_sitemap {
    margin-bottom: 30px;
}

.footer_sitemap h4 {
    color: #c4ab9f;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer_sitemap ul li {
    margin-bottom: 12px;
}

.footer_sitemap ul li a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 3px;
}

.footer_sitemap ul li a:hover {
    color: #c4ab9f;
    background: rgba(196, 171, 159, 0.1);
}

.footer_social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer_social a {
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.footer_social a:hover {
    color: #c4ab9f;
    background: rgba(196, 171, 159, 0.2);
    transform: translateY(-3px);
}

.footer_bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #888;
}

/* Responsive styles */
@media only screen and (max-width: 991px) {
    .footer_content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer_info {
        border: none;
        padding: 0;
        border-top: 1px solid #333;
        border-bottom: 1px solid #333;
        padding: 30px 0;
    }
}

@media only screen and (max-width: 767px) {
    .footer {
        padding: 40px 0 20px 0;
    }

    .footer_info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer_info_item {
        justify-content: center;
    }

    .footer_social a {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}
