/* ==========================================================================
   BELLA SPA THERAPY — Tasarım Sistemi
   Koyu / premium / mat altın vurgulu spa teması.
   Bu dosya tek kaynak: renk, tipografi, boşluk ve bileşen kuralları.
   ========================================================================== */

:root{
  /* --- Renkler --- */
  --c-bg:            #171615;   /* ana koyu antrasit/füme zemin */
  --c-bg-alt:         #1e1b19;   /* bölüm ton farkı 1 */
  --c-bg-alt-2:       #221e1c;   /* bölüm ton farkı 2 */
  --c-surface:        #262220;   /* kart zemini */
  --c-surface-2:      #2c2724;   /* kart hover / ikinci katman */
  --c-border:         rgba(197,163,105,.18);
  --c-border-strong:  rgba(197,163,105,.35);

  --c-text:           #f3ede2;   /* kırık beyaz */
  --c-text-dim:       #cbc0ad;   /* ikincil metin */
  --c-text-faint:     #9a8f7c;   /* üçüncül / etiket metin */

  --c-gold:           #c5a369;   /* mat altın */
  --c-gold-light:     #e0c48f;
  --c-gold-dark:      #8a6d3f;
  --c-bronze:         #9c7a4d;

  --c-whatsapp:       #25d366;
  --c-whatsapp-dark:  #1da851;

  --c-overlay-strong: rgba(12,10,9,.72);
  --c-overlay-soft:   rgba(12,10,9,.42);

  /* --- Tipografi --- */
  --f-heading: 'Playfair Display', Georgia, serif;
  --f-body:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-script:  'Parisienne', cursive;

  /* --- Boşluk skalası --- */
  --sp-1: .4rem;
  --sp-2: .8rem;
  --sp-3: 1.2rem;
  --sp-4: 1.6rem;
  --sp-5: 2.4rem;
  --sp-6: 3.2rem;
  --sp-7: 4.8rem;
  --sp-8: 6.4rem;
  --sp-9: 9.6rem;

  /* --- Yuvarlaklık / gölge --- */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;
  --shadow-card: 0 18px 40px -20px rgba(0,0,0,.55);
  --shadow-gold: 0 10px 30px -12px rgba(197,163,105,.35);

  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 96px;
}

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* --- Reset --- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4{ font-family: var(--f-heading); font-weight: 600; line-height: 1.2; margin: 0; color: var(--c-text); }
p{ margin: 0; }
button{ font-family: inherit; cursor: pointer; }
input, textarea, select{ font-family: inherit; }

.skip-link{
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--c-gold); color: #17150f; padding: .8rem 1.4rem; border-radius: 0 0 8px 0;
}
.skip-link:focus{ left: 0; }

:focus-visible{ outline: 2px solid var(--c-gold-light); outline-offset: 3px; }

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

.eyebrow{
  font-family: var(--f-script);
  font-size: 1.6rem;
  color: var(--c-gold);
  display: inline-block;
  margin-bottom: var(--sp-2);
  line-height: 1;
}

.section-head{ max-width: 640px; margin: 0 auto var(--sp-7); text-align: center; }
.section-head h2{ font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin-bottom: var(--sp-2); }
.section-head p{ color: var(--c-text-dim); }

.section{ padding: var(--sp-8) 0; position: relative; }
.section--alt{ background: var(--c-bg-alt); }
.section--alt2{ background: var(--c-bg-alt-2); }

/* --- Reveal animasyonu (JS ile .is-visible eklenir) --- */
.reveal{ opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible{ opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity: 1; transform: none; } }

