/* =====================================================================
   LACİVERT MEDİKAL — Ön Yüz Tasarım Sistemi
   Lacivert (navy) temalı, profesyonel, responsive medikal tema.
   ===================================================================== */

:root {
    --navy-900: #0a1c44;
    --navy-800: #0f2557;
    --navy-700: #16337a;
    --navy-600: #1e419b;
    --navy-500: #2b52bd;
    --brand:    #16337a;        /* ana lacivert (admin'den override edilebilir) */
    --brand-dark: #0f2557;
    --accent:   #17b6c4;        /* medikal turkuaz vurgu */
    --accent-dark: #0f8f9b;
    --gold:     #c9a24b;

    --ink:      #10233f;
    --body:     #3f4d63;
    --muted:    #6b7a92;
    --line:     #e3e9f2;
    --bg:       #ffffff;
    --bg-soft:  #f5f8fc;
    --bg-navy:  #0f2557;

    --radius:   14px;
    --radius-sm: 9px;
    --radius-lg: 22px;
    --shadow-sm: 0 2px 10px rgba(15, 37, 87, .06);
    --shadow:    0 10px 30px rgba(15, 37, 87, .10);
    --shadow-lg: 0 24px 60px rgba(15, 37, 87, .16);
    --container: 1200px;
    --ease: cubic-bezier(.4, 0, .2, 1);
    --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-head: "Poppins", var(--font);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font);
    color: var(--body);
    background: var(--bg);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; height: auto; }
a { color: var(--brand); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--accent-dark); }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4, h5 { font-family: var(--font-head); color: var(--ink); line-height: 1.2; font-weight: 700; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.section { padding: 84px 0; }
.section-sm { padding: 54px 0; }
.bg-soft { background: var(--bg-soft); }
.bg-navy { background: var(--bg-navy); color: #dfe7f5; }
.text-center { text-align: center; }
.row { display: flex; flex-wrap: wrap; gap: 30px; }
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Section heading ---------- */
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-head); font-weight: 600; font-size: .78rem;
    letter-spacing: .12em; text-transform: uppercase; color: var(--accent-dark);
    background: rgba(23, 182, 196, .1); padding: 7px 15px; border-radius: 100px; margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.section-head h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.bg-navy .section-head h2, .bg-navy h2, .bg-navy h3 { color: #fff; }
.bg-navy .section-head p { color: #a9bbdb; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: var(--font-head); font-weight: 600; font-size: .95rem;
    padding: 13px 26px; border-radius: 100px; border: 1.5px solid transparent;
    cursor: pointer; transition: all .25s var(--ease); white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 8px 22px rgba(22, 51, 122, .28); }
.btn-primary:hover { background: var(--brand-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(22, 51, 122, .36); }
.btn-accent { background: var(--accent); color: #062a2e; }
.btn-accent:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--brand); border-color: var(--line); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); background: var(--bg-soft); }
.btn-light { background: #fff; color: var(--brand); }
.btn-light:hover { color: var(--brand-dark); transform: translateY(-2px); }
.btn-ghost-light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.3); }
.btn-ghost-light:hover { background: rgba(255,255,255,.2); color: #fff; }
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy-900); color: #b9c6e0; font-size: .84rem; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; min-height: 42px; gap: 16px; flex-wrap: wrap; }
.topbar a { color: #cdd8ef; }
.topbar a:hover { color: #fff; }
.topbar-info { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-info span { display: inline-flex; align-items: center; gap: 7px; }
.topbar-info svg { width: 15px; height: 15px; opacity: .8; }
.topbar-social { display: flex; gap: 6px; }
.topbar-social a { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.08); }
.topbar-social a:hover { background: var(--accent); color: #062a2e; }
.topbar-social svg { width: 14px; height: 14px; }

/* ---------- Header / Nav ---------- */
.site-header { position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,.96); backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid var(--line); transition: box-shadow .3s; }
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-logo { height: 46px; width: auto; }
.brand-fallback { display: flex; align-items: center; gap: 11px; }
.brand-mark { width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg, var(--navy-700), var(--navy-500)); display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-sm); }
.brand-mark svg { width: 26px; height: 26px; }
.brand-text { line-height: 1.05; }
.brand-text strong { font-family: var(--font-head); font-size: 1.28rem; font-weight: 800; color: var(--brand-dark); letter-spacing: -.01em; display: block; }
.brand-text small { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--accent-dark); font-weight: 600; }

