.vxr_location1_main_box {
    padding: 100px 0;
    background: #0a0806;
    position: relative;
    overflow: hidden;
    --ring-radius: 20px;
    --ring-thickness: 2px;
    --ring-opacity: 0.8;
    --ring-speed: 3s;
    --ring-c1: #FFB800;
    --ring-c2: #ffc933;
}

.vxr_location1_main_box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(255, 184, 0, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 90% 80%, rgba(255, 184, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.vxr_location1_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.vxr_location1_header {
    text-align: center;
    margin-bottom: 60px;
}

.vxr_location1_title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 20px;
    position: relative;
    display: inline-block;
}

.vxr_location1_title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FFB800, transparent);
}

.vxr_location1_subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: #b8b3ac;
    max-width: 800px;
    margin: 0 auto;
}

.vxr_location1_map_visual {
    margin-bottom: 70px;
    position: relative;
}

.vxr_location1_map_bg {
    width: 100%;
    height: 400px;
    background-image: url('https://elements-resized.envatousercontent.com/envato-dam-assets-production/EVA/TRX/8a/c6/7a/b9/8f/v1_E11/E118EZ7R.jpg?w=1600&cf_fit=scale-down&q=85&format=auto&s=a6bf8ff76c9a1693feccf6afb8413d6f1c71eaa7412377472d5e9cfb3d6d2d21');
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.vxr_location1_map_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 8, 6, 0.9) 0%, rgba(20, 16, 12, 0.85) 100%);
}

.vxr_location1_central_marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.vxr_location1_marker_pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 184, 0, 0.3);
    animation: vxr_location1_pulse 2s ease-out infinite;
}

@keyframes vxr_location1_pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.vxr_location1_central_marker i {
    font-size: 60px;
    color: #FFB800;
    display: block;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 20px rgba(255, 184, 0, 0.8));
    animation: vxr_location1_bounce 2s ease-in-out infinite;
}

@keyframes vxr_location1_bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.vxr_location1_central_marker span {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    display: block;
}

