.vxr_footer7_main_box {
    background: linear-gradient(135deg, #332d27 0%, #4b3a24 100%);
    padding: 80px 20px 40px;
    color: #fffdeb;
    position: relative;
    overflow: hidden;
}

.vxr_footer7_main_box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #f39c12, #e74c3c);
    background-size: 200% 100%;
}

.vxr_footer7_container {
    max-width: 1200px;
    margin: 0 auto;
}

.vxr_footer7_grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 50px;
}

.vxr_footer7_left_section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.vxr_footer7_title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffc871;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.vxr_footer7_title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #cf821f;
}

.vxr_footer7_contact_item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
}

.vxr_footer7_contact_item i {
    color: #f39c12;
    font-size: 18px;
    width: 25px;
    text-align: center;
}

.vxr_footer7_schedule_item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(236, 240, 241, 0.1);
    font-size: 15px;
}

.vxr_footer7_day {
    font-weight: 500;
    color: #fffdeb;
}

.vxr_footer7_time {
    color: #ecf0f1;
    font-weight: 600;
}

.vxr_footer7_social_links {
    display: flex;
    gap: 15px;
}

.vxr_footer7_social_link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(236, 240, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ecf0f1;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.vxr_footer7_social_link:hover {
    background: #f39c12;
    border-color: #f39c12;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.vxr_footer7_order_btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #d58723, #a55d02);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgb(231 107 60 / 30%);
    align-self: flex-start;
}

.vxr_footer7_order_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgb(231 107 60 / 50%);
}

.vxr_footer7_order_btn i {
    transition: transform 0.3s ease;
}

.vxr_footer7_order_btn:hover i {
    transform: translateX(5px);
}

.vxr_footer7_right_section {
    position: relative;
}

.vxr_footer7_map_wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(243, 156, 18, 0.3);
}

.vxr_footer7_map {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(30%) contrast(1.1);
}

.vxr_footer7_bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(236, 240, 241, 0.1);
}

.vxr_footer7_copyright {
    font-size: 14px;
    color: #b59f84;
    margin: 0;
}

@media (max-width: 992px) {
    .vxr_footer7_grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vxr_footer7_map_wrapper {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .vxr_footer7_main_box {
        padding: 60px 20px 30px;
    }

    .vxr_footer7_left_section {
        gap: 30px;
    }

    .vxr_footer7_title {
        font-size: 18px;
    }

    .vxr_footer7_schedule_item {
        flex-direction: column;
        gap: 5px;
    }

    .vxr_footer7_order_btn {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
    }

    .vxr_footer7_map_wrapper {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .vxr_footer7_social_link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .vxr_footer7_contact_item {
        font-size: 14px;
    }
}