/* Operations Map Styles */
.operations-map-section {
    position: relative;
    background: linear-gradient(135deg, #0A2463 0%, #0A2463 100%);
    padding: 5rem 0;
    overflow: hidden;
}

.operations-map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 127, 17, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(255, 127, 17, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.operations-map-container {
    position: relative;
    z-index: 1;
}

.map-title {
    text-align: center;
    margin-bottom: 4rem;
}

.map-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.map-title p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.map-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

/* Map container styling */
.map-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.1) 0%, rgba(10, 36, 99, 0.3) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Map SVG styling */
.world-map {
    width: 100%;
    height: auto;
    display: block;
}

/* Country paths styling */
.country-path {
    fill: rgba(255, 255, 255, 0.05);
    stroke: rgba(255, 127, 17, 0.3);
    stroke-width: 1;
    transition: all 0.5s ease;
}

.country-path:hover {
    fill: rgba(255, 127, 17, 0.1);
    stroke: rgba(255, 127, 17, 0.6);
}

/* Glow animation for operation points */
.glow-animation {
    filter: drop-shadow(0 0 8px rgba(255, 127, 17, 0.8));
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 8px rgba(255, 127, 17, 0.8));
    }
    to {
        filter: drop-shadow(0 0 16px rgba(255, 127, 17, 0.9));
    }
}

/* Operation point hover effect */
.operation-point {
    cursor: pointer;
    transition: all 0.3s ease;
}

.operation-point:hover {
    transform: scale(1.2);
}

/* Connection lines */
.connection-line {
    fill: none;
    stroke: rgba(255, 127, 17, 0.5);
    stroke-width: 2;
    stroke-dasharray: 5,5;
    animation: dash 3s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -10;
    }
}

/* Operation labels */
.operation-label {
    font-family: 'Inter', sans-serif;
    pointer-events: none;
    fill: white;
    font-weight: 600;
    font-size: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Stats counters styling */
.operations-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 800px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #FF7F11;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Digital particles effect */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    background-color: rgba(255, 127, 17, 0.5);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

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

/* Responsive design */
@media (max-width: 768px) {
    .operations-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .map-container {
        max-width: 100%;
    }
    
    .map-title h2 {
        font-size: 2rem;
    }
}

/* Map responsiveness */
@media (max-width: 480px) {
    .world-map {
        max-height: 300px;
    }
    
    .operation-label {
        font-size: 10px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .operations-map-section {
        padding: 3rem 0;
    }
}