/* Servisd.com — Profesyonel Teknik Servis */
:root {
    --primary: #0c2340;
    --primary-light: #1a3a5c;
    --accent: #e8620a;
    --accent-hover: #cf5508;
    --success: #16a34a;
    --success-hover: #15803d;
    --text: #1e293b;
    --text-muted: #64748b;
    --bg: #ffffff;
    --bg-alt: #f1f5f9;
    --border: #e2e8f0;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(12, 35, 64, 0.08);
    --shadow-lg: 0 12px 40px rgba(12, 35, 64, 0.12);
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ── Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: var(--header-h);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--primary);
}

.logo-text {
    white-space: nowrap;
    letter-spacing: -.02em;
    line-height: 1;
}

.logo .logo-tld {
    color: var(--accent);
    letter-spacing: -.02em;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--accent), #f59e0b);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--success);
    color: #fff;
    padding: .65rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .95rem;
    transition: background .2s, transform .15s;
    white-space: nowrap;
}

.btn-call:hover {
    background: var(--success-hover);
    transform: translateY(-1px);
}

.btn-call svg { flex-shrink: 0; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
    color: var(--primary);
}

/* ── Hero ── */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #234876 100%);
    color: #fff;
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.hero-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    padding: .4rem 1rem;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

.hero h1 {
    font-size: clamp(1.85rem, 4.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.03em;
    margin-bottom: 1rem;
}

.hero h1 em {
    font-style: normal;
    color: #fbbf24;
}

.hero-desc {
    font-size: 1.1rem;
    opacity: .88;
    max-width: 520px;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-main .hero-stats {
    margin-bottom: 0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--accent);
    color: #fff;
    padding: .9rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: background .2s, transform .15s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: #fff;
    padding: .9rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, .35);
    transition: border-color .2s, background .2s;
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .08);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.stat-item span {
    font-size: .8rem;
    opacity: .75;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.hero-card {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.hero-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.hero-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .85rem;
}

.hero-features li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .95rem;
}

.hero-features li::before {
    content: '✓';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 700;
}

.hero-card .btn-call {
    width: 100%;
    justify-content: center;
    margin-top: 1.5rem;
    padding: 1rem;
    font-size: 1.05rem;
}

.hero-aside {
    position: relative;
    align-self: start;
    justify-self: end;
    width: min(100%, 400px);
}

.hero-aside-glow {
    position: absolute;
    inset: -20% -10%;
    background: radial-gradient(circle at 60% 40%, rgba(232, 98, 10, 0.35) 0%, transparent 55%),
                radial-gradient(circle at 30% 70%, rgba(74, 222, 128, 0.2) 0%, transparent 50%);
    filter: blur(24px);
    pointer-events: none;
    z-index: 0;
}

.hero-aside-card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.hero-aside-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.hero-aside-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), #f59e0b);
    border-radius: 14px;
    color: #fff;
    box-shadow: 0 4px 16px rgba(232, 98, 10, 0.4);
}

.hero-aside-head strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
}

.hero-aside-head span {
    display: block;
    font-size: .82rem;
    opacity: .75;
    margin-top: .15rem;
}

.hero-aside-phone {
    display: block;
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    font-weight: 800;
    letter-spacing: -.02em;
    color: #fff;
    text-align: center;
    padding: .85rem 1rem;
    background: rgba(0, 0, 0, 0.15);
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    transition: background .2s, transform .15s;
}

.hero-aside-phone:hover {
    background: rgba(0, 0, 0, 0.25);
    transform: scale(1.02);
}

.hero-aside-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    margin-bottom: 1.35rem;
}

.hero-aside-features li {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: .92rem;
    opacity: .92;
}

.hero-aside-features li::before {
    content: '✓';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    font-weight: 700;
}

.hero-aside-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    background: var(--success);
    color: #fff;
    padding: 1rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: background .2s, transform .15s;
    box-shadow: 0 4px 20px rgba(22, 163, 74, 0.35);
}

.hero-aside-btn:hover {
    background: var(--success-hover);
    transform: translateY(-2px);
}

.hero-aside-note {
    text-align: center;
    font-size: .78rem;
    opacity: .65;
    margin-top: .85rem;
}

/* Breadcrumb in hero */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    font-size: .875rem;
    opacity: .8;
    margin-bottom: 1rem;
}

.breadcrumb a:hover { opacity: 1; text-decoration: underline; }

.breadcrumb-sep { opacity: .5; }

/* ── Sections ── */
.section {
    padding: 4.5rem 0;
}

