/* ============================================
   EKET Fuarcılık - Özellikler Kutuları Stilleri
   ============================================ */

/* Features Section */
.features-section {
    padding: 60px 0;
    background: var(--gray-100);
    position: relative;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Feature Box */
.feature-box {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

/* Top Accent Line */
.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 0 0 3px 3px;
}

/* Feature Icon */
.feature-box-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border: 2px solid rgba(196, 30, 58, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.feature-box-icon i {
    font-size: 1.75rem;
    color: var(--secondary-color);
}

/* Feature Title */
.feature-box-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
    line-height: 1.3;
}

.feature-box-subtitle {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

/* Feature Description */
.feature-box-desc {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Hover Effect */
.feature-box:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(196, 30, 58, 0.1);
}

.feature-box:hover .feature-box-icon {
    border-color: var(--secondary-color);
    background: rgba(196, 30, 58, 0.03);
}

/* Responsive */
@media (max-width: 1199px) {
    .features-grid {
        gap: 20px;
    }
    
    .feature-box {
        padding: 25px 20px;
    }
    
    .feature-box-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }
    
    .feature-box-icon i {
        font-size: 1.5rem;
    }
    
    .feature-box-title {
        font-size: 1.125rem;
    }
}

@media (max-width: 991px) {
    .features-section {
        padding: 50px 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .features-section {
        padding: 40px 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .feature-box {
        padding: 20px 15px;
    }
    
    .feature-box-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .feature-box-icon i {
        font-size: 1.25rem;
    }
    
    .feature-box-title {
        font-size: 1rem;
    }
    
    .feature-box-subtitle {
        font-size: 0.8125rem;
        margin-bottom: 8px;
    }
    
    .feature-box-desc {
        font-size: 0.75rem;
        line-height: 1.5;
    }
    
    .feature-box::before {
        width: 30px;
        height: 2px;
    }
}
