
/* ══════════════════════════════════════════
   IMPACT AREA
══════════════════════════════════════════ */
.impact-section {
    padding: 120px 0;
    background: #060c16;
    background-image: radial-gradient(
        circle at center,
        rgba(201, 150, 42, 0.1) 0%,
        transparent 70%
    );
    position: relative;
    overflow: hidden;
}

/* HEADER */
.impact-header .tag {
    color: #c9962a;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
}

.impact-header h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    margin-top: 10px;
}

.impact-header .h-line {
    width: 60px;
    height: 4px;
    background: #c9962a;
    margin: 20px auto 50px;
    border-radius: 2px;
}

/* MAIN WRAPPER */
.impact-main-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.impact-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* GOLDEN NUMBER */
.golden-text {
    background: linear-gradient(to bottom, #ffffff 30%, #c9962a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
}

/* STAT CARD */
.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 25px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: #c9962a;
    transform: translateY(-8px);
}

/* ICON */
.stat-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 150, 42, 0.08);
    border: 1px solid rgba(201, 150, 42, 0.2);
}

.stat-icon i {
    font-size: 26px;
    color: #d4a63f;
    transition: 0.3s ease;
}

/* .stat-card:hover .stat-icon i {
    color: #ffd56a;
    transform: scale(1.1);
} */

/* TEXT */
.stat-info p {
    color: #ffffff !important;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 8px;
}

/* CENTER IMAGE */
.impact-image-container {
    flex: 0 0 auto;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.iconic-frame {
    width: 100%;
    max-width: 540px;
    height: 680px;
    border-radius: 30px;
    overflow: hidden;
    z-index: 5;
    border: 1px solid rgba(201, 150, 42, 0.3);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.iconic-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(
        circle,
        rgba(201, 150, 42, 0.15) 0%,
        transparent 70%
    );
    z-index: 1;
}

.orbit-decoration {
    position: absolute;
    width: 110%;
    height: 105%;
    border: 1px dashed rgba(201, 150, 42, 0.2);
    border-radius: 60px;
    animation: rotate 30s linear infinite;
    z-index: 2;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* RESPONSIVE */
@media (max-width: 1150px) {
    .impact-main-wrapper {
        flex-direction: column;
    }

    .impact-column {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-card {
        width: 300px;
    }
}

@media (max-width: 600px) {
    .stat-card {
        width: 100%;
    }

    .iconic-frame {
        height: 400px;
    }
}