@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@500;600;700&display=swap');

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

body {
    font-family: "Inter", Arial, sans-serif;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    background:
        radial-gradient(circle at 10% 0%, #1c2440 0%, rgba(28,36,64,0) 45%),
        radial-gradient(circle at 90% 10%, #1a2b4a 0%, rgba(26,43,74,0) 50%),
        #0c1119;
    color: #e8eaee;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.topbar {
    background: #131721;
    font-size: 0.85rem;
    color: #9aa4b2;
}

.topbar-inner {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    padding: 10px 0;
    flex-wrap: wrap;
}

.nav-wrap {
    background: rgba(15, 17, 21, 0.9);
    border-bottom: 1px solid #1c2230;
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(8px);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(0, 180, 216, 0.15);
    border: 1px solid rgba(0, 180, 216, 0.45);
    font-size: 0.85rem;
    color: #cfefff;
    margin-bottom: 16px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav .cta {
    background: linear-gradient(135deg, #2f7df6, #00b4d8);
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 600;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid #2a3242;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
}

.hero {
    padding: 80px 0 60px;
    background: radial-gradient(circle at top, #1d2b4a, #0f1115 55%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: "Manrope", "Inter", sans-serif;
}

.hero p {
    color: #b5bfcd;
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.hero-badges span {
    background: #121722;
    border: 1px solid #1e2534;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    color: #aeb9c9;
}

.hero-stats {
    margin-top: 20px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.stat-pill {
    background: #101521;
    border: 1px solid #1f2635;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
    color: #d6dbe4;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(135deg, #2f7df6, #00b4d8);
    color: #fff;
}

.btn-ghost {
    border-color: #2a3242;
    color: #d6dbe4;
}

.hero-canvas {
    width: 100%;
    height: 420px;
    border-radius: 20px;
    background: linear-gradient(140deg, #141e2f, #0e121b);
    border: 1px solid #1f2635;
}

.hero-visual {
    position: relative;
    min-height: 320px;
    border-radius: 20px;
}

.floating-card {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: rgba(18, 23, 34, 0.95);
    border: 1px solid #273045;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    font-size: 0.9rem;
}

.glow {
    position: absolute;
    inset: -20px;
    border-radius: 28px;
    background: radial-gradient(circle, rgba(47,125,246,0.25), transparent 70%);
    z-index: -1;
}

.section {
    padding: 60px 0;
}

.section-dark {
    background: linear-gradient(180deg, #0f131d, #0b0f16);
}

.section-soft {
    background: linear-gradient(135deg, #121a29, #101522);
}

.section h2 {
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
    margin-bottom: 16px;
}

.section p.lead {
    color: #b5bfcd;
    margin-bottom: 32px;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.metric-card {
    background: #121722;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #1e2534;
    position: relative;
    overflow: hidden;
}

.metric-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0,180,216,0.18), transparent 55%);
    opacity: 0.6;
}

.metric-card span {
    font-size: 1.6rem;
    font-weight: 700;
    display: block;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: #121722;
    border: 1px solid #1e2534;
    padding: 24px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card h3 {
    margin-bottom: 8px;
}

.card p {
    color: #aab4c3;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0,180,216,0.2);
}

.card .tag {
    font-size: 0.8rem;
    color: #87a6ff;
    margin-bottom: 8px;
    display: inline-block;
}

.icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(47,125,246,0.35), rgba(0,180,216,0.35));
    display: grid;
    place-items: center;
    font-weight: 700;
    margin-bottom: 12px;
}

.map-section {
    background: #121722;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #1e2534;
}

.map-visual {
    height: 320px;
    border-radius: 16px;
    background: radial-gradient(circle at 20% 20%, #1b2a46, #0f1115 65%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9aa4b2;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.map-visual svg {
    width: 100%;
    height: 100%;
    opacity: 0.9;
}

.map-visual path {
    fill: rgba(0, 180, 216, 0.12);
    stroke: rgba(136, 212, 255, 0.65);
    stroke-width: 2;
}

.flow {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6ee7f5;
    box-shadow: 0 0 10px rgba(47,125,246,0.9);
    animation: flow 6s linear infinite;
}

.flow.delay-1 { animation-delay: 1s; }
.flow.delay-2 { animation-delay: 2s; }
.flow.delay-3 { animation-delay: 3s; }
.flow.delay-4 { animation-delay: 4s; }

@keyframes flow {
    0% { transform: translate(40px, 220px); opacity: 0; }
    20% { opacity: 1; }
    100% { transform: translate(420px, 120px); opacity: 0; }
}

.map-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #2f7df6;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(47,125,246,0.8);
    animation: pulse 2.8s infinite;
}

.map-dot::after {
    content: "";
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(47,125,246,0.5);
    border-radius: 50%;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.7; }
    70% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.7; }
}

.logo-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.logo-strip span {
    background: #0f131d;
    border: 1px solid #1e2534;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    color: #8f9bb0;
    font-size: 0.85rem;
}

.search-box {
    background: #121722;
    border: 1px solid #1e2534;
    border-radius: 16px;
    padding: 24px;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.search-form button {
    background: #2f7df6;
    border: none;
    color: #fff;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.timeline-item {
    background: #121722;
    border: 1px solid #1e2534;
    padding: 20px;
    border-radius: 16px;
}

.timeline-item strong {
    display: block;
    color: #87a6ff;
    margin-bottom: 6px;
}

.cta-band {
    background: linear-gradient(120deg, rgba(47,125,246,0.25), rgba(0,180,216,0.18));
    border: 1px solid rgba(0,180,216,0.3);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.faq {
    display: grid;
    gap: 12px;
}

.faq-item {
    background: #121722;
    border: 1px solid #1e2534;
    padding: 18px;
    border-radius: 12px;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.reveal-in {
    opacity: 1;
    transform: translateY(0);
}

.form {
    display: grid;
    gap: 16px;
}

.form input,
.form textarea,
.form select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #2a3242;
    background: #0f1115;
    color: #fff;
}

.form textarea {
    min-height: 120px;
}

.site-footer {
    background: #0b0d12;
    padding: 40px 0 20px;
    border-top: 1px solid #1c2230;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
}

.footer-grid a,
.footer-grid span {
    display: block;
    margin: 6px 0;
    color: #9aa4b2;
}

.footer-bottom {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    color: #6e7685;
    font-size: 0.85rem;
}

.sticky-cta {
    display: none;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .metrics,
    .grid-3,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .nav {
        display: none;
        flex-direction: column;
        background: #0f1115;
        position: absolute;
        right: 4%;
        top: 70px;
        padding: 16px;
        border-radius: 12px;
        border: 1px solid #1e2534;
    }
    .search-form {
        grid-template-columns: 1fr;
    }
    .logo-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    .timeline {
        grid-template-columns: 1fr;
    }
    .cta-band {
        flex-direction: column;
        text-align: center;
    }
    .nav.open {
        display: flex;
    }
    .nav-toggle {
        display: inline-flex;
    }
    .sticky-cta {
        display: block;
        position: fixed;
        bottom: 16px;
        right: 16px;
        left: 16px;
        z-index: 99;
    }
    .sticky-cta a {
        display: block;
        text-align: center;
        padding: 12px;
        background: #2f7df6;
        border-radius: 999px;
        color: #fff;
        font-weight: 600;
    }
}

/* Light theme overrides */
body {
    background:
        radial-gradient(circle at 10% 0%, rgba(53, 132, 255, 0.12), rgba(255,255,255,0) 45%),
        radial-gradient(circle at 90% 10%, rgba(0, 180, 216, 0.12), rgba(255,255,255,0) 50%),
        #f6f8fb;
    color: #1a2233;
}

.topbar { background: #e9eef6; color: #3e4b63; }
.topbar-pill {
    background: #fff;
    border: 1px solid #dbe4f0;
    padding: 6px 10px;
    border-radius: 999px;
}

.nav-wrap { background: rgba(255, 255, 255, 0.95); border-bottom: 1px solid #dbe4f0; }
.logo { color: #152036; }

.nav .cta { background: #f28c28; }
.btn-primary { background: #f28c28; }
.btn-ghost { border-color: #cfd8e5; color: #2a3a55; }

.nav-toggle { border-color: #cfd8e5; color: #1a2233; }

.nav-item { position: relative; }
.nav-link { background: transparent; border: none; font: inherit; color: inherit; cursor: pointer; }
.dropdown {
    position: absolute;
    top: 36px;
    left: 0;
    background: #ffffff;
    border: 1px solid #dbe4f0;
    border-radius: 12px;
    padding: 10px;
    display: none;
    min-width: 180px;
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.12);
    z-index: 20;
}
.dropdown a { display: block; padding: 8px 10px; border-radius: 8px; color: #1b2a44; }
.dropdown a:hover { background: #f0f4fb; }
.nav-item:hover .dropdown { display: block; }

.search { display: flex; align-items: center; gap: 6px; }
.search input { padding: 8px 12px; border-radius: 999px; border: 1px solid #cfd8e5; background: #fff; }
.search button { padding: 8px 14px; border-radius: 999px; border: none; background: #1f2f4a; color: #fff; }

.hero { background: radial-gradient(circle at top, rgba(47,125,246,0.08), rgba(255,255,255,0) 55%); }
.hero p { color: #4c5c73; }
.hero-canvas { background: linear-gradient(140deg, #e9f2ff, #f8fafc); border: 1px solid #dbe4f0; }
.hero-visual {
    background-image: url('https://images.unsplash.com/photo-7Ron3TLsQqY?auto=format&fit=crop&w=1400&q=80');
    background-size: cover;
    background-position: center;
}
.hero-canvas { display: none; }
.hero-badges span { background: #ffffff; border: 1px solid #dbe4f0; color: #3e4b63; }
.stat-pill { background: #ffffff; border: 1px solid #dbe4f0; color: #1f2f4a; }
.floating-card { background: #ffffff; border: 1px solid #dbe4f0; box-shadow: 0 20px 50px rgba(17, 24, 39, 0.12); }

.section p.lead { color: #4c5c73; }
.section-dark { background: #f7f9fd; }
.section-soft { background: #f2f6fb; }
.metric-card { background: #ffffff; border: 1px solid #dbe4f0; }
.card { background: #ffffff; border: 1px solid #dbe4f0; }
.card p { color: #4c5c73; }
.card:hover { box-shadow: 0 18px 40px rgba(17, 24, 39, 0.12), 0 0 0 1px rgba(47,125,246,0.15); }
.search-box { background: #ffffff; border: 1px solid #dbe4f0; }
.map-section { background: #ffffff; border: 1px solid #dbe4f0; }
.map-visual { background: radial-gradient(circle at 20% 20%, #e9f2ff, #f8fafc 65%); }
.map-visual path { fill: rgba(47,125,246,0.08); stroke: rgba(47,125,246,0.35); }
.metric-card::after { background: linear-gradient(120deg, rgba(47,125,246,0.12), transparent 55%); }
.logo-strip span { background: #ffffff; border: 1px solid #dbe4f0; color: #51607a; }
.faq-item { background: #ffffff; border: 1px solid #dbe4f0; }
.cta-band { background: linear-gradient(120deg, rgba(47,125,246,0.12), rgba(0,180,216,0.1)); border: 1px solid #dbe4f0; }

.form input, .form textarea, .form select { border: 1px solid #cfd8e5; background: #ffffff; color: #1a2233; }

/* Footer stilleri home.css içinde tüm sayfalarda aynı (koyu tema) */

/* Blog sayfası - site uyumlu arka plan */
body.page-blog .section-unified,
body.page-blog .page-hero { background: transparent; }
body.page-blog .section-unified { background: #f8f9fa; }
body.page-blog .section-unified:nth-of-type(even) { background: #fff; }

.social-cards { display: flex; gap: 10px; margin-top: 12px; }
.site-footer .social-cards a { padding: 8px 12px; border-radius: 999px; }
.footer-contact .footer-map iframe { width: 100%; height: 160px; border: 0; border-radius: 12px; }

/* Şikayet / Hızlı Sevkiyat butonları - sağ alt köşe */
.footer-fixed-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}
.sikayet-widget {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 20px rgba(37,211,102,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}
.hizli-sevkiyat-widget { background: #c41e3a; box-shadow: 0 10px 20px rgba(196,30,58,0.3); }
.hizli-sevkiyat-widget:hover { box-shadow: 0 12px 28px rgba(196,30,58,0.4); }
.sikayet-widget:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37,211,102,0.4); }
.sikayet-icon { font-size: 1.1rem; }
/* Hızlı Sevkiyat popup */
.hizli-sevkiyat-popup {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.hizli-sevkiyat-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    max-width: 320px;
    width: 100%;
    position: relative;
    box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.hizli-sevkiyat-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    background: #f1f3f5;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: #64748b;
}
.hizli-sevkiyat-close:hover { background: #e2e8f0; color: #0f172a; }
.hizli-sevkiyat-card h3 { margin: 0 0 16px; font-size: 1.25rem; }
.hizli-sevkiyat-name { font-weight: 600; margin: 0 0 4px; }
.hizli-sevkiyat-phone { margin: 0; }
.hizli-sevkiyat-phone a { color: #c41e3a; text-decoration: none; font-weight: 600; }
.wa-link { display: inline-block; margin-top: 8px; background: #25D366; color: #fff; padding: 8px 12px; border-radius: 999px; }

.image-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px; }
.image-card { background: #fff; border: 1px solid #dbe4f0; border-radius: 16px; overflow: hidden; box-shadow: 0 12px 30px rgba(17,24,39,0.08); }
.image-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.image-card .caption { padding: 12px; color: #3e4b63; font-weight: 600; }

.video-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #dbe4f0;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(17,24,39,0.12);
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Arıza/İade Takip - Footer üstü, tüm sayfalarda */
.home-tracking {
    padding: 60px 0;
    background: #0a0a0c;
    color: #fafafa;
}
.home-tracking .container { width: min(1200px, 92%); margin: 0 auto; }
.home-tracking .home-section-title { font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-bottom: 12px; }
.home-tracking .home-section-lead { color: #9ca3af; margin-bottom: 32px; }
.home-tracking-form { max-width: 560px; margin: 0 auto 40px; }
.home-tracking-inputs { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.home-tracking-inputs input { flex: 1; min-width: 160px; padding: 14px 18px; border: 1px solid #4b5563; border-radius: 8px; background: rgba(255,255,255,0.06); color: #fff; }
.home-tracking-or { color: #6b7280; font-size: 0.9rem; }
.home-tracking-btn { width: 100%; padding: 14px; background: #c41e3a; color: #fff; border: none; border-radius: 8px; font-weight: 600; cursor: pointer; }
.home-tracking-demo-label { color: #6b7280; font-size: 0.9rem; margin-bottom: 20px; text-align: center; }
.home-tracking-timeline { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.home-tracking-step { flex: 1; min-width: 120px; max-width: 180px; padding: 20px; background: rgba(255,255,255,0.05); border-radius: 12px; border: 1px solid rgba(255,255,255,0.08); }
.home-tracking-step-done { border-color: rgba(34,197,94,0.3); }
.home-tracking-step-active { border-color: #c41e3a; background: rgba(196,30,58,0.15); }
.home-tracking-step-dot { width: 10px; height: 10px; border-radius: 50%; background: #6b7280; margin-bottom: 12px; }
.home-tracking-step-done .home-tracking-step-dot { background: #22c55e; }
.home-tracking-step-active .home-tracking-step-dot { background: #c41e3a; }
.home-tracking-step-content strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.home-tracking-step-content span { font-size: 0.85rem; color: #9ca3af; }

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

/* Bülten abonelik - footer üstü */
.newsletter-section {
    background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.newsletter-inner {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}
.newsletter-title { font-size: 1.35rem; margin: 0 0 8px; color: #fff; }
.newsletter-desc { color: #9aa4b2; font-size: 0.95rem; margin: 0 0 20px; }
.newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.newsletter-input {
    flex: 1;
    min-width: 200px;
    padding: 12px 18px;
    border: 1px solid #2a3242;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 0.95rem;
}
.newsletter-input::placeholder { color: #6b7280; }
.newsletter-input:focus {
    outline: none;
    border-color: #c41e3a;
    background: rgba(255,255,255,0.08);
}
.newsletter-btn {
    padding: 12px 24px;
    background: #c41e3a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s;
}
.newsletter-btn:hover { background: #a01930; }
.newsletter-btn:disabled { opacity: 0.7; cursor: not-allowed; }
.newsletter-msg {
    margin-top: 16px;
    font-size: 0.9rem;
}
.newsletter-msg-ok { color: #76f3a1; }
.newsletter-msg-err { color: #ffb3b3; }

@media (max-width: 900px) {
    .nav.open .dropdown { position: static; display: block; box-shadow: none; border: none; padding: 0; }
    .nav.open .dropdown a { padding-left: 0; }
    .search { width: 100%; margin-top: 10px; }
}
