/* Services Section Styles - Corporate & Professional */
.services-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
}

.services-section .site-heading {
    margin-bottom: 70px;
    position: relative;
}

    .services-section .site-heading h2 {
        font-size: 38px;
        font-weight: 700;
        color: #c81d25;
        margin-bottom: 20px;
        letter-spacing: -0.5px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

.services-section .site-heading .devider {
    display: block;
    width: 60px;
    height: 3px;
    background: #c81d25;
    margin: 25px auto;
    border-radius: 0;
}

.services-section .site-heading p {
    font-size: 17px;
    color: #1a1a1a;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.services-category {
    margin-bottom: 80px;
    position: relative;
}

.services-category:last-child {
    margin-bottom: 0;
}

.category-header {
    margin-bottom: 40px;
    padding-bottom: 18px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.category-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: #c81d25;
}

.category-header h3 {
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    letter-spacing: -0.3px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    display: block;
    flex: 0 0 calc(25% - 18px);
    min-width: 220px;
}

/* Bireysel Hizmetler - Görsel Kartları */
.service-card-image {
    padding: 0;
    overflow: hidden;
}

/* Kurumsal Hizmetler - İkon Kartları */
.service-card-icon {
    padding: 35px 25px;
}

.service-card:hover {
    text-decoration: none;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #c81d25;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: #c81d25;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

/* Kurumsal Hizmetler - İkon Stilleri */
.service-card-icon .service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 22px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

/* Bireysel Hizmetler - Görsel Stilleri */
.service-card-image .service-icon {
    width: 100%;
    height: 100%;
    margin: 0;
    background: transparent;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    min-height: 180px;
}

.service-card-icon:hover .service-icon {
    background: #c81d25;
}

.service-card-image:hover .service-icon {
    background: transparent;
}

/* Bireysel Hizmetler - Görsel Stilleri */
.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
}

/* Kurumsal Hizmetler - İkon Renkleri */
.service-card-icon .service-icon i {
    font-size: 32px;
    color: #c81d25;
    transition: all 0.3s ease;
}

.service-card-icon:hover .service-icon i {
    color: white;
}

/* Kurumsal Hizmetler - Başlık Stilleri */
.service-card-icon .service-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    transition: all 0.3s ease;
    line-height: 1.5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.service-card-icon:hover .service-title {
    color: #c81d25;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-card {
        flex: 0 0 calc(33.333% - 16px);
        min-width: 200px;
    }
    
    .service-card-icon {
        padding: 30px 20px;
    }
    
    .services-grid {
        gap: 20px;
    }
    
    .services-section {
        padding: 80px 0;
    }
    
    .services-section .site-heading h2 {
        font-size: 34px;
    }
    
    .services-section .site-heading {
        margin-bottom: 60px;
    }
    
    .category-header h3 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .service-card {
        flex: 0 0 calc(50% - 8px);
        min-width: 150px;
    }
    
    .service-card-icon {
        padding: 25px 18px;
    }
    
    .services-grid {
        gap: 16px;
    }
    
    .services-section .site-heading h2 {
        font-size: 30px;
    }
    
    .services-section .site-heading {
        margin-bottom: 50px;
    }
    
    .services-section .site-heading p {
        font-size: 15px;
    }
    
    .category-header {
        margin-bottom: 35px;
        padding-bottom: 15px;
    }
    
    .category-header h3 {
        font-size: 24px;
    }
    
    .service-card-icon {
        padding: 22px 16px;
    }
    
    .service-card-icon .service-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }
    
    .service-card-image .service-icon {
        width: 100%;
        height: 100%;
        margin: 0;
        min-height: 150px;
    }
    
    .service-card-icon .service-icon i {
        font-size: 28px;
    }
    
    .service-card-icon .service-title {
        font-size: 15px;
    }
    
    .services-category {
        margin-bottom: 60px;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 50px 0;
    }
    
    .service-card {
        flex: 0 0 100%;
        min-width: auto;
    }
    
    .services-grid {
        gap: 14px;
    }
    
    .services-section .site-heading h2 {
        font-size: 26px;
    }
    
    .services-section .site-heading p {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .category-header h3 {
        font-size: 22px;
    }
    
    .service-card-icon {
        padding: 20px 15px;
    }
    
    .service-card-icon .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .service-card-image .service-icon {
        width: 100%;
        height: 100%;
        min-height: 120px;
    }
    
    .service-card-icon .service-icon i {
        font-size: 26px;
    }
    
    .service-card-icon .service-title {
        font-size: 14px;
    }
}

/* Subtle entrance animation */
@media (prefers-reduced-motion: no-preference) {
    .service-card {
        animation: fadeIn 0.5s ease forwards;
        opacity: 0;
    }
    
    .service-card:nth-child(1) { animation-delay: 0.05s; }
    .service-card:nth-child(2) { animation-delay: 0.1s; }
    .service-card:nth-child(3) { animation-delay: 0.15s; }
    .service-card:nth-child(4) { animation-delay: 0.2s; }
    .service-card:nth-child(5) { animation-delay: 0.25s; }
    .service-card:nth-child(6) { animation-delay: 0.3s; }
    .service-card:nth-child(7) { animation-delay: 0.35s; }
    
    @keyframes fadeIn {
        to {
            opacity: 1;
        }
    }
}

