/* ============================================================
   Avukat Cumali Erkut — Modern Tema (2026)
   Renk paleti, tipografi ve tüm bileşenler CSS değişkenleriyle
   yönetilir. Markanızın rengini değiştirmek için aşağıdaki
   :root bloğundaki değerleri güncellemeniz yeterli.
   ============================================================ */

:root {
    /* Ana renkler */
    --navy: #0f1c2e;          /* Koyu lacivert - kurumsal güven */
    --navy-soft: #16273d;
    --navy-line: #243a56;
    --gold: #c9a24a;          /* Altın vurgu - prestij */
    --gold-soft: #e0c074;
    --red: #d64550;           /* Aksiyon / acil vurgu */
    --ink: #1a2230;           /* Ana metin */
    --muted: #5a6678;         /* İkincil metin */
    --bg: #f7f8fa;            /* Sayfa arka planı */
    --surface: #ffffff;       /* Kart yüzeyi */
    --line: #e7eaf0;          /* İnce çizgiler */

    /* Tipografi */
    --font-head: "Fraunces", Georgia, "Times New Roman", serif;
    --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Yumuşaklık */
    --radius: 18px;
    --radius-sm: 12px;
    --shadow-sm: 0 2px 8px rgba(15, 28, 46, .06);
    --shadow: 0 10px 30px rgba(15, 28, 46, .10);
    --shadow-lg: 0 24px 60px rgba(15, 28, 46, .18);
    --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Temel sıfırlama ---------- */
* { box-sizing: border-box; }

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

main { flex: 1 0 auto; }

h1, h2, h3, h4, h5 {
    font-family: var(--font-head);
    color: var(--navy);
    line-height: 1.2;
    font-weight: 600;
}

p { font-size: 1rem; line-height: 1.75; color: var(--ink); }

a { color: var(--gold); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--navy); }

img { max-width: 100%; height: auto; }

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

/* ============================================================
   NAVBAR — yapışkan, cam efektli (glassmorphism)
   ============================================================ */
header { position: sticky; top: 0; z-index: 1000; }

.navbar {
    background: rgba(15, 28, 46, .82);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid rgba(201, 162, 74, .18);
    padding: .85rem 0;
}

.navbar .container { display: flex; align-items: center; justify-content: space-between; }

.brand {
    display: flex; align-items: center; gap: .65rem;
    color: #fff; text-decoration: none;
}
.brand .brand-mark {
    width: 42px; height: 42px; border-radius: 11px;
    display: grid; place-items: center; flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: var(--navy); font-family: var(--font-head); font-weight: 700; font-size: 1.25rem;
    box-shadow: 0 4px 14px rgba(201, 162, 74, .35);
}
.brand .brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand .brand-name { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: #fff; }
.brand .brand-sub { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-soft); }

