.ibic-map-wrapper-545334e6 {
    position: relative;
    width: 100%;
    min-height: 500px;
    background: #0a0f18; /* Dark premium background */
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    padding: 40px 0;
}

.ibic-map-container-545334e6 {
    position: relative;
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
}

@media (max-width: 768px) {
    .ibic-map-container-545334e6 {
        width: 100%;
    }
}

.ibic-svg-map-layer {
    position: relative;
    width: 100%;
}

.ibic-main-map-image {
    width: 100%;
    height: auto;
    display: block;
}

.ibic-routes-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}


.route-line {
    fill: none;
    stroke: rgba(0, 200, 255, 0.3);
    stroke-width: 4;
    stroke-dasharray: 8, 8;
    animation: flow 20s linear infinite;
}

@keyframes flow {
    from { stroke-dashoffset: 100; }
    to { stroke-dashoffset: 0; }
}

.marker {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}

.hq-marker {
    width: 24px;
    height: 24px;
    background: #ffaa00;
    border-radius: 50%;
    box-shadow: 0 0 15px #ffaa00;
}

.hq-marker .pulse, .facility-marker .pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #ffaa00;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.facility-marker {
    width: 16px;
    height: 16px;
    background: #00ffcc;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ffcc;
}
.facility-marker .pulse {
    border-color: #00ffcc;
}

.office-marker {
    width: 12px;
    height: 12px;
    background: #00aaff;
    border-radius: 50%;
    box-shadow: 0 0 8px #00aaff;
}

.node-marker {
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
    transition: all 0.3s;
}
.node-marker:hover {
    background: #fff;
    box-shadow: 0 0 8px #fff;
    transform: translate(-50%, -50%) scale(1.5);
}

@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

.floating-card {
    position: absolute;
    background: rgba(20, 30, 50, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    z-index: 5;
    animation: float 6s ease-in-out infinite;
    min-width: max-content;
}
.floating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,150,255,0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.card-icon {
    font-size: 24px;
}
.card-content h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #00ccff;
    white-space: nowrap;
}
.card-content p {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
    white-space: nowrap;
}

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

.ibic-tooltip-545334e6 {
    position: absolute;
    background: rgba(15, 20, 30, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.5;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 100;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    transform: translate(-50%, -100%);
    margin-top: -15px;
    min-width: 150px;
}
