/* Hizmetler Özel Stilleri - Turhan Oğlu */

.services-area {
    background: #f8f9fa;
}

.service-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.service-card:hover {
    text-decoration: none;
    transform: translateY(-10px);
}

.service-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover .service-box {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 10px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 28px;
    color: #fff;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: rotate(360deg);
}

.service-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
    color: #252525;
}

.service-content p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Başlık Stili */
.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 16px;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive Tasarım */
@media (max-width: 991px) {
    .service-img {
        height: 200px;
    }
    
    .service-content {
        padding: 25px 20px;
    }
    
    .service-content h3 {
        font-size: 18px;
    }
    
    .section-title h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .service-img {
        height: 180px;
    }
    
    .service-content {
        padding: 20px 15px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .service-icon i {
        font-size: 24px;
    }
    
    .service-content h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }
    
    .service-content p {
        font-size: 13px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .section-title p {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .mb-30 {
        margin-bottom: 20px !important;
    }
    
    .service-img {
        height: 160px;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
}

/* Animasyon */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.1s; }
.service-card:nth-child(5) { animation-delay: 0.2s; }
.service-card:nth-child(6) { animation-delay: 0.3s; }
.service-card:nth-child(7) { animation-delay: 0.1s; }
.service-card:nth-child(8) { animation-delay: 0.2s; }
.service-card:nth-child(9) { animation-delay: 0.3s; }
.service-card:nth-child(10) { animation-delay: 0.1s; }
.service-card:nth-child(11) { animation-delay: 0.2s; }
.service-card:nth-child(12) { animation-delay: 0.3s; }
.service-card:nth-child(13) { animation-delay: 0.1s; }
.service-card:nth-child(14) { animation-delay: 0.2s; }
.service-card:nth-child(15) { animation-delay: 0.3s; }
.service-card:nth-child(16) { animation-delay: 0.1s; }
.service-card:nth-child(17) { animation-delay: 0.2s; }
.service-card:nth-child(18) { animation-delay: 0.3s; }

/* Footer Social Media */
.footer-social {
    display: inline-flex;
    gap: 10px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #667eea;
    transform: translateY(-3px);
}

.footer-social a i {
    font-size: 14px;
}

@media (max-width: 767px) {
    .footer-social {
        justify-content: center;
        margin-top: 15px;
    }
    
    .copyright-wrap .text-right {
        text-align: center !important;
    }
    
    .copyright-wrap .col-lg-6 {
        text-align: center !important;
    }
}
