/* ============================================================
   tamircin.net — style.css
   Tema: "Endüstriyel güven" — koyu çelik-mavi + turuncu ikaz rengi
   (servis/tamir sektörüne özgü, teknik ekipman panolarından ilham alan palet)
   ============================================================ */

:root {
    --ink: #10202e;          /* koyu çelik mavisi (ana metin/arka plan) */
    --steel: #1e3a52;        /* orta ton çelik mavisi */
    --steel-light: #34566f;
    --paper: #f5f7f8;        /* açık zemin */
    --paper-alt: #eef1f3;
    --alert: #e8621c;        /* ikaz turuncusu (CTA / dikkat çekici) */
    --alert-dark: #c94f10;
    --ok: #1e7e34;
    --line: #d9dfe3;
    --white: #ffffff;
    --radius: 10px;
    --font-body: 'Inter', -apple-system, Segoe UI, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-weight: 800; line-height: 1.2; color: var(--ink); }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.wrap-inner { max-width: 880px; margin: 0 auto; padding: 40px 20px; }

/* ---------- Topbar ---------- */
.topbar { background: var(--ink); color: #cfe0ec; font-size: .82rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 34px; }
.topbar-phone { color: var(--white); font-weight: 600; }
.topbar-badge { background: var(--alert); color: var(--white); padding: 2px 10px; border-radius: 999px; font-weight: 700; letter-spacing: .3px; }

/* ---------- Header ---------- */
.site-header { background: var(--white); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 24px; }
.brand { font-weight: 800; font-size: 1.25rem; color: var(--ink); letter-spacing: -.5px; white-space: nowrap; }
.main-nav { display: flex; align-items: center; gap: 22px; font-weight: 600; font-size: .95rem; }
.main-nav a { color: var(--steel); transition: color .15s; }
.main-nav a:hover { color: var(--alert); }
.nav-cta { color: var(--alert) !important; }
.header-call-btn {
    display: flex; align-items: center; gap: 8px;
    background: var(--alert); color: var(--white); font-weight: 700;
    padding: 10px 18px; border-radius: 999px; font-size: .9rem; white-space: nowrap;
    box-shadow: 0 4px 14px rgba(232,98,28,.35);
}
.icon-search::before { content: "🔍"; }

/* ---------- Mobil menü butonu (hamburger) — masaüstünde gizli ---------- */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}
.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}
.mobile-menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Yanıp sönen / dikkat çekici buton efekti */
@keyframes pulseGlow {
    0%   { box-shadow: 0 0 0 0 rgba(232,98,28,.55); }
    70%  { box-shadow: 0 0 0 12px rgba(232,98,28,0); }
    100% { box-shadow: 0 0 0 0 rgba(232,98,28,0); }
}
.pulse { animation: pulseGlow 2s infinite; }
@media (prefers-reduced-motion: reduce) { .pulse { animation: none; } }

