/* ===== İLÇE LANDING SAYFASI STİLLERİ ===== */

/* — Imports from main site — */
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #F59340;
    --primary-dark: #d47820;
    --text: #1a1a2e;
    --text-light: #555;
    --bg: #f8f7f4;
    --white: #fff;
    --radius: 16px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .06);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Google Sans', 'Product Sans', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color .2s;
}

a:hover {
    color: var(--primary-dark);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* — Header (Ana Sayfa ile Aynı) — */
.header {
    background: var(--white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    padding-top: 8px;
}

.header-logo img {
    height: 40px !important;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(245, 147, 64, 0.3);
    color: #fff !important;
}

/* — Breadcrumbs — */
.breadcrumbs {
    padding: 0;
    font-size: .82rem;
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--primary);
    font-weight: 500;
}

.breadcrumbs span {
    margin: 0 6px;
    opacity: .5;
}

/* — Hero — */
.ilce-hero {
    padding: 0 0 40px;
    text-align: center;
}

.ilce-hero h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
    color: var(--text);
}

.ilce-hero h1 span {
    color: var(--primary);
}

.ilce-hero .hero-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto 28px;
}

/* — CTA Buttons — */
.cta-group {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: .95rem;
    transition: all .2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--primary);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: .95rem;
    border: 2px solid var(--primary);
    transition: all .2s;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-1px);
}

/* — Stats — */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: .78rem;
    color: var(--text-light);
    margin-top: 2px;
}

/* — Content sections — */
.ilce-section {
    padding: 48px 0;
}

.ilce-section:nth-child(even) {
    background: var(--white);
}

.ilce-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

.ilce-section h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 24px 0 10px;
    color: var(--text);
}

.ilce-section p {
    color: var(--text-light);
    margin-bottom: 14px;
}

.ilce-section ul {
    padding-left: 24px;
    margin-bottom: 14px;
}

.ilce-section li {
    color: var(--text-light);
    margin-bottom: 6px;
}

.ilce-section strong {
    color: var(--text);
}

/* — Services cards — */
.services-mini {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.service-mini-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.service-mini-card h4 {
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.service-mini-card p {
    font-size: .82rem;
    margin: 0;
}

.service-mini-card .smc-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* — FAQ — */
.ilce-faq {
    margin-top: 20px;
}

.ilce-faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    padding: 16px 0;
}

.ilce-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    font-size: .95rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    padding: 0;
    font-family: inherit;
}

.ilce-faq-q svg {
    flex-shrink: 0;
    transition: transform .3s;
}

.ilce-faq-q[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.ilce-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s;
    color: var(--text-light);
    font-size: .9rem;
    line-height: 1.6;
}

.ilce-faq-a.open {
    max-height: 500px;
    padding-top: 10px;
}

/* — CTA Bottom — */
.ilce-cta-bottom {
    background: linear-gradient(135deg, #1a1a2e, #2d2d5e);
    color: #fff;
    padding: 56px 0;
    text-align: center;
}

.ilce-cta-bottom h2 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.ilce-cta-bottom p {
    color: rgba(255, 255, 255, .7);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* — Footer (Ana Sayfa ile Aynı) — */
.footer {
    background: #111827;
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 0 0;
    font-size: 14px;
}

.footer h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-brand img {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    transition: color 0.2s;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
}

.footer-contact svg {
    flex-shrink: 0;
    stroke: var(--primary);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--primary);
}

.district-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.district-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

a.district-tag:hover {
    background: var(--primary);
    color: #fff !important;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* — Mobile Fixed Bottom Bar — */
.mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--primary);
    text-align: center;
}

.mobile-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
}

/* — Mobile — */
@media (max-width: 600px) {
    .ilce-hero h1 {
        font-size: 1.4rem;
    }

    .stats-row {
        gap: 20px;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
    }

    .header-cta#header-call-btn {
        font-size: 0;
        padding: 10px;
    }

    .header-cta#header-call-btn svg {
        margin: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mobile-bar {
        display: block;
    }
}