/* =========================================================
   Novira Vena Spa — Tasarım Sistemi
   Tema: Temiz · Profesyonel · Beyaz (sıcak bronz/taş vurgu — salon dokusuna uyumlu)
   ========================================================= */

:root {
  --bg:        #FFFFFF;
  --surface:   #FFFFFF;
  --soft:      #F7F5F1;
  --soft-2:    #F0EBE3;
  --ink:       #1C1712;
  --ink-2:     #3A332B;
  --muted:     #7E7567;
  --line:      #E8E2D8;
  --accent:    #9A7B4F;
  --accent-dk: #7C6139;
  --accent-lt: #F2ECE0;
  --gold:      #B0894F;
  --dark:      #1C1610;

  --font-head: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius:    14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow:    0 18px 50px rgba(21, 25, 27, 0.10);
  --shadow-sm: 0 6px 22px rgba(21, 25, 27, 0.07);
  --maxw: 1200px;
  --gut: clamp(18px, 5vw, 56px);
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font-body); color: var(--ink-2); background: var(--bg); line-height: 1.7; font-size: 17px; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: var(--accent-dk); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.12; font-weight: 600; margin: 0 0 .5em; letter-spacing: 0; }
h1 { font-size: clamp(2.4rem, 5.6vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }
p  { margin: 0 0 1rem; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
section { padding: clamp(56px, 8vw, 104px) 0; }

.eyebrow { display: inline-block; font-family: var(--font-body); font-weight: 600; text-transform: uppercase; letter-spacing: .22em; font-size: .74rem; color: var(--accent); margin-bottom: 18px; }
.eyebrow::before { content: ""; display: inline-block; width: 28px; height: 1px; background: var(--accent); vertical-align: middle; margin-right: 12px; }
.lead { font-size: 1.16rem; color: var(--muted); max-width: 62ch; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }
.center .eyebrow::before { display: none; }

/* Butonlar */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--font-body); font-weight: 600; font-size: .92rem; padding: 12px 22px; border-radius: 100px; border: 1.5px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .2s, background .2s, color .2s, border-color .2s; line-height: 1.1; white-space: nowrap; }
.btn svg { width: 17px; height: 17px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dk); color: #fff; }
.btn-whatsapp { background: #1FA855; color: #fff; }
.btn-whatsapp:hover { background: #178446; color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-dk); }
.btn-light { background: #fff; color: var(--ink); }
.btn-on-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-on-dark:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: saturate(140%) blur(12px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 600; font-size: 1.5rem; color: var(--ink); }
.brand .logo-mark { width: 42px; height: 42px; border-radius: 50%; flex: none; border: 1.5px solid var(--accent); color: var(--accent); display: grid; place-items: center; font-weight: 600; font-family: var(--font-head); font-size: 1.25rem; }
.brand small { font-family: var(--font-body); font-weight: 600; font-size: .58rem; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); display: block; margin-top: 2px; }
.brand-logo { height: 50px; width: auto; display: block; }
.site-footer .brand-logo { height: 58px; }
@media (max-width: 1040px) { .brand-logo { height: 44px; } }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links > li > a { color: var(--ink-2); font-weight: 600; font-size: .94rem; }
.nav-links > li > a:hover { color: var(--accent); }
.nav-links .btn { padding: 12px 24px; }
.nav-links > li > a.btn-primary { color: #fff; }
.nav-links > li > a.btn-primary:hover { color: #fff; }

.has-dropdown { position: relative; }
.dropdown-toggle::after { content: ""; display: inline-block; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); margin-left: 7px; vertical-align: middle; position: relative; top: -2px; }
.dropdown { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 10px; min-width: 340px; opacity: 0; visibility: hidden; transition: .22s; list-style: none; margin: 0; z-index: 120; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown::before { content: ""; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.dropdown li a { display: flex; flex-direction: column; gap: 3px; padding: 10px 14px; border-radius: 9px; color: var(--ink-2); }
.dropdown li a strong { font-weight: 600; font-size: .95rem; color: var(--ink); }
.dropdown li a small { color: var(--muted); font-size: .8rem; line-height: 1.35; font-weight: 500; }
.dropdown li a:hover { background: var(--soft); }
.dropdown li a:hover strong { color: var(--accent-dk); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 46px; height: 46px; border-radius: 10px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px auto; border-radius: 3px; transition: .25s; }

@media (max-width: 1040px) {
  .nav-toggle { display: block; }
  .nav-links { position: absolute; top: var(--header-h); left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: #fff; padding: 12px var(--gut) 24px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); max-height: calc(100vh - var(--header-h)); overflow-y: auto; display: none; }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 14px 0; border-bottom: 1px solid var(--line); display: block; }
  .nav-links .btn { margin-top: 16px; justify-content: center; }
  .has-dropdown:hover .dropdown { transform: none; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 8px 14px; min-width: 0; }
  .dropdown::before { display: none; }
  .dropdown li a { padding: 9px 0; }
  .dropdown-toggle::after { float: right; top: 6px; }
}

/* Slider */
.slider { position: relative; height: 68vh; min-height: 460px; max-height: 700px; overflow: hidden; background: var(--dark); }
.slides { height: 100%; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease; background-size: cover; background-position: center; display: flex; align-items: center; }
.slide.active { opacity: 1; }
.slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(24,18,11,.78) 0%, rgba(24,18,11,.45) 45%, rgba(24,18,11,.25) 100%); }
.slide-inner { position: relative; z-index: 2; max-width: 720px; color: #fff; }
.slide-inner .eyebrow { color: #CBB78A; }
.slide-inner .eyebrow::before { background: #CBB78A; }
.slide h1, .slide h2 { color: #fff; font-size: clamp(2.4rem, 6vw, 4.4rem); margin-bottom: 18px; }
.slide p { color: rgba(255,255,255,.9); font-size: 1.2rem; max-width: 52ch; margin-bottom: 28px; }
.slide .cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.slider-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 10px; }
.slider-dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; background: rgba(255,255,255,.45); cursor: pointer; padding: 0; transition: .2s; }
.slider-dots button.active { background: #fff; width: 30px; border-radius: 6px; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 54px; height: 54px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.08); color: #fff; cursor: pointer; display: grid; place-items: center; transition: .2s; }
.slider-arrow:hover { background: #fff; color: var(--ink); }
.slider-arrow svg { width: 22px; height: 22px; }
.slider-arrow.prev { left: 24px; } .slider-arrow.next { right: 24px; }
@media (max-width: 720px) { .slider-arrow { display: none; } .slide::after { background: linear-gradient(180deg, rgba(24,18,11,.55), rgba(24,18,11,.78)); } }

/* Grid / Kartlar */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); margin-bottom: 0; }
.card .ico { width: 48px; height: 48px; margin-bottom: 18px; color: var(--accent); }
.card .ico svg { width: 100%; height: 100%; }

.service-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; color: inherit; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); color: inherit; }
.service-card .thumb { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .thumb img { transform: scale(1.06); }
.service-card .thumb .tag { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.94); color: var(--ink); font-size: .76rem; font-weight: 600; padding: 6px 12px; border-radius: 100px; }
.service-card .body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.service-card .body h3 { margin-bottom: 6px; font-size: 1.45rem; }
.service-card .body p { color: var(--muted); font-size: .95rem; margin-bottom: 18px; }
.service-card .meta { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.service-card .price { font-family: var(--font-head); font-size: 1.5rem; color: var(--accent-dk); font-weight: 600; }
.service-card .price small { font-family: var(--font-body); font-size: .78rem; color: var(--muted); display: block; font-weight: 600; }
.service-card .go { font-weight: 600; font-size: .9rem; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; }
.service-card .go svg { width: 16px; height: 16px; }
.service-card:hover .go { gap: 10px; }

.section-head { max-width: 60ch; }
.section-head.center { margin: 0 auto; }
.bg-soft { background: var(--soft); }
.bg-dark { background: var(--dark); color: rgba(255,255,255,.85); }
.bg-dark h2, .bg-dark h3 { color: #fff; }
.bg-dark .lead { color: rgba(255,255,255,.78); }
.bg-dark .eyebrow { color: #CBB78A; }
.bg-dark .eyebrow::before { background: #CBB78A; }

.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .ico { width: 44px; height: 44px; flex: none; border-radius: 50%; background: var(--accent-lt); color: var(--accent-dk); display: grid; place-items: center; }
.feature .ico svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.2rem; margin-bottom: 6px; }
.feature p { margin: 0; color: var(--muted); }

.step .num { font-family: var(--font-head); font-size: 2.4rem; color: var(--accent); line-height: 1; margin-bottom: 12px; font-weight: 600; }
.stat .n { font-family: var(--font-head); font-size: clamp(2.2rem,4vw,3rem); color: var(--ink); line-height: 1; }
.stat small { color: var(--muted); font-weight: 600; letter-spacing: .04em; }

.price-table { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.price-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 28px; border-bottom: 1px solid var(--line); transition: background .2s; }
.price-row:last-child { border-bottom: 0; }
.price-row:hover { background: var(--soft); }
.price-row .pr-name { font-family: var(--font-head); font-size: 1.4rem; color: var(--ink); }
.price-row .pr-name small { display: block; font-family: var(--font-body); font-size: .82rem; color: var(--muted); font-weight: 600; margin-top: 2px; }
.price-row .pr-right { display: flex; align-items: center; gap: 22px; flex: none; }
.price-row .pr-dur { color: var(--muted); font-weight: 600; font-size: .9rem; }
.price-row .pr-price { font-family: var(--font-head); font-size: 1.6rem; color: var(--accent-dk); font-weight: 600; white-space: nowrap; }
@media (max-width: 560px) { .price-row { flex-direction: column; align-items: flex-start; gap: 10px; } .price-row .pr-right { gap: 16px; } }

.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 12px; font-size: .95rem; }
.review p { color: var(--ink-2); }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--accent-lt); display: grid; place-items: center; font-weight: 600; color: var(--accent-dk); flex: none; font-family: var(--font-head); font-size: 1.05rem; }
.review .who b { display: block; color: var(--ink); } .review .who small { color: var(--muted); }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 22px 0; font-family: var(--font-head); font-size: 1.3rem; color: var(--ink); font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .plus { flex: none; width: 26px; height: 26px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform .25s; }
.faq-q .plus::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.faq-q .plus::after { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.faq-item.open .faq-q .plus::after { transform: translateX(-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding-bottom: 22px; color: var(--muted); margin: 0; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; margin-bottom: 7px; color: var(--ink); font-size: .92rem; }
.field input, .field select, .field textarea { width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font-family: inherit; font-size: 1rem; background: #fff; color: var(--ink); transition: border .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.info-list .ico { width: 44px; height: 44px; border-radius: 50%; background: var(--accent-lt); color: var(--accent-dk); display: grid; place-items: center; flex: none; }
.info-list .ico svg { width: 20px; height: 20px; }
.info-list b { color: var(--ink); display: block; }

.cta-band { text-align: center; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px); }
.cta-band .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.media img { width: 100%; height: 100%; object-fit: cover; }

.article { max-width: 780px; margin: 0 auto; }
.article p { font-size: 1.1rem; color: var(--ink-2); }
.article h2 { margin-top: 1.6em; }
.article ul { padding-left: 1.2em; } .article li { margin-bottom: .5em; }
.breadcrumb { font-size: .84rem; color: var(--muted); font-weight: 600; padding: 20px 0 0; }
.breadcrumb a { color: var(--muted); } .breadcrumb a:hover { color: var(--accent); }
.post-thumb { border-radius: var(--radius); aspect-ratio: 16/10; width: 100%; object-fit: cover; margin-bottom: 16px; background: var(--soft-2); }
.post-meta { color: var(--muted); font-size: .82rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 8px; }

/* Footer */
.site-footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 68px 0 28px; }
.site-footer a { color: rgba(255,255,255,.7); }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; }
@media (max-width: 840px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
.site-footer ul { list-style: none; padding: 0; margin: 0; } .site-footer li { margin-bottom: 10px; }
.footer-brand .brand { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 44px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .84rem; color: rgba(255,255,255,.5); }

/* Floating aksiyon */
.fab-stack { position: fixed; right: 20px; bottom: 20px; z-index: 200; display: flex; flex-direction: column; gap: 12px; }
.fab { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: 0 10px 28px rgba(0,0,0,.22); transition: transform .15s; }
.fab:hover { transform: scale(1.08); color: #fff; }
.fab-wa { background: #1FA855; } .fab-call { background: var(--accent); }
.fab svg { width: 26px; height: 26px; }
.mobile-bar { display: none; }
@media (max-width: 620px) {
  .fab-stack { right: 14px; bottom: 14px; gap: 10px; }
  .fab { width: 52px; height: 52px; }
  .fab svg { width: 23px; height: 23px; }
}

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--accent); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 0; z-index: 999; }
.skip-link:focus { left: 0; color: #fff; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; } .reveal { opacity: 1; transform: none; transition: none; } .slide { transition: none; } }

/* Galeri (5 görsel alanı) */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 16px; margin-top: 44px; }
.gallery-item { overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); background: var(--soft); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.feat { grid-column: span 2; grid-row: span 2; }
@media (max-width: 760px) { .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; } .gallery-item.feat { grid-column: span 2; grid-row: span 1; } }

/* CTA bandındaki açıklama paragrafını da ortala */
.cta-band .lead { margin-left: auto; margin-right: auto; }

/* KVKK çerez bandı */
.nv-cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 500; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); padding: 18px 20px; max-width: 540px; margin: 0 auto; }
.nv-cookie p { margin: 0 0 12px; font-size: .9rem; color: var(--ink-2); }
.nv-cookie-btns { display: flex; gap: 10px; }
.nv-cookie-btns button { flex: 1; padding: 11px 16px; border-radius: 100px; border: 1.5px solid var(--line); cursor: pointer; font-weight: 600; font-family: inherit; font-size: .9rem; }
.nv-cookie .nv-accept { background: var(--accent); color: #fff; border-color: var(--accent); }
.nv-cookie .nv-reject { background: #fff; color: var(--ink); }

/* İndirim gösterimi + kampanya bandı (admin panelden yönetilir) */
.old-price { opacity: .5; font-size: .72em; margin-right: 7px; text-decoration: line-through; font-weight: 500; }
.disc-badge { display: inline-block; background: #C2452D; color: #fff; font-family: var(--font-body); font-size: .62em; font-weight: 700; padding: 2px 8px; border-radius: 100px; margin-left: 8px; vertical-align: middle; letter-spacing: .02em; }
.campaign-bar { background: linear-gradient(90deg, var(--accent-dk), var(--accent)); color: #fff; text-align: center; font-weight: 600; font-size: .9rem; padding: 9px 16px; }
