/* =====================================================================
   Nakliyat CMS - Site Stili
   ===================================================================== */

:root {
    --color-primary: #e8590c;      /* nakliye turuncusu */
    --color-primary-dark: #c04508;
    --color-accent: #1f3a5f;       /* koyu lacivert vurgu */
    --color-dark: #14202e;
    --color-muted: #5b6773;
    --color-bg: #ffffff;
    --color-bg-alt: #f4f7fa;
    --color-border: #e2e8f0;
    --color-whatsapp: #25d366;
    --color-whatsapp-dark: #1da851;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 6px 24px rgba(20, 32, 46, 0.08);
    --shadow-lg: 0 14px 40px rgba(20, 32, 46, 0.14);
    --container: 1160px;
    --font: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--color-dark);
    background: var(--color-bg);
    line-height: 1.65;
}

h1, h2, h3, h4 { line-height: 1.25; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}
.container-narrow { max-width: 820px; }
.muted-center { text-align: center; color: var(--color-muted); margin-top: 30px; }

/* ---------------- Butonlar ---------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .1s, box-shadow .2s;
    text-decoration: none;
    font-size: .98rem;
    line-height: 1.2;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-lg { padding: 15px 30px; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; }
.btn-primary { background: linear-gradient(135deg, #f5a623, #e8590c); color: #fff; box-shadow: 0 6px 16px rgba(232,89,12,.28); }
.btn-primary:hover { background: linear-gradient(135deg, #e8990f, #c04508); color: #fff; }
.btn-whatsapp { background: var(--color-whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--color-whatsapp-dark); color: #fff; }
.btn-outline-light { background: transparent; border: 2px solid rgba(255,255,255,.7); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.15); color: #fff; }

/* ---------------- Üst bar ---------------- */
.topbar { background: var(--color-dark); color: #c7d2de; font-size: .85rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 9px 20px; gap: 16px; }
.topbar a { color: #c7d2de; }
.topbar a:hover { color: #fff; }
.topbar-left { display: flex; gap: 26px; align-items: center; }
.topbar-social { display: flex; gap: 8px; }
.topbar-social a {
    width: 26px; height: 26px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.12); color: #fff; font-weight: 700; font-size: .9rem;
}
.topbar-social a:hover { background: var(--color-primary); text-decoration: none; }

/* ---------------- Header ---------------- */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 20px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--color-dark); }
.brand:hover { text-decoration: none; }
.brand-mark {
    display: inline-flex; align-items: center; justify-content: center;
    width: 52px; height: 52px; font-size: 1.6rem;
    background: linear-gradient(135deg, #f5a623, #e8590c); color: #fff;
    font-weight: 800; border-radius: 12px; box-shadow: 0 4px 12px rgba(232,89,12,.3);
}
.brand-logo { display: block; height: 64px; width: auto; max-width: 280px; object-fit: contain; }
.brand-has-logo { padding: 4px 0; }
.brand-footer .brand-logo { height: 54px; max-width: 220px; }
@media (max-width: 560px) { .brand-logo { height: 52px; max-width: 190px; } }
.brand-text strong { display: block; font-size: 1.15rem; line-height: 1.1; }
.brand-text small { color: var(--color-muted); letter-spacing: 2px; text-transform: uppercase; font-size: .64rem; }

.main-nav { display: flex; align-items: center; }
.nav-list { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.nav-list a { color: var(--color-dark); font-weight: 600; font-size: .9rem; padding: 6px 0; position: relative; letter-spacing: .3px; }
.nav-list a.active, .nav-list a:hover { color: var(--color-primary); text-decoration: none; }
.nav-list a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--color-primary); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--color-dark); }

