/**
 * Export Highlight Stats Widget Styles
 * Based on index.html frontend design
 */
@media (max-width: 768px) {
    .circle.small h4{
        font-size: 12px;
    }
}
.ocean-stats {
    width: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;   
    color: #004a87;
}

.stats-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
    max-width: 1200px;
    width: 100%;
}

/* Style chung cho các vòng tròn */
.circle {
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    aspect-ratio: 1 / 1;
}

.circle h2, .circle h3 {
    margin: 0;
    font-weight: bold;
    line-height: 1;
}

.circle p, .circle span {
    font-size: 14px;
    margin-top: 5px;
    line-height: 1.2;
}

/* Vòng tròn lớn ở giữa */
.circle.big {
    width: 280px;
    height: 280px;
    min-width: 280px;
    min-height: 280px;
    background: #5dade2;
    color: white;
    order: 3;
    z-index: 2;
    border: 10px solid rgba(255,255,255,0.2);
}

.circle.big h2 {
    font-size: 80px;
}

.circle.big span {
    font-size: 18px;
    text-transform: uppercase;
}

/* Các vòng tròn nhỏ */
.circle.small {
    width: 180px;
    height: 180px;
    min-width: 180px;
    min-height: 180px;
    z-index: 1;
}

.circle.small h3 {
    font-size: 32px;
}

/* Điều chỉnh vị trí theo hình cánh cung - Desktop */
.stats-wrapper .circle:nth-child(2) { order: 1; transform: translateY(60px); }
.stats-wrapper .circle:nth-child(3) { order: 2; transform: translateY(20px); }
.stats-wrapper .circle:nth-child(4) { order: 4; transform: translateY(20px); }
.stats-wrapper .circle:nth-child(5) { order: 5; transform: translateY(60px); }

/* ========== RESPONSIVE TABLET ========== */
@media (max-width: 1024px) {
    .stats-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        max-width: 400px;
    }
    
    /* Circle Big */
    .circle.big {
        order: -1 !important;
        width: 220px !important;
        height: 220px !important;
        min-width: 220px !important;
        min-height: 220px !important;
        margin-bottom: 20px;
        transform: none !important;
    }
    
    .circle.big h2 {
        font-size: 65px;
    }
    
    .circle.big span {
        font-size: 15px;
    }
    
    /* Circle Small - Grid 2x2 */
    .circle.small {
        width: 150px !important;
        height: 150px !important;
        min-width: 150px !important;
        min-height: 150px !important;
        transform: none !important;
        order: unset !important;
    }
    
    .circle.small h3 {
        font-size: 26px;
    }
    
    .circle.small p {
        font-size: 11px;
    }
}

/* ========== RESPONSIVE MOBILE ========== */
@media (max-width: 768px) {
   
    .ocean-stats {
        padding: 30px 15px;
        min-height: auto;
    }
    
    .stats-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        max-width: 320px;
    }
    
    /* Circle Big */
    .circle.big {
        order: -1 !important;
        width: 180px !important;
        height: 180px !important;
        min-width: 180px !important;
        min-height: 180px !important;
        margin-bottom: 15px;
        transform: none !important;
    }
    
    .circle.big h2 {
        font-size: 55px;
    }
    
    .circle.big span {
        font-size: 13px;
    }
    
    /* Circle Small - Grid 2x2 */
    .circle.small {
        width: 130px !important;
        height: 130px !important;
        min-width: 130px !important;
        min-height: 130px !important;
        transform: none !important;
        order: unset !important;
    }
    
    .circle.small h3 {
        font-size: 22px;
    }
    
    .circle.small p {
        font-size: 10px;
        margin-top: 3px;
    }
}

/* ========== HOVER EFFECTS ========== */
.circle:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

@media (min-width: 1025px) {
    .circle.big:hover {
        transform: scale(1.05);
    }
    
    .stats-wrapper .circle:nth-child(2):hover { transform: translateY(55px) scale(1.05); }
    .stats-wrapper .circle:nth-child(3):hover { transform: translateY(15px) scale(1.05); }
    .stats-wrapper .circle:nth-child(4):hover { transform: translateY(15px) scale(1.05); }
    .stats-wrapper .circle:nth-child(5):hover { transform: translateY(55px) scale(1.05); }
}
