/* Services Section Styles */
.services {
    padding: 80px 0;
    background: #fafafc;
}

.services .section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services .section-title span {
    color: #e74c3c;
}

.services .section-description {
    font-size: 18px;
    text-align: center;
    color: #6c757d;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    text-align: center;
    background: #fff;
    border-radius: 10px;
    padding: 20px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    min-height: 300px;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
}

.service-icon i{
   color: #ddd;
} 

.service-item:hover .service-icon i {
   color: #e74c3c;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }
    
    .services .section-title {
        font-size: 36px;
    }
    
    .services .section-description {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .service-item {
        padding: 25px 10px;
        height: auto;
        margin-bottom: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .service-title {
        font-size: 18px;
        min-height: auto;
    }
} 

/* Ankara Districts Section Styles */
.ankara-districts {
    padding: 80px 0;
    background: #ffffff;
}

.ankara-districts .section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.ankara-districts .section-title span {
    color: #e74c3c;
}

.ankara-districts .section-description {
    font-size: 18px;
    text-align: center;
    color: #6c757d;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.district-item {
    margin-bottom: 10px;
}

.district-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #6c757d;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.district-link:hover {
    color: #e74c3c;
    text-decoration: none;
    transform: translateX(5px);
}

.district-link i {
    font-size: 18px;
    color: #6c757d;
    margin-right: 12px;
    transition: all 0.3s ease;
    min-width: 18px;
}

.district-link:hover i {
    color: #e74c3c;
}

.district-link span {
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.district-link:hover span {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ankara-districts {
        padding: 60px 0;
    }
    
    .ankara-districts .section-title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .ankara-districts .section-description {
        font-size: 16px;
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .district-item {
        margin-bottom: 25px;
    }
    
    .district-link {
        padding: 6px 0;
    }
    
    .district-link i {
        font-size: 16px;
        margin-right: 10px;
    }
    
    .district-link span {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .district-item {
        margin-bottom: 20px;
    }
    
    .district-link i {
        font-size: 14px;
        margin-right: 8px;
    }
    
    .district-link span {
        font-size: 14px;
    }
} 

/* Mobile Testimonials Fix - Alt Alta Dizmek İçin */
@media (max-width: 768px) {
    section.testimonials .owl-stage {
        display: block !important;
        transform: none !important;
        width: 100% !important;
    }
    
    section.testimonials .owl-item {
        display: block !important;
        width: 100% !important;
        margin-right: 0 !important;
        margin-bottom: 20px !important;
        float: none !important;
    }
    
    section.testimonials .testimonials-carousel {
        overflow: visible !important;
    }
    
    section.testimonials .owl-stage-outer {
        overflow: visible !important;
    }
    
    section.testimonials .inner {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    section.testimonials .owl-item {
        margin-bottom: 15px !important;
    }
    
    section.testimonials .inner {
        margin-bottom: 15px;
        padding: 20px 15px;
    }
} 