/* Kankacım, Hizmetler Bölümü Stilleri - MAVİ & TURUNCU KONSEPT */

.services-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden; /* Animasyon taşmalarını önler */
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    /* Kankacım burayı asil mavi yaptık (#317da8) */
    background-color: #317da8;
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-desc {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Grid Yapısı */
.services-grid {
    display: grid;
    /* Masaüstünde 3, tablette 2, mobilde 1 sütun */
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    /* KANKACIM BURAYI GÜNCELLEDİM: 1550px */
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hizmet Kartı */
.service-card {
    background-color: #ffffff;
    border-radius: 15px; /* Köşeleri yumuşak */
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Elastik geçiş */
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    
    /* ANİMASYON BAŞLANGIÇ DURUMU (JS ile 'visible' sınıfı gelince görünecek) */
    opacity: 0;
    transform: translateY(50px);
}

/* Scroll ile Görünme Animasyonu (JS tetikler) */
.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    /* Gölgeyi MAVİ tonlu yaptık */
    box-shadow: 0 20px 40px rgba(49, 125, 168, 0.15); 
    border-color: transparent;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    /* Mavi Gradient Çizgi */
    background: linear-gradient(90deg, #317da8, #5aa0c5); 
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
}

/* İkon Kutusu */
.service-icon-box {
    width: 90px;
    height: 90px;
    background-color: #fff;
    /* İkon Rengi MAVİ */
    color: #317da8;
    border: 2px solid #f0f8fc; /* Çok açık mavi border */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    font-size: 36px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-card:hover .service-icon-box {
    /* Hover olunca MAVİ dolgu */
    background-color: #317da8;
    color: #ffffff;
    border-color: #317da8;
    box-shadow: 0 10px 20px rgba(49, 125, 168, 0.3);
    transform: rotateY(360deg);
}

/* Kart İçerikleri */
.service-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    /* Linkler TURUNCU (#e68f23) olsun ki tıklanabildiği belli olsun */
    color: #e68f23;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* GİZLİ KARTLAR (Daha Fazla Göster için) */
.service-card.hidden-service {
    display: none;
}

/* DAHA FAZLA GÖSTER BUTONU ALANI */
.load-more-container {
    text-align: center;
    margin-top: 50px;
    padding-bottom: 20px;
}

.btn-show-more {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ffffff;
    color: #1a1a1a;
    border: 2px solid #e5e5e5;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.btn-show-more:hover {
    /* Buton Hover TURUNCU (#e68f23) */
    background-color: #e68f23;
    color: #ffffff;
    border-color: #e68f23;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(230, 143, 35, 0.3);
}

.btn-show-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-show-more:hover i {
    transform: rotate(180deg); /* Ok dönsün */
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
    .services-grid { grid-template-columns: 1fr; gap: 20px; }
    .service-card { padding: 30px 20px; }
}