/* Location Map Component Styles */

.lseo_map_wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1100px;
    margin: 60px auto;
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (min-width: 992px) {
    .lseo_map_wrapper {
        flex-direction: row;
        align-items: stretch;
    }
}

.lseo_map_column {
    width: 100%;
    height: 400px;
    display: flex;
}

@media (min-width: 992px) {
    .lseo_map_column {
        width: 50%;
        height: auto;
        min-height: 100%;
    }
}

.lseo_map_column iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    flex-grow: 1;
}

.lseo_map_info {
    width: 100%;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

@media (min-width: 992px) {
    .lseo_map_info {
        width: 50%;
        padding: 50px;
    }
}

.lseo_map_brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lseo_map_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.lseo_dot_open {
    background-color: #00e676;
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.6);
    animation: pulse-open 2s infinite;
}

.lseo_dot_closed {
    background-color: #ff3333;
}

.lseo_label_open {
    color: #00e676;
}

.lseo_label_closed {
    color: #ff3333;
}

@keyframes pulse-open {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(0, 230, 118, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
    }
}

.lseo_map_title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.lseo_map_details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lseo_map_detail_item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 14px;
}

.lseo_map_detail_item i {
    color: #ff6600;
    font-size: 20px;
    margin-top: 2px;
}

.lseo_map_detail_item p {
    margin: 0 0 4px 0;
    line-height: 1.5;
    color: #b3b3b3;
}

.lseo_map_detail_item a {
    color: #b3b3b3;
    text-decoration: none;
    display: block;
    line-height: 1.5;
    transition: color 0.3s ease;
    margin-bottom: 4px;
}

.lseo_map_detail_item a:hover {
    color: #fff;
}

.lseo_map_hours {
    width: 100%;
    max-width: 280px;
}

.lseo_hours_row {
    display: flex;
    justify-content: space-between;
    padding: 6px 12px;
    font-size: 14px;
    color: #b3b3b3;
    border-radius: 6px;
    margin-bottom: 2px;
}

.lseo_today {
    background-color: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.lseo_today .lseo_hours_time, 
.lseo_today .lseo_hours_day {
    color: #fff;
    font-weight: 500;
}

.lseo_hours_closed {
    color: #ff3333 !important;
}

.lseo_map_cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #ff6600;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
    border: none;
    cursor: pointer;
    width: fit-content;
}

.lseo_map_cta:hover {
    background-color: #e65c00;
    transform: translateY(-2px);
    color: #fff;
}

.lseo_map_cta i {
    font-size: 18px;
}