.section-alt { background: var(--bg-alt); }

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section-tag {
    display: inline-block;
    background: rgba(232, 98, 10, .1);
    color: var(--accent);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .35rem 1rem;
    border-radius: 50px;
    margin-bottom: .75rem;
}

.section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -.02em;
    margin-bottom: .75rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.trademark-notice {
    font-size: .82rem;
    color: var(--text-muted);
    line-height: 1.55;
    max-width: 720px;
    margin: -1.5rem auto 2rem;
    text-align: center;
}

.trademark-notice--hero {
    margin: 1.25rem 0 0;
    max-width: 520px;
    text-align: left;
    color: rgba(255, 255, 255, 0.72);
    font-size: .75rem;
    line-height: 1.5;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* ── Service Cards ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: box-shadow .25s, transform .25s, border-color .25s;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}

.service-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(232, 98, 10, .12), rgba(245, 158, 11, .08));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: .5rem;
}

.service-card p {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ── Process Steps ── */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    counter-reset: step;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: .4rem;
}

.process-step p {
    font-size: .85rem;
    color: var(--text-muted);
}

/* ── Trust Bar ── */
.trust-bar {
    background: var(--primary);
    color: #fff;
    padding: 2rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.trust-item strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: .25rem;
}

.trust-item span {
    font-size: .85rem;
    opacity: .75;
}

/* ── Brand / Link Grid ── */
.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: .75rem;
}

.link-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all .2s;
}

.link-card a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 1.1rem;
    font-weight: 600;
    font-size: .9rem;
    color: var(--primary);
}

.link-card a::after {
    content: '→';
    opacity: 0;
    transform: translateX(-4px);
    transition: all .2s;
    color: var(--accent);
}

.link-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.link-card:hover a::after {
    opacity: 1;
    transform: translateX(0);
}

/* ── Why Us ── */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.why-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-list .why-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--bg-alt);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.why-list h4 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: .2rem;
    font-size: .95rem;
}

.why-list p {
    font-size: .875rem;
    color: var(--text-muted);
}

.why-image {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    color: #fff;
    text-align: center;
}

.why-image .big-phone {
    font-size: 2rem;
    font-weight: 800;
    margin: 1rem 0;
    letter-spacing: -.02em;
}

/* ── FAQ ── */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.faq-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.15rem 1.5rem;
    text-align: left;
    font-family: var(--font);
    font-size: .95rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--accent);
    transition: transform .2s;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.15rem;
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

/* ── CTA Banner ── */
.cta-banner {
    background: linear-gradient(135deg, var(--accent), #f59e0b);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    color: #fff;
    margin: 0 1.25rem;
    max-width: calc(1200px - 2.5rem);
    margin-left: auto;
    margin-right: auto;
}

.cta-banner h2 {
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    font-weight: 800;
    margin-bottom: .75rem;
}

.cta-banner p {
    opacity: .9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.cta-banner .btn-call {
    background: #fff;
    color: var(--accent);
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.cta-banner .btn-call:hover {
    background: #fef3c7;
}

/* ── Local page extras ── */
.local-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-panel {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}

.info-panel h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.info-panel ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
}

.info-panel li {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .9rem;
    color: var(--text);
}

.info-panel li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    font-size: .8rem;
}

.contact-panel {
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
}

.contact-panel h3 {
    font-size: 1rem;
    font-weight: 600;
    opacity: .85;
    margin-bottom: .5rem;
}

.contact-panel .phone-lg {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 1rem;
    letter-spacing: -.01em;
}

.contact-panel .hours {
    font-size: .85rem;
    opacity: .7;
    margin-top: 1rem;
}

/* ── Footer ── */
.site-footer {
    background: var(--primary);
    color: rgba(255, 255, 255, .75);
    padding: 3.5rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: .9rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer-col h4 {
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.footer-col a {
    font-size: .875rem;
    transition: color .2s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .8rem;
}

/* ── Floating call (mobile) ── */
.float-call {
    display: none;
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 200;
    background: var(--success);
    color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(22, 163, 74, .45);
    animation: floatBounce 2s ease infinite;
}

@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* ── Search box ── */
.search-box {
    max-width: 480px;
    margin: 0 auto 2rem;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: .85rem 1.25rem .85rem 2.75rem;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-family: var(--font);
    font-size: .95rem;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.search-box input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232, 98, 10, .12);
}

.search-box::before {
    content: '🔍';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: .9rem;
    pointer-events: none;
}

.link-card.hidden { display: none; }

/* ── SEO Article (tam genişlik) ── */
.seo-article-section { background: var(--bg-alt); }

.container-wide {
    max-width: 1200px;
}

.seo-article {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 3rem;
    width: 100%;
    box-shadow: var(--shadow);
}

.seo-article-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.seo-article-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--primary);
    margin-top: .5rem;
    letter-spacing: -.02em;
    line-height: 1.25;
}

