/* Service Areas Section - Istanbul Districts */
.service-areas {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
}

.service-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ee2312 0%, #c41e0f 100%);
}

.service-areas-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-areas-header {
    text-align: center;
    margin-bottom: 50px;
}

.service-areas-title {
    font-size: 42px;
    font-weight: 900;
    color: #1a1a2e;
    margin-bottom: 15px;
    font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-areas-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.districts-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.district-card {
    background: white;
    padding: 12px 8px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.district-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(238, 35, 18, 0.15);
    border-color: #ee2312;
}

.district-icon {
    font-size: 24px;
    margin-bottom: 6px;
    color: #ee2312;
}

.district-name {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.service-areas-cta {
    text-align: center;
    margin-top: 50px;
}

.service-areas-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: #ee2312;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(238, 35, 18, 0.3);
}

.cta-button:hover {
    background: #c41e0f;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(238, 35, 18, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-areas {
        padding: 60px 0;
    }
    
    .service-areas-title {
        font-size: 32px;
    }
    
    .service-areas-subtitle {
        font-size: 16px;
    }
    
    .districts-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .district-card {
        padding: 15px;
    }
    
    .district-icon {
        font-size: 28px;
    }
    
    .district-name {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .service-areas {
        padding: 40px 0;
    }
    
    .service-areas-title {
        font-size: 28px;
    }
    
    .districts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .district-card {
        padding: 12px;
    }
    
    .district-icon {
        font-size: 24px;
    }
    
    .district-name {
        font-size: 13px;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 16px;
    }
}