/* --- Butonlar --- */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1rem 2rem; border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; font-size: .95rem; letter-spacing: .02em;
  transition: transform .35s var(--ease), background-color .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
  white-space: nowrap;
}
.btn--gold{ background: linear-gradient(135deg, var(--c-gold-light), var(--c-bronze)); color: #1c170f; box-shadow: var(--shadow-gold); }
.btn--gold:hover{ transform: translateY(-2px); }
.btn--outline{ border-color: var(--c-border-strong); color: var(--c-text); background: transparent; }
.btn--outline:hover{ border-color: var(--c-gold); color: var(--c-gold-light); }
.btn--sm{ padding: .7rem 1.4rem; font-size: .85rem; }
.btn--block{ width: 100%; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header{
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: transparent;
  transition: background-color .45s var(--ease), backdrop-filter .45s var(--ease), height .45s var(--ease), box-shadow .45s var(--ease);
}
.site-header.is-scrolled{
  background: rgba(23,22,21,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  height: 80px;
  box-shadow: 0 10px 30px -18px rgba(0,0,0,.6);
  border-bottom: 1px solid var(--c-border);
}
.site-header__inner{
  height: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; column-gap: var(--sp-4);
}
.brand{ display: flex; align-items: baseline; gap: .5rem; }
.brand--center{ justify-self: center; }
.brand--center .brand__logo-img{ margin-top: 10px; }
.brand__mark{ font-family: var(--f-heading); font-size: 1.4rem; color: var(--c-text); letter-spacing: .02em; }
.brand__mark--script{ font-family: var(--f-script); font-size: 1.5rem; color: var(--c-gold); }
.brand__logo-img{ width: auto; height: auto; object-fit: contain; display: block; }
.brand--footer .brand__logo-img{ max-height: none; }

.main-nav ul{ display: flex; align-items: center; gap: var(--sp-5); }
.main-nav a:not(.btn){
  font-size: .92rem; color: var(--c-text-dim); position: relative; padding: .3rem 0;
  transition: color .3s var(--ease);
}
.main-nav a:not(.btn):hover, .main-nav a:not(.btn).is-active{ color: var(--c-gold-light); }
.main-nav a:not(.btn)::after{
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px;
  background: var(--c-gold); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.main-nav a:not(.btn):hover::after, .main-nav a:not(.btn).is-active::after{ transform: scaleX(1); }

.main-nav--left{ justify-self: end; }
.site-header__right{ justify-self: stretch; display: flex; align-items: center; gap: var(--sp-4); }
.main-nav--right ul{ justify-content: flex-start; }

.menu-toggle{
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none; padding: 0; margin-left: auto;
}
.menu-toggle span{ display: block; width: 22px; height: 2px; background: var(--c-gold-light); transition: transform .3s var(--ease), opacity .3s var(--ease); }

/* --- Mobil menü --- */
.mobile-menu{
  position: fixed; top: 0; right: 0; height: 100%; width: min(360px, 86vw);
  background: #1a1817; z-index: 200; border-left: 1px solid var(--c-border);
  transform: translateX(100%); transition: transform .45s var(--ease);
  overflow-y: auto;
}
.mobile-menu.is-open{ transform: translateX(0); }
.mobile-menu-backdrop{
  position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 199;
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s var(--ease);
}
.mobile-menu-backdrop.is-open{ opacity: 1; visibility: visible; }
.mobile-menu__inner{ padding: var(--sp-6) var(--sp-5); }
.mobile-menu__close{ background: none; border: none; color: var(--c-text); font-size: 2rem; line-height: 1; margin-bottom: var(--sp-5); }
.mobile-menu__links li{ border-bottom: 1px solid var(--c-border); }
.mobile-menu__links a{ display: block; padding: 1rem 0; font-size: 1.05rem; color: var(--c-text-dim); }
.mobile-menu__links li:last-child{ border: none; padding-top: var(--sp-4); }
.mobile-menu__contact{ margin-top: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-3); }
.mobile-menu__contact a{ color: var(--c-gold-light); display: inline-flex; align-items: center; gap: .5rem; }
.mobile-menu__contact svg{ width: 18px; height: 18px; }
.mobile-menu__social{ display: flex; gap: var(--sp-4); }
.mobile-menu__social a{ color: var(--c-text-dim); font-size: .9rem; }

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
.hero-slider{ position: relative; height: 100vh; min-height: 560px; overflow: hidden; background: var(--c-bg); }
.hero-slide{
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity 1.1s var(--ease), visibility 1.1s var(--ease);
}
.hero-slide.is-active{ opacity: 1; visibility: visible; z-index: 2; }
.hero-slide__media{ position: absolute; inset: 0; }
.hero-slide__media img, .hero-slide__media video{ width: 100%; height: 100%; object-fit: cover; }
.hero-slide.is-active .hero-slide__media img{ animation: heroZoom 9s var(--ease) forwards; }
@keyframes heroZoom{ from{ transform: scale(1); } to{ transform: scale(1.07); } }
.hero-slide__overlay{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,9,8,.55) 0%, rgba(10,9,8,.35) 40%, rgba(10,9,8,.82) 100%);
}
.hero-slide__content{
  position: relative; z-index: 3; height: 100%; display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center; max-width: 640px; padding: 0 24px; margin: 0 auto;
  width: 100%;
}
.hero-slide__content .eyebrow{ opacity: 0; transform: translateY(16px); }
.hero-slide__content h1{ opacity: 0; transform: translateY(20px); font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: var(--sp-3); }
.hero-slide__content p{ opacity: 0; transform: translateY(20px); color: var(--c-text-dim); font-size: 1.08rem; max-width: 520px; margin-bottom: var(--sp-5); }
.hero-slide__actions{ opacity: 0; transform: translateY(20px); display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.hero-slide.is-active .eyebrow{ animation: heroUp .8s var(--ease) .25s forwards; }
.hero-slide.is-active h1{ animation: heroUp .8s var(--ease) .4s forwards; }
.hero-slide.is-active p{ animation: heroUp .8s var(--ease) .55s forwards; }
.hero-slide.is-active .hero-slide__actions{ animation: heroUp .8s var(--ease) .7s forwards; }
@keyframes heroUp{ to{ opacity: 1; transform: translateY(0); } }

.hero-dots{ position: absolute; left: 50%; bottom: var(--sp-6); transform: translateX(-50%); z-index: 4; display: flex; gap: .6rem; }
.hero-dots button{
  width: 9px; height: 9px; border-radius: 50%; border: 1px solid var(--c-border-strong);
  background: transparent; padding: 0; transition: background-color .3s var(--ease), width .3s var(--ease);
}
.hero-dots button.is-active{ background: var(--c-gold); width: 26px; border-radius: 6px; }

.hero-scroll-cue{
  position: absolute; bottom: var(--sp-4); right: var(--sp-6); z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--c-text-faint); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
}
.hero-scroll-cue span.line{ width: 1px; height: 34px; background: linear-gradient(var(--c-gold), transparent); animation: cueMove 2s ease-in-out infinite; }
@keyframes cueMove{ 0%,100%{ opacity:.3; } 50%{ opacity: 1; } }

/* ==========================================================================
   KISA TANITIM
   ========================================================================== */
.intro{ display: grid; grid-template-columns: .95fr 1.05fr; gap: var(--sp-8); align-items: center; }
.intro__media{ position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.intro__media::after{ content:''; position:absolute; inset:0; border: 1px solid var(--c-border); border-radius: inherit; }
.intro__body h2{ font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: var(--sp-4); }
.intro__body p{ color: var(--c-text-dim); margin-bottom: var(--sp-5); }

/* ==========================================================================
   MASAJ KARTLARI
   ========================================================================== */
.grid-cards{ display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.massage-card{
  background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md);
  overflow: hidden; transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.massage-card:hover{ transform: translateY(-6px); border-color: var(--c-border-strong); box-shadow: var(--shadow-card); }
.massage-card__media{ position: relative; aspect-ratio: 4/3.4; overflow: hidden; }
.massage-card__media a{ display: block; width: 100%; height: 100%; }
.massage-card__media img{ width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.massage-card:hover .massage-card__media img{ transform: scale(1.08); }
.massage-card__duration{
  position: absolute; top: var(--sp-3); right: var(--sp-3); background: rgba(17,15,14,.72);
  color: var(--c-gold-light); font-size: .75rem; padding: .35rem .8rem; border-radius: 999px; border: 1px solid var(--c-border-strong);
}
.massage-card__body{ padding: var(--sp-4); }
.massage-card__body h3{ font-size: 1.2rem; margin-bottom: var(--sp-2); }
.massage-card__body p{ color: var(--c-text-dim); font-size: .92rem; margin-bottom: var(--sp-4); min-height: 3.2em; }
.massage-card__actions{ display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.massage-card__actions .btn{ flex: 1; }

.section-cta{ text-align: center; margin-top: var(--sp-6); }

/* ==========================================================================
   ÖZELLİKLER (Neden Bella Spa Therapy)
   ========================================================================== */
.features{ display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.feature{
  text-align: center; padding: var(--sp-5) var(--sp-3); border: 1px solid var(--c-border); border-radius: var(--radius-md);
  background: var(--c-surface); transition: border-color .35s var(--ease), transform .35s var(--ease);
}
.feature:hover{ border-color: var(--c-border-strong); transform: translateY(-4px); }
.feature__icon{
  width: 56px; height: 56px; margin: 0 auto var(--sp-3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle, rgba(197,163,105,.16), transparent 70%);
  color: var(--c-gold);
}
.feature__icon svg{ width: 26px; height: 26px; }
.feature h3{ font-size: 1.05rem; margin-bottom: var(--sp-2); }
.feature p{ color: var(--c-text-dim); font-size: .9rem; }

/* ==========================================================================
   CTA BANNER (büyük görselli)
   ========================================================================== */
.cta-banner{ position: relative; min-height: 60vh; display: flex; align-items: center; justify-content: center; overflow: hidden; border-radius: var(--radius-lg); }
.cta-banner img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-banner::before{ content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(10,9,8,.55), rgba(10,9,8,.82)); }
.cta-banner__content{ position: relative; z-index: 2; text-align: center; padding: var(--sp-6); max-width: 700px; }
.cta-banner__content h2{ font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-bottom: var(--sp-5); }

/* ==========================================================================
   KOMPAKT FİLTRE SEKMELERİ (Masajlar / Galeri kategori filtresi)
   ========================================================================== */
.filter-tabs{ display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center; }
.filter-tab{
  padding: .5rem 1.15rem; border-radius: 999px; border: 1px solid var(--c-border);
  font-size: .85rem; color: var(--c-text-dim); white-space: nowrap; background: transparent;
  transition: border-color .3s var(--ease), color .3s var(--ease), background-color .3s var(--ease);
  cursor: pointer; font-family: inherit;
}
.filter-tab:hover{ border-color: var(--c-border-strong); color: var(--c-text); }
.filter-tab.is-active{ border-color: var(--c-gold); background: rgba(197,163,105,.12); color: var(--c-gold-light); font-weight: 600; }

/* ==========================================================================
   KATEGORİLER (ana sayfa dekoratif kartlar)
   ========================================================================== */
.category-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
.category-tile{
  position: relative; padding: var(--sp-6) var(--sp-4); border: 1px solid var(--c-border); border-radius: var(--radius-md);
  background: linear-gradient(160deg, var(--c-surface), var(--c-bg-alt)); text-align: center;
  transition: border-color .35s var(--ease), transform .35s var(--ease);
}
.category-tile:hover{ border-color: var(--c-gold); transform: translateY(-4px); }
.category-tile span{ font-family: var(--f-heading); font-size: 1.1rem; }

/* ==========================================================================
   GALERİ ÖN İZLEME + LIGHTBOX
   ========================================================================== */
.gallery-masonry{ columns: 4 220px; column-gap: var(--sp-4); }
.gallery-masonry__item{
  break-inside: avoid; margin-bottom: var(--sp-4); border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--c-border); cursor: zoom-in; position: relative;
}
.gallery-masonry__item img{ width: 100%; display: block; transition: transform .5s var(--ease), filter .5s var(--ease); }
.gallery-masonry__item:hover img{ transform: scale(1.05); }

.lightbox{
  position: fixed; inset: 0; z-index: 300; background: rgba(8,7,6,.94);
  display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.lightbox.is-open{ opacity: 1; visibility: visible; }
.lightbox img{ max-width: 88vw; max-height: 82vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-card); }
.lightbox__close, .lightbox__prev, .lightbox__next{
  position: absolute; background: rgba(255,255,255,.06); border: 1px solid var(--c-border-strong); color: var(--c-text);
  width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; transition: background-color .3s var(--ease);
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover{ background: rgba(197,163,105,.18); }
.lightbox__close{ top: var(--sp-4); right: var(--sp-4); }
.lightbox__prev{ left: var(--sp-4); top: 50%; transform: translateY(-50%); }
.lightbox__next{ right: var(--sp-4); top: 50%; transform: translateY(-50%); }

/* ==========================================================================
   YORUMLAR
   ========================================================================== */
.testimonials{ display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.testimonial-card{ background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: var(--sp-5); }
.testimonial-card .icon--quote{ width: 26px; height: 26px; color: var(--c-gold); margin-bottom: var(--sp-3); }
.testimonial-card p{ color: var(--c-text-dim); margin-bottom: var(--sp-4); font-size: .95rem; }
.testimonial-card__meta{ display: flex; align-items: center; justify-content: space-between; }
.testimonial-card__name{ font-weight: 600; }
.star{ color: var(--c-text-faint); font-size: .9rem; }
.star--on{ color: var(--c-gold); }

/* ==========================================================================
   SSS ACCORDION
   ========================================================================== */
.faq{ max-width: 780px; margin: 0 auto; }
.faq-item{ border-bottom: 1px solid var(--c-border); }
.faq-item__question{
  width: 100%; text-align: left; background: none; border: none; color: var(--c-text);
  padding: var(--sp-4) 0; display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3);
  font-size: 1.02rem; font-family: var(--f-heading);
}
.faq-item__question .icon--chevron{ width: 18px; height: 18px; color: var(--c-gold); transition: transform .35s var(--ease); flex-shrink: 0; }
.faq-item.is-open .icon--chevron{ transform: rotate(90deg); }
.faq-item__answer{ max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-item__answer-inner{ padding-bottom: var(--sp-4); color: var(--c-text-dim); font-size: .95rem; max-width: 640px; }

/* ==========================================================================
   REZERVASYON ÇAĞRISI
   ========================================================================== */
.reservation-cta{
  text-align: center; padding: var(--sp-8) var(--sp-5); border-radius: var(--radius-lg);
  background: radial-gradient(120% 140% at 50% 0%, rgba(197,163,105,.12), transparent 60%), var(--c-bg-alt-2);
  border: 1px solid var(--c-border);
}
.reservation-cta h2{ font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: var(--sp-5); }
.reservation-cta__actions{ display: flex; justify-content: center; gap: var(--sp-3); flex-wrap: wrap; }

/* ==========================================================================
   İLETİŞİM + HARİTA
   ========================================================================== */
.contact-block{ display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6); align-items: stretch; }
.contact-info{ display: flex; flex-direction: column; gap: var(--sp-4); }
.contact-info__item{ display: flex; gap: var(--sp-3); align-items: flex-start; }
.contact-info__item .icon{ width: 22px; height: 22px; color: var(--c-gold); flex-shrink: 0; margin-top: 3px; }
.contact-info__item h4{ font-size: 1rem; margin-bottom: .2rem; }
.contact-info__item p, .contact-info__item a{ color: var(--c-text-dim); font-size: .93rem; }
.contact-map{ border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--c-border); min-height: 320px; }
.contact-map iframe{ width: 100%; height: 100%; min-height: 320px; border: 0; filter: grayscale(.25) invert(.92) contrast(.9); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{ background: #121110; border-top: 1px solid var(--c-border); padding-top: var(--sp-8); }
.footer__grid{ display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--sp-6); padding-bottom: var(--sp-7); }
.brand--footer{ margin-bottom: var(--sp-3); }
.footer__desc{ color: var(--c-text-faint); font-size: .9rem; margin-bottom: var(--sp-4); max-width: 320px; }
.footer__social{ display: flex; gap: var(--sp-4); }
.footer__social a{ color: var(--c-text-dim); font-size: .88rem; transition: color .3s var(--ease); }
.footer__social a:hover{ color: var(--c-gold-light); }
.footer__title{ font-family: var(--f-heading); font-size: 1rem; margin-bottom: var(--sp-3); color: var(--c-gold-light); }
.footer__title--spaced{ margin-top: var(--sp-4); }
.footer__col ul li{ margin-bottom: .6rem; }
.footer__col a{ color: var(--c-text-dim); font-size: .9rem; transition: color .3s var(--ease); }
.footer__col a:hover{ color: var(--c-gold-light); }
.footer__contact li{ color: var(--c-text-dim); font-size: .9rem; }
.footer__hours li{ display: flex; justify-content: space-between; font-size: .85rem; color: var(--c-text-faint); margin-bottom: .4rem; }
.footer__bottom{ border-top: 1px solid var(--c-border); padding: var(--sp-4) 0; }
.footer__bottom-inner{ display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--sp-3); }
.footer__bottom-inner p{ color: var(--c-text-faint); font-size: .82rem; }
.footer__legal{ display: flex; gap: var(--sp-4); flex-wrap: wrap; }
.footer__legal a{ color: var(--c-text-faint); font-size: .8rem; }
.footer__legal a:hover{ color: var(--c-gold-light); }

/* ==========================================================================
   SABİT WHATSAPP BUTONU
   ========================================================================== */
.whatsapp-float{
  position: fixed; right: var(--sp-4); bottom: var(--sp-4); z-index: 150;
  display: flex; align-items: center; gap: .6rem;
  background: var(--c-whatsapp); color: #06210f; padding: .85rem 1rem; border-radius: 999px;
  box-shadow: 0 14px 30px -12px rgba(0,0,0,.6);
  transition: transform .3s var(--ease), padding .3s var(--ease), background-color .3s var(--ease);
  animation: waFadeIn .6s var(--ease) 1.2s both;
}
.whatsapp-float:hover{ background: var(--c-whatsapp-dark); transform: translateY(-3px); }
.whatsapp-float svg{ width: 24px; height: 24px; flex-shrink: 0; }
.whatsapp-float__label{ font-size: .85rem; font-weight: 700; white-space: nowrap; }
@keyframes waFadeIn{ from{ opacity: 0; transform: translateY(12px); } to{ opacity: 1; transform: translateY(0); } }

/* ==========================================================================
   PAGE HEADER (alt sayfalar — Faz 2'de kullanılacak, altyapı hazır)
   ========================================================================== */
.page-header{ position: relative; padding: calc(var(--header-h) + var(--sp-7)) 0 var(--sp-7); min-height: 340px; display: flex; align-items: flex-end; overflow: hidden; }
.page-header img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-header::before{ content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(10,9,8,.55), rgba(10,9,8,.9)); z-index: 1; }
.page-header__content{ position: relative; z-index: 2; }
.breadcrumb{ font-size: .82rem; color: var(--c-text-faint); margin-bottom: var(--sp-3); }
.breadcrumb a{ color: var(--c-text-faint); }
.breadcrumb a:hover{ color: var(--c-gold-light); }
.breadcrumb span[aria-current]{ color: var(--c-gold-light); }
.page-header h1{ font-size: clamp(1.9rem, 4vw, 2.8rem); }
.page-header p{ color: var(--c-text-dim); margin-top: var(--sp-2); max-width: 560px; }

/* ==========================================================================
   FORM BİLEŞENLERİ (İletişim / Rezervasyon)
   ========================================================================== */
.form-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.form-group{ display: flex; flex-direction: column; gap: .5rem; }
.form-group--full{ grid-column: 1 / -1; }
.form-label{ font-size: .85rem; color: var(--c-text-dim); }
.form-label .req{ color: var(--c-gold); }
.form-control{
  background: var(--c-bg-alt); border: 1px solid var(--c-border); border-radius: var(--radius-sm);
  padding: .85rem 1rem; color: var(--c-text); font-size: .95rem; font-family: var(--f-body);
  transition: border-color .3s var(--ease);
}
.form-control:focus{ border-color: var(--c-gold); }
textarea.form-control{ resize: vertical; min-height: 120px; }
.form-checkbox{ display: flex; align-items: flex-start; gap: .6rem; font-size: .82rem; color: var(--c-text-faint); }
.form-checkbox input{ margin-top: .2rem; accent-color: var(--c-gold); }
.form-note{ font-size: .85rem; color: var(--c-text-dim); margin-bottom: var(--sp-4); }
.form-error{ color: #e08a8a; font-size: .8rem; display: none; }
.form-group.has-error .form-control{ border-color: #b5504f; }
.form-group.has-error .form-error{ display: block; }
.form-success{
  display: none; text-align: center; padding: var(--sp-6); border: 1px solid var(--c-border-strong);
  border-radius: var(--radius-md); background: var(--c-surface);
}
.form-success.is-visible{ display: block; }
.form-success h3{ color: var(--c-gold-light); margin-bottom: var(--sp-2); }
.form-success p{ color: var(--c-text-dim); }

/* ==========================================================================
   HİZMET DETAY SAYFASI (masaj / spa hizmeti)
   ========================================================================== */
.service-layout{ display: grid; grid-template-columns: 1fr 340px; gap: var(--sp-7); align-items: start; }
.service-content h2{ font-size: 1.4rem; margin: var(--sp-6) 0 var(--sp-3); }
.service-content h2:first-child{ margin-top: 0; }
.service-content p{ color: var(--c-text-dim); margin-bottom: var(--sp-3); }
.service-cover{ border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--c-border); margin-bottom: var(--sp-6); box-shadow: var(--shadow-card); }
.duration-pills{ display: flex; gap: .6rem; flex-wrap: wrap; }
.duration-pill{ padding: .5rem 1.1rem; border: 1px solid var(--c-border-strong); border-radius: 999px; color: var(--c-gold-light); font-size: .85rem; }
.notice-box{ border-left: 3px solid var(--c-gold); padding: var(--sp-3) var(--sp-4); background: rgba(197,163,105,.06); color: var(--c-text-dim); font-size: .9rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin-bottom: var(--sp-3); }
.sidebar-card{ position: sticky; top: calc(var(--header-h) + 20px); background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: var(--sp-5); }
.sidebar-card h3{ font-size: 1.05rem; margin-bottom: var(--sp-3); }
.sidebar-card__row{ display: flex; justify-content: space-between; font-size: .88rem; color: var(--c-text-dim); padding: .5rem 0; border-bottom: 1px solid var(--c-border); }
.sidebar-card__row:last-of-type{ border-bottom: none; }
.sidebar-card .btn{ margin-top: var(--sp-4); }
.related-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); margin-top: var(--sp-3); }

/* ==========================================================================
   SPA REHBERİ — Adım Adım Masaj Öneri Sistemi
   ========================================================================== */
.rehber-wrap{ max-width: 760px; margin: 0 auto; }
.rehber-progress{ display: flex; gap: .6rem; justify-content: center; margin-bottom: var(--sp-6); }
.rehber-progress__dot{ width: 10px; height: 10px; border-radius: 50%; background: var(--c-border); transition: background-color .3s var(--ease); }
.rehber-progress__dot.is-active{ background: var(--c-gold); }
.rehber-progress__dot.is-done{ background: var(--c-gold-dark); }
.rehber-step{ display: none; }
.rehber-step.is-active{ display: block; animation: rehberFadeUp .6s var(--ease); }
@keyframes rehberFadeUp{ from{ opacity: 0; transform: translateY(16px); } to{ opacity: 1; transform: translateY(0); } }
.rehber-question{ font-family: var(--f-heading); font-size: clamp(1.3rem, 2.6vw, 1.7rem); text-align: center; margin-bottom: var(--sp-5); }
.rehber-options{ display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
.rehber-option{
  padding: var(--sp-4); border: 1px solid var(--c-border); border-radius: var(--radius-md);
  background: var(--c-surface); text-align: center; cursor: pointer; font-family: inherit; font-size: .95rem; color: var(--c-text);
  transition: border-color .3s var(--ease), transform .3s var(--ease), background-color .3s var(--ease);
}
.rehber-option:hover{ border-color: var(--c-border-strong); transform: translateY(-2px); }
.rehber-option.is-selected{ border-color: var(--c-gold); background: rgba(197,163,105,.12); color: var(--c-gold-light); }
.rehber-nav{ display: flex; justify-content: space-between; margin-top: var(--sp-6); }
.rehber-intro{ text-align: center; }
.rehber-intro p{ color: var(--c-text-dim); max-width: 520px; margin: 0 auto var(--sp-6); }
.rehber-result{ text-align: center; }
.rehber-result__reason{ color: var(--c-text-dim); max-width: 540px; margin: 0 auto var(--sp-5); }
.rehber-result__card{ max-width: 420px; margin: 0 auto var(--sp-5); text-align: left; }
.rehber-result__actions{ display: flex; gap: var(--sp-3); justify-content: center; flex-wrap: wrap; margin-bottom: var(--sp-4); }
.rehber-restart{ text-align: center; }

@media (max-width: 640px){
  .rehber-options{ grid-template-columns: 1fr; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px){
  .footer__grid{ grid-template-columns: 1fr 1fr; }
  .grid-cards{ grid-template-columns: repeat(2, 1fr); }
  .features{ grid-template-columns: repeat(2, 1fr); }
  .category-grid{ grid-template-columns: repeat(2, 1fr); }
  .testimonials{ grid-template-columns: repeat(2, 1fr); }
  .intro{ grid-template-columns: 1fr; }
  .intro__media{ order: -1; max-height: 420px; }
  .contact-block{ grid-template-columns: 1fr; }
  .gallery-masonry{ columns: 3 180px; }
  .service-layout{ grid-template-columns: 1fr; }
  .sidebar-card{ position: static; }
}

@media (max-width: 860px){
  .main-nav--left, .main-nav--right{ display: none; }
  .menu-toggle{ display: flex; }
}

@media (max-width: 640px){
  .footer__grid{ grid-template-columns: 1fr; }
  .grid-cards{ grid-template-columns: 1fr; }
  .features{ grid-template-columns: 1fr; }
  .category-grid{ grid-template-columns: 1fr; }
  .testimonials{ grid-template-columns: 1fr; }
  .gallery-masonry{ columns: 2 140px; }
  .related-grid{ grid-template-columns: 1fr; }
  .form-grid{ grid-template-columns: 1fr; }
  .hero-scroll-cue{ display: none; }
  .whatsapp-float__label{ display: none; }
  .whatsapp-float{ padding: .85rem; }
  .section{ padding: var(--sp-7) 0; }
  .reservation-cta{ padding: var(--sp-7) var(--sp-4); }
}