/* ---------- Breadcrumb ---------- */
.breadcrumb { padding: 14px 20px; font-size: .82rem; color: var(--steel-light); }
.breadcrumb a { color: var(--steel-light); }
.breadcrumb a:hover { color: var(--alert); }
.crumb-sep { margin: 0 6px; color: #b6c0c7; }
.crumb-active { color: var(--ink); font-weight: 600; }

/* ---------- Banner ---------- */
.banner { background-size: cover; background-position: center; color: var(--white); }
.banner-inner { padding: 70px 20px 60px; max-width: 760px; }
.banner-eyebrow { text-transform: uppercase; letter-spacing: 1.5px; font-size: .78rem; font-weight: 700; color: #ffb088; margin: 0 0 12px; }
.banner-title { font-size: clamp(1.7rem, 4vw, 2.6rem); margin: 0 0 16px; }
.banner-text { font-size: 1.05rem; color: #e3ebf0; margin: 0 0 26px; max-width: 560px; }
.banner-cta {
    display: inline-block; background: var(--alert); color: var(--white); font-weight: 700;
    padding: 14px 30px; border-radius: 8px; font-size: 1rem; box-shadow: 0 6px 20px rgba(232,98,28,.4);
}
.banner-badges { list-style: none; display: flex; gap: 26px; margin: 34px 0 0; padding: 0; flex-wrap: wrap; font-weight: 600; font-size: .92rem; }
.banner-badges li { display: flex; align-items: center; gap: 8px; }
.badge-icon { font-size: 1.1rem; }

/* ---------- Category hub (bölge dizini) ---------- */
.hub-yaka-title { font-size: 1.15rem; margin: 30px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--line); }
.hub-region-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px 16px; }
.hub-region-list a { color: var(--steel-light); font-size: .92rem; }
.hub-region-list a:hover { color: var(--alert); }
.hub-brand-list { color: #4a5c68; font-size: .92rem; line-height: 1.9; }

/* ---------- Home hero ---------- */
.home-hero { background: linear-gradient(135deg, var(--ink), var(--steel)); color: var(--white); padding: 80px 0 70px; }
.home-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); max-width: 760px; margin: 10px 0 18px; }
.home-hero-text { color: #cfdce4; max-width: 560px; margin-bottom: 30px; }

/* ---------- Main content ---------- */
.main-content { padding: 48px 20px 70px; }
.region-article p { max-width: 780px; margin: 0 0 20px; font-size: 1.02rem; color: #263846; }
.static-page h1 { font-size: 2rem; margin-bottom: 20px; }
.static-page p { max-width: 780px; color: #263846; }

/* ---------- CTA block ---------- */
.cta-block { text-align: center; margin: 36px 0 56px; }
.cta-button {
    display: inline-block; background: var(--alert); color: var(--white); font-weight: 700;
    padding: 16px 36px; border-radius: 8px; font-size: 1.05rem; box-shadow: 0 8px 22px rgba(232,98,28,.35);
    border: none; cursor: pointer;
}
.cta-button:hover { background: var(--alert-dark); }

/* ---------- Arıza türleri ---------- */
.ariza-turleri h2, .related-links h2, .faq-section h2, .reviews-section h2 { font-size: 1.4rem; margin-bottom: 18px; }
.ariza-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px; }
.ariza-list li { background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--alert); padding: 12px 16px; border-radius: 6px; font-size: .92rem; }

/* ---------- FAQ ---------- */
.faq-section { padding: 40px 20px; }
.faq-list { max-width: 820px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 8px; margin-bottom: 10px; padding: 4px 18px; }
.faq-item summary { cursor: pointer; font-weight: 700; padding: 14px 0; }
.faq-item p { margin: 0 0 14px; color: #3c4e5c; }

/* ---------- Reviews ---------- */
.reviews-section { padding: 40px 20px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.review-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.review-stars { color: var(--alert); font-size: 1.1rem; margin-bottom: 8px; }
.review-author { font-weight: 700; font-size: .88rem; color: var(--steel); }

/* ---------- Related links ---------- */
.related-links { padding: 40px 20px 10px; }
.related-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 10px; }
.related-list a { color: var(--steel-light); font-size: .92rem; }
.related-list a:hover { color: var(--alert); }
.next-region-link { margin-top: 22px; }
.next-region-link a { font-weight: 700; color: var(--alert); }

/* ---------- Category grid (home) ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin-top: 20px; }
.category-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.category-card a { font-weight: 700; color: var(--alert); }

.region-chip-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.region-chip-list li { background: var(--paper-alt); border-radius: 999px; padding: 6px 14px; font-size: .85rem; color: var(--steel); }

/* ---------- Form ---------- */
.service-form { max-width: 520px; margin: 24px 0; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .9rem; }
.form-row input, .form-row select, .form-row textarea {
    width: 100%; padding: 11px 14px; border: 1px solid var(--line); border-radius: 8px; font-family: inherit; font-size: .95rem;
}
.form-alt { margin-top: 20px; font-size: .92rem; color: var(--steel-light); }

/* ---------- Address grid ---------- */
.address-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin: 24px 0; }
.address-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.note { font-size: .82rem; color: #7a8892; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #c3d3dd; margin-top: 40px; }
.footer-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding: 50px 20px 30px; }
.footer-col h3 { color: var(--white); font-size: 1rem; margin-bottom: 14px; }
.footer-col a { display: block; color: #a9bdc9; margin-bottom: 8px; font-size: .92rem; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 20px; font-size: .8rem; color: #8298a5; }

/* ---------- Sticky contact bar (Hemen Ara / WhatsApp) ---------- */
body { padding-bottom: 96px; }

.sticky-contact {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 510px;
    width: 90%;
    margin-bottom: 15px;
    border: 4px solid var(--white);
    display: flex;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 50px;
    overflow: hidden;
}

.contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-call { background: var(--alert); color: var(--white); }
.btn-call:hover { background: var(--ink); color: var(--white); }

.btn-whatsapp { background: #25d366; color: var(--white); }
.btn-whatsapp:hover { background: #073819; color: var(--white); }

.btn-icon { width: 22px; height: 22px; fill: currentColor; }
