/* ========================================
   ACHIEVEMENTS SECTION - SIMPLE & CLEAN
   Başarılarımız - İnfhouse.co Style
   ======================================== */

.achievements-section {
    padding: 100px 0;
    position: relative;
}

/* ===== HEADER ===== */
.achievements-header {
    text-align: center;
    margin-bottom: 60px;
}

.achievements-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 100px;
    background: rgba(233, 30, 99, 0.1);
    color: #E91E63;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.achievements-badge svg {
    width: 16px;
    height: 16px;
}

.achievements-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #FFF;
    margin-bottom: 16px;
}

.achievements-title .highlight {
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.achievements-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== GRID - 3 EQUAL COLUMNS ===== */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ===== CARD - SIMPLE DESIGN ===== */
.achievement-card {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 48px 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(233, 30, 99, 0.3);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.15);
}

/* ===== ICON ===== */
.achievement-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(233, 30, 99, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.achievement-card:hover .achievement-card__icon {
    background: rgba(233, 30, 99, 0.15);
    transform: scale(1.05);
}

.achievement-card__icon i {
    font-size: 28px;
    color: #E91E63;
}

/* ===== NUMBER ===== */
.achievement-card__number {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: #E91E63;
    margin-bottom: 16px;
}

.achievement-card__number-suffix {
    font-size: 42px;
}

/* ===== CONTENT ===== */
.achievement-card__title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.achievement-card__description {
    font-size: 14px;
    line-height: 1.6;
    color: #9ca3af;
}

/* ===== LIGHT MODE ===== */
body.light-mode .achievements-section {
    background: #ffffff;
}

body.light-mode .achievements-badge {
    background: rgba(233, 30, 99, 0.08);
}

body.light-mode .achievements-title {
    color: #1d1d1f;
}

body.light-mode .achievements-subtitle {
    color: #4b5563;
}

body.light-mode .achievement-card {
    background: #ffffff;
    border-color: #e5e7eb;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

body.light-mode .achievement-card:hover {
    border-color: rgba(233, 30, 99, 0.3);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.12);
}

body.light-mode .achievement-card__icon {
    background: rgba(233, 30, 99, 0.08);
}

body.light-mode .achievement-card__title {
    color: #1d1d1f;
}

body.light-mode .achievement-card__description {
    color: #4b5563;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .achievements-section {
        padding: 80px 0;
    }
    
    .achievements-title {
        font-size: 36px;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .achievements-section {
        padding: 60px 0;
    }
    
    .achievements-header {
        padding: 0 20px;
    }
    
    .achievements-title {
        font-size: 28px;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .achievement-card {
        padding: 40px 28px;
    }
    
    .achievement-card__number {
        font-size: 48px;
    }
}

