/* ===== Design tokens ===== */
:root {
  --sage-900: #2f3a31;
  --sage-700: #4a5b4c;
  --sage-500: #6b7f6c;
  --sage-300: #9fb09a;
  --sage-100: #e7ece4;
  --sage-50:  #f4f6f1;
  --cream:    #faf8f3;
  --gold:     #c2a878;
  --ink:      #25282a;
  --muted:    #6c7370;
  --white:    #ffffff;
  --radius:   18px;
  --radius-sm: 10px;
  --shadow:   0 10px 40px rgba(47, 58, 49, 0.10);
  --shadow-lg: 0 20px 60px rgba(47, 58, 49, 0.18);
  --container: 1140px;
  --font-head: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.1; color: var(--sage-900); }
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.72rem;
  font-weight: 600; color: var(--gold); margin-bottom: 12px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 12px 22px; border-radius: 100px; border: none; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--sage-700); color: var(--white); }
.btn-primary:hover { background: var(--sage-900); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--sage-900); border: 1.5px solid var(--sage-300); }
.btn-ghost:hover { background: var(--sage-100); }
.btn-lg { padding: 15px 30px; font-size: 1.02rem; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 248, 243, 0.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(47,58,49,0.07);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; color: var(--sage-900); }
.brand-mark { color: var(--gold); }
.brand-logo { height: 38px; width: auto; vertical-align: middle; border-radius: 6px; }
.nav { display: flex; gap: 28px; }
.nav a { font-size: 0.92rem; font-weight: 500; color: var(--sage-700); transition: color 0.2s; }
.nav a:hover { color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.phone-link { font-size: 1.1rem; }
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--sage-900); }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; min-height: 84vh; display: flex; align-items: center; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(244,246,241,0.97) 0%, rgba(244,246,241,0.78) 42%, rgba(244,246,241,0.15) 100%),
    var(--hero-img);
  background-size: cover; background-position: center right;
}
.hero-content { position: relative; max-width: 660px; padding-top: 40px; padding-bottom: 40px; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); margin: 8px 0 18px; }
.hero-sub { font-size: 1.12rem; color: var(--sage-700); max-width: 520px; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-trust { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; font-size: 0.9rem; color: var(--sage-700); font-weight: 500; }
.hero-trust span:nth-child(even) { color: var(--sage-300); }

/* ===== Trustbar ===== */
.trustbar { background: var(--sage-900); color: var(--sage-100); }
.trustbar-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 28px 20px; text-align: center; }
.trustbar-inner div { display: flex; flex-direction: column; gap: 2px; }
.trustbar-inner strong { font-family: var(--font-head); font-size: 2rem; color: var(--white); }
.trustbar-inner span { font-size: 0.82rem; color: var(--sage-300); }

/* ===== Sections ===== */
.section { padding: 88px 0; }
.section-alt { background: var(--sage-50); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 12px; }
.section-sub { color: var(--muted); font-size: 1.05rem; }

/* ===== Service tabs ===== */
.service-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 38px; }
.tab {
  padding: 9px 20px; border-radius: 100px; border: 1.5px solid var(--sage-100);
  background: var(--white); color: var(--sage-700); font-family: var(--font-body);
  font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: all 0.2s;
}
.tab:hover { border-color: var(--sage-300); }
.tab.active { background: var(--sage-700); color: var(--white); border-color: var(--sage-700); }

