/* ═══════════════════════════════════════════════
   FLOATING LINES ANIMATION — Corporate Black-Yellow Theme
   ═══════════════════════════════════════════════ */

/* Canvas container */
.floating-lines-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    will-change: contents;
}

.floating-lines-container canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Hero section must be relative so canvas positions correctly */
.hero-section {
    position: relative;
    overflow: hidden;
}

/* Hero content stays above canvas */
.hero-section > .container,
.hero-section > [style*="z-index"] {
    position: relative;
    z-index: 2;
}

/* Leaflet map marker components */
.leaflet-custom-div-icon {
    background: none !important;
    border: none !important;
}
.marker-wrapper {
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s cubic-bezier(.175, .885, .32, 1.275);
}
.marker-wrapper:hover { transform: scale(1.12) translateY(-5px); }
.marker-wrapper img { width: 100%; height: 100%; object-fit: contain; }

.marker-label {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1A1A1A;
    color: #FFD700;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
    margin-bottom: 8px;
    box-shadow: 0 4px 14px rgba(255,215,0,.35);
    letter-spacing: .04em;
}
.marker-wrapper:hover .marker-label {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-3px);
}

/* Pulsing ring on map marker */
.marker-pulse {
    position: absolute;
    width: 24px;
    height: 24px;
    background: #FFD700;
    opacity: .3;
    border-radius: 50%;
    z-index: -1;
    animation: markerPulse 2.2s ease infinite;
}
@keyframes markerPulse {
    0%   { transform: scale(.6); opacity: .6; }
    100% { transform: scale(2.4); opacity: 0; }
}
