/* ============================================================
   NOWSOFT — Kurumsal Beyaz Tema v2
   ============================================================ */
:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #eff6ff;
    --indigo: #4f46e5;
    --ink: #0b1224;
    --text: #3f4a5f;
    --muted: #64748b;
    --bg: #ffffff;
    --bg-soft: #f6f8fc;
    --border: #e5eaf2;
    --shadow-sm: 0 1px 3px rgba(11, 18, 36, 0.06);
    --shadow-md: 0 12px 32px rgba(11, 18, 36, 0.08);
    --shadow-lg: 0 26px 60px rgba(37, 99, 235, 0.16);
    --gradient: linear-gradient(120deg, #2563eb, #4f46e5);
    --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* Dokunmatik davranış: yalnızca dikey kaydırmaya izin ver.
   Çift dokunma yakınlaştırması, pinch ve yatay sürükleme engellenir.
   touch-action kalıtımla geçmediği için tüm öğelere uygulanır (harita hariç). */
*:not(iframe) { touch-action: pan-y; }
/* overflow-x: hidden yerine clip — hidden, html/body'yi kaydırma kabına
   çevirip position:sticky header'ı bozuyor; clip bunu yapmaz. */
html, body { overflow-x: clip; overscroll-behavior-x: none; }

body {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

h1, h2, h3, h4 { color: var(--ink); font-weight: 700; letter-spacing: -0.02em; line-height: 1.25; }
img, svg { max-width: 100%; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Akıcı giriş animasyonları ---------- */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* ---------- Üst bilgi çubuğu ---------- */
.topbar { background: var(--ink); color: #b9c3d6; font-size: 0.82rem; }
.topbar-wrap { display: flex; justify-content: space-between; align-items: center; min-height: 40px; gap: 16px; }
.topbar-info { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-info span { display: inline-flex; align-items: center; gap: 7px; }
/* Telefon bağlantısı, otomatik algılamanın mor rengine düşmesin */
.topbar-info a { color: inherit; text-decoration: none; }
.topbar-info a:hover { color: #60a5fa; }
.topbar-ico { width: 15px; height: 15px; color: #60a5fa; flex-shrink: 0; }
.topbar-social { display: flex; gap: 16px; }
.topbar-social a { color: #b9c3d6; text-decoration: none; font-weight: 600; transition: color 0.2s; }
.topbar-social a:hover { color: #60a5fa; }

/* ---------- Üst menü ---------- */
.site-header {
    position: sticky; top: 0; z-index: 200;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: box-shadow 0.3s, border-color 0.3s;
}
.site-header.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.logo { font-size: 1.5rem; font-weight: 800; letter-spacing: 0.01em; color: var(--ink); text-decoration: none; }
.logo span { color: var(--primary); }

.main-nav { display: flex; align-items: center; }
.main-nav a {
    color: var(--muted); text-decoration: none; margin-left: 28px;
    font-size: 0.94rem; font-weight: 600; position: relative; padding: 5px 0;
    transition: color 0.25s;
}
.main-nav a::after {
    content: ''; position: absolute; left: 0; bottom: -3px;
    width: 100%; height: 2.5px; background: var(--gradient); border-radius: 2px;
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a.nav-cta {
    background: var(--gradient); color: #fff; padding: 11px 24px; border-radius: 11px;
    box-shadow: 0 5px 16px rgba(37, 99, 235, 0.32);
    transition: transform 0.2s, box-shadow 0.2s;
}
.main-nav a.nav-cta::after { display: none; }
.main-nav a.nav-cta:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37, 99, 235, 0.42); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
    display: block; width: 24px; height: 2.5px; background: var(--ink);
    border-radius: 2px; margin: 5px 0; transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative; overflow: hidden;
    padding: 96px 0 88px;
    background:
        radial-gradient(760px 420px at 8% -12%, rgba(37, 99, 235, 0.09), transparent),
        radial-gradient(760px 420px at 95% 0%, rgba(79, 70, 229, 0.09), transparent),
        var(--bg);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 18px; border-radius: 999px;
    background: var(--primary-light); color: var(--primary);
    font-size: 0.84rem; font-weight: 700; letter-spacing: 0.02em;
    border: 1px solid #dbeafe; margin-bottom: 24px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.35); } 50% { box-shadow: 0 0 0 6px rgba(37, 99, 235, 0); } }
.hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); margin-bottom: 22px; }
.hero h1 .grad {
    background: var(--gradient);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p { color: var(--muted); font-size: 1.12rem; margin-bottom: 34px; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust .item { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 0.9rem; font-weight: 600; }
.hero-trust .item svg { width: 19px; height: 19px; color: #16a34a; }

.hero-visual { position: relative; }
.hero-visual > svg { width: 100%; height: auto; filter: drop-shadow(0 30px 50px rgba(11, 18, 36, 0.14)); }
.float { animation: float 6s ease-in-out infinite; }
.float-delay { animation: float 6s ease-in-out 1.6s infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Butonlar ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 14px 30px; border-radius: 12px;
    font-weight: 700; text-decoration: none; font-size: 0.98rem;
    border: none; cursor: pointer; font-family: inherit;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--gradient); color: #fff; box-shadow: 0 7px 20px rgba(37, 99, 235, 0.32); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(37, 99, 235, 0.42); }
.btn-outline { border: 1.5px solid var(--border); color: var(--ink); background: #fff; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--primary); box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22); }

/* ---------- Teknoloji şeridi ---------- */
.tech-band { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-soft); padding: 26px 0; overflow: hidden; }
.tech-band .label { text-align: center; color: var(--muted); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 18px; }
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 14px; width: max-content; animation: marquee 45s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
/* Sola doğru yavaş ve kesintisiz akış */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tech-chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 20px; border-radius: 999px;
    background: #fff; border: 1px solid var(--border);
    color: var(--ink); font-weight: 700; font-size: 0.9rem; white-space: nowrap;
    box-shadow: var(--shadow-sm);
}
.tech-chip .tdot { width: 9px; height: 9px; border-radius: 50%; background: var(--gradient); }

/* ---------- Bölümler ---------- */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-soft); }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head.left { text-align: left; margin-bottom: 36px; }
.section-head .eyebrow {
    display: inline-block; color: var(--primary); font-weight: 800;
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.35rem); margin-bottom: 14px; }
.section-head p { color: var(--muted); max-width: 600px; margin: 0 auto; font-size: 1.04rem; }
.section-head.left p { margin: 0; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }

/* ---------- Kartlar ---------- */
.card {
    display: flex; flex-direction: column;
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 34px 30px;
    box-shadow: var(--shadow-sm);
    text-decoration: none; color: inherit;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s, border-color 0.3s;
    position: relative; overflow: hidden;
}
.card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient); transform: scaleX(0); transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: #c7d8fb; }
.card:hover::before { transform: scaleX(1); }
.card .icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 60px; height: 60px; border-radius: 16px;
    background: var(--primary-light); color: var(--primary);
    margin-bottom: 20px; flex-shrink: 0;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}
.card .icon svg { width: 28px; height: 28px; }
.card:hover .icon { background: var(--gradient); color: #fff; transform: scale(1.06); }
.card h3 { font-size: 1.16rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.95rem; }
.card .tag {
    align-self: flex-start; font-size: 0.72rem; font-weight: 800;
    color: var(--primary); background: var(--primary-light);
    border-radius: 999px; padding: 5px 14px; margin-bottom: 16px;
    text-transform: uppercase; letter-spacing: 0.08em;
}
.card .more {
    display: inline-flex; align-items: center; gap: 7px;
    color: var(--primary); font-size: 0.92rem; font-weight: 700;
    margin-top: auto; padding-top: 18px; transition: gap 0.25s;
}
.card .more svg { width: 16px; height: 16px; }
.card:hover .more { gap: 12px; }

/* Referans kartı logo dairesi */
.ref-logo {
    width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--gradient); color: #fff;
    font-size: 1.4rem; font-weight: 800; margin-bottom: 18px;
}

/* ---------- Hakkımızda / özellik bölümü ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual { position: relative; }
.about-visual > svg { width: 100%; height: auto; }
.exp-badge {
    position: absolute; bottom: 26px; left: -14px;
    background: #fff; border: 1px solid var(--border); border-radius: 16px;
    padding: 16px 24px; box-shadow: var(--shadow-md);
    display: flex; align-items: center; gap: 14px;
}
.exp-badge .num {
    font-size: 2rem; font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.exp-badge .label { font-size: 0.86rem; color: var(--muted); font-weight: 600; line-height: 1.4; }

.check-list { list-style: none; margin: 22px 0; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 13px; color: var(--text); font-weight: 500; }
.check-ico { width: 21px; height: 21px; color: var(--primary); flex-shrink: 0; margin-top: 3px; }

/* ---------- Süreç adımları ---------- */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 26px; counter-reset: step; }
.process-step {
    position: relative; background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 34px 28px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.process-step .step-no {
    position: absolute; top: 22px; right: 26px;
    font-size: 2.6rem; font-weight: 800; line-height: 1;
    color: var(--primary-light);
    -webkit-text-stroke: 1.5px #bfdbfe;
}
.process-step .icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 54px; height: 54px; border-radius: 14px;
    background: var(--gradient); color: #fff; margin-bottom: 18px;
}
.process-step .icon svg { width: 25px; height: 25px; }
.process-step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.process-step p { color: var(--muted); font-size: 0.92rem; }

/* ---------- İstatistikler ---------- */
.stats-band { position: relative; background: var(--gradient); overflow: hidden; }
.stats-band::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(500px 260px at 85% 10%, rgba(255, 255, 255, 0.14), transparent);
}
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; text-align: center; padding: 64px 0; position: relative; }
.stat-item .num { font-size: 2.9rem; font-weight: 800; letter-spacing: -0.03em; color: #fff; }
.stat-item .num small { font-size: 1.8rem; }
.stat-item .label { color: rgba(255, 255, 255, 0.85); font-weight: 600; font-size: 0.95rem; }

/* ---------- Müşteri yorumları ---------- */
.testimonial-slider { max-width: 820px; margin: 0 auto; position: relative; }
.testimonial-track { position: relative; min-height: 300px; }
.testimonial {
    position: absolute; inset: 0;
    background: #fff; border: 1px solid var(--border); border-radius: 22px;
    padding: 46px 52px; box-shadow: var(--shadow-md);
    opacity: 0; transform: translateX(36px) scale(0.985); pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex; flex-direction: column;
}
.testimonial.active { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.testimonial .quote-mark { font-size: 3.4rem; line-height: 0.6; color: var(--primary); font-weight: 800; margin-bottom: 20px; font-family: Georgia, serif; }
.testimonial blockquote { font-size: 1.1rem; color: var(--ink); font-weight: 500; margin-bottom: 26px; }
.testimonial .who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testimonial .avatar {
    width: 50px; height: 50px; border-radius: 50%;
    background: var(--gradient); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.1rem;
}
.testimonial .who .name { font-weight: 700; color: var(--ink); font-size: 0.98rem; }
.testimonial .who .role { color: var(--muted); font-size: 0.86rem; }
.slider-dots { display: flex; justify-content: center; gap: 9px; margin-top: 28px; }
.slider-dots button {
    width: 10px; height: 10px; border-radius: 999px; border: none; cursor: pointer;
    background: #cbd5e1; transition: width 0.3s, background 0.3s; padding: 0;
}
.slider-dots button.active { width: 30px; background: var(--gradient); }

/* ---------- Blog kartları ---------- */
.post-card { padding: 0; overflow: hidden; }
.post-card .post-head {
    height: 150px; position: relative;
    background: linear-gradient(125deg, #1e3a8a, #2563eb 55%, #4f46e5);
    display: flex; align-items: flex-end; padding: 22px 28px;
}
.post-card .post-head::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(180px 120px at 82% 18%, rgba(255, 255, 255, 0.22), transparent),
        radial-gradient(140px 100px at 12% 90%, rgba(255, 255, 255, 0.1), transparent);
}
.post-card .post-head .tag { background: rgba(255, 255, 255, 0.16); color: #fff; backdrop-filter: blur(4px); margin: 0; position: relative; }
.post-card .post-body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.post-card .date { color: var(--muted); font-size: 0.82rem; font-weight: 600; margin-bottom: 10px; display: inline-flex; align-items: center; gap: 7px; }
.post-card .date svg { width: 15px; height: 15px; }
.post-card h3 { font-size: 1.12rem; margin-bottom: 10px; }

/* ---------- Yazı detay ---------- */
.article { max-width: 780px; margin: 0 auto; }
.article-head { text-align: center; margin-bottom: 42px; }
.article-head .tag {
    display: inline-block; font-size: 0.74rem; font-weight: 800;
    color: var(--primary); background: var(--primary-light);
    border-radius: 999px; padding: 5px 16px; margin-bottom: 18px;
    text-transform: uppercase; letter-spacing: 0.08em;
}
.article-head h1 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 16px; }
.article-head .meta { color: var(--muted); font-size: 0.92rem; font-weight: 600; }
.article-body p { margin-bottom: 22px; font-size: 1.04rem; }
.article-body .check-list li { font-size: 1.02rem; }

/* ---------- SSS Akordeon ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: #fff; border: 1px solid var(--border); border-radius: 15px;
    margin-bottom: 14px; overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item.open { border-color: #bfdbfe; box-shadow: var(--shadow-md); }
.faq-q {
    width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
    padding: 21px 26px; background: none; border: none; cursor: pointer;
    font-family: inherit; font-size: 1.02rem; font-weight: 700; color: var(--ink); text-align: left;
}
.faq-q .faq-ico {
    width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0;
    background: var(--primary-light); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; font-weight: 700; line-height: 1;
    transition: transform 0.35s, background 0.3s, color 0.3s;
}
.faq-item.open .faq-ico { transform: rotate(45deg); background: var(--gradient); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
.faq-a-inner { padding: 0 26px 24px; color: var(--muted); }

/* ---------- CTA bandı ---------- */
.cta-band {
    background: var(--gradient); border-radius: 26px;
    padding: 68px 52px; text-align: center;
    box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.cta-band::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(420px 220px at 82% 8%, rgba(255, 255, 255, 0.18), transparent),
        radial-gradient(300px 180px at 8% 95%, rgba(255, 255, 255, 0.1), transparent);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.25rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255, 255, 255, 0.88); max-width: 540px; margin: 0 auto 34px; font-size: 1.05rem; }

/* ---------- Sayfa başlığı (iç sayfalar) ---------- */
.page-hero {
    background:
        radial-gradient(640px 320px at 12% -30%, rgba(37, 99, 235, 0.1), transparent),
        radial-gradient(640px 320px at 90% -30%, rgba(79, 70, 229, 0.1), transparent),
        var(--bg-soft);
    border-bottom: 1px solid var(--border);
    padding: 72px 0; text-align: center;
}
.page-hero h1 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 12px; }
.page-hero p { color: var(--muted); max-width: 620px; margin: 0 auto; font-size: 1.06rem; }
.breadcrumb { color: var(--muted); font-size: 0.86rem; font-weight: 600; margin-bottom: 16px; }
.breadcrumb a { color: var(--primary); text-decoration: none; }

/* ---------- Hizmet detay ---------- */
.service-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.service-content h2 { font-size: 1.5rem; margin: 34px 0 16px; }
.service-content p { margin-bottom: 20px; font-size: 1.03rem; }
.service-sidebar { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 22px; }
.sidebar-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.sidebar-box h3 { font-size: 1.05rem; margin-bottom: 16px; }
.sidebar-box .service-link {
    display: flex; align-items: center; gap: 11px;
    padding: 11px 13px; border-radius: 11px; text-decoration: none;
    color: var(--text); font-weight: 600; font-size: 0.92rem;
    transition: background 0.2s, color 0.2s;
}
.sidebar-box .service-link svg { width: 19px; height: 19px; color: var(--primary); flex-shrink: 0; }
.sidebar-box .service-link:hover { background: var(--primary-light); color: var(--primary); }
.sidebar-box .service-link.current { background: var(--gradient); color: #fff; }
.sidebar-box .service-link.current svg { color: #fff; }
.sidebar-cta { background: var(--gradient); color: #fff; border: none; text-align: center; }
.sidebar-cta h3 { color: #fff; }
.sidebar-cta p { color: rgba(255, 255, 255, 0.88); font-size: 0.92rem; margin-bottom: 20px; }

/* ---------- Formlar ---------- */
.form-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 44px; box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: block; font-size: 0.88rem; font-weight: 700; color: var(--ink); margin: 18px 0 7px; }
input[type="text"], input[type="email"], input[type="password"], input[type="url"], input[type="number"], input[type="tel"], textarea, select {
    width: 100%; padding: 13px 16px; border-radius: 11px;
    background: var(--bg-soft); border: 1.5px solid var(--border);
    /* 16px altı yazı boyutu iOS'ta odaklanınca otomatik yakınlaştırma yapar */
    color: var(--ink); font-size: 1rem; font-family: inherit;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
input:focus, textarea:focus, select:focus {
    outline: none; border-color: var(--primary); background: #fff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}
textarea { min-height: 150px; resize: vertical; }
.form-card .btn { margin-top: 26px; }

.alert { padding: 15px 20px; border-radius: 12px; margin: 20px 0; font-size: 0.95rem; font-weight: 600; }
.alert-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d; }
.alert-error { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; }

/* ---------- İletişim ---------- */
.contact-layout { display: grid; grid-template-columns: 380px 1fr; gap: 40px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 18px; }
.contact-card {
    display: flex; gap: 18px; align-items: flex-start;
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 24px 26px; box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-card .icon {
    width: 50px; height: 50px; border-radius: 13px; flex-shrink: 0;
    background: var(--primary-light); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
}
.contact-card .icon svg { width: 23px; height: 23px; }
.contact-card h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-card p { color: var(--muted); font-size: 0.92rem; }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); margin-top: 48px; }
.map-wrap iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ---------- Alt bilgi ---------- */
.site-footer { background: var(--ink); color: #b9c3d6; margin-top: 96px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 0.9fr 1.3fr; gap: 44px; padding: 68px 24px 48px; }
.site-footer .logo { color: #fff; }
.site-footer .logo span { color: #60a5fa; }
.footer-about p { color: #94a3b8; font-size: 0.94rem; margin-top: 16px; max-width: 320px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
/* .footer-grid a kuralını ezmek için daha yüksek özgüllük gerekiyor */
.footer-grid .footer-social a {
    width: 40px; height: 40px; border-radius: 11px; margin-bottom: 0;
    background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex; align-items: center; justify-content: center; color: #b9c3d6;
    transition: background 0.25s, color 0.25s, transform 0.25s;
}
.footer-grid .footer-social a svg { width: 18px; height: 18px; display: block; flex-shrink: 0; }
.footer-grid .footer-social a:hover { background: var(--gradient); color: #fff; transform: translateY(-3px); padding-left: 0; }
.footer-grid h4 { color: #fff; margin-bottom: 18px; font-size: 1rem; }
.footer-grid a { display: block; color: #94a3b8; text-decoration: none; margin-bottom: 11px; font-size: 0.93rem; transition: color 0.25s, padding-left 0.25s; }
.footer-grid a:hover { color: #60a5fa; padding-left: 5px; }
.footer-grid p { color: #94a3b8; font-size: 0.93rem; margin-bottom: 13px; display: flex; gap: 10px; align-items: flex-start; }
.footer-ico { width: 17px; height: 17px; color: #60a5fa; flex-shrink: 0; margin-top: 4px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.footer-bottom-wrap { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding: 20px 24px; color: #64748b; font-size: 0.84rem; }

/* ================= Yönetim Paneli ================= */
.admin-body { background: var(--bg-soft); min-height: 100vh; font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif; }
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar { width: 244px; background: #fff; border-right: 1px solid var(--border); padding: 28px 0; flex-shrink: 0; }
.admin-sidebar .logo { display: block; padding: 0 26px 26px; }
.admin-sidebar a.nav-link {
    display: block; padding: 12px 26px; color: var(--muted);
    text-decoration: none; font-size: 0.94rem; font-weight: 600;
    border-left: 3px solid transparent;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.admin-sidebar a.nav-link:hover, .admin-sidebar a.nav-link.active {
    color: var(--primary); background: var(--primary-light); border-left-color: var(--primary);
}
.admin-content { flex: 1; padding: 40px; min-width: 0; }
.admin-content h1 { font-size: 1.6rem; margin-bottom: 26px; }

.table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
table { width: 100%; border-collapse: collapse; font-size: 0.93rem; }
th, td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--border); }
th { color: var(--muted); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; background: var(--bg-soft); }
tr:last-child td { border-bottom: none; }
tbody tr { transition: background 0.15s; }
tbody tr:hover { background: var(--bg-soft); }
td .btn-sm {
    display: inline-block; padding: 6px 14px; border-radius: 8px; font-size: 0.83rem;
    text-decoration: none; margin-right: 6px; border: 1px solid var(--border); color: var(--text);
    background: #fff; cursor: pointer; font-family: inherit; font-weight: 600;
    transition: border-color 0.2s, color 0.2s;
}
td .btn-sm:hover { border-color: var(--primary); color: var(--primary); }
td .btn-sm.danger:hover { border-color: #dc2626; color: #dc2626; }

.badge { padding: 4px 12px; border-radius: 999px; font-size: 0.76rem; font-weight: 700; white-space: nowrap; }
.badge-new { background: var(--primary-light); color: var(--primary); }
.badge-read { background: #f1f5f9; color: var(--muted); }

.admin-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 30px; margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}
.admin-card h2 { font-size: 1.15rem; margin-bottom: 8px; }

.login-box { max-width: 420px; margin: 12vh auto; padding: 0 24px; }
.login-box .admin-card { padding: 40px; box-shadow: var(--shadow-md); }
.login-box .logo { display: block; text-align: center; margin-bottom: 26px; font-size: 1.8rem; }

.dash-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px; margin-bottom: 32px; }
.dash-grid .num {
    font-size: 2.3rem; font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---------- Duyarlı tasarım ---------- */
@media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 44px; }
    .hero { text-align: center; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-actions, .hero-trust { justify-content: center; }
    .hero-visual { max-width: 560px; margin: 0 auto; }
    .about-grid { grid-template-columns: 1fr; gap: 44px; }
    .service-layout { grid-template-columns: 1fr; }
    .service-sidebar { position: static; }
    .contact-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
    .topbar-social { display: none; }
    .topbar-info { gap: 14px; font-size: 0.78rem; flex-wrap: nowrap; white-space: nowrap; overflow: hidden; }
    .nav-toggle { display: block; }
    /* Mobil menü: header'ın hemen altında açılan panel */
    .main-nav {
        position: absolute; top: 100%; left: 0; right: 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 24px 40px rgba(11, 18, 36, 0.12);
        flex-direction: column; align-items: stretch;
        padding: 8px 24px 20px;
        opacity: 0; visibility: hidden; transform: translateY(-12px);
        transition: opacity 0.3s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.3s;
        max-height: calc(100vh - 130px); overflow-y: auto;
    }
    .main-nav.open { opacity: 1; visibility: visible; transform: none; }
    .main-nav a { margin: 0; padding: 14px 2px; font-size: 1rem; border-bottom: 1px solid var(--border); }
    .main-nav a::after { display: none; }
    .main-nav a.nav-cta { margin-top: 14px; text-align: center; padding: 13px; border-bottom: none; }
}

@media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; }
    .section { padding: 64px 0; }
    .hero { padding: 64px 0 56px; }
    .cta-band { padding: 48px 26px; }
    .form-card { padding: 28px 22px; }
    .testimonial { padding: 32px 26px; }
    .admin-layout { flex-direction: column; }
    .admin-sidebar { width: 100%; }
    .admin-content { padding: 24px; }
    .exp-badge { left: 8px; padding: 12px 18px; }
    .footer-bottom-wrap { justify-content: center; text-align: center; }
}