/* Cinsiyet filtresi */
.gender-filter { display: flex; gap: 8px; justify-content: center; margin-bottom: 22px; }
.gtab {
  padding: 7px 22px; border-radius: 100px; border: 1.5px solid var(--sage-300);
  background: transparent; color: var(--sage-700); font-family: var(--font-body);
  font-weight: 600; font-size: 0.88rem; cursor: pointer; transition: all 0.2s;
}
.gtab:hover { background: var(--sage-50); }
.gtab.active { background: var(--sage-900); color: #fff; border-color: var(--sage-900); }

.empty-svc { grid-column: 1 / -1; text-align: center; color: var(--muted); padding: 40px; }
.service-consult { font-family: var(--font-body); font-size: 0.92rem; font-weight: 700; color: var(--gold); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--white); border-radius: var(--radius); padding: 26px;
  border: 1px solid var(--sage-100); display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card.has-img { padding: 0; overflow: hidden; }
.service-card.has-img h3, .service-card.has-img .desc, .service-card.has-img .service-meta { padding-left: 22px; padding-right: 22px; }
.service-card.has-img h3 { margin-top: 16px; }
.service-card.has-img .btn { margin: 0 22px 22px; width: calc(100% - 44px); }
.service-img { width: 100%; height: 170px; object-fit: cover; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.service-card .desc { color: var(--muted); font-size: 0.92rem; flex: 1; margin-bottom: 18px; }
.service-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.service-price { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--sage-900); }
.service-dur { font-size: 0.85rem; color: var(--muted); background: var(--sage-50); padding: 4px 10px; border-radius: 100px; }
.service-card .btn { width: 100%; }

/* ===== Gallery ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-item {
  position: relative; aspect-ratio: 3/4; border-radius: var(--radius-sm); overflow: hidden;
  background: var(--sage-100); cursor: zoom-in;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .tag {
  position: absolute; left: 10px; bottom: 10px; background: rgba(47,58,49,0.82); color: #fff;
  font-size: 0.72rem; padding: 4px 10px; border-radius: 100px; backdrop-filter: blur(4px);
}

/* ===== Offers (kampanya / paket) ===== */
.offers-section { background: color-mix(in srgb, var(--gold) 10%, var(--white)); }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.offer-card {
  position: relative; background: var(--white); border: 1px solid var(--sage-100);
  border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.offer-badge {
  position: absolute; top: 16px; right: 16px; background: var(--gold); color: #fff;
  font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 100px;
}
.offer-card h3 { font-size: 1.4rem; margin-bottom: 6px; padding-right: 96px; }
.offer-card .desc { color: var(--muted); font-size: 0.92rem; flex: 1; margin-bottom: 16px; }
.offer-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; }
.offer-price s { color: var(--muted); font-size: 0.95rem; }
.offer-price strong { font-family: var(--font-head); font-size: 1.6rem; color: var(--sage-900); }

/* ===== FAQ (SSS) ===== */
.faq-wrap { max-width: 760px; }
.faq-item { background: var(--white); border: 1px solid var(--sage-100); border-radius: var(--radius-sm); margin-bottom: 10px; overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 16px 20px; font-weight: 600;
  color: var(--sage-900); display: flex; justify-content: space-between; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--gold); font-size: 1.2rem; font-weight: 700; line-height: 1; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 20px 16px; color: var(--muted); font-size: 0.95rem; }

/* ===== Map ===== */
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--sage-100); }
.map-frame iframe { width: 100%; height: 380px; border: 0; display: block; }
.map-actions { display: flex; justify-content: center; margin-top: 18px; }

/* ===== Team ===== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.team-card { text-align: center; }
.team-photo {
  width: 100%; aspect-ratio: 1; border-radius: var(--radius); object-fit: cover;
  margin-bottom: 14px; background: var(--sage-100);
}
.team-card h3 { font-size: 1.3rem; }
.team-card .role { color: var(--gold); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.team-card .rate { color: var(--muted); font-size: 0.85rem; margin-top: 4px; }

/* ===== Reviews ===== */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: var(--white); border-radius: var(--radius); padding: 26px; border: 1px solid var(--sage-100); }
.review-stars { color: var(--gold); margin-bottom: 10px; letter-spacing: 2px; }
.review-text { color: var(--sage-700); font-size: 0.98rem; margin-bottom: 18px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--sage-300); display: grid; place-items: center; color: #fff; font-weight: 700; }
.review-author strong { display: block; font-size: 0.92rem; color: var(--ink); }
.review-author span { font-size: 0.8rem; color: var(--muted); }

