/* ===== HİZMETLER STİLLERİ ===== */

/* Hizmetlerimiz Section */
#HizmetlerimizSection {
    padding: 60px 0;
    background: #f8f9fa;
    margin: 20px 0;
    border-radius: 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: "Poppins", sans-serif;
    font-size: 2.2rem;
    color: #00235A;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #EE334C, #00235A);
    border-radius: 2px;
}


/* Hizmetler Grid */
.hizmetler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hizmet Kartları */
.hizmet-kart {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,35,90,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,35,90,0.05);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hizmet-kart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #EE334C, #00235A);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: left;
}

.hizmet-kart:hover::before {
    transform: scaleX(1);
}

.hizmet-kart:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,35,90,0.15);
    border-color: rgba(238,51,76,0.2);
}

/* Hizmet İkonları */
.hizmet-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #00235A, #14181C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.hizmet-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #EE334C, #00235A);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50%;
}

.hizmet-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 2;
}

.hizmet-kart:hover .hizmet-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 10px 30px rgba(238,51,76,0.3);
}

.hizmet-kart:hover .hizmet-icon::before {
    opacity: 1;
}

.hizmet-kart:hover .hizmet-icon i {
    transform: scale(1.1);
    color: white;
}

/* Hizmet Başlıkları */
.hizmet-kart h3 {
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    color: #00235A;
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
    transition: all 0.3s ease;
    text-align: center;
}

.hizmet-kart:hover h3 {
    color: #EE334C;
    transform: translateY(-2px);
}


/* Responsive Tasarım */
@media (max-width: 768px) {
    .hizmetler-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .hizmet-kart {
        padding: 20px 12px;
        min-height: 160px;
    }
    
    .hizmet-kart:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    
    .hizmet-icon {
        width: 65px;
        height: 65px;
        margin: 0 auto 15px;
    }
    
    .hizmet-icon i {
        font-size: 1.6rem;
    }
    
    .hizmet-kart h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    #HizmetlerimizSection {
        padding: 40px 0;
        margin: 15px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .hizmet-kart {
        padding: 15px 10px;
        min-height: 140px;
    }
    
    .hizmet-kart:hover {
        transform: translateY(-5px) scale(1.005);
    }
    
    .hizmet-icon {
        width: 55px;
        height: 55px;
        margin: 0 auto 12px;
    }
    
    .hizmet-icon i {
        font-size: 1.4rem;
    }
    
    .hizmet-kart:hover .hizmet-icon {
        transform: scale(1.1) rotate(5deg);
    }
}