.menu { display: flex; align-items: center; gap: 4px; }
.menu > li { position: relative; }
.menu > li > a { display: flex; align-items: center; gap: 5px; font-family: var(--font-head); font-weight: 600; font-size: .96rem; color: var(--ink); padding: 12px 15px; border-radius: 9px; }
.menu > li > a:hover, .menu > li.active > a { color: var(--brand); background: var(--bg-soft); }
.menu .caret { width: 15px; height: 15px; transition: transform .25s; }
.menu li.has-sub:hover .caret { transform: rotate(180deg); }

.submenu {
    position: absolute; top: calc(100% + 8px); left: 0; min-width: 232px;
    background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow);
    padding: 10px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .22s var(--ease); z-index: 50;
}
.menu li.has-sub:hover .submenu, .menu li.has-sub:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 9px; font-weight: 500; color: var(--body); font-size: .93rem; }
.submenu a:hover { background: var(--bg-soft); color: var(--brand); padding-left: 18px; }
.submenu a svg { width: 16px; height: 16px; color: var(--accent-dark); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 11px; background: #fff; cursor: pointer; align-items: center; justify-content: center; color: var(--brand-dark); }
.nav-toggle svg { width: 24px; height: 24px; }
.menu-close { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; background: linear-gradient(120deg, var(--navy-900) 0%, var(--navy-700) 55%, var(--navy-600) 100%); color: #fff; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background:
    radial-gradient(circle at 82% 18%, rgba(23,182,196,.28), transparent 45%),
    radial-gradient(circle at 12% 88%, rgba(43,82,189,.4), transparent 42%); }
.hero::after { content: ""; position: absolute; inset: 0; opacity: .5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 30h60M30 0v60' stroke='%23ffffff' stroke-opacity='.03' stroke-width='1'/%3E%3C/svg%3E"); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; padding: 84px 0 92px; }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); padding: 8px 17px; border-radius: 100px; font-size: .84rem; font-weight: 600; margin-bottom: 24px; backdrop-filter: blur(6px); }
.hero-badge span { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(23,182,196,.25); }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.6rem); line-height: 1.08; margin-bottom: 22px; letter-spacing: -.02em; }
.hero h1 .hl { color: var(--accent); }
.hero-lead { font-size: 1.14rem; color: #c3d0ec; max-width: 540px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 46px; padding-top: 34px; border-top: 1px solid rgba(255,255,255,.14); flex-wrap: wrap; }
.hero-stat strong { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: #fff; display: block; line-height: 1; }
.hero-stat span { font-size: .85rem; color: #9fb2d8; }
.hero-visual { position: relative; }
.hero-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); padding: 12px; backdrop-filter: blur(8px); box-shadow: var(--shadow-lg); }
.hero-card img { border-radius: 16px; width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.hero-float { position: absolute; background: #fff; color: var(--ink); border-radius: 14px; padding: 15px 18px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; }
.hero-float .ic { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.hero-float strong { font-size: 1rem; display: block; color: var(--ink); font-family: var(--font-head); }
.hero-float small { color: var(--muted); font-size: .78rem; }
.hero-float.f1 { bottom: 30px; left: -26px; }
.hero-float.f2 { top: 24px; right: -18px; }

/* ---------- Trust / feature strip ---------- */
.feature-strip { margin-top: -46px; position: relative; z-index: 20; }
.feature-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-card .ic { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px; background: linear-gradient(135deg, rgba(22,51,122,.1), rgba(23,182,196,.12)); color: var(--brand); }
.feature-card .ic svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.08rem; margin-bottom: 7px; }
.feature-card p { font-size: .92rem; color: var(--muted); margin: 0; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3.6; object-fit: cover; }
.about-media .badge-exp { position: absolute; right: -20px; bottom: -22px; background: var(--brand); color: #fff; border-radius: 18px; padding: 20px 26px; box-shadow: var(--shadow-lg); text-align: center; }
.about-media .badge-exp strong { font-family: var(--font-head); font-size: 2.4rem; line-height: 1; color: #fff; display: block; }
.about-media .badge-exp span { font-size: .82rem; color: #c3d0ec; }
.about-list { display: grid; gap: 16px; margin-top: 26px; }
.about-list li { display: flex; gap: 13px; align-items: flex-start; }
.about-list .chk { width: 26px; height: 26px; border-radius: 8px; background: rgba(23,182,196,.14); color: var(--accent-dark); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
.about-list .chk svg { width: 15px; height: 15px; }
.about-list strong { display: block; color: var(--ink); font-family: var(--font-head); font-size: 1rem; }
.about-list p { font-size: .92rem; color: var(--muted); margin: 0; }

/* ---------- Product cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.product-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.product-thumb { position: relative; aspect-ratio: 4/3.1; overflow: hidden; background: var(--bg-soft); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product-card:hover .product-thumb img { transform: scale(1.06); }
.product-cat { position: absolute; top: 12px; left: 12px; background: rgba(15,37,87,.9); color: #fff; font-size: .72rem; font-weight: 600; padding: 5px 12px; border-radius: 100px; backdrop-filter: blur(4px); }
.product-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 1.12rem; margin-bottom: 8px; }
.product-body h3 a { color: var(--ink); }
.product-body h3 a:hover { color: var(--brand); }
.product-body p { font-size: .9rem; color: var(--muted); margin-bottom: 16px; flex: 1; }
.product-link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--brand); margin-top: auto; }
.product-link svg { width: 17px; height: 17px; transition: transform .25s; }
.product-link:hover svg { transform: translateX(4px); }

/* ---------- Working hours ---------- */
.hours-wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 46px; align-items: center; }
.hours-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 12px; box-shadow: var(--shadow); }
.hours-row { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-radius: 12px; }
.hours-row + .hours-row { border-top: 1px solid var(--line); }
.hours-row .d { display: flex; align-items: center; gap: 13px; font-family: var(--font-head); font-weight: 600; color: var(--ink); }
.hours-row .d svg { width: 20px; height: 20px; color: var(--accent-dark); }
.hours-row .t { font-weight: 600; color: var(--body); }
.hours-row.closed .t { color: #d1435b; }
.hours-row.today { background: var(--bg-soft); }

/* ---------- News cards ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s; }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.news-thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-soft); }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.news-card:hover .news-thumb img { transform: scale(1.05); }
.news-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.news-date { font-size: .8rem; color: var(--accent-dark); font-weight: 600; margin-bottom: 10px; display: flex; align-items: center; gap: 7px; }
.news-date svg { width: 15px; height: 15px; }
.news-body h3 { font-size: 1.14rem; margin-bottom: 10px; line-height: 1.35; }
.news-body h3 a { color: var(--ink); }
.news-body h3 a:hover { color: var(--brand); }
.news-body p { font-size: .9rem; color: var(--muted); margin-bottom: 16px; flex: 1; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; position: relative; box-shadow: var(--shadow-sm); }
.testi-card .quote-mark { font-family: Georgia, serif; font-size: 4rem; line-height: 1; color: rgba(22,51,122,.12); position: absolute; top: 16px; right: 24px; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 15px; color: var(--gold); }
.testi-stars svg { width: 18px; height: 18px; }
.testi-card p { color: var(--body); font-size: .98rem; margin-bottom: 22px; position: relative; z-index: 1; }
.testi-author { display: flex; align-items: center; gap: 13px; }
.testi-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--navy-700), var(--accent)); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; overflow: hidden; }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-author strong { display: block; font-family: var(--font-head); color: var(--ink); font-size: .98rem; }
.testi-author small { color: var(--muted); font-size: .84rem; }

/* ---------- Reference logos ---------- */
.logo-strip { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; align-items: center; }
.logo-strip .logo-item { height: 64px; padding: 14px 24px; background: #fff; border: 1px solid var(--line); border-radius: 12px; display: grid; place-items: center; filter: grayscale(1); opacity: .7; transition: all .3s; }
.logo-strip .logo-item:hover { filter: grayscale(0); opacity: 1; }
.logo-strip .logo-item img { max-height: 36px; width: auto; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--navy-800), var(--navy-600)); border-radius: var(--radius-lg); padding: 56px; text-align: center; position: relative; overflow: hidden; color: #fff; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 20%, rgba(23,182,196,.3), transparent 45%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 14px; }
.cta-band p { color: #c3d0ec; max-width: 560px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: linear-gradient(120deg, var(--navy-900), var(--navy-700)); color: #fff; padding: 60px 0 66px; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 88% 15%, rgba(23,182,196,.22), transparent 44%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 12px; }
.page-hero p { color: #b9c8e6; max-width: 620px; }
.breadcrumb { display: flex; align-items: center; gap: 9px; font-size: .86rem; color: #9fb2d8; margin-bottom: 18px; flex-wrap: wrap; }
.breadcrumb a { color: #cdd8ef; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 15px; height: 15px; opacity: .6; }
.breadcrumb .current { color: var(--accent); }

/* ---------- Content (article/page body) ---------- */
.prose { color: var(--body); font-size: 1.03rem; line-height: 1.85; }
.prose h2 { font-size: 1.6rem; margin: 2em 0 .7em; color: var(--ink); }
.prose h3 { font-size: 1.28rem; margin: 1.6em 0 .6em; color: var(--ink); }
.prose p { margin-bottom: 1.15em; }
.prose ul { margin: 0 0 1.3em; display: grid; gap: 11px; }
.prose ul li { position: relative; padding-left: 30px; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 8px; width: 18px; height: 18px; border-radius: 50%; background: rgba(23,182,196,.15); }
.prose ul li::after { content: ""; position: absolute; left: 6px; top: 12px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-dark); }
.prose img { border-radius: var(--radius); margin: 1.5em 0; box-shadow: var(--shadow-sm); }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }

/* ---------- Product detail ---------- */
.pd-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: start; }
.pd-media { position: sticky; top: 100px; }
.pd-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3.4; object-fit: cover; background: var(--bg-soft); }
.pd-cat { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 600; color: var(--accent-dark); background: rgba(23,182,196,.1); padding: 6px 14px; border-radius: 100px; margin-bottom: 16px; }
.pd-brand { color: var(--muted); font-family: var(--font-head); font-weight: 600; margin-bottom: 6px; }
.pd-title { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 16px; }
.pd-summary { font-size: 1.1rem; color: var(--body); margin-bottom: 24px; }
.pd-features { display: grid; gap: 12px; margin: 24px 0 30px; }
.pd-features li { display: flex; gap: 12px; align-items: flex-start; padding: 14px 18px; background: var(--bg-soft); border-radius: 12px; }
.pd-features .chk { width: 24px; height: 24px; border-radius: 7px; background: var(--brand); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.pd-features .chk svg { width: 14px; height: 14px; }
.pd-actions { display: flex; gap: 13px; flex-wrap: wrap; }

/* ---------- Filters ---------- */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px; }
.filter-bar a { padding: 10px 20px; border-radius: 100px; border: 1.5px solid var(--line); font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--body); background: #fff; }
.filter-bar a:hover { border-color: var(--brand); color: var(--brand); }
.filter-bar a.active { background: var(--brand); color: #fff; border-color: var(--brand); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; align-items: start; }
.contact-info { display: grid; gap: 18px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.contact-item .ic { width: 50px; height: 50px; border-radius: 13px; background: linear-gradient(135deg, var(--navy-700), var(--navy-500)); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.contact-item .ic svg { width: 23px; height: 23px; }
.contact-item h4 { font-size: 1.02rem; margin-bottom: 4px; }
.contact-item p, .contact-item a { color: var(--muted); font-size: .95rem; margin: 0; }
.contact-item a:hover { color: var(--brand); }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-top: 6px; line-height: 0; }
.map-embed iframe { width: 100%; height: 320px; border: 0; }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 8px; }
label .req { color: #d1435b; }
.input, input[type="text"], input[type="email"], input[type="tel"], input[type="password"], input[type="number"], input[type="url"], input[type="date"], input[type="datetime-local"], select, textarea {
    width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 11px;
    font-family: var(--font); font-size: .97rem; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s;
}
textarea { resize: vertical; min-height: 130px; }
.input:focus, input:focus, select:focus, textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(22,51,122,.1); }
.form-hint { font-size: .82rem; color: var(--muted); margin-top: 6px; }

/* ---------- Alerts ---------- */
.alert { padding: 15px 20px; border-radius: 12px; margin-bottom: 18px; font-size: .95rem; display: flex; gap: 11px; align-items: flex-start; border: 1px solid transparent; }
.alert svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.alert-success { background: #e7f8f0; color: #0d7a4f; border-color: #b8ecd5; }
.alert-error { background: #fdeaec; color: #b32338; border-color: #f6c9d0; }
.alert-info { background: #e8f1fd; color: #1a56a8; border-color: #c5ddf7; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #9fb0d0; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 50px; }
.footer-brand .brand-text strong { color: #fff; }
.footer-about { margin: 20px 0; font-size: .93rem; color: #91a3c6; }
.footer-social { display: flex; gap: 9px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: #cdd8ef; }
.footer-social a:hover { background: var(--accent); color: #062a2e; transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 20px; }
.footer-links { display: grid; gap: 12px; }
.footer-links a { color: #9fb0d0; font-size: .93rem; display: inline-flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-links a svg { width: 14px; height: 14px; color: var(--accent); }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 15px; font-size: .93rem; color: #9fb0d0; }
.footer-contact svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: #9fb0d0; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .86rem; color: #7f92b6; }
.footer-bottom a { color: #9fb0d0; }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; bottom: 24px; right: 24px; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37,211,102,.44); z-index: 150; transition: transform .3s; }
.wa-float:hover { transform: scale(1.1); color: #fff; }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Error page ---------- */
.error-page { min-height: 62vh; display: grid; place-items: center; text-align: center; padding: 60px 0; }
.error-page .error-code { font-family: var(--font-head); font-size: clamp(5rem, 16vw, 10rem); font-weight: 800; line-height: 1; background: linear-gradient(135deg, var(--navy-600), var(--accent)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.error-page h1 { font-size: 2rem; margin: 8px 0 12px; }
.error-page p { color: var(--muted); margin-bottom: 26px; }

/* ---------- Empty state ---------- */
.empty-state { text-align: center; padding: 70px 20px; color: var(--muted); }
.empty-state svg { width: 64px; height: 64px; color: var(--line); margin: 0 auto 18px; }
.empty-state h3 { color: var(--ink); margin-bottom: 8px; }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.hide-mobile { }
@media (max-width: 860px) { .hide-mobile { display: none !important; } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* Hareket azaltma tercihi: animasyonları kapat, içeriği garanti göster */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* Klavye odağı görünürlüğü (erişilebilirlik) */
a:focus-visible, button:focus-visible, .btn:focus-visible, .nav-toggle:focus-visible,
.filter-bar a:focus-visible, .menu a:focus-visible, .submenu a:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
    outline: 3px solid var(--accent); outline-offset: 2px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { max-width: 520px; }
    .feature-cards { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
    .about-grid, .hours-wrap, .contact-grid, .pd-grid { grid-template-columns: 1fr; gap: 40px; }
    .pd-media { position: static; }
    .about-media { max-width: 520px; }
}
@media (max-width: 860px) {
    .nav-toggle { display: flex; }
    .menu {
        position: fixed; inset: 0 0 0 auto; width: min(340px, 86vw); flex-direction: column;
        align-items: stretch; background: #fff; padding: 74px 18px 30px; gap: 4px;
        box-shadow: -20px 0 60px rgba(15,37,87,.2); transform: translateX(100%); transition: transform .3s var(--ease); z-index: 250; overflow-y: auto;
    }
    .menu.open { transform: none; }
    .menu > li > a { padding: 15px; font-size: 1.05rem; border-radius: 11px; }
    .menu-close { display: grid; place-items: center; position: absolute; top: 16px; right: 16px; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 11px; background: #fff; color: var(--brand-dark); cursor: pointer; }
    .menu-close svg { width: 24px; height: 24px; }
    .submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; border-left: 2px solid var(--line); border-radius: 0; margin: 2px 0 6px 14px; padding: 2px 0; display: none; }
    .menu li.has-sub.open-sub .submenu { display: block; }
    .nav-backdrop { position: fixed; inset: 0; background: rgba(10,28,68,.45); opacity: 0; visibility: hidden; transition: opacity .3s; z-index: 240; }
    .nav-backdrop.show { opacity: 1; visibility: visible; }
    .product-grid, .news-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 60px 0; }
    .cta-band { padding: 40px 26px; }
}
@media (max-width: 560px) {
    .topbar-info { gap: 14px; font-size: .78rem; }
    .grid-2, .grid-3, .grid-4, .feature-cards, .product-grid, .news-grid, .testi-grid, .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 24px; }
    .hero-float { display: none; }
    .about-media .badge-exp { right: 10px; bottom: -16px; padding: 15px 20px; }
    .hero-actions .btn, .cta-actions .btn { width: 100%; }
    .section-head h2 { font-size: 1.6rem; }
}