/* ===== CTA banner ===== */
.cta-banner { background: linear-gradient(120deg, var(--sage-900), var(--sage-700)); color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 56px 20px; flex-wrap: wrap; }
.cta-banner h2 { color: #fff; font-size: 2.2rem; }
.cta-banner p { color: var(--sage-300); }

/* ===== Footer ===== */
.site-footer { background: var(--sage-900); color: var(--sage-100); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 48px; }
.brand-light { color: #fff; }
.footer-about { color: var(--sage-300); font-size: 0.9rem; margin: 14px 0 18px; max-width: 240px; }
.socials { display: flex; gap: 16px; }
.socials a { font-size: 0.85rem; color: var(--sage-100); border-bottom: 1px solid transparent; }
.socials a:hover { border-color: var(--gold); color: #fff; }
.site-footer h4 { color: #fff; font-size: 1.15rem; margin-bottom: 14px; }
.site-footer p, .site-footer a { color: var(--sage-300); font-size: 0.92rem; }
.site-footer a:hover { color: #fff; }
.hours { list-style: none; }
.hours li { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--sage-300); padding: 3px 0; }
.footer-cta .btn { margin-top: 6px; }
.footer-bottom { display: flex; justify-content: space-between; padding: 22px 20px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.8rem; color: var(--sage-300); }

/* ===== Sticky mobile CTA ===== */
.sticky-cta {
  display: none; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 40;
  padding: 16px; border-radius: 100px; border: none; cursor: pointer;
  background: var(--sage-900); color: #fff; font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  box-shadow: var(--shadow-lg);
}

/* ===== Köşe WhatsApp butonu ===== */
.wa-float {
  position: fixed; right: 22px; bottom: 24px; z-index: 45;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.15s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
@media (max-width: 760px) { .wa-float { bottom: 84px; right: 16px; } } /* sticky CTA üstünde */

/* ===== Modal ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100; background: rgba(37, 40, 42, 0.55);
  backdrop-filter: blur(4px); display: grid; place-items: center; padding: 20px;
  animation: fade 0.2s ease;
}
.modal-overlay[hidden] { display: none; }
.modal {
  background: var(--cream); border-radius: 24px; width: 100%; max-width: 520px;
  max-height: 90vh; overflow-y: auto; padding: 32px; position: relative;
  box-shadow: var(--shadow-lg); animation: pop 0.25s ease;
}
.modal-close {
  position: absolute; top: 16px; right: 18px; background: none; border: none;
  font-size: 1.8rem; line-height: 1; cursor: pointer; color: var(--muted);
}
.booking-progress { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 20px; }
.step-dot {
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: var(--sage-100); color: var(--sage-500); font-weight: 700; font-size: 0.85rem;
  transition: all 0.3s;
}
.step-dot.active { background: var(--sage-700); color: #fff; }
.step-dot.done { background: var(--gold); color: #fff; }
.step-line { width: 28px; height: 2px; background: var(--sage-100); }
.booking-title { text-align: center; font-size: 1.7rem; margin-bottom: 22px; }
.booking-category-tabs {
  display: flex; gap: 8px; overflow-x: auto; padding: 2px 0 12px; margin-bottom: 4px;
  scrollbar-width: thin;
}
.booking-category {
  flex: 0 0 auto; padding: 8px 14px; border-radius: 100px; border: 1.5px solid var(--sage-100);
  background: var(--white); color: var(--sage-700); font: 600 0.82rem var(--font-body); cursor: pointer;
}
.booking-category.active { background: var(--sage-700); border-color: var(--sage-700); color: #fff; }
.booking-category:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* Booking body */
.opt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.opt {
  text-align: left; background: var(--white); border: 1.5px solid var(--sage-100);
  border-radius: var(--radius-sm); padding: 16px; cursor: pointer; transition: all 0.18s;
  font-family: var(--font-body);
}
.opt:hover { border-color: var(--sage-300); }
.opt.selected { border-color: var(--sage-700); background: var(--sage-50); box-shadow: 0 0 0 2px var(--sage-300) inset; }
.opt strong { display: block; font-size: 1rem; color: var(--ink); margin-bottom: 2px; }
.opt small { color: var(--muted); font-size: 0.82rem; }

.date-row { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px; margin-bottom: 16px; }
.date-chip {
  flex: 0 0 auto; min-width: 66px; text-align: center; padding: 12px 8px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--sage-100); background: var(--white); cursor: pointer; font-family: var(--font-body);
  transition: all 0.18s;
}
.date-chip small { display: block; font-size: 0.7rem; color: var(--muted); text-transform: uppercase; }
.date-chip strong { font-size: 1.2rem; color: var(--ink); }
.date-chip.selected { background: var(--sage-700); border-color: var(--sage-700); }
.date-chip.selected small, .date-chip.selected strong { color: #fff; }

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

/* Zaman dilimi (Sabah / Öğleden sonra / Akşam) */
.period-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.period-chip {
  display: flex; flex-direction: column; gap: 3px; align-items: center;
  padding: 14px 8px; border-radius: var(--radius-sm); border: 1.5px solid var(--sage-100);
  background: var(--white); cursor: pointer; font-family: var(--font-body); transition: all 0.18s;
}
.period-chip:hover { border-color: var(--sage-300); }
.period-chip strong { font-size: 0.95rem; color: var(--ink); }
.period-chip small { font-size: 0.74rem; color: var(--muted); }
.period-chip.selected { background: var(--sage-700); border-color: var(--sage-700); }
.period-chip.selected strong, .period-chip.selected small { color: #fff; }
@media (max-width: 460px) { .period-grid { grid-template-columns: 1fr; } }
.time-chip {
  padding: 10px; border-radius: var(--radius-sm); border: 1.5px solid var(--sage-100);
  background: var(--white); cursor: pointer; font-family: var(--font-body); font-weight: 600;
  font-size: 0.88rem; color: var(--sage-700); transition: all 0.18s;
}
.time-chip:hover { border-color: var(--sage-300); }
.time-chip.selected { background: var(--sage-700); color: #fff; border-color: var(--sage-700); }
.time-chip:disabled { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }

.field { margin-bottom: 14px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--sage-700); margin-bottom: 5px; }
.field input {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--sage-100);
  font-family: var(--font-body); font-size: 0.95rem; background: var(--white);
}
.field input:focus { outline: none; border-color: var(--sage-500); }

.summary-box { background: var(--white); border: 1px solid var(--sage-100); border-radius: var(--radius-sm); padding: 16px; margin-bottom: 18px; }
.summary-box .row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.92rem; }
.summary-box .row span:first-child { color: var(--muted); }
.summary-box .row span:last-child { font-weight: 600; color: var(--ink); }
.summary-box .total { border-top: 1px dashed var(--sage-300); margin-top: 6px; padding-top: 10px; }
.summary-box .total span:last-child { font-family: var(--font-head); font-size: 1.3rem; color: var(--sage-900); }

.booking-nav {
  position: sticky; bottom: -32px; z-index: 3; display: flex; gap: 10px;
  margin: 22px -4px -32px; padding: 14px 4px 32px;
  background: linear-gradient(to bottom, rgba(250,248,243,0.86), var(--cream) 28%);
}
.booking-nav .btn { flex: 1; }

.booking-success { text-align: center; padding: 16px 0; }
.success-check {
  width: 72px; height: 72px; border-radius: 50%; background: var(--sage-100); color: var(--sage-700);
  display: grid; place-items: center; font-size: 2.4rem; margin: 0 auto 18px;
}
.booking-success h3 { font-size: 1.8rem; margin-bottom: 8px; }
.booking-success p { color: var(--muted); margin-bottom: 6px; }
.hint { font-size: 0.82rem; color: var(--muted); margin-top: 14px; }
.booking-err { color: #b4453a; font-size: 0.85rem; text-align: center; margin-top: 16px; font-weight: 600; }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 120; background: rgba(37, 40, 42, 0.85);
  display: grid; place-items: center; padding: 24px; cursor: zoom-out; animation: fade 0.2s ease;
}
.lightbox figure { position: relative; max-width: min(920px, 94vw); }
.lightbox img { max-height: 82vh; width: auto; max-width: 100%; border-radius: var(--radius-sm); margin: 0 auto; }
.lightbox figcaption { text-align: center; color: #fff; margin-top: 10px; font-size: 0.9rem; }
.lightbox .modal-close { color: #fff; top: -42px; right: 0; }

@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop { from { opacity: 0; transform: translateY(14px) scale(0.98); } to { opacity: 1; transform: none; } }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav { display: none; }
  /* Hamburger menü: açıkken nav header altına dikey panel olarak iner */
  .site-header.menu-open .nav {
    display: flex; flex-direction: column; gap: 16px;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--cream); padding: 20px; border-bottom: 1px solid var(--sage-100);
    box-shadow: var(--shadow);
  }
  .site-header.menu-open .nav a { font-size: 1.05rem; }
  .header-actions .btn { display: none; }
  .menu-toggle { display: block; }
  .service-grid, .review-grid, .offer-grid { grid-template-columns: 1fr; }
  .trustbar-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .sticky-cta { display: block; }
  body { padding-bottom: 84px; }
  .hero { min-height: 76vh; }
  .cta-inner { flex-direction: column; text-align: center; }
  .map-frame iframe { height: 300px; }
}
@media (max-width: 460px) {
  .modal-overlay { padding: 12px; }
  .modal { max-height: calc(100dvh - 24px); padding: 24px 20px; }
  .booking-nav { bottom: -24px; margin-bottom: -24px; padding-bottom: 24px; }
  .opt-grid { grid-template-columns: 1fr; }
  .time-grid { grid-template-columns: repeat(3, 1fr); }
}
