/* Şehir yeminli tercüman landing – kurumsal görünüm */
.ct-page {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    background: #f4f6f9;
    color: #1e293b;
    line-height: 1.5;
}

.ct-hero {
    background: linear-gradient(135deg, #1e1b4b 0%, #4c1d95 45%, #6d28d9 100%);
    color: #fff;
    padding: 48px 20px 56px;
    position: relative;
    overflow: hidden;
}

.ct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(255, 255, 255, 0.12) 0%, transparent 55%);
    pointer-events: none;
}

.ct-hero-inner {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

.ct-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.ct-breadcrumb a:hover {
    color: #fff;
    text-decoration: underline;
}

.ct-breadcrumb i {
    font-size: 14px;
    opacity: 0.6;
}

.ct-hero h1 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
    line-height: 1.2;
}

.ct-hero-lead {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.88);
    max-width: 640px;
    margin: 0 0 28px;
    line-height: 1.65;
}

.ct-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.ct-stat {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 14px 22px;
    min-width: 140px;
    backdrop-filter: blur(8px);
}

.ct-stat strong {
    display: block;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.1;
}

.ct-stat span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.ct-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.ct-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.ct-btn-primary {
    background: #fff;
    color: #4c1d95;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.ct-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: #4c1d95;
}

.ct-btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.ct-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.ct-main {
    max-width: 1140px;
    margin: -32px auto 0;
    padding: 0 20px 64px;
    position: relative;
    z-index: 2;
}

.ct-panel {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    padding: 32px 28px 36px;
    margin-bottom: 28px;
}

.ct-panel h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #0f172a;
}

.ct-panel p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

.ct-lang-panel p {
    margin-bottom: 14px;
}

.ct-lang-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ct-lang-chip {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.3;
    transition: background .15s, border-color .15s, box-shadow .15s;
}

.ct-lang-chip:hover {
    background: #dbeafe;
    border-color: #93c5fd;
    color: #1e3a8a;
    box-shadow: 0 4px 12px rgba(30, 90, 156, 0.12);
}

.ct-lang-more {
    margin-top: 16px !important;
    font-size: 14px;
}

.ct-lang-more a {
    color: #1e5a9c;
    font-weight: 600;
    text-decoration: none;
}

.ct-lang-more a:hover {
    text-decoration: underline;
}

.ct-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.ct-feature {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.ct-feature i {
    font-size: 22px;
    color: #6d28d9;
    flex-shrink: 0;
}

.ct-feature strong {
    display: block;
    font-size: 14px;
    color: #1e293b;
    margin-bottom: 4px;
}

.ct-feature span {
    font-size: 13px;
    color: #64748b;
    line-height: 1.45;
}

.ct-section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 22px;
}

.ct-section-head h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #0f172a;
}

.ct-section-head p {
    margin: 4px 0 0;
    font-size: 14px;
    color: #64748b;
}

.ct-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #ede9fe;
    color: #5b21b6;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.ct-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ct-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.ct-card:hover {
    border-color: #c4b5fd;
    box-shadow: 0 12px 28px rgba(76, 29, 149, 0.12);
    transform: translateY(-2px);
}

.ct-card-top {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}

.ct-avatar {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
    overflow: hidden;
}

.ct-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ct-avatar img.ct-avatar-default {
    object-fit: cover;
    padding: 0;
    background: transparent;
}

.ct-card-title-wrap {
    flex: 1;
    min-width: 0;
}

.ct-card-name {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px;
    line-height: 1.3;
    word-break: break-word;
}

.ct-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ct-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.ct-badge-sworn {
    background: #ecfdf5;
    color: #047857;
}

.ct-badge-notary {
    background: #eff6ff;
    color: #1d4ed8;
}

.ct-card-lang {
    font-size: 14px;
    color: #475569;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.ct-card-lang i {
    color: #6d28d9;
    margin-top: 2px;
    flex-shrink: 0;
}

.ct-card-location {
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.ct-card-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}

.ct-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 16px;
    background: linear-gradient(135deg, #4c1d95 0%, #6d28d9 100%);
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none !important;
    transition: opacity 0.2s, transform 0.15s;
}

.ct-card-link:hover {
    opacity: 0.95;
    transform: translateY(-1px);
    color: #fff !important;
}

.ct-empty {
    text-align: center;
    padding: 56px 24px;
    background: #fff;
    border-radius: 16px;
    border: 1px dashed #cbd5e1;
}

.ct-empty i {
    font-size: 48px;
    color: #94a3b8;
    margin-bottom: 16px;
}

.ct-empty p {
    color: #64748b;
    margin: 0 0 20px;
    font-size: 16px;
}

.ct-cta-bar {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    color: #fff;
}

.ct-cta-bar h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px;
}

.ct-cta-bar p {
    margin: 0 0 20px;
    color: #94a3b8;
    font-size: 15px;
}

@media (max-width: 640px) {
    .ct-hero {
        padding: 36px 16px 48px;
    }

    .ct-main {
        padding: 0 16px 48px;
    }

    .ct-panel {
        padding: 24px 18px;
    }

    .ct-grid {
        grid-template-columns: 1fr;
    }

    .ct-stat {
        flex: 1;
        min-width: calc(50% - 8px);
    }
}
