/* Maps and Customer Styles */
.maps {
    width: 100%;
    margin: 30px 0;
    padding: 0;
}

#map {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    background-color: #f5f5f5;
}

/* Tablet */
@media (max-width: 1023px) {
    #map {
        height: 250px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    #map {
        height: 300px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    #map {
        height: 250px;
    }
    
    .maps {
        margin: 20px 0;
    }
}

/* Countries Grid Styles */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
    padding: 20px 0;
}

@media (min-width: 768px) {
    .countries-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .countries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.country-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 8px;
    background-color: #191919;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

@media (max-width: 480px) {
    .country-item {
        padding: 12px;
    }
}

.country-item:hover {
    background-color: #191919;
    transform: none;
    box-shadow: none;
}

.country-flag {
    width: 60px;
    height: 40px;
    margin-bottom: 10px;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

@media (max-width: 480px) {
    .country-flag {
        width: 50px;
        height: 33px;
        margin-bottom: 8px;
    }
}

.country-item:hover .country-flag {
    box-shadow: 0 4px 12px rgba(241, 135, 0, 0.4);
    transform: scale(1.05);
}

.country-item span {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
}

@media (max-width: 480px) {
    .country-item span {
        font-size: 12px;
    }
}