/* Turuncu telefon pill (header CTA) */
.btn-phone-pill {
    white-space: nowrap; color: #fff; font-weight: 700; font-size: 1rem;
    padding: 13px 26px; border-radius: 999px;
    background: linear-gradient(135deg, #f5a623, #e8590c);
    box-shadow: 0 6px 16px rgba(232,89,12,.32);
}
.btn-phone-pill:hover { color: #fff; text-decoration: none; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(232,89,12,.4); }
.btn-phone-pill .phone-ico { margin-right: 4px; }

/* ---------------- Hero ---------------- */
.hero {
    position: relative;
    background:
        radial-gradient(circle at 75% 40%, rgba(31,58,95,.6), transparent 55%),
        linear-gradient(135deg, #0e1721 0%, #14202e 55%, #1a2a3d 100%);
    color: #fff;
    padding: 70px 0 80px;
    overflow: hidden;
}
.hero-overlay {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.hero-grid {
    position: relative; display: grid; grid-template-columns: 1fr 1.1fr;
    gap: 40px; align-items: center; min-height: 480px;
}
.hero-content { text-align: left; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(245,166,35,.12);
    border: 1px solid rgba(245,166,35,.5);
    color: #f5a623;
    padding: 9px 20px; border-radius: 999px; font-size: .9rem; font-weight: 600; margin-bottom: 26px;
}
.hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); margin: 0 0 22px; font-weight: 800; }
.hero h1 span { color: #f5a623; }
.hero p { font-size: 1.08rem; margin: 0 0 28px; opacity: .9; max-width: 560px; }
.hero-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 30px; font-size: .92rem; opacity: .95; flex-wrap: wrap; }
.hero-rating .stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 2px; }
.hero-rating .g-badge {
    width: 22px; height: 22px; border-radius: 50%; background: #fff; color: #4285f4;
    display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: .8rem;
}
.hero-actions { display: flex; gap: 14px; justify-content: flex-start; flex-wrap: wrap; }
.hero-actions .btn { text-transform: uppercase; letter-spacing: .3px; }

/* Hero kamyon görseli */
.hero-visual { position: relative; }
.truck-svg { width: 100%; height: auto; filter: drop-shadow(0 20px 30px rgba(0,0,0,.4)); }
.home-builder-image.truck-svg { aspect-ratio: 620 / 380; object-fit: contain; border-radius: 18px; }

/* ---------------- Bölümler ---------------- */
.section { padding: 72px 0; }
.section-alt { background: var(--color-bg-alt); }
.section-title { text-align: center; margin: 0 0 12px; font-size: clamp(1.6rem, 3vw, 2.1rem); }
.section-subtitle { text-align: center; color: var(--color-muted); margin: 0 auto 48px; max-width: 620px; }

/* ---------------- Hizmet kartları ---------------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.service-card {
    display: block; background: #fff; border: 1px solid var(--color-border);
    border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow);
    transition: transform .15s, box-shadow .15s; color: var(--color-dark);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); text-decoration: none; }
.service-card .icon {
    width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
    background: rgba(232,89,12,.1); border-radius: 14px; font-size: 1.6rem; margin-bottom: 16px;
}
.service-card h3 { margin: 0 0 10px; font-size: 1.15rem; }
.service-card p { margin: 0 0 14px; color: var(--color-muted); }
.service-card .card-link { color: var(--color-primary); font-weight: 600; font-size: .9rem; }

/* ---------------- Güven şeridi ---------------- */
.trust-banner { background: var(--color-primary); color: #fff; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 30px; padding: 26px 20px; flex-wrap: wrap; text-align: center; }
.trust-item strong { display: block; font-size: 1.15rem; }
.trust-item span { opacity: .9; font-size: .9rem; }
.trust-sep { width: 1px; height: 40px; background: rgba(255,255,255,.3); }

/* ---------------- Prensipler ---------------- */
.principles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.principle-card { display: flex; gap: 16px; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.principle-card .p-icon { font-size: 1.8rem; flex-shrink: 0; }
.principle-card h3 { margin: 0 0 6px; font-size: 1.05rem; }
.principle-card p { margin: 0; color: var(--color-muted); font-size: .95rem; }

/* ---------------- İstatistikler ---------------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 30px; text-align: center; }
.feature .num { font-size: 2.6rem; font-weight: 800; color: var(--color-primary); }
.feature p { color: var(--color-muted); margin: 6px 0 0; }

/* ---------------- Neden biz ---------------- */
.whyus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.whyus-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow); text-align: center; }
.whyus-card .w-icon { font-size: 2.4rem; margin-bottom: 12px; }
.whyus-card h3 { margin: 0 0 10px; font-size: 1.1rem; }
.whyus-card p { margin: 0; color: var(--color-muted); }

/* ---------------- Fiyat hesaplama ---------------- */
.calc-card { max-width: 900px; margin: 0 auto; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-lg); }
.calc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin-bottom: 22px; }
.calc-result { text-align: center; background: var(--color-bg-alt); border-radius: var(--radius); padding: 22px; margin-bottom: 22px; }
.calc-result span { display: block; color: var(--color-muted); font-size: .9rem; }
.calc-result strong { display: block; font-size: 2rem; color: var(--color-primary); margin: 4px 0; }
.calc-result small { color: var(--color-muted); font-size: .78rem; }
.calc-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------- SSS akordeon ---------------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; }
.faq-item summary {
    cursor: pointer; padding: 18px 22px; font-weight: 600; list-style: none;
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--color-primary); transition: transform .2s; }
.faq-item[open] summary::after { content: "−"; }
.faq-answer { padding: 0 22px 20px; color: var(--color-muted); }