.navbar-toggler {
    border: 1px solid rgba(255,255,255,.25); border-radius: 10px;
    padding: .4rem .6rem; background: transparent;
}
.navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(201,162,74,.4); }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-width='2.2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav { align-items: center; gap: .25rem; }
.navbar-nav .nav-link {
    color: rgba(255,255,255,.85) !important;
    font-weight: 500; font-size: .98rem;
    padding: .5rem .95rem !important; margin: 0 !important;
    border-radius: 10px; position: relative;
    transition: color .25s var(--ease), background .25s var(--ease);
}
.navbar-nav .nav-link:hover { color: #fff !important; background: rgba(255,255,255,.07); }
.navbar-nav .nav-link::after {
    content: ""; position: absolute; left: 50%; bottom: 6px; height: 2px; width: 0;
    background: var(--gold); transform: translateX(-50%); transition: width .3s var(--ease);
}
.navbar-nav .nav-link:hover::after { width: 40%; }

.nav-cta {
    display: inline-flex; align-items: center; gap: .5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: var(--navy) !important; font-weight: 600;
    padding: .55rem 1.1rem !important; border-radius: 11px; margin-left: .5rem !important;
    box-shadow: 0 6px 18px rgba(201,162,74,.35);
}
.nav-cta::after { display: none; }
.nav-cta:hover { transform: translateY(-2px); filter: brightness(1.05); }

/* ============================================================
   HERO / BANNER
   ============================================================ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

.banner {
    margin: 32px auto 0;
    max-width: 1200px;
    border-radius: 28px;
    padding: clamp(28px, 5vw, 64px);
    background:
        radial-gradient(120% 140% at 100% 0%, rgba(201,162,74,.14), transparent 55%),
        linear-gradient(135deg, var(--navy), var(--navy-soft));
    color: #fff; overflow: hidden; position: relative;
    animation: fadeUp 1s var(--ease) both;
    box-shadow: var(--shadow-lg);
}
.banner::before {
    content: ""; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0);
    background-size: 22px 22px; opacity: .5; pointer-events: none;
}
.banner-content {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 4vw, 56px);
    align-items: center; max-width: 100%; padding: 0;
}
.banner-image img {
    width: 100%; border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0,0,0,.45);
    border: 1px solid rgba(255,255,255,.08);
}
.banner-text { text-align: left; margin: 0; padding: 0; max-width: none; color: #fff; }
.banner-text h1 {
    color: #fff; font-size: clamp(2rem, 4.5vw, 3.1rem);
    margin: 0 0 18px; letter-spacing: -.01em;
}
.banner-text p {
    color: rgba(255,255,255,.82); font-size: 1.06rem; line-height: 1.75;
    text-align: left; margin-bottom: 28px;
}
.cta-button {
    display: inline-flex; align-items: center; gap: .6rem;
    padding: 14px 28px; border-radius: 14px;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: var(--navy); font-weight: 700; font-size: 1.02rem;
    box-shadow: 0 12px 28px rgba(201,162,74,.4);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.cta-button:hover { transform: translateY(-3px); color: var(--navy); box-shadow: 0 18px 36px rgba(201,162,74,.5); }

/* ============================================================
   BÖLÜM BAŞLIKLARI
   ============================================================ */
section.container, .container.mt-5 { margin-top: clamp(48px, 7vw, 88px) !important; }

h2.text-center, .container > h2 { position: relative; font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
h2.text-center::after {
    content: ""; display: block; width: 64px; height: 4px; border-radius: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-soft));
    margin: 16px auto 0;
}

/* ============================================================
   ÇALIŞMA ALANLARI KARTLARI
   ============================================================ */
