.gimhae-section {
    position: relative;
    overflow: hidden;
}

.gimhae-section:before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: rgba(79, 140, 255, .05);
    top: -200px;
    right: -150px;
}

.gimhae-contact {
    background: #0c214b;
    border: 1px solid rgba(93, 152, 255, .25);
    border-radius: 20px;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.gimhae-contact i {
    color: #69a6ff;
    margin-right: 10px;
}

.gimhae-contact-left {
    font-size: 1.05rem;
    font-weight: 500;
}

.gimhae-contact-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gimhae-contact-right .divider {
    opacity: .4;
}

.gimhae-stat-card {
    background: #132c61;
    border: 1px solid rgba(93, 152, 255, .25);
    border-radius: 10px;
    text-align: center;
    padding: 40px 20px;
    transition: .3s;
    height: 100%;
}

.gimhae-stat-card.active {
    background: #203d84;
    border-color: #7db4ff;
}

.gimhae-stat-card:hover,
.equipment-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #234891;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #70aaff;
}

.gimhae-stat-card.active .stat-icon {
    background: #4a89ff;
    color: #fff;
}

.stat-label {
    font-size: 1rem;
    color: #c8d5ef;
}

.stat-value {
    font-size: 3.4rem;
    font-weight: 700;
    margin: 10px 0;
    color: #fff;
}

.stat-desc {
    color: #b7c6e4;
}

.equipment-detail {
    background: #081c45;
    border-left: 5px solid #3f86ff;
    padding: 35px;
    transition: .3s;
    height: 100%;
}

.equipment-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.equipment-title i {
    color: #6da8ff;
    margin-right: 10px;
}

.equipment-line {
    height: 1px;
    background: rgba(255, 255, 255, .1);
    margin: 20px 0 25px;
}

.equipment-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.equipment-count strong {
    font-size: 4rem;
    line-height: 1;
}

.equipment-count span {
    font-size: 1.5rem;
}

.equipment-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.equipment-tags span {
    padding: 10px 18px;
    border-radius: 14px;
    border: 1px solid #295fc2;
    background: #15356f;
    color: #9ec3ff;
    font-weight: 600;
}

.equipment-desc {
    margin: 0;
    color: #d8e4ff;
    font-size: 1rem;
}

@media(max-width:991px) {

    .gimhae-contact {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .equipment-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .stat-value {
        font-size: 2.4rem;
    }
}

@media (max-width: 767px) {
    .gimhae-contact-right {
        font-size: 0.9rem;
    }
}