/* ---------------- Sayfa hero (alt sayfalar) ---------------- */
.page-hero { background: linear-gradient(135deg, #14202e, #1f3a5f); color: #fff; padding: 60px 0; text-align: center; }
.page-hero h1 { margin: 0 0 10px; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.page-hero p { margin: 0; opacity: .9; }

/* ---------------- İçerik metni ---------------- */
.prose p { margin: 0 0 18px; }
.prose h2 { margin: 32px 0 12px; font-size: 1.35rem; }

/* ---------------- Hizmet detay ---------------- */
.service-detail-list { display: flex; flex-direction: column; gap: 22px; }
.service-detail { display: flex; gap: 22px; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); scroll-margin-top: 120px; }
.service-detail .sd-icon { font-size: 2.6rem; flex-shrink: 0; width: 70px; height: 70px; display: flex; align-items: center; justify-content: center; background: rgba(232,89,12,.1); border-radius: 16px; }
.service-detail h2 { margin: 0 0 10px; font-size: 1.3rem; }
.service-detail p { margin: 0; color: var(--color-muted); }

/* ---------------- Blog ---------------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.blog-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.blog-thumb { height: 140px; display: flex; align-items: center; justify-content: center; font-size: 3rem; background: var(--color-bg-alt); }
.blog-body { padding: 22px; }
.blog-body h3 { margin: 0 0 10px; font-size: 1.1rem; }
.blog-body p { margin: 0 0 10px; color: var(--color-muted); }
.blog-body small { color: var(--color-primary); }

/* ---------------- İletişim ---------------- */
.contact-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.contact-form-wrap { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.contact-form-wrap h2, .contact-info h2 { margin-top: 0; }
.form-row { display: flex; gap: 16px; }
.form-row .form-group { flex: 1; }
.contact-info { background: var(--color-accent); color: #fff; border-radius: var(--radius); padding: 32px; }
.contact-info-list { list-style: none; padding: 0; margin: 0 0 24px; }
.contact-info-list li { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-info-list .ci-icon { font-size: 1.3rem; }
.contact-info-list small { display: block; opacity: .7; font-size: .8rem; }
.contact-info-list a, .contact-info-list span { color: #fff; }

/* ---------------- CTA şerit ---------------- */
.cta-strip { background: var(--color-primary); color: #fff; }
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 40px 20px; flex-wrap: wrap; }
.cta-strip h2 { margin: 0 0 6px; }
.cta-strip p { margin: 0; opacity: .95; }
.cta-strip-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--color-dark); color: #c7d2de; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 34px; padding: 56px 20px 36px; }
.brand-footer { color: #fff; margin-bottom: 14px; }
.brand-footer .brand-text small { color: #8ea0b4; }
.site-footer h4 { color: #fff; margin: 0 0 14px; }
.site-footer p { margin: 0; font-size: .92rem; }
.site-footer a { color: #c7d2de; }
.site-footer a:hover { color: #fff; }
.footer-contact, .footer-links { list-style: none; padding: 0; margin: 0; }
.footer-contact li, .footer-links li { margin-bottom: 9px; font-size: .92rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; font-size: .88rem; text-align: center; }
.footer-bottom p { margin: 0; }

/* ---------------- Yüzen butonlar (sol alt) ---------------- */
.float-actions { position: fixed; left: 22px; bottom: 22px; display: flex; flex-direction: column; gap: 12px; z-index: 60; }
.float-btn {
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
    color: #fff; box-shadow: 0 6px 18px rgba(0,0,0,.28);
}
.float-btn:hover { text-decoration: none; transform: scale(1.07); }
.float-phone { background: linear-gradient(135deg, #f5a623, #e8590c); }
.float-whatsapp { background: var(--color-whatsapp); }

/* ---------------- Formlar / uyarılar ---------------- */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; }
.alert-error { background: #fdecea; color: #b71c1c; border: 1px solid #f5c6cb; }
.alert-success { background: #e8f5e9; color: #1b5e20; border: 1px solid #c8e6c9; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; font-size: .92rem; }
.form-control {
    width: 100%; padding: 12px 14px; border: 1px solid var(--color-border);
    border-radius: var(--radius-sm); font-size: 1rem; font-family: inherit; background: #fff;
}
.form-control:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(232,89,12,.15); }
textarea.form-control { resize: vertical; }

/* ---------------- Auth kart (admin/login) ---------------- */
.auth-wrap { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; background: var(--color-bg-alt); }
.auth-card { background: #fff; padding: 40px; border-radius: 14px; box-shadow: var(--shadow); width: 100%; max-width: 400px; }
.auth-card h1 { text-align: center; font-size: 1.5rem; margin: 0 0 6px; }
.auth-card .sub { text-align: center; color: var(--color-muted); margin: 0 0 26px; }

/* ---------------- Admin panel ---------------- */
.admin-topbar { background: var(--color-dark); color: #fff; padding: 14px 0; }
.admin-topbar .container { display: flex; align-items: center; justify-content: space-between; }
.admin-topbar a { color: #fff; }
.admin-content { padding: 40px 0; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 20px; margin-bottom: 30px; }
.stat-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.stat-card .stat-num { font-size: 2rem; font-weight: 800; color: var(--color-primary); }
.stat-card .stat-label { color: var(--color-muted); }
.admin-body { background: var(--color-bg-alt); }
.admin-heading { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 24px; }
.admin-heading h1 { margin: 5px 0 2px; }
.admin-heading p { margin: 0; color: var(--color-muted); }
.admin-back { font-size: .9rem; font-weight: 700; }
.admin-total { padding: 9px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--color-border); font-weight: 700; white-space: nowrap; }
.admin-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.admin-filters a { padding: 8px 14px; border: 1px solid var(--color-border); border-radius: 999px; background: #fff; color: var(--color-dark); font-weight: 600; font-size: .9rem; }
.admin-filters a:hover, .admin-filters a.active { color: #fff; background: var(--color-primary); border-color: var(--color-primary); text-decoration: none; }
.request-list { display: grid; gap: 18px; }
.request-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px; }
.request-card-head { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.request-card-head h2 { display: inline; margin: 0 8px; font-size: 1.15rem; }
.request-card-head time, .request-id { color: var(--color-muted); font-size: .85rem; }
.status-badge { display: inline-block; padding: 4px 9px; border-radius: 999px; font-size: .72rem; font-weight: 800; }
.status-new { background: #fff3cd; color: #7a5700; }
.status-contacted { background: #dbeafe; color: #174ea6; }
.status-closed { background: #e8edf2; color: #465564; }
.request-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; padding: 16px 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.request-details div { min-width: 0; }
.request-details span { display: block; color: var(--color-muted); font-size: .76rem; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 3px; }
.request-details a, .request-details strong { overflow-wrap: anywhere; }
.request-details em { color: var(--color-muted); }
.request-message { margin-top: 16px; padding: 14px 16px; border-left: 3px solid var(--color-primary); background: var(--color-bg-alt); border-radius: 0 8px 8px 0; color: #384552; }
.request-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; margin-top: 16px; }
.request-actions label { font-weight: 700; font-size: .9rem; }
.request-actions .form-control { width: auto; min-width: 180px; }
.request-actions .btn { padding: 12px 18px; }
.admin-empty { text-align: center; background: #fff; border: 1px dashed var(--color-border); border-radius: var(--radius); padding: 60px 20px; }
.admin-empty span { font-size: 2.5rem; }
.admin-empty h2 { margin: 8px 0 4px; }
.admin-empty p { margin: 0; color: var(--color-muted); }
.pagination { display: flex; justify-content: center; gap: 7px; margin-top: 24px; }
.pagination a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 8px; background: #fff; border: 1px solid var(--color-border); color: var(--color-dark); font-weight: 700; }
.pagination a.active, .pagination a:hover { background: var(--color-primary); border-color: var(--color-primary); color: #fff; text-decoration: none; }
.admin-actions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.admin-action-card { display: flex; align-items: center; gap: 16px; padding: 22px; border-radius: var(--radius); border: 1px solid var(--color-border); background: #fff; box-shadow: var(--shadow); color: var(--color-dark); }
.admin-action-card:hover { text-decoration: none; border-color: var(--color-primary); transform: translateY(-2px); }
.admin-action-card > div { flex: 1; }
.admin-action-card h3 { margin: 0 0 5px; }
.admin-action-card p { margin: 0; color: var(--color-muted); font-size: .9rem; }
.admin-action-icon { font-size: 2rem; }
.admin-action-card.is-disabled { opacity: .65; }

/* ---------------- Responsive ---------------- */
@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; min-height: 0; }
    .hero-content { text-align: center; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-badge, .hero-rating, .hero-actions { justify-content: center; }
    .hero-visual { max-width: 520px; margin: 10px auto 0; }
}
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
    .topbar-left { gap: 14px; }
    .topbar-mail { display: none; }
    .nav-toggle { display: block; }
    .main-nav { position: relative; }
    .nav-list {
        display: none; position: absolute; top: calc(100% + 14px); right: 0;
        min-width: 230px; background: #fff; flex-direction: column; gap: 0;
        padding: 8px 16px; box-shadow: var(--shadow-lg); border-radius: var(--radius-sm);
    }
    .nav-list.open { display: flex; }
    .nav-list a { color: var(--color-dark); }
    .nav-list li { padding: 10px 0; border-bottom: 1px solid var(--color-border); }
    .nav-list li:last-child { border-bottom: none; }
    .btn-phone-pill { display: none; }
    .trust-sep { display: none; }
    .cta-strip-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 560px) {
    .topbar-addr { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { flex-direction: column; gap: 0; }
    .service-detail { flex-direction: column; }
    .admin-topbar .container, .admin-heading { align-items: flex-start; flex-direction: column; }
    .request-details { grid-template-columns: 1fr; }
    .request-actions { align-items: stretch; flex-direction: column; }
    .request-actions .form-control { width: 100%; }
}

/* =====================================================================
   GELİŞTİRMELER: efektler, animasyonlar, marquee, kart tasarımı
   ===================================================================== */

/* ---- Gezinen sarı ışık (glow) ---- */
.hero-glow, .intro-glow {
    position: absolute; width: 420px; height: 420px; border-radius: 50%;
    background: radial-gradient(circle, rgba(245,166,35,.35), rgba(245,166,35,0) 70%);
    filter: blur(30px); pointer-events: none; z-index: 0;
}
.hero-glow { top: 10%; right: 8%; animation: floatGlow 9s ease-in-out infinite; }
.intro-glow { bottom: -80px; left: -60px; width: 340px; height: 340px;
    background: radial-gradient(circle, rgba(245,166,35,.22), rgba(245,166,35,0) 70%);
    animation: floatGlow 11s ease-in-out infinite reverse; }
@keyframes floatGlow {
    0%   { transform: translate(0, 0) scale(1); opacity: .9; }
    50%  { transform: translate(-40px, 30px) scale(1.15); opacity: 1; }
    100% { transform: translate(0, 0) scale(1); opacity: .9; }
}
.hero-grid { z-index: 1; }

/* ---- Kayan hizmet şeridi (marquee) ---- */
.marquee {
    background: var(--color-dark); color: #fff; overflow: hidden;
    border-top: 3px solid #f5a623; border-bottom: 3px solid #f5a623;
    padding: 14px 0; white-space: nowrap;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track { display: flex; width: max-content; align-items: center; animation: marquee 28s linear infinite; will-change: transform; }
.marquee-group { display: flex; flex: 0 0 auto; align-items: center; gap: 22px; padding-right: 22px; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: .95rem; letter-spacing: .5px; }
.marquee-item .mi-icon { color: #f5a623; font-size: 1.15rem; }
.marquee-dot { color: #f5a623; font-size: 1.2rem; }
@keyframes marquee { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }

/* ---- Başlık alt çizgisi ---- */
.heading-underline { position: relative; padding-bottom: 18px; margin-bottom: 40px; }
.heading-underline::after {
    content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
    width: 70px; height: 4px; border-radius: 3px; background: #f5a623;
}

/* ---- Ortak hover-lift animasyonu ---- */
.hover-lift { transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.hover-lift:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

@media (prefers-reduced-motion: reduce) {
    .hero-glow, .intro-glow { animation: none; }
    .hover-lift { transition: none; }
}

/* ---- Tanıtım bölümü (En Uygun Nakliye) ---- */
.intro-section { position: relative; overflow: hidden; }
.intro-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.intro-text h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin: 0 0 20px; }
.intro-text h2 span { color: var(--color-primary); }
.intro-highlight {
    border-left: 4px solid var(--color-primary); background: #fff6ec;
    padding: 14px 18px; border-radius: 0 8px 8px 0; font-weight: 700; color: var(--color-dark);
    margin-bottom: 22px;
}
.intro-text p { color: var(--color-muted); margin: 0 0 16px; }
.check-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
.check-list li { position: relative; padding-left: 30px; font-weight: 600; color: var(--color-dark); }
.check-list li::before {
    content: "✓"; position: absolute; left: 0; top: 0;
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--color-primary); color: #fff; font-size: .72rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}
.intro-card {
    border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg);
    border: 5px solid #fff; outline: 2px solid #f5a623; outline-offset: -2px;
    transition: transform .3s ease;
}
.intro-card:hover { transform: translateY(-6px) rotate(-.5deg); }
.scene-svg { display: block; width: 100%; height: auto; }
.home-builder-image.scene-svg { aspect-ratio: 500 / 460; object-fit: cover; }

/* ---- Prensip kartları (sol turuncu şerit) ---- */
.principle-card { border-left: 4px solid var(--color-primary); }
.principle-card .p-icon {
    width: 48px; height: 48px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(245,166,35,.14); border-radius: 12px; font-size: 1.5rem;
}

/* ---- Şık hizmet kartları (medya + hover) ---- */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.svc-card {
    display: flex; flex-direction: column; background: #fff; border: 1px solid var(--color-border);
    border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); color: var(--color-dark);
    border-bottom: 3px solid transparent;
}
.svc-card:hover { text-decoration: none; border-bottom-color: var(--color-primary); }
.svc-media {
    height: 160px; display: flex; align-items: center; justify-content: center;
    background:
        radial-gradient(circle at 30% 30%, rgba(245,166,35,.35), transparent 60%),
        linear-gradient(135deg, #1f3a5f, #14202e);
    position: relative; overflow: hidden;
}
.svc-media::after {
    content: ""; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 26px 26px;
}
.svc-media-icon { position: relative; font-size: 3.4rem; z-index: 1; transition: transform .25s ease; filter: drop-shadow(0 6px 10px rgba(0,0,0,.3)); }
.svc-card:hover .svc-media-icon { transform: scale(1.15) translateY(-2px); }
.svc-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.svc-card-body h3 { margin: 0 0 10px; font-size: 1.15rem; }
.svc-card-body p { margin: 0 0 16px; color: var(--color-muted); flex: 1; }
.svc-card-body .card-link { color: var(--color-primary); font-weight: 700; font-size: .9rem; }

/* ---- Geliştirmeler: responsive ---- */
@media (max-width: 900px) {
    .intro-grid { grid-template-columns: 1fr; gap: 34px; }
    .intro-visual { order: -1; }
}
@media (max-width: 560px) {
    .check-list { grid-template-columns: 1fr; }
    .marquee-track { animation-duration: 20s; }
}

/* =====================================================================
   DETAY SAYFALARI, SEO, KOYU BÖLÜMLER
   ===================================================================== */

.container-wide { max-width: 1000px; }

/* ---- Breadcrumb ---- */
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: .88rem; margin-bottom: 18px; opacity: .95; }
.breadcrumb a { color: #ffd9b3; }
.breadcrumb .current { color: #fff; font-weight: 600; }
.breadcrumb span { opacity: .7; }

/* ---- Hizmet detay sayfa hero ---- */
.page-hero-service .page-hero-icon {
    width: 74px; height: 74px; margin: 6px auto 14px; border-radius: 18px;
    display: flex; align-items: center; justify-content: center; font-size: 2.4rem;
    background: rgba(245,166,35,.18); border: 1px solid rgba(245,166,35,.4);
}
.page-hero-service .breadcrumb { justify-content: center; }

/* ---- Detay yerleşim ---- */
.detail-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.detail-article { min-width: 0; }
.detail-article h2 { font-size: 1.5rem; margin: 32px 0 14px; color: var(--color-dark); }
.detail-article h3 { font-size: 1.18rem; margin: 24px 0 10px; color: var(--color-accent); }
.detail-article p { margin: 0 0 16px; color: #384552; }
.detail-article ul { margin: 0 0 18px; padding-left: 22px; color: #384552; }
.detail-article ul li { margin-bottom: 8px; }
.detail-article > *:first-child { margin-top: 0; }

/* Adım listesi */
.steps-ol { list-style: none; padding: 0; margin: 0 0 24px; counter-reset: step; display: grid; gap: 12px; }
.steps-ol li { display: flex; align-items: center; gap: 14px; background: var(--color-bg-alt); border-radius: 10px; padding: 14px 18px; font-weight: 600; color: var(--color-dark); }
.steps-ol .step-no { width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%; background: var(--color-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .9rem; }

/* Makale içi CTA */
.article-cta { margin-top: 30px; background: linear-gradient(135deg, #1f3a5f, #14202e); color: #fff; border-radius: 14px; padding: 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.article-cta h3 { margin: 0 0 6px; color: #fff; }
.article-cta p { margin: 0; opacity: .9; }
.article-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Yan panel */
.detail-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 96px; }
.sidebar-box { background: #fff; border: 1px solid var(--color-border); border-radius: 14px; padding: 22px; box-shadow: var(--shadow); }
.sidebar-box h3 { margin: 0 0 14px; font-size: 1.05rem; }
.benefit-list, .sidebar-links { list-style: none; padding: 0; margin: 0; }
.benefit-list li { position: relative; padding-left: 26px; margin-bottom: 10px; color: #384552; }
.benefit-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 18px; height: 18px; border-radius: 50%; background: var(--color-primary); color: #fff; font-size: .68rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.sidebar-links li { margin-bottom: 4px; }
.sidebar-links a { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 8px; color: var(--color-dark); font-weight: 500; }
.sidebar-links a:hover { background: var(--color-bg-alt); color: var(--color-primary); text-decoration: none; }
.sidebar-cta { background: linear-gradient(135deg, #1f3a5f, #14202e); color: #fff; text-align: center; }
.sidebar-cta h3 { color: #fff; }
.sidebar-cta p { font-size: 1.4rem; font-weight: 800; color: #f5a623; margin: 0 0 14px; }

/* ---- 2 sütun SSS ---- */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }

/* ---- Neden biz: turuncu daire ikon ---- */
.whyus-card .w-icon {
    width: 64px; height: 64px; margin: 0 auto 14px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
    background: linear-gradient(135deg, #f5a623, #e8590c); color: #fff;
    box-shadow: 0 6px 16px rgba(232,89,12,.3);
}

/* ---- Koyu fiyat hesaplama bölümü ---- */
.calc-section { position: relative; overflow: hidden; background: linear-gradient(135deg, #14202e, #1f3a5f); color: #fff; }
.calc-glow { position: absolute; top: -60px; right: 10%; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(245,166,35,.25), transparent 70%); filter: blur(30px); animation: floatGlow 10s ease-in-out infinite; }
.calc-section .container { position: relative; z-index: 1; }
.calc-heading { color: #fff; }
.calc-heading span { color: #f5a623; }
.calc-sub { color: #c7d2de; }

/* ---- Koyu alt CTA ---- */
.cta-dark { position: relative; overflow: hidden; background: linear-gradient(135deg, #14202e, #1a2a3d); color: #fff; padding: 60px 0; text-align: center; }
.cta-dark-glow { position: absolute; bottom: -80px; left: 50%; transform: translateX(-50%); width: 500px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(245,166,35,.2), transparent 70%); filter: blur(40px); animation: floatGlow 12s ease-in-out infinite; }
.cta-dark-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.cta-dark h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 0 0 14px; }
.cta-dark h2 span { color: #f5a623; }
.cta-dark p { opacity: .9; margin: 0 auto 26px; max-width: 620px; }
.cta-dark-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- SEO makale ---- */
.seo-article h2 { font-size: 1.7rem; margin: 0 0 16px; }
.seo-article h3 { font-size: 1.2rem; margin: 26px 0 10px; color: var(--color-accent); }
.seo-article p { color: #384552; margin: 0 0 16px; line-height: 1.8; }

/* ---- Detay responsive ---- */
@media (max-width: 900px) {
    .detail-layout { grid-template-columns: 1fr; }
    .detail-sidebar { position: static; }
    .faq-grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   İLETİŞİM SAYFASI
   ===================================================================== */
.contact-hero { padding-bottom: 120px; }
.contact-cards-section { margin-top: -90px; padding-top: 0; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card {
    background: #fff; border: 1px solid var(--color-border); border-radius: 18px;
    padding: 34px 24px; text-align: center; box-shadow: var(--shadow-lg);
    border-bottom: 4px solid var(--color-primary);
}
.contact-card .cc-icon {
    width: 68px; height: 68px; margin: 0 auto 16px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
    background: rgba(245,166,35,.14); color: var(--color-primary);
}
.contact-card h3 { margin: 0 0 12px; font-size: 1.2rem; }
.contact-card .cc-main { display: block; font-size: 1.1rem; font-weight: 700; color: var(--color-dark); margin-bottom: 4px; }
.contact-card .cc-main:hover { color: var(--color-primary); text-decoration: none; }
.contact-card .cc-addr { display: block; color: var(--color-dark); font-weight: 600; margin-bottom: 6px; }
.contact-card small { display: block; color: var(--color-muted); margin-top: 8px; font-size: .85rem; }

.benefit-list-light li { color: #eaf0f6; }
.benefit-list-light li::before { background: #fff; color: var(--color-accent); }

/* Harita */
.map-wrap {
    border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg);
    border: 5px solid #fff; outline: 2px solid var(--color-primary); outline-offset: -2px;
    line-height: 0;
}
.map-wrap iframe { display: block; width: 100%; }

@media (max-width: 820px) {
    .contact-cards { grid-template-columns: 1fr; }
    .contact-cards-section { margin-top: -70px; }
}

/* =====================================================================
   BLOG (kart + detay)
   ===================================================================== */
.blog-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--color-border); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.blog-thumb {
    position: relative; height: 190px; display: flex; align-items: center; justify-content: center;
    background: radial-gradient(circle at 30% 30%, rgba(245,166,35,.35), transparent 60%), linear-gradient(135deg, #1f3a5f, #14202e);
    overflow: hidden;
}
.blog-thumb::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 26px 26px; }
.blog-thumb-icon { position: relative; z-index: 1; font-size: 3rem; filter: drop-shadow(0 6px 10px rgba(0,0,0,.3)); }
.blog-cat { position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--color-primary); color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.blog-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { color: var(--color-muted); font-size: .82rem; margin-bottom: 10px; }
.blog-body h3 { margin: 0 0 10px; font-size: 1.15rem; line-height: 1.35; }
.blog-body h3 a { color: var(--color-dark); }
.blog-body h3 a:hover { color: var(--color-primary); text-decoration: none; }
.blog-body p { margin: 0 0 16px; color: var(--color-muted); flex: 1; }
.read-more { color: var(--color-primary); font-weight: 700; font-size: .92rem; }
.post-meta { opacity: .9; margin: 8px 0 0; }

/* ---- Yorumlar ---- */
.post-comments { margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--color-border); }
.post-comments > h2 { font-size: 1.4rem; margin: 0 0 22px; }
.comment-list { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 18px; }
.comment-item { display: flex; gap: 14px; }
.comment-avatar { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark)); }
.comment-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 4px; }
.comment-head strong { font-size: 1.02rem; }
.comment-head time { color: var(--color-muted); font-size: .8rem; }
.comment-item p { margin: 0; color: #384552; }
.comment-form-box { background: var(--color-bg-alt); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 26px; }
.comment-form-box h3 { margin: 0 0 16px; }
