/* Oto Çekici — Siyah & Sarı Tema */

:root {
    --black: #0a0a0a;
    --black-soft: #141414;
    --black-card: #1a1a1a;
    --yellow: #ffc700;
    --yellow-dark: #e6b300;
    --yellow-glow: rgba(255, 199, 0, 0.25);
    --white: #f5f5f5;
    --gray: #888;
    --gray-light: #ccc;
    --font: 'Barlow', system-ui, sans-serif;
    --radius: 10px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    min-height: 100vh;
}

a { color: var(--yellow); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--yellow-dark); }

img { max-width: 100%; display: block; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-yellow { color: var(--yellow); }
.text-center { text-align: center; }
.mt-2 { margin-top: 1.5rem; }

/* ── Stripe bar (tow truck warning tape) ── */
.stripe-bar {
    height: 6px;
    background: repeating-linear-gradient(
        -45deg,
        var(--yellow) 0,
        var(--yellow) 12px,
        var(--black) 12px,
        var(--black) 24px
    );
    position: sticky;
    top: 0;
    z-index: 200;
}

/* ── Header ── */
.site-header {
    background: var(--black-soft);
    border-bottom: 2px solid var(--yellow);
    position: sticky;
    top: 6px;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.85rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--white);
    flex-shrink: 0;
}

.logo:hover { color: var(--white); }

.logo-icon svg { width: 42px; height: 42px; display: block; }

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-text strong {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--yellow);
    letter-spacing: 0.02em;
}

.logo-text small {
    font-size: 0.65rem;
    color: var(--gray);
    letter-spacing: 0.06em;
}

.main-nav {
    display: flex;
    gap: 1.5rem;
    margin-left: auto;
}

.main-nav a {
    color: var(--gray-light);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.main-nav a:hover { color: var(--yellow); }

.btn-call {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--yellow);
    color: var(--black) !important;
    padding: 0.55rem 1rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
}

.btn-call:hover {
    background: var(--yellow-dark);
    color: var(--black) !important;
    transform: scale(1.02);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--yellow);
    transition: 0.3s;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    font-family: var(--font);
}

.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }

.btn-primary {
    background: var(--yellow);
    color: var(--black) !important;
    border-color: var(--yellow);
}

.btn-primary:hover {
    background: var(--yellow-dark);
    border-color: var(--yellow-dark);
    color: var(--black) !important;
    box-shadow: 0 0 24px var(--yellow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--yellow) !important;
    border-color: var(--yellow);
}

.btn-outline:hover {
    background: var(--yellow);
    color: var(--black) !important;
}

/* ── Hero ── */
.hero {
    position: relative;
    padding: 5rem 0 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(255, 199, 0, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, var(--black-soft) 0%, var(--black) 100%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--yellow) 0,
        var(--yellow) 20px,
        var(--black) 20px,
        var(--black) 40px
    );
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-visual {
    position: relative;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 3px solid var(--yellow);
    border-radius: calc(var(--radius) + 4px);
    opacity: 0.6;
    z-index: 0;
}

.hero-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
    object-fit: cover;
    max-height: 420px;
}

.hero-badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.15rem;
    color: var(--gray-light);
    max-width: none;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
}

.stat span {
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── Page hero (inner pages) ── */
.page-hero {
    background: var(--black-soft);
    padding: 3rem 0;
    border-bottom: 3px solid var(--yellow);
    position: relative;
    overflow: hidden;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero .hero-image-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero .hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    opacity: 0.28;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        105deg,
        var(--black-soft) 0%,
        rgba(10, 10, 10, 0.92) 45%,
        rgba(10, 10, 10, 0.55) 100%
    );
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    z-index: 1;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(255, 199, 0, 0.04) 20px,
        rgba(255, 199, 0, 0.04) 40px
    );
    pointer-events: none;
}

.page-hero-sm { padding: 4rem 0; }

.page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    position: relative;
}

.page-hero p {
    color: var(--gray-light);
    font-size: 1.05rem;
    max-width: none;
    margin-bottom: 1.5rem;
    position: relative;
}

.hero-content .breadcrumb {
    margin-bottom: 1rem;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 1rem;
    position: relative;
}

.breadcrumb a { color: var(--gray-light); }
.breadcrumb a:hover { color: var(--yellow); }

/* ── Sections ── */
.section { padding: 4rem 0; }

.section-dark {
    background: var(--black-soft);
    border-top: 1px solid rgba(255, 199, 0, 0.1);
    border-bottom: 1px solid rgba(255, 199, 0, 0.1);
}

.section-head {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-head h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.section-head p { color: var(--gray); }

/* ── Service cards ── */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 0.75rem;
}

.service-card {
    background: var(--black-card);
    border: 1px solid rgba(255, 199, 0, 0.2);
    border-radius: 6px;
    padding: 0;
    min-height: 54px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    border-color: var(--yellow);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--yellow-glow);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    min-width: 52px;
    font-size: 1.35rem;
    line-height: 1;
    background: rgba(255, 199, 0, 0.1);
    border-right: 2px solid rgba(255, 199, 0, 0.35);
}

