:root {
    --primary-red: #e60000; /* Kırmızı rengin tanımlı olduğundan emin olun */
}

.services-modern {
    padding: 120px 0;
    background-color: #000000;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    color: #dbd5d5;
}

.section-header .subtitle {
    color: var(--primary-red);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 10px;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin: 15px 0;
    font-weight: 800;
}

.section-header p {
    color: #777;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.service-box {
    background: #fff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(230, 0, 0, 0.15); /* Hafif kırmızı gölge */
    border-color: rgba(230, 0, 0, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 25px;
    transition: all 0.6s ease; /* Dönme hızı */
}

/* --- İKON DÖNME EFEKTİ --- */
.service-box:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
}

.service-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #222;
}

.service-box p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
}

.read-more {
    text-decoration: none;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.read-more:hover {
    gap: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .section-header h2 {
        font-size: 2.2rem;
    }
}