/* Font Awesome CDN */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

.hizmetler-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.hizmetler-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Başlık Stilleri */
.hizmetler-header {
    text-align: center;
    margin-bottom: 80px;
}

.hizmetler-ust-baslik {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

.hizmetler-ana-baslik {
    font-size: 3.5rem;
    color: #000000;
    font-weight: 300;
    margin: 0 0 20px 0;
    font-family: 'Georgia', serif;
    letter-spacing: -1px;
}

.hizmetler-cizgi {
    width: 80px;
    height: 2px;
    background: #000000;
    margin: 0 auto;
}

/* Grid Layout */
.hizmetler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

/* Hizmet Kartları */
.hizmet-kart {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 2px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.hizmet-kart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: #000000;
    transition: left 0.3s ease;
}

.hizmet-kart:hover::before {
    left: 0;
}

.hizmet-kart:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #000000;
}

/* İkon Stilleri */
.hizmet-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hizmet-kart:hover .hizmet-icon {
    background: #333333;
    transform: scale(1.1);
}

.hizmet-icon i {
    font-size: 2rem;
    color: #ffffff;
}

/* İçerik Stilleri */
.hizmet-kart h3 {
    font-size: 1.5rem;
    color: #000000;
    font-weight: 400;
    margin: 0 0 20px 0;
    font-family: 'Georgia', serif;
    line-height: 1.3;
}

.hizmet-kart p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0 0 30px 0;
    font-family: 'Arial', sans-serif;
    font-weight: 300;
}

/* Buton Stilleri */
.hizmet-btn {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 2px;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid #000000;
    text-transform: uppercase;
}

.hizmet-btn:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

/* Animasyonlar */
.hizmet-kart {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.hizmet-kart:nth-child(1) { animation-delay: 0.1s; }
.hizmet-kart:nth-child(2) { animation-delay: 0.2s; }
.hizmet-kart:nth-child(3) { animation-delay: 0.3s; }
.hizmet-kart:nth-child(4) { animation-delay: 0.4s; }
.hizmet-kart:nth-child(5) { animation-delay: 0.5s; }
.hizmet-kart:nth-child(6) { animation-delay: 0.6s; }
.hizmet-kart:nth-child(7) { animation-delay: 0.7s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .hizmetler-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .hizmetler-section {
        padding: 80px 0;
    }
    
    .hizmetler-ana-baslik {
        font-size: 2.5rem;
    }
    
    .hizmetler-header {
        margin-bottom: 60px;
    }
    
    .hizmetler-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .hizmet-kart {
        padding: 40px 25px;
    }
    
    .hizmet-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .hizmet-icon i {
        font-size: 1.8rem;
    }
    
    .hizmet-kart h3 {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 480px) {
    .hizmetler-container {
        padding: 0 15px;
    }
    
    .hizmetler-ana-baslik {
        font-size: 2rem;
    }
    
    .hizmetler-ust-baslik {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .hizmet-kart {
        padding: 30px 20px;
    }
    
    .hizmet-kart h3 {
        font-size: 1.2rem;
    }
    
    .hizmet-kart p {
        font-size: 0.9rem;
    }
}