.service-card h3 {
    display: flex;
    align-items: center;
    flex: 1;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0;
    padding: 0.65rem 0.95rem;
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.service-card:hover h3 {
    color: var(--yellow);
}

.service-card p { color: var(--gray); font-size: 0.8rem; }

@media (max-width: 480px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Search ── */
.search-box { margin-bottom: 1.5rem; }

.search-box input {
    width: 100%;
    max-width: 480px;
    display: block;
    margin: 0 auto;
    padding: 0.85rem 1.25rem;
    background: var(--black-card);
    border: 2px solid rgba(255, 199, 0, 0.3);
    border-radius: var(--radius);
    color: var(--white);
    font-family: var(--font);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.search-box input:focus { border-color: var(--yellow); }
.search-box input::placeholder { color: var(--gray); }

/* ── Il grid ── */
.il-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 0.5rem;
}

.il-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    border: 2px solid var(--black);
    border-radius: 4px;
    min-height: 40px;
    padding: 0.5rem 0.6rem;
    color: var(--black) !important;
    text-align: center;
    box-shadow: 0 3px 0 var(--black), 0 4px 14px rgba(0, 0, 0, 0.45);
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s, border-color 0.15s;
}

.il-card:hover {
    background: var(--black);
    border-color: var(--yellow);
    transform: translateY(-2px);
    box-shadow: 0 5px 0 var(--yellow), 0 8px 24px var(--yellow-glow);
    color: var(--yellow) !important;
}

.il-card.hidden { display: none; }

.il-name {
    font-weight: 800;
    font-size: 0.78rem;
    line-height: 1.2;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* ── Ilce grid ── */
.ilce-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.6rem;
}

.ilce-card {
    background: var(--black-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    color: var(--gray-light) !important;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
}

.ilce-card:hover {
    background: var(--yellow);
    color: var(--black) !important;
    border-color: var(--yellow);
}

.ilce-card.hidden { display: none; }

/* ── Link cards ── */
.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.link-card {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    background: var(--black-card);
    border: 1px solid rgba(255, 199, 0, 0.2);
    border-radius: var(--radius);
    padding: 1.25rem;
    color: var(--white) !important;
    transition: all 0.2s;
}

.link-card:hover {
    border-color: var(--yellow);
    background: rgba(255, 199, 0, 0.06);
    color: var(--yellow) !important;
}

.link-card strong { font-size: 1rem; font-weight: 800; }
.link-card span { font-size: 0.8rem; color: var(--gray); }
.link-card:hover span { color: var(--yellow-dark); }

/* ── Content block ── */
.content-block {
    width: 100%;
    max-width: none;
}

.content-block h2 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--yellow);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.content-block p {
    color: var(--gray-light);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.75;
}

.article-section {
    background: var(--black-soft);
    border-top: 1px solid rgba(255, 199, 0, 0.1);
    border-bottom: 1px solid rgba(255, 199, 0, 0.1);
    padding-top: 0;
}

.article-banner {
    position: relative;
    width: 100%;
    height: clamp(180px, 28vw, 320px);
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.article-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
    display: block;
}

.article-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.2) 0%,
        rgba(10, 10, 10, 0.85) 100%
    );
    border-bottom: 3px solid var(--yellow);
}

.article-section > .container {
    max-width: 100%;
    padding-left: clamp(20px, 4vw, 60px);
    padding-right: clamp(20px, 4vw, 60px);
}

.article-section .content-block {
    max-width: none;
    width: 100%;
}

.article-section p + p {
    margin-top: 0.25rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.feature-list li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    color: var(--gray-light);
}

.feature-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: 900;
}

/* ── CTA band ── */
.cta-band {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    padding: 3rem 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-band h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--black);
    text-transform: uppercase;
}

.cta-band p { color: rgba(0, 0, 0, 0.7); font-weight: 600; }

.cta-band .btn-primary {
    background: var(--black);
    color: var(--yellow) !important;
    border-color: var(--black);
    flex-shrink: 0;
}

.cta-band .btn-primary:hover {
    background: var(--black-soft);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* ── Footer ── */
.site-footer {
    background: var(--black-soft);
    border-top: 2px solid var(--yellow);
    padding-top: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
}

.footer-brand strong {
    display: block;
    font-size: 1.2rem;
    color: var(--yellow);
    margin-bottom: 0.5rem;
}

.footer-brand p { color: var(--gray); font-size: 0.9rem; }

.footer-links strong,
.footer-call strong {
    display: block;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a { color: var(--gray); font-size: 0.9rem; }

.footer-phone {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--yellow) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1rem 0;
}

.footer-bottom p {
    text-align: center;
    color: var(--gray);
    font-size: 0.8rem;
}

/* ── Floating call button ── */
.fab-call {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 58px;
    height: 58px;
    background: var(--yellow);
    color: var(--black) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px var(--yellow-glow), 0 2px 8px rgba(0,0,0,0.5);
    z-index: 150;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: pulse-ring 2.5s infinite;
}

.fab-call:hover {
    transform: scale(1.1);
    color: var(--black) !important;
}

@keyframes pulse-ring {
    0%, 100% { box-shadow: 0 6px 24px var(--yellow-glow), 0 0 0 0 rgba(255, 199, 0, 0.4); }
    50% { box-shadow: 0 6px 24px var(--yellow-glow), 0 0 0 12px rgba(255, 199, 0, 0); }
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
    }

    .hero-visual img {
        max-height: 240px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--black-soft);
        flex-direction: column;
        padding: 1rem 20px;
        border-bottom: 2px solid var(--yellow);
        margin-left: 0;
    }

    .main-nav.open { display: flex; }

    .header-call span { display: none; }

    .nav-toggle { display: flex; }

    .site-header .header-inner { position: relative; flex-wrap: wrap; }

    .hero { padding: 3rem 0 2.5rem; }

    .hero-stats { gap: 1.5rem; }

    .footer-grid { grid-template-columns: 1fr; }

    .cta-inner { flex-direction: column; text-align: center; }

    .cta-inner .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .header-call { padding: 0.55rem 0.7rem; }

    .il-grid { grid-template-columns: repeat(2, 1fr); }

    .ilce-grid { grid-template-columns: repeat(2, 1fr); }
}
