/* ============================================ */
/* HİZMETLER SAYFASI - CSS */
/* ============================================ */

/* HERO SECTION */
.hizmetler-hero {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hizmetler-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hizmetler-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

/* HİZMET CARDS */
.hizmetler-content {
    background: #fff;
}

.hizmet-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.hizmet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.hizmet-card:hover::before {
    transform: scaleY(1);
}

.hizmet-card:hover {
    transform: translateY(-15px);
    border-color: rgba(102,126,234,0.2);
    box-shadow: 0 20px 60px rgba(102,126,234,0.2);
}

.hizmet-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(102,126,234,0.1) 0%, rgba(118,75,162,0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: #667eea;
    transition: all 0.4s ease;
    position: relative;
}

.hizmet-card-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.4s ease;
}

.hizmet-card:hover .hizmet-card-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.hizmet-card:hover .hizmet-card-icon::after {
    opacity: 0.5;
}

.hizmet-card-content {
    position: relative;
    z-index: 1;
}

.hizmet-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.hizmet-card:hover .hizmet-card-title {
    color: #667eea;
}

.hizmet-card-text {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.hizmet-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(102,126,234,0.1) 0%, rgba(118,75,162,0.1) 100%);
    color: #667eea;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hizmet-detail-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    transform: translateX(5px);
}

.hizmet-detail-btn i {
    transition: transform 0.3s ease;
}

.hizmet-detail-btn:hover i {
    transform: translateX(5px);
}

.hizmet-card-number {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(102,126,234,0.05);
    line-height: 1;
    transition: all 0.4s ease;
}

.hizmet-card:hover .hizmet-card-number {
    color: rgba(102,126,234,0.15);
    transform: scale(1.2);
}

/* NEDEN BİZ SECTION */
.hizmetler-why {
    background: #f8f9fa;
}

.why-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(102,126,234,0.15);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #fff;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.15) rotate(10deg);
}

.why-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.why-text {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* CTA SECTION */
.hizmetler-cta {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
}

.hizmetler-cta .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(102,126,234,0.3);
    transition: all 0.3s ease;
}

.hizmetler-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102,126,234,0.4);
}

.hizmetler-cta .btn-success {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(37,211,102,0.3);
    transition: all 0.3s ease;
}

.hizmetler-cta .btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37,211,102,0.4);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hizmetler-hero {
        height: 250px;
    }
    
    .hizmetler-hero h1 {
        font-size: 2.5rem;
    }
    
    .hizmet-card {
        padding: 2rem;
    }
    
    .hizmet-card-number {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .hizmetler-hero {
        height: 200px;
    }
    
    .hizmetler-hero h1 {
        font-size: 2rem;
    }
    
    .hizmet-card {
        padding: 1.5rem;
    }
    
    .hizmet-card-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .hizmet-card-title {
        font-size: 1.3rem;
    }
    
    .hizmet-card-number {
        font-size: 2.5rem;
        bottom: 1rem;
        right: 1rem;
    }
    
    .hizmetler-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hizmetler-cta .btn.me-3 {
        margin-right: 0 !important;
    }
}
