/**
 * Atidestek CMS v2.0 - City Service Page Styles
 * Şehir bazlı hizmet sayfaları için stiller
 */

/* ===== HERO ===== */
.city-service-hero {
    padding: 80px 0 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.city-service-hero::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,218.7C672,235,768,245,864,234.7C960,224,1056,192,1152,181.3C1248,171,1344,181,1392,186.7L1440,192V320H0Z"/></svg>') no-repeat bottom center;
    background-size: cover;
    pointer-events: none;
}

.city-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.city-breadcrumb .breadcrumb-item,
.city-breadcrumb .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    text-decoration: none;
}

.city-breadcrumb .breadcrumb-item a:hover {
    color: #fff;
}

.city-breadcrumb .breadcrumb-item.active {
    color: rgba(255,255,255,0.6);
}

.city-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
    content: "›";
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-badge i {
    margin-right: 8px;
}

.hero-title {
    font-family: 'Lora', serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    max-width: 550px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Lora', serif;
}

.stat-item span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #044E7C;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    color: #044E7C;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

/* Hero Info Card */
.hero-info-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.15);
}

.hero-info-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.hero-info-card h3 i {
    margin-right: 8px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

.info-item i {
    width: 20px;
    text-align: center;
    margin-top: 3px;
    color: rgba(255,255,255,0.7);
}

.info-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.info-item a:hover {
    text-decoration: underline;
}

/* ===== SECTIONS ===== */
.section-padding {
    padding: 60px 0;
}

.section-title {
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 30px;
}

.section-title i {
    color: #044E7C;
    margin-right: 10px;
}

.bg-light {
    background-color: #f8f9fa !important;
}

/* Content Area */
.content-area,
.intro-content,
.local-info-content,
.sector-content,
.success-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}

.content-area h2,
.content-area h3,
.intro-content h2,
.intro-content h3 {
    font-family: 'Lora', serif;
    color: #1a1a2e;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-area ul,
.intro-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.content-area ul li,
.intro-content ul li {
    margin-bottom: 8px;
}

/* Sidebar */
.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}

.sidebar-widget h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #044E7C;
}

.related-service-list,
.popular-cities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-service-list li,
.popular-cities-list li {
    margin-bottom: 8px;
}

.related-service-list a,
.popular-cities-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.related-service-list a:hover,
.popular-cities-list a:hover {
    background: #f0f4f8;
    color: #044E7C;
    transform: translateX(5px);
}

.related-service-list a i {
    color: #044E7C;
    width: 20px;
    text-align: center;
}

/* ===== FAQ ===== */
.city-faq .accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 10px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.city-faq .accordion-button {
    font-weight: 600;
    font-size: 1.05rem;
    color: #1a1a2e;
    padding: 18px 22px;
    background: #fff;
}

.city-faq .accordion-button:not(.collapsed) {
    background: #f0f4f8;
    color: #044E7C;
    box-shadow: none;
}

.city-faq .accordion-button:focus {
    box-shadow: none;
    border-color: #dee2e6;
}

.city-faq .accordion-body {
    padding: 15px 22px 20px;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* ===== CTA ===== */
.city-cta {
    padding: 60px 0;
}

.city-cta h2 {
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.city-cta p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #044E7C;
    padding: 16px 35px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    color: #044E7C;
}

.cta-phone {
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-phone a {
    text-decoration: none;
}

.cta-phone i {
    margin-right: 8px;
}

/* ===== OTHER CITIES ===== */
.city-other-cities {
    padding: 50px 0;
}

.city-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.city-card:hover {
    border-color: #044E7C;
    color: #044E7C;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(4,78,124,0.1);
}

.city-card i {
    color: #044E7C;
}

.btn-view-all {
    display: inline-block;
    color: #044E7C;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 25px;
    border: 2px solid #044E7C;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: #044E7C;
    color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .city-service-hero {
        padding: 60px 0 40px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-stats {
        gap: 20px;
    }
    .stat-item strong {
        font-size: 1.4rem;
    }
    .hero-info-card {
        margin-top: 30px;
    }
    .section-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 767px) {
    .city-service-hero {
        padding: 40px 0 30px;
    }
    .hero-title {
        font-size: 1.6rem;
    }
    .hero-desc {
        font-size: 1rem;
    }
    .hero-actions {
        flex-direction: column;
    }
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 15px;
    }
    .city-cta h2 {
        font-size: 1.5rem;
    }
}
