/* assets/frontend.css */

/* Map container */
.icm-map-container {
    position: relative;
    width: 100%;
    margin: 20px 0;
}

/* Filter section */
.icm-filter-container {
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.icm-filter-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.icm-filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.icm-filter-section label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0;
    font-size: 12px;
}

.icm-sector-filter,
.icm-continent-filter {
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background-color: #fff;
    color: #495057;
    font-size: 14px;
    min-width: 150px;
}

.icm-clear-filter {
    padding: 8px 16px;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.icm-clear-filter:hover {
    background: #5a6268;
}

.icm-filter-counter {
    font-size: 12px;
    color: #6c757d;
    font-style: italic;
    margin-left: 10px;
}

#company-map {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* Loading indicator */
#map-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* Custom marker styles */
.icm-custom-marker {
    background: transparent !important;
    border: none !important;
}

.icm-marker-wrapper {
    position: relative;
    width: 42px;
    height: 47px;
}

.icm-marker {
    width: 42px;
    height: 47px;
    position: relative;
    background: #fff;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.icm-marker:hover {
    transform: rotate(-45deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.icm-marker__image {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 5px;
    left: 5px;
    border-radius: 50% 50% 50% 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(45deg);
}

.icm-marker__icon {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 5px;
    left: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
}

.icm-building-icon {
    width: 16px;
    height: 16px;
    background: #fff;
    position: relative;
}

.icm-building-icon:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M19 7h-3V6a4 4 0 0 0-8 0v1H5a1 1 0 0 0-1 1v11a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V8a1 1 0 0 0-1-1zM10 6a2 2 0 0 1 4 0v1h-4V6zm8 13a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V9h2v1a1 1 0 0 0 2 0V9h4v1a1 1 0 0 0 2 0V9h2v10z'/%3E%3C/svg%3E") no-repeat center/contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M19 7h-3V6a4 4 0 0 0-8 0v1H5a1 1 0 0 0-1 1v11a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V8a1 1 0 0 0-1-1zM10 6a2 2 0 0 1 4 0v1h-4V6zm8 13a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V9h2v1a1 1 0 0 0 2 0V9h4v1a1 1 0 0 0 2 0V9h2v10z'/%3E%3C/svg%3E") no-repeat center/contain;
}

/* Sector-specific marker colors */
.icm-sector-broker {
    background:white;
}

/* Sector badges */
.icm-sector-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    margin-top: 4px;
    margin-right: 5px;
}

.icm-sector-broker { background: #01599E; }
.icm-sector-mga { background: #01599E; }
.icm-sector-captive { background: #01599E; }
.icm-sector-support-service-provider { background: #01599E; }
.icm-sector-ecosystem { background: #01599E; }
.icm-sector-tpa { background: #01599E; }
.icm-sector-eco-project { background: #01599E; }

/* Continent badges */
.icm-continent-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    margin-top: 4px;
}

.icm-continent-north-america { background: #01599E; }
.icm-continent-south-america { background: #01599E; }
.icm-continent-europe { background: #01599E; }
.icm-continent-asia { background: #01599E; }
.icm-continent-africa { background: #01599E; }
.icm-continent-australia-oceania { background: #01599E; }
.icm-continent-antarctica { background: #01599E; }

/* Popup badges container */
.icm-popup-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 5px;
}

/* Custom popup styles */
.icm-custom-popup .leaflet-popup-content-wrapper {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: none;
    overflow: hidden;
}

.icm-custom-popup .leaflet-popup-content {
    margin: 0;
    padding: 0;
    width: auto !important;
}

.icm-custom-popup .leaflet-popup-tip {
    background: #fff;
    box-shadow: none;
}

/* Popup content */
.icm-popup {
    min-width: 250px;
    max-width: 300px;
}

.icm-popup-header {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #01599E;
    color: white;
}

.icm-popup-logo {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    flex-shrink: 0;
}

.icm-popup-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background:white;
}

.icm-popup-logo-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.icm-popup-logo-placeholder .icm-building-icon {
    width: 20px;
    height: 20px;
}

.icm-popup-title {
    flex-grow: 1;
}

.icm-popup-title h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: white;
}

.icm-popup-content {
    padding: 15px;
}

.icm-popup-description {
    margin-bottom: 12px;
    color: #555;
    line-height: 1.5;
    font-size: 14px;
}

.icm-popup-website-link {
    display: inline-flex;
    align-items: center;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.icm-popup-website-link:hover {
    color: #764ba2;
    text-decoration: none;
}

.icm-external-icon {
    margin-left: 4px;
    font-size: 12px;
}

/* Marker cluster styles override */
.marker-cluster-small {
    background-color: rgba(102, 126, 234, 0.8) !important;
}

.marker-cluster-small div {
    background-color: rgba(102, 126, 234, 0.9) !important;
}

.marker-cluster-medium {
    background-color: rgba(118, 75, 162, 0.8) !important;
}

.marker-cluster-medium div {
    background-color: rgba(118, 75, 162, 0.9) !important;
}

.marker-cluster-large {
    background-color: rgba(76, 61, 138, 0.8) !important;
}

.marker-cluster-large div {
    background-color: rgba(76, 61, 138, 0.9) !important;
}

/* Responsive design */
@media (max-width: 768px) {
    .icm-filter-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .icm-filter-group {
        width: 100%;
    }
    
    .icm-sector-filter,
    .icm-continent-filter {
        width: 100%;
        min-width: auto;
    }
    
    .icm-clear-filter {
        width: 100%;
    }
    
    .icm-filter-counter {
        margin-left: 0;
        margin-top: 5px;
    }
    
    .icm-popup {
        min-width: 200px;
        max-width: 250px;
    }
    
    .icm-popup-header {
        padding: 12px;
    }
    
    .icm-popup-content {
        padding: 12px;
    }
    
    .icm-popup-title h4 {
        font-size: 14px;
    }
    
    .icm-popup-logo {
        width: 35px;
        height: 35px;
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    #company-map {
        border-radius: 4px;
    }
    
    .icm-marker {
        width: 36px;
        height: 42px;
    }
    
    .icm-marker__image,
    .icm-marker__icon {
        width: 28px;
        height: 28px;
        top: 4px;
        left: 4px;
    }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .icm-marker {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    .icm-custom-popup .leaflet-popup-content-wrapper {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
}

/* Animation for marker appearance */
@keyframes markerBounce {
    0% {
        transform: rotate(-45deg) scale(0.3) translateY(20px);
        opacity: 0;
    }
    50% {
        transform: rotate(-45deg) scale(1.1) translateY(-5px);
    }
    100% {
        transform: rotate(-45deg) scale(1) translateY(0);
        opacity: 1;
    }
}

.icm-marker {
    animation: markerBounce 0.6s ease-out;
}