.seo-article-intro {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: .85rem;
    max-width: 900px;
}

.seo-article-feature {
    margin: 0 0 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    background: var(--bg-alt);
    line-height: 0;
}

.seo-article-feature img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    object-position: center;
}

.seo-article-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 3rem;
    align-items: start;
}

.seo-toc {
    position: sticky;
    top: calc(var(--header-h) + 1.25rem);
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 1.35rem 1.5rem;
    border-left: 4px solid var(--accent);
}

.seo-toc strong {
    display: block;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--primary);
    margin-bottom: .85rem;
    font-weight: 700;
}

.seo-toc ol {
    padding-left: 1.15rem;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.seo-toc a {
    color: var(--text-muted);
    font-size: .875rem;
    line-height: 1.45;
    transition: color .2s;
    display: block;
}

.seo-toc a:hover { color: var(--accent); }

.seo-article-main {
    min-width: 0;
}

.seo-article-block {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
}

.seo-article-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.seo-article-block h3 {
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.seo-article-block p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.seo-article-block ul,
.seo-article-block ol {
    padding-left: 1.5rem;
    margin: 1rem 0 1.25rem;
}

.seo-article-block li {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: .55rem;
    color: var(--text);
}

.seo-article-block li strong {
    color: var(--primary);
}

.seo-article-block a {
    color: var(--accent);
    font-weight: 600;
}

.seo-article-block a:hover { text-decoration: underline; }

.seo-article-block h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-light);
    margin: 1.5rem 0 .75rem;
}

.seo-article-footer {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: .85rem;
    color: var(--text-muted);
}

/* ── İletişim Tablosu ── */
.contact-table-section { padding-top: 2rem; }

.contact-table-title {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.25rem;
    letter-spacing: -.02em;
}

.contact-table-wrap {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .95rem;
}

.contact-table th,
.contact-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--border);
}

.contact-table tr:last-child th,
.contact-table tr:last-child td {
    border-bottom: none;
}

.contact-table th {
    width: 38%;
    font-weight: 600;
    color: var(--primary);
    background: var(--bg-alt);
    white-space: nowrap;
}

.contact-table td {
    color: var(--text);
    line-height: 1.55;
}

.contact-phone {
    color: var(--success);
    font-weight: 700;
    font-size: 1.05rem;
}

.contact-phone:hover { text-decoration: underline; }

.star-rating {
    display: inline-flex;
    gap: 2px;
    margin-right: .5rem;
    vertical-align: middle;
}

.star-rating .star {
    color: #f59e0b;
    font-size: 1rem;
    line-height: 1;
}

.rating-text {
    font-size: .9rem;
    color: var(--text-muted);
    vertical-align: middle;
}

@media (max-width: 640px) {
    .contact-table th,
    .contact-table td {
        display: block;
        width: 100%;
        white-space: normal;
    }

    .contact-table th {
        padding-bottom: .35rem;
        border-bottom: none;
        background: transparent;
    }

    .contact-table td {
        padding-top: 0;
        padding-bottom: 1.25rem;
        border-bottom: 1px solid var(--border);
    }
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .hero-grid,
    .why-grid,
    .local-info,
    .footer-grid { grid-template-columns: 1fr; }

    .hero-aside {
        justify-self: center;
        margin-top: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }

    .header-actions .btn-call span { display: none; }

    .header-actions .btn-call {
        padding: .65rem;
        border-radius: 50%;
        width: 44px;
        height: 44px;
        justify-content: center;
    }

    .float-call { display: flex; }

    .process-grid,
    .trust-grid { grid-template-columns: 1fr 1fr; }

    .info-panel ul { grid-template-columns: 1fr; }

    .cta-banner { padding: 2rem 1.5rem; }

    .section { padding: 3rem 0; }

    .seo-article { padding: 1.75rem 1.25rem; }

    .seo-article-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .seo-toc { position: static; }

    .seo-article-feature img { max-height: 260px; }
}

@media (max-width: 480px) {
    .hero-stats { gap: 1.25rem; }

    .process-grid,
    .trust-grid { grid-template-columns: 1fr; }

    .hero-cta { flex-direction: column; }

    .hero-cta .btn-primary,
    .hero-cta .btn-outline { justify-content: center; }
}