.vxr_location1_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.vxr_location1_location_card {
    background: rgba(20, 16, 12, 0.7);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.vxr_location1_location_card:hover {
    transform: translateY(-10px);
    background: rgba(20, 16, 12, 0.85);
}

@property --_angle {
    syntax:"<angle>";
    initial-value:0turn;
    inherits:false;
}

@supports (background: conic-gradient(red, blue)) {
    .ring-sweep{
        position: relative;
        isolation: isolate;
        border-radius: var(--ring-radius);
        contain: paint;
    }

    .ring-sweep::before{
        --_angle: 0turn;
        content:"";
        position:absolute;
        inset:0;
        border-radius:inherit;
        padding:var(--ring-thickness);
        pointer-events:none;
        opacity: 0;
        transition: opacity .25s ease, filter .25s ease;
        will-change: transform;
        background:
                conic-gradient(from var(--_angle),
                transparent 0deg 4deg,
                var(--ring-c1) 80deg 16deg,
                transparent 20deg 176deg,
                var(--ring-c2) 230deg 188deg,
                transparent 192deg 356deg);
        -webkit-mask:
                linear-gradient(#000 0 0) content-box,
                linear-gradient(#000 0 0);
        -webkit-mask-composite:xor;
        mask-composite:exclude;
        filter: drop-shadow(0 0 12px rgba(255, 184, 0, .25))
        drop-shadow(0 0 24px rgba(255, 184, 0, .15));
        animation: none;
        animation-play-state: paused;
        z-index: 10;
    }

    @media (hover: hover){
        .ring-sweep[data-ring="hover"]:hover::before,
        .ring-sweep:not([data-ring]):hover::before{
            animation: vxr_location1_ring_spin var(--ring-speed) linear infinite;
            animation-play-state: running;
            opacity: 1;
            filter: drop-shadow(0 0 16px rgba(255, 184, 0, .35))
            drop-shadow(0 0 36px rgba(255, 184, 0, .2));
        }
    }

    .ring-sweep[data-ring="always"]::before{
        animation: vxr_location1_ring_spin var(--ring-speed) linear infinite;
        animation-play-state: running;
        opacity: 1;
        filter: drop-shadow(0 0 16px rgba(255, 184, 0, .35))
        drop-shadow(0 0 36px rgba(255, 184, 0, .2));
    }

    .ring-sweep[data-ring="off"]::before{
        animation: none !important;
        opacity: 0 !important;
        filter: none !important;
    }

    @keyframes vxr_location1_ring_spin{
        to{ --_angle: 1turn; }
    }
}

@supports not (background: conic-gradient(red, blue)) {
    .ring-sweep{
        box-shadow:
                0 0 0 var(--ring-thickness) rgba(255, 184, 0, .9) inset,
                0 0 24px rgba(255, 184, 0, .35),
                0 0 48px rgba(255, 184, 0, .2);
    }
}

@media (prefers-reduced-motion: reduce){
    .ring-sweep::before{
        animation: none !important;
    }
}

.vxr_location1_card_icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #FFB800, #ffc933);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.vxr_location1_location_card:hover .vxr_location1_card_icon {
    transform: rotateY(360deg);
}

.vxr_location1_card_icon i {
    font-size: 32px;
    color: #0a0806;
}

.vxr_location1_location_name {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px;
    position: relative;
    z-index: 2;
}

.vxr_location1_location_desc {
    font-size: 14px;
    line-height: 1.6;
    color: #b8b3ac;
    margin: 0;
    position: relative;
    z-index: 2;
}

.vxr_location1_location_badge {
    display: inline-block;
    margin-top: 15px;
    padding: 6px 15px;
    background: linear-gradient(135deg, #FFB800, #ffc933);
    color: #0a0806;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.vxr_location1_contact_section {
    display: flex;
    justify-content: center;
}

.vxr_location1_contact_card {
    max-width: 700px;
    width: 100%;
    background: rgba(20, 16, 12, 0.6);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(255, 184, 0, 0.2);
    transition: all 0.3s ease;
}

.vxr_location1_contact_card:hover {
    border-color: rgba(255, 184, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.vxr_location1_contact_icon {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.vxr_location1_contact_title {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px;
}

.vxr_location1_contact_text {
    font-size: 16px;
    line-height: 1.7;
    color: #b8b3ac;
    margin: 0 0 30px;
}

.vxr_location1_contact_btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #FFB800, #ffc933);
    color: #0a0806;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.vxr_location1_contact_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.5);
    background: linear-gradient(135deg, #ffc933, #FFB800);
}

.vxr_location1_contact_btn i {
    font-size: 20px;
}

@media (max-width: 1200px) {
    .vxr_location1_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .vxr_location1_main_box {
        padding: 80px 0;
    }

    .vxr_location1_container {
        padding: 0 30px;
    }

    .vxr_location1_title {
        font-size: 42px;
    }

    .vxr_location1_subtitle {
        font-size: 17px;
    }

    .vxr_location1_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vxr_location1_map_bg {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .vxr_location1_main_box {
        padding: 60px 0;
    }

    .vxr_location1_container {
        padding: 0 20px;
    }

    .vxr_location1_title {
        font-size: 36px;
    }

    .vxr_location1_subtitle {
        font-size: 16px;
    }

    .vxr_location1_header {
        margin-bottom: 50px;
    }

    .vxr_location1_map_visual {
        margin-bottom: 50px;
    }

    .vxr_location1_map_bg {
        height: 300px;
    }

    .vxr_location1_central_marker i {
        font-size: 50px;
    }

    .vxr_location1_central_marker span {
        font-size: 24px;
    }

    .vxr_location1_grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }

    .vxr_location1_contact_card {
        padding: 40px 30px;
    }

    .vxr_location1_contact_title {
        font-size: 22px;
    }

    .vxr_location1_contact_text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .vxr_location1_title {
        font-size: 28px;
    }

    .vxr_location1_subtitle {
        font-size: 15px;
    }

    .vxr_location1_map_bg {
        height: 250px;
        border-radius: 20px;
    }

    .vxr_location1_central_marker i {
        font-size: 40px;
    }

    .vxr_location1_central_marker span {
        font-size: 20px;
    }

    .vxr_location1_location_card {
        padding: 30px 20px;
    }

    .vxr_location1_card_icon {
        width: 60px;
        height: 60px;
    }

    .vxr_location1_card_icon i {
        font-size: 28px;
    }

    .vxr_location1_location_name {
        font-size: 18px;
    }

    .vxr_location1_contact_card {
        padding: 35px 25px;
    }

    .vxr_location1_contact_title {
        font-size: 20px;
    }

    .vxr_location1_contact_btn {
        padding: 14px 35px;
        font-size: 16px;
    }
}

.vxrD8238 {
    width: 70px;
    height: 70px;
}