/* Destek Merkezleri Sayfası Özel Stilleri */

.support-page {
    min-height: 100vh;
    background: #f8f9fa;
}

.support-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 5%;
}

.map-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-section h2 {
    color: #2d5a5a;
    font-family: 'Nunito', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.turkey-map-full {
    height: 600px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #e9ecef;
}

.data-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.data-section h2 {
    color: #2d5a5a;
    font-family: 'Nunito', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.search-container {
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.search-input {
    width: 100%;
    max-width: 600px;
    padding: 18px 25px 18px 55px;
    border: 2px solid #e9ecef;
    border-radius: 30px;
    font-size: 16px;
    font-family: 'Nunito', sans-serif;
    outline: none;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.search-input:focus {
    border-color: #2d5a5a;
    box-shadow: 0 0 0 3px rgba(45, 90, 90, 0.1), 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.search-input::placeholder {
    color: #999;
    font-style: italic;
}

.search-container::before {
    content: '\f002';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-280px, -50%);
    color: #2d5a5a;
    font-size: 18px;
    z-index: 2;
    pointer-events: none;
}

.no-results {
    text-align: center;
    color: #666;
    font-size: 18px;
    padding: 40px;
    background: white;
    border-radius: 10px;
    margin: 20px 0;
}

.city-accordion {
    margin-bottom: 20px;
}

.city-header {
    background: linear-gradient(135deg, #2d5a5a, #1a3d3d);
    color: white;
    padding: 20px 25px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 18px;
}

.city-header:hover {
    background: linear-gradient(135deg, #1a3d3d, #2d5a5a);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 90, 90, 0.3);
}

.city-header i {
    transition: transform 0.3s ease;
}

.city-header.active i {
    transform: rotate(180deg);
}

.city-content {
    background: #f8f9fa;
    border-radius: 0 0 10px 10px;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.city-content.active {
    padding: 25px;
    max-height: 500px;
    overflow-y: auto;
}

.support-center {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid #f4c430;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.support-center:last-child {
    margin-bottom: 0;
}

.center-title {
    color: #2d5a5a;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
}

.center-info {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.center-info strong {
    color: #2d5a5a;
}

.phone-link {
    color: #f4c430;
    text-decoration: none;
    font-weight: 600;
}

.phone-link:hover {
    text-decoration: underline;
}

/* Leaflet attribution'u gizle */
.leaflet-control-attribution {
    display: none !important;
}

.leaflet-control-attribution.leaflet-control {
    display: none !important;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .turkey-map-full {
        height: 400px;
    }
    
    .city-header {
        padding: 18px 22px;
        font-size: 18px;
        font-weight: 700;
    }
    
    .city-content.active {
        padding: 20px;
        max-height: 400px;
    }
    
    .support-center {
        padding: 25px;
        margin-bottom: 20px;
        border-left: 6px solid #f4c430;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }
    
    .center-title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 12px;
    }
    
    .center-info {
        font-size: 16px;
        line-height: 1.7;
    }
    
    .center-info strong {
        font-size: 16px;
        font-weight: 600;
    }
    
    .phone-link {
        font-size: 16px;
        font-weight: 600;
    }
    
    .search-input {
        padding: 20px 30px 20px 60px;
        font-size: 18px;
        border-radius: 35px;
        max-width: 90%;
    }
    
    .search-container::before {
        transform: translate(-250px, -50%);
        font-size: 20px;
    }
    
    .data-section h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .no-results {
        font-size: 20px;
        padding: 50px 20px;
    }
}