.diamond-shape {
    width: 14px; height: 14px; flex-shrink: 0; margin-right: 14px; margin-top: 4px;
    background: linear-gradient(135deg, var(--gold), var(--red));
    transform: rotate(45deg); border-radius: 3px;
}
.work-area-box {
    background: var(--surface); padding: 26px; margin: 0;
    border-radius: var(--radius); border: 1px solid var(--line);
    box-shadow: var(--shadow-sm); height: 100%;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.work-area-box:hover {
    transform: translateY(-6px); box-shadow: var(--shadow);
    border-color: rgba(201,162,74,.5); background: var(--surface);
}
.work-area-box h5 { font-size: 1.2rem; color: var(--navy); margin-bottom: 10px; font-weight: 600; }
.work-area-box p { color: var(--muted); font-size: .95rem; margin: 0; }
.d-flex.align-items-start { height: 100%; }

/* ============================================================
   SSS (Accordion)
   ============================================================ */
.accordion-item {
    border: 1px solid var(--line) !important; margin-bottom: 14px;
    border-radius: var(--radius-sm) !important; overflow: hidden;
    background: var(--surface); box-shadow: var(--shadow-sm);
}
.accordion-button {
    background: var(--surface); color: var(--navy);
    font-family: var(--font-head); font-weight: 600; font-size: 1.05rem;
    padding: 20px 24px; border: none; box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    background: var(--navy); color: #fff;
}
.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}
.accordion-button:hover { background: #eef1f6; }
.accordion-button:not(.collapsed):hover { background: var(--navy-soft); }
.accordion-button:focus { box-shadow: 0 0 0 .2rem rgba(201,162,74,.3) !important; }
.accordion-body {
    background: var(--surface); color: var(--ink);
    border-top: 1px solid var(--line); padding: 20px 24px; font-size: .98rem;
}

/* ============================================================
   MAKALE KARTLARI (carousel + grid ortak)
   ============================================================ */
.card {
    border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
    background: var(--surface); box-shadow: var(--shadow-sm); height: 100%;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.card-img-top { height: 210px; object-fit: cover; border-radius: 0; width: 100%; }
.card-body { padding: 22px; }
.card-title { font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; line-height: 1.35; font-weight: 600; }
.card-text { color: var(--muted); font-size: .92rem; text-align: left; }
.article-link { color: inherit; }
.article-link:hover { color: inherit; }

.btn-outline-primary {
    border: 1.5px solid var(--navy); color: var(--navy); font-weight: 600;
    padding: 11px 30px; border-radius: 12px; background: transparent;
    transition: all .3s var(--ease);
}
.btn-outline-primary:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

/* Owl Carousel ince ayar */
.owl-carousel .owl-item { transition: opacity .5s var(--ease); padding: 10px 0; }
.owl-dots { margin-top: 20px; }
.owl-dots .owl-dot span { width: 11px !important; height: 11px !important; background: #c9cfda !important; margin: 5px !important; transition: all .3s var(--ease); }
.owl-dots .owl-dot.active span { background: var(--gold) !important; width: 28px !important; border-radius: 6px !important; }
.owl-nav button { color: var(--navy) !important; font-size: 34px !important; }
.owl-nav button:hover { color: var(--gold) !important; background: transparent !important; }

/* ============================================================
   İLETİŞİM BÖLÜMÜ
   ============================================================ */
.contact-section {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px;
    background: var(--surface); padding: 36px; border-radius: var(--radius);
    box-shadow: var(--shadow); margin: clamp(48px, 7vw, 80px) auto;
    max-width: 1100px; align-items: start;
}
.contact-info { width: 100%; }
.contact-info h2 { margin-bottom: 28px; text-align: left; font-size: 1.8rem; }
.contact-item { margin-bottom: 18px; }
.contact-box {
    background: var(--bg); padding: 18px; border-radius: var(--radius-sm);
    border: 1px solid var(--line); display: flex; align-items: center; gap: 4px;
    cursor: pointer; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.contact-box:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(201,162,74,.4); background: var(--surface); }
.contact-box h3 { margin: 0; font-size: 1.05rem; color: var(--navy); font-family: var(--font-body); font-weight: 600; }
.contact-box p { margin: 3px 0 0; color: var(--muted); font-size: .92rem; }

.icon, .whatsapp-icon, .email-icon-container, .address-icon-container {
    width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 20px; margin-right: 15px;
}
.whatsapp-icon { background: #25d366; }
.email-icon-container { background: var(--red); }
.email-icon-container i { font-size: 1.4rem; color: #fff; }
.address-icon-container { background: var(--navy); }
.address-icon-container i { font-size: 1.4rem; color: #fff; }

.map { width: 100%; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* ============================================================
   MAKALE DETAY SAYFASI
   ============================================================ */
.makale-container { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 28px; margin-top: 40px; }
.left-content { flex: 1 1 60%; min-width: 280px; margin: 0; }
.right-content { flex: 1 1 26%; min-width: 240px; margin: 0; position: relative; }
.makale-baslik { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; text-align: left; margin-bottom: 10px; }
.makale-tarih { color: var(--muted); font-size: .9rem; margin-bottom: 24px; }
.makale-resim { max-width: 100%; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.makale-resim-container { display: flex; justify-content: center; margin-bottom: 20px; }
.makale-icerik { font-size: 1.05rem; line-height: 1.85; text-align: left; margin-top: 12px; color: var(--ink); }
.makale-content { margin-bottom: 36px; }
.makale-content h2 { margin-top: 36px; color: var(--navy); font-size: 1.4rem; }
.makale-content h2::before { content: ""; }
.makale-content h2 {
    border-left: 4px solid var(--gold); padding-left: 14px;
}
.toc {
    background: var(--navy); color: #fff; padding: 24px; border-radius: var(--radius-sm);
    margin-bottom: 30px; box-shadow: var(--shadow-sm);
}
.toc h3 { color: #fff; font-size: 1.15rem; margin-bottom: 14px; }
.toc ul { list-style: none; padding-left: 0; margin: 0; }
.toc ul li { margin-bottom: 12px; padding-left: 18px; position: relative; }
.toc ul li::before { content: "▸"; position: absolute; left: 0; color: var(--gold); }
.toc ul li a { color: rgba(255,255,255,.85); font-weight: 500; }
.toc ul li a:hover { color: var(--gold-soft); }
.fixed-content { position: sticky; top: 90px; }

/* Makale yan kutusu (varsa) */
.lawyer-info-box {
    position: static; width: 100%; right: auto; padding: 24px;
    background: var(--navy); color: #fff; border-radius: var(--radius);
}
.contact-image { width: 100%; max-width: 220px; height: auto; aspect-ratio: 1; border-radius: 50%; object-fit: cover; margin-bottom: 15px; }
.lawyer-title { font-family: var(--font-head); color: var(--gold); font-weight: 600; }
.btn-contact { background: var(--red); color: #fff; border: none; padding: 11px 22px; border-radius: 10px; margin-top: 10px; cursor: pointer; }
.btn-contact:hover { background: #b8323d; }

/* ============================================================
   FOOTER
   ============================================================ */
footer#footer {
    background: var(--navy); color: #fff; padding: 56px 0 24px;
    margin-top: clamp(48px, 7vw, 80px); flex-shrink: 0;
    border-top: 3px solid var(--gold);
}
footer#footer h5 { color: #fff; font-size: 1.1rem; margin-bottom: 16px; position: relative; padding-bottom: 10px; }
footer#footer h5::after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 2px; background: var(--gold); }
.footer-div { margin-top: 10px; }
.footer-div p, .footer-div a { color: rgba(255,255,255,.72) !important; font-size: .94rem; margin-bottom: 8px; display: block; transition: color .25s var(--ease); }
.footer-div a:hover { color: var(--gold-soft) !important; }
.social-icon { color: rgba(255,255,255,.8) !important; margin-right: 14px; transition: color .25s var(--ease), transform .25s var(--ease); display: inline-block; }
.social-icon:hover { color: var(--gold) !important; transform: translateY(-3px); }
.haklari-saklidir { margin-top: 28px; font-size: .85rem; }
.haklari-saklidir a { color: rgba(255,255,255,.6) !important; }

.designer { font-size: .85rem; color: var(--muted); text-align: center; padding: 18px 0; margin: 0; }
.designer-a { color: var(--navy); font-weight: 700; position: relative; font-size: 1rem; }
.designer-a::after { content: ""; position: absolute; width: 0; height: 2px; background: var(--gold); left: 0; bottom: -4px; transition: width .4s var(--ease); }
.designer-a:hover::after { width: 100%; }

/* ============================================================
   YÜZEN WHATSAPP BUTONU (sekreter yokken hızlı iletişim)
   ============================================================ */
.float-wa {
    position: fixed; right: 22px; bottom: 22px; z-index: 1100;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25d366; color: #fff; display: grid; place-items: center;
    font-size: 28px; box-shadow: 0 10px 26px rgba(37,211,102,.5);
    transition: transform .3s var(--ease); animation: waPulse 2.4s infinite;
}
.float-wa:hover { transform: scale(1.08); color: #fff; }
@keyframes waPulse { 0%,100% { box-shadow: 0 10px 26px rgba(37,211,102,.5); } 50% { box-shadow: 0 10px 26px rgba(37,211,102,.5), 0 0 0 14px rgba(37,211,102,0); } }

/* ============================================================
   YARDIMCI SINIFLAR
   ============================================================ */
.text-left { text-align: left; }
.big-font { font-size: 1.1rem; }

/* ============================================================
   RESPONSIVE — MOBİL UYUMLULUK
   ============================================================ */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(15,28,46,.97); margin-top: 14px; padding: 14px;
        border-radius: var(--radius-sm); border: 1px solid rgba(201,162,74,.18);
    }
    .navbar-nav { align-items: stretch; gap: .2rem; }
    .navbar-nav .nav-link { padding: .75rem 1rem !important; }
    .nav-cta { margin: .5rem 0 0 0 !important; justify-content: center; }
    .navbar-nav .nav-link::after { display: none; }
}

@media (max-width: 860px) {
    .banner-content { grid-template-columns: 1fr; text-align: center; }
    .banner-text { text-align: center; }
    .banner-text p { text-align: center; }
    .banner-image { order: -1; max-width: 460px; margin: 0 auto; }
    .cta-button { margin-inline: auto; }

    .contact-section { grid-template-columns: 1fr; padding: 24px; }
    .map iframe { min-height: 320px; }

    .makale-container { flex-direction: column; }
    .left-content, .right-content { flex: 1 1 100%; min-width: 0; }
    .fixed-content { position: static; }
    .toc { position: static; }
}

@media (max-width: 575px) {
    html { font-size: 15px; }
    .banner { margin-top: 18px; border-radius: 22px; padding: 24px; }
    .work-area-box { padding: 20px; }
    .card-img-top { height: 190px; }
    .contact-section { margin: 36px auto; padding: 18px; }
    .float-wa { width: 52px; height: 52px; font-size: 25px; right: 16px; bottom: 16px; }
    .contact-box { padding: 14px; }
}

/* ============================================================
   DİJİTAL ASİSTAN — yüzen sohbet widget'ı
   ============================================================ */
.asistan-fab {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 1100;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 20px 13px 16px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--navy), var(--navy-soft));
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .98rem;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(15, 28, 46, .35);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), opacity .2s ease;
}
.asistan-fab i { color: var(--gold); font-size: 1.2rem; }
.asistan-fab:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(15, 28, 46, .45); }
.asistan-fab.gizli { opacity: 0; pointer-events: none; transform: scale(.85); }

.asistan-panel {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 1101;
    width: 380px;
    max-width: calc(100vw - 32px);
    height: 580px;
    max-height: calc(100vh - 48px);
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    opacity: 0;
    transform: translateY(24px) scale(.96);
    pointer-events: none;
    transition: opacity .28s var(--ease), transform .28s var(--ease);
}
.asistan-panel.acik { opacity: 1; transform: none; pointer-events: auto; }

.asistan-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    background: var(--navy);
    color: #fff;
}
.asistan-head-info { display: flex; align-items: center; gap: 11px; }
.asistan-mark {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: var(--navy);
    font-family: var(--font-head);
    font-weight: 700;
}
.asistan-head-text strong { display: block; font-family: var(--font-head); font-size: 1.02rem; }
.asistan-head-text small { color: rgba(255, 255, 255, .65); font-size: .78rem; }
.asistan-kapat {
    background: transparent; border: none; color: #fff;
    font-size: 1.7rem; line-height: 1; cursor: pointer; opacity: .8;
}
.asistan-kapat:hover { opacity: 1; }

.asistan-mesajlar {
    flex: 1;
    overflow-y: auto;
    padding: 18px 16px;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.am {
    max-width: 86%;
    padding: 11px 14px;
    border-radius: 14px;
    font-size: .94rem;
    line-height: 1.55;
    animation: amIn .3s var(--ease) both;
}
@keyframes amIn { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }
.am-bot {
    align-self: flex-start;
    background: var(--surface);
    color: var(--ink);
    border: 1px solid var(--line);
    border-bottom-left-radius: 4px;
}
.am-user {
    align-self: flex-end;
    background: var(--navy);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.asistan-secim { display: flex; flex-wrap: wrap; gap: 7px; align-self: flex-start; max-width: 96%; }
.asistan-secim button {
    background: var(--surface);
    border: 1px solid var(--gold);
    color: var(--navy);
    padding: 8px 13px;
    border-radius: 20px;
    font-size: .86rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}
.asistan-secim button:hover:not(:disabled) { background: var(--gold); color: var(--navy); }
.asistan-secim.secildi button:disabled { opacity: .45; cursor: default; }

.asistan-ozet {
    align-self: stretch;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: var(--shadow-sm);
}
.asistan-ozet h4 { margin: 0 0 10px; font-size: .98rem; color: var(--navy); }
.oz-satir { display: flex; justify-content: space-between; gap: 12px; padding: 5px 0; font-size: .88rem; border-bottom: 1px dashed var(--line); }
.oz-satir:last-of-type { border-bottom: none; }
.oz-satir span { color: var(--muted); }
.oz-satir b { color: var(--ink); text-align: right; }
.asistan-onayla {
    margin-top: 12px;
    width: 100%;
    border: none;
    border-radius: 11px;
    padding: 11px;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: var(--navy);
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
}
.asistan-onayla:disabled { opacity: .5; cursor: default; }

.asistan-zaman { align-self: stretch; display: flex; flex-wrap: wrap; gap: 8px; }
.asistan-zaman input {
    flex: 1 1 100%;
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 11px 13px;
    font-size: .95rem;
    font-family: var(--font-body);
    color: var(--ink);
    outline: none;
}
.asistan-zaman input:focus { border-color: var(--gold); }
.asistan-zaman-ok {
    flex: 1;
    border: none;
    border-radius: 11px;
    padding: 11px;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: var(--navy);
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
}
.asistan-zaman-alt {
    flex: 1 1 100%;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--muted);
    border-radius: 11px;
    padding: 9px;
    font-size: .85rem;
    font-family: var(--font-body);
    cursor: pointer;
}
.asistan-zaman-ok:disabled, .asistan-zaman-alt:disabled, .asistan-zaman input:disabled { opacity: .5; cursor: default; }

.asistan-giris {
    display: flex;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid var(--line);
    background: var(--surface);
}
.asistan-giris input {
    flex: 1;
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 11px 13px;
    font-size: .92rem;
    font-family: var(--font-body);
    outline: none;
}
.asistan-giris input:focus { border-color: var(--gold); }
.asistan-giris input:disabled { background: #eef1f6; color: #9aa3b2; cursor: not-allowed; }
.asistan-giris button {
    width: 46px;
    border: none;
    border-radius: 11px;
    background: var(--navy);
    color: #fff;
    cursor: pointer;
}
.asistan-giris button:disabled { opacity: .5; }

@media (max-width: 575px) {
    .asistan-fab { left: 16px; bottom: 16px; padding: 12px 16px; }
    .asistan-fab span { display: none; }
    .asistan-panel { left: 8px; bottom: 8px; height: calc(100vh - 16px); }
}

/* ============================================================
   ADMİN — giriş ve randevu tablosu
   ============================================================ */
.admin-login { min-height: 60vh; display: grid; place-items: center; padding: 40px 0; }
.admin-login-card {
    width: 100%; max-width: 380px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px;
}
.admin-login-card h1 { font-size: 1.5rem; margin: 0 0 6px; }
.admin-login-card .muted { color: var(--muted); margin-bottom: 18px; }
.admin-login-card label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--navy); }
.admin-login-card input {
    width: 100%; padding: 12px 14px; margin-bottom: 16px;
    border: 1px solid var(--line); border-radius: 11px; font-size: 1rem; outline: none;
}
.admin-login-card input:focus { border-color: var(--gold); }
.admin-error {
    background: #fdecee; border: 1px solid #f3c0c5; color: #b3303c;
    padding: 10px 14px; border-radius: 10px; margin-bottom: 16px; font-size: .9rem;
}

.admin-wrap { padding: 30px 0 60px; }
.admin-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.admin-head h1 { margin: 0; }
.admin-head .muted { color: var(--muted); margin: 4px 0 0; }
.btn-cikis {
    border: 1px solid var(--line); background: var(--surface); color: var(--navy);
    padding: 9px 18px; border-radius: 10px; cursor: pointer; font-weight: 600;
}
.btn-cikis:hover { background: var(--bg); }

.admin-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.admin-table { width: 100%; border-collapse: collapse; background: var(--surface); font-size: .9rem; }
.admin-table th, .admin-table td { padding: 12px 14px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.admin-table th { background: var(--navy); color: #fff; font-weight: 600; white-space: nowrap; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table a { color: var(--navy); }
.ozet-hucre { max-width: 260px; color: var(--muted); font-size: .85rem; }
.islem-hucre { white-space: nowrap; }

.badge { display: inline-block; padding: 4px 10px; border-radius: 20px; font-size: .78rem; font-weight: 600; }
.badge-bekleme { background: #fff4e0; color: #9a6b00; }
.badge-onay { background: #e6f4ea; color: #2f7d46; }
.badge-tamam { background: #e7ecf5; color: #3a5078; }
.badge-iptal { background: #fdecee; color: #b3303c; }

.ac { font-weight: 600; }
.ac-yuksek { color: var(--red); }
.ac-orta { color: #b8860b; }
.ac-dusuk { color: #2f7d46; }

.mini-btn {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 6px 11px; margin: 2px 4px 2px 0;
    border-radius: 8px; font-size: .8rem; font-weight: 600; text-decoration: none;
}
.mini-btn.wa { background: #25d366; color: #fff; }
.mini-btn.wa:hover { background: #1fb457; color: #fff; }
.durum-form { display: inline-block; margin-top: 4px; }
.durum-form select { padding: 6px 8px; border-radius: 8px; border: 1px solid var(--line); font-size: .82rem; }
