/* ============================================================
   Olia Spa - Ana stil dosyasi
   Renkler ve fontlar admin panelinden yonetilir; header.php
   :root icinde CSS degiskenlerini basar. Buradakiler yedektir.
   ============================================================ */

:root {
  --c-primary: #3f4f38;
  --c-primary-dark: #2c3826;
  --c-secondary: #c6a664;
  --c-bg: #f7f3eb;
  --c-bg-alt: #efe8da;
  --c-surface: #fffdf8;
  --c-text: #3a3a35;
  --c-heading: #29291f;
  --c-btn: #3f4f38;
  --c-btn-hover: #2c3826;
  --c-gold: #b99b5f;
  --f-heading: 'Cormorant Garamond', Georgia, serif;
  --f-body: 'Jost', 'Segoe UI', sans-serif;
  --fs-base: 17px;
  --radius: 18px;
  --shadow: 0 10px 40px rgba(41, 41, 31, 0.10);
  --shadow-soft: 0 4px 18px rgba(41, 41, 31, 0.07);
  --section-gap: 96px;
  --header-h: 84px;
  --logo-h: 48px;
  --whatsapp: #25d366;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-size: var(--fs-base);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--f-heading);
  color: var(--c-heading);
  font-weight: 600;
  line-height: 1.25;
}

.container { width: min(1200px, 92%); margin-inline: auto; }

/* ---------- Bolum baslik duzeni ---------- */
.section { padding-block: calc(var(--section-gap) * 0.5); }
section[id] { scroll-margin-top: calc(var(--header-h) + 10px); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-head .eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  text-transform: uppercase; letter-spacing: 0.28em;
  font-size: 12px; font-weight: 500; color: var(--c-gold);
  margin-bottom: 14px;
}
.section-head .eyebrow::before, .section-head .eyebrow::after {
  content: ''; width: 34px; height: 1px; background: var(--c-gold); opacity: .6;
}
.section-head h2 { font-size: clamp(30px, 4.4vw, 46px); margin-bottom: 14px; }
.section-head p { color: color-mix(in srgb, var(--c-text) 78%, transparent); }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 34px; border-radius: 999px;
  font-family: var(--f-body); font-size: 15px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; border: 1px solid transparent;
  transition: all .35s cubic-bezier(.22,.61,.36,1);
}
.btn-primary { background: var(--c-btn); color: #fff; }
.btn-primary:hover { background: var(--c-btn-hover); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { border-color: color-mix(in srgb, var(--c-gold) 70%, transparent); color: var(--c-heading); background: transparent; }
.btn-outline:hover { background: var(--c-gold); border-color: var(--c-gold); color: #fff; transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,.94); color: var(--c-heading); }
.btn-light:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: #1eb457; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,.35); }
.btn-gold { background: linear-gradient(135deg, var(--c-gold), color-mix(in srgb, var(--c-gold) 70%, #fff)); color: #fff; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 32px color-mix(in srgb, var(--c-gold) 45%, transparent); }
.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .4s ease, box-shadow .4s ease, height .4s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
/* Blur arka plani pseudo-elementte tutulur; header'in kendisine filter verilirse
   icindeki position:fixed mobil menu viewport yerine header'a gore konumlanir (CSS containing block). */
.site-header::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: color-mix(in srgb, var(--c-primary-dark) 90%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  opacity: 0; transition: opacity .4s ease;
}
.site-header.scrolled::before { opacity: 1; }
.site-header.scrolled {
  box-shadow: 0 6px 30px rgba(0,0,0,.18);
  height: calc(var(--header-h) - 14px);
}
.header-inner-page .site-header:not(.scrolled) {
  background: linear-gradient(to bottom, rgba(20,24,17,.55), transparent);
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand img { height: var(--logo-h); width: auto; }
.brand .brand-name { font-family: var(--f-heading); font-size: 27px; color: #fff; letter-spacing: .06em; }
.brand .brand-name small { display: block; font-family: var(--f-body); font-size: 10px; letter-spacing: .42em; text-transform: uppercase; color: var(--c-gold); }

.main-nav ul { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  display: block; padding: 10px 14px; color: rgba(255,255,255,.88);
  font-size: 14.5px; letter-spacing: .04em; position: relative; white-space: nowrap;
  transition: color .3s;
}
.main-nav a::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 5px;
  height: 1px; background: var(--c-gold); transform: scaleX(0);
  transform-origin: left; transition: transform .35s ease;
}
.main-nav a:hover, .main-nav a.active { color: #fff; }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav .nav-cta a {
  background: var(--c-gold); color: #fff; border-radius: 999px;
  padding: 11px 24px; margin-left: 10px; font-weight: 500;
}
.main-nav .nav-cta a::after { display: none; }
.main-nav .nav-cta a:hover { background: color-mix(in srgb, var(--c-gold) 82%, #000); }

/* ---------- Dil secici (ozel acilir menu) ---------- */
.lang-switch { position: relative; margin-left: 8px; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  background: rgba(255,255,255,.06); border: 1px solid color-mix(in srgb, var(--c-gold) 55%, transparent);
  color: #fff; border-radius: 999px; padding: 8px 15px;
  font-family: var(--f-body); font-size: 13px; font-weight: 500; letter-spacing: .08em;
  transition: background .3s, border-color .3s;
}
.lang-btn:hover { background: color-mix(in srgb, var(--c-gold) 25%, transparent); border-color: var(--c-gold); }
.lang-btn svg { color: var(--c-gold); }
.lang-btn .chev { transition: transform .3s; color: rgba(255,255,255,.75); }
.lang-switch.open .lang-btn .chev { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 168px;
  background: var(--c-surface); border-radius: 14px; padding: 8px;
  box-shadow: 0 18px 50px rgba(20,24,17,.28); border: 1px solid color-mix(in srgb, var(--c-gold) 30%, transparent);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  display: flex; flex-direction: column; gap: 2px; z-index: 120;
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu a {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 9px 14px; border-radius: 9px; font-size: 14px; color: var(--c-text);
  transition: background .2s, color .2s;
}
.lang-menu a:hover { background: var(--c-bg-alt); color: var(--c-heading); }
.lang-menu a .code { font-size: 11px; letter-spacing: .12em; color: color-mix(in srgb, var(--c-text) 55%, transparent); }
.lang-menu a.active { background: var(--c-primary); color: #fff; }
.lang-menu a.active .code { color: var(--c-gold); }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 110;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px; background: #fff; margin: 6px 0;
  transition: transform .35s, opacity .35s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  overflow: hidden; color: #fff;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img, .hero-media video {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(22,27,18,.78) 8%, rgba(22,27,18,.45) 52%, rgba(22,27,18,.25));
}
.hero-content { position: relative; z-index: 2; max-width: 720px; padding-block: 160px 110px; }
.hero-content .eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  letter-spacing: .34em; text-transform: uppercase; font-size: 12px; color: var(--c-gold);
  margin-bottom: 22px;
}
.hero-content .eyebrow::before { content: ''; width: 44px; height: 1px; background: var(--c-gold); }
.hero-content h1 {
  color: #fff; font-size: clamp(38px, 6.4vw, 68px); font-weight: 500; margin-bottom: 22px;
}
.hero-content h1 em { font-style: italic; color: color-mix(in srgb, var(--c-gold) 85%, #fff); }
.hero-content p { font-size: clamp(16px, 2vw, 19px); color: rgba(255,255,255,.85); max-width: 560px; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.7); font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 42px; background: linear-gradient(to bottom, var(--c-gold), transparent);
  animation: scrollHint 2.2s ease-in-out infinite;
}
@keyframes scrollHint { 0%,100% { opacity: .4; transform: scaleY(.7); } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------- Kartlar ---------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--c-surface); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft); display: flex; flex-direction: column;
  transition: transform .45s cubic-bezier(.22,.61,.36,1), box-shadow .45s;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.22,.61,.36,1); }
.card:hover .card-img img { transform: scale(1.07); }
.card-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--c-gold); color: #fff; font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px;
}
.card-badge.badge-dark { background: rgba(24,28,20,.82); backdrop-filter: blur(6px); }
.card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; gap: 12px; }
.card-body h3 { font-size: 24px; }
.card-body h3 a:hover { color: var(--c-primary); }
.card-body p { font-size: 15px; color: color-mix(in srgb, var(--c-text) 80%, transparent); flex: 1; }
.card-meta { display: flex; align-items: center; gap: 16px; font-size: 14px; color: color-mix(in srgb, var(--c-text) 70%, transparent); }
.card-meta svg { color: var(--c-gold); flex: none; }
.card-price { display: flex; align-items: baseline; gap: 10px; }
.card-price .now { font-family: var(--f-heading); font-size: 26px; font-weight: 700; color: var(--c-primary); }
.card-price .old { font-size: 15px; text-decoration: line-through; opacity: .55; }
.card-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.card-actions .btn { flex: 1; padding: 12px 16px; font-size: 12.5px; }

/* ---------- Hakkinda bolumu ---------- */
.about-wrap { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.about-media { position: relative; }
.about-media .main {
  border-radius: calc(var(--radius) * 1.4); overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 4 / 4.6;
}
.about-media .main img { width: 100%; height: 100%; object-fit: cover; }
.about-media::before {
  content: ''; position: absolute; inset: 26px -26px -26px 26px;
  border: 1px solid color-mix(in srgb, var(--c-gold) 55%, transparent);
  border-radius: calc(var(--radius) * 1.4); z-index: -1;
}
.about-badge {
  position: absolute; bottom: 34px; right: -22px; background: var(--c-primary); color: #fff;
  padding: 22px 28px; border-radius: var(--radius); box-shadow: var(--shadow); text-align: center;
}
.about-badge strong { display: block; font-family: var(--f-heading); font-size: 34px; color: var(--c-gold); }
.about-badge span { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; opacity: .85; }
.about-text .eyebrow {
  display: inline-flex; align-items: center; gap: 12px; text-transform: uppercase;
  letter-spacing: .28em; font-size: 12px; color: var(--c-gold); margin-bottom: 14px;
}
.about-text .eyebrow::before { content: ''; width: 34px; height: 1px; background: var(--c-gold); }
.about-text h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 18px; }
.about-text > p { margin-bottom: 26px; color: color-mix(in srgb, var(--c-text) 82%, transparent); }
.about-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin-bottom: 32px; }
.about-list li { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.about-list li::before {
  content: ''; flex: none; width: 7px; height: 7px;
  background: var(--c-gold); transform: rotate(45deg);
}

/* ---------- Neden biz ---------- */
.features-section { background: var(--c-primary); color: rgba(255,255,255,.85); position: relative; overflow: hidden; }
.features-section::before {
  content: ''; position: absolute; inset: -40% -20% auto auto; width: 600px; height: 600px;
  background: radial-gradient(circle, color-mix(in srgb, var(--c-gold) 22%, transparent), transparent 70%);
  pointer-events: none;
}
.features-section .section-head h2 { color: #fff; }
.features-section .section-head p { color: rgba(255,255,255,.7); }
.feature-item {
  text-align: center; padding: 36px 22px; border-radius: var(--radius);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  transition: background .4s, transform .4s;
}
.feature-item:hover { background: rgba(255,255,255,.1); transform: translateY(-6px); }
.feature-item .f-icon {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--c-gold) 22%, transparent);
  color: var(--c-gold); font-size: 26px;
}
.feature-item h3 { color: #fff; font-size: 20px; margin-bottom: 8px; font-family: var(--f-body); font-weight: 600; }
.feature-item p { font-size: 14px; opacity: .75; }

/* ---------- Galeri ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-grid a { position: relative; border-radius: calc(var(--radius) * .7); overflow: hidden; aspect-ratio: 1; display: block; }
.gallery-grid a:nth-child(1), .gallery-grid a:nth-child(6) { grid-row: span 2; aspect-ratio: auto; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.gallery-grid a::after {
  content: '+'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--c-primary-dark) 45%, transparent); color: #fff; font-size: 38px; font-weight: 300;
  opacity: 0; transition: opacity .4s;
}
.gallery-grid a:hover::after { opacity: 1; }
.gallery-grid a:hover img { transform: scale(1.08); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(15,18,12,.94);
  display: none; align-items: center; justify-content: center; padding: 4vh 4vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 84vh; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox .lb-caption { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.85); font-size: 15px; }
.lightbox button {
  position: absolute; background: rgba(255,255,255,.1); border: 0; color: #fff; cursor: pointer;
  width: 48px; height: 48px; border-radius: 50%; font-size: 20px; transition: background .3s;
}
.lightbox button:hover { background: rgba(255,255,255,.25); }
.lightbox .lb-close { top: 22px; right: 22px; }
.lightbox .lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 18px; top: 50%; transform: translateY(-50%); }

/* ---------- Yorumlar ---------- */
.testimonials-section { background: var(--c-bg-alt); }
.testi-slider { position: relative; max-width: 860px; margin-inline: auto; overflow: hidden; }
.testi-track { display: flex; transition: transform .6s cubic-bezier(.22,.61,.36,1); }
.testi-slide { flex: 0 0 100%; padding: 10px 8px 30px; }
.testi-card {
  background: var(--c-surface); border-radius: calc(var(--radius) * 1.2); padding: 44px 48px;
  text-align: center; box-shadow: var(--shadow-soft); position: relative;
}
.testi-card::before {
  content: '“'; font-family: var(--f-heading); font-size: 110px; color: color-mix(in srgb, var(--c-gold) 35%, transparent);
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%); line-height: 1;
}
.testi-stars { color: var(--c-gold); display: flex; justify-content: center; gap: 4px; margin: 18px 0 14px; }
.testi-stars svg { flex: none; }
.testi-card p { font-size: 17px; font-style: italic; color: color-mix(in srgb, var(--c-text) 88%, transparent); margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testi-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testi-author .avatar-ph {
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--c-primary); color: var(--c-gold); font-family: var(--f-heading); font-size: 22px;
}
.testi-author strong { display: block; font-size: 15px; color: var(--c-heading); }
.testi-nav { display: flex; justify-content: center; gap: 10px; margin-top: 6px; }
.testi-nav button {
  width: 10px; height: 10px; border-radius: 50%; border: 0; cursor: pointer;
  background: color-mix(in srgb, var(--c-text) 25%, transparent); transition: all .3s;
}
.testi-nav button.active { background: var(--c-gold); width: 28px; border-radius: 99px; }

/* ---------- SSS ---------- */
.faq-list { max-width: 780px; margin-inline: auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--c-surface); border-radius: calc(var(--radius) * .8);
  box-shadow: var(--shadow-soft); overflow: hidden; border: 1px solid transparent; transition: border-color .3s;
}
.faq-item[open] { border-color: color-mix(in srgb, var(--c-gold) 45%, transparent); }
.faq-item summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 18px; padding: 22px 28px; font-weight: 500; font-size: 16.5px; color: var(--c-heading);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 26px; font-weight: 300; color: var(--c-gold); transition: transform .35s; flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 28px 24px; font-size: 15.5px; color: color-mix(in srgb, var(--c-text) 82%, transparent); }

/* ---------- CTA serit ---------- */
.cta-band {
  position: relative; border-radius: calc(var(--radius) * 1.4); overflow: hidden;
  padding: 72px 8%; text-align: center; color: #fff; background: var(--c-primary-dark);
}
.cta-band .bg { position: absolute; inset: 0; }
.cta-band .bg img { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
.cta-band p { max-width: 560px; margin: 0 auto 30px; color: rgba(255,255,255,.8); }

/* ---------- Iletisim ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: start; }
.contact-info-card {
  background: var(--c-primary); color: rgba(255,255,255,.85); border-radius: calc(var(--radius) * 1.2);
  padding: 42px 40px; box-shadow: var(--shadow);
}
.contact-info-card h3 { color: #fff; font-size: 28px; margin-bottom: 26px; }
.contact-info-card ul li { display: flex; gap: 16px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 15px; align-items: flex-start; }
.contact-info-card ul li:last-child { border-bottom: 0; }
.contact-info-card .ci-icon { color: var(--c-gold); flex: none; margin-top: 3px; }
.contact-info-card a:hover { color: var(--c-gold); }
.contact-socials { display: flex; gap: 10px; margin-top: 24px; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); margin-top: 40px; }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }
.map-placeholder {
  height: 380px; display: flex; align-items: center; justify-content: center;
  background: var(--c-bg-alt); color: color-mix(in srgb, var(--c-text) 60%, transparent); font-size: 15px; text-align: center; padding: 20px;
}

/* ---------- Form ---------- */
.form-card { background: var(--c-surface); border-radius: calc(var(--radius) * 1.2); padding: 42px 40px; box-shadow: var(--shadow-soft); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.form-field label { display: block; font-size: 13px; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; color: color-mix(in srgb, var(--c-text) 75%, transparent); margin-bottom: 7px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 13px 16px; border-radius: 10px; font-family: var(--f-body); font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--c-text) 18%, transparent); background: var(--c-bg);
  color: var(--c-text); transition: border-color .3s, box-shadow .3s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 0; border-color: var(--c-gold); box-shadow: 0 0 0 3px color-mix(in srgb, var(--c-gold) 20%, transparent);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-check { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: color-mix(in srgb, var(--c-text) 75%, transparent); }
.form-check input { margin-top: 4px; accent-color: var(--c-primary); }
.form-msg { padding: 14px 18px; border-radius: 10px; font-size: 14.5px; margin-bottom: 20px; }
.form-msg.ok { background: #e6f4ea; color: #1d6b35; border: 1px solid #bfe3cb; }
.form-msg.err { background: #fdeceb; color: #a3271f; border: 1px solid #f5c6c2; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Ic sayfa hero ---------- */
.page-hero {
  position: relative; padding: 170px 0 90px; color: #fff; background: var(--c-primary-dark); overflow: hidden;
}
.page-hero .bg { position: absolute; inset: 0; }
.page-hero .bg img { width: 100%; height: 100%; object-fit: cover; opacity: .32; }
.page-hero .bg::after { content:''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(20,24,17,.35), var(--c-primary-dark) 130%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(34px, 5vw, 54px); margin-bottom: 10px; }
.page-hero .crumbs { font-size: 13.5px; letter-spacing: .08em; color: rgba(255,255,255,.7); text-transform: uppercase; }
.page-hero .crumbs a:hover { color: var(--c-gold); }
.page-hero .crumbs span {
  display: inline-block; width: 6px; height: 6px; margin: 0 10px 1px;
  background: var(--c-gold); transform: rotate(45deg);
}

/* ---------- Masaj detay ---------- */
.detail-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 44px; align-items: start; }
.detail-content h2 { font-size: 30px; margin: 36px 0 14px; }
.detail-content h2:first-child { margin-top: 0; }
.detail-content p { margin-bottom: 16px; color: color-mix(in srgb, var(--c-text) 85%, transparent); }
.detail-content ul { margin: 0 0 18px; display: flex; flex-direction: column; gap: 9px; }
.detail-content ul li { display: flex; gap: 10px; align-items: flex-start; }
.detail-content ul li::before {
  content: ''; flex: none; width: 7px; height: 7px; margin-top: 9px;
  background: var(--c-gold); transform: rotate(45deg);
}
.detail-cover { border-radius: calc(var(--radius) * 1.2); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 36px; aspect-ratio: 21 / 9; }
.detail-cover img { width: 100%; height: 100%; object-fit: cover; }
.detail-side { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 22px; }
.booking-card {
  background: var(--c-primary); color: rgba(255,255,255,.85); border-radius: calc(var(--radius) * 1.1);
  padding: 32px 30px; box-shadow: var(--shadow);
}
.booking-card h3 { color: #fff; font-size: 24px; margin-bottom: 18px; }
.booking-card .bk-row { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 14.5px; }
.booking-card .bk-row strong { color: #fff; }
.booking-card .bk-price { font-family: var(--f-heading); font-size: 36px; color: var(--c-gold); text-align: center; margin: 20px 0 6px; }
.booking-card .bk-price .old { font-size: 18px; font-family: var(--f-body); text-decoration: line-through; opacity: .6; margin-right: 10px; }
.booking-card .btn { width: 100%; margin-top: 14px; }
.info-box { background: var(--c-surface); border-radius: var(--radius); padding: 26px 26px; box-shadow: var(--shadow-soft); }
.info-box h4 { font-size: 19px; margin-bottom: 12px; }
.info-box ul { display: flex; flex-direction: column; gap: 8px; font-size: 14.5px; }
.info-box ul li { display: flex; gap: 9px; }
.info-box ul li::before { content: '—'; color: var(--c-gold); flex: none; }
.detail-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 20px 0 30px; }
.detail-gallery a { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.detail-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.detail-gallery a:hover img { transform: scale(1.07); }

/* ---------- Blog ---------- */
.blog-card .card-body h3 { font-size: 21px; font-family: var(--f-body); font-weight: 600; line-height: 1.4; }
.blog-meta { font-size: 13px; color: color-mix(in srgb, var(--c-text) 62%, transparent); display: flex; gap: 14px; }
.blog-content { max-width: 780px; margin-inline: auto; }
.blog-content .cover { border-radius: calc(var(--radius) * 1.2); overflow: hidden; margin-bottom: 34px; box-shadow: var(--shadow); }
.blog-content h2 { font-size: 28px; margin: 34px 0 14px; }
.blog-content h3 { font-size: 22px; margin: 26px 0 12px; }
.blog-content p { margin-bottom: 16px; }
.blog-content ul, .blog-content ol { margin: 0 0 18px 22px; list-style: disc; }
.blog-content ol { list-style: decimal; }
.blog-content li { margin-bottom: 8px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.tag-list span { background: var(--c-bg-alt); border-radius: 99px; padding: 6px 16px; font-size: 13px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--c-primary-dark); color: rgba(255,255,255,.72); margin-top: var(--section-gap); }
.footer-top { padding: 72px 0 48px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; }
.footer-brand .brand-name { font-family: var(--f-heading); font-size: 30px; color: #fff; letter-spacing: .05em; }
.footer-brand .brand-name small { display: block; font-family: var(--f-body); font-size: 10px; letter-spacing: .42em; text-transform: uppercase; color: var(--c-gold); margin-top: 2px; }
.footer-brand img { height: 52px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14.5px; margin: 18px 0 22px; max-width: 300px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); color: #fff; transition: all .35s;
}
.social-btn:hover { background: var(--c-gold); transform: translateY(-3px); }
.site-footer h4 { color: #fff; font-family: var(--f-body); font-weight: 600; font-size: 15px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 20px; }
.site-footer h4::after { content: ''; display: block; width: 28px; height: 2px; background: var(--c-gold); margin-top: 10px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14.5px; transition: color .3s, padding-left .3s; }
.footer-links a:hover { color: var(--c-gold); padding-left: 6px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: 14.5px; align-items: flex-start; }
.footer-contact .ci-icon { color: var(--c-gold); flex: none; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; font-size: 13.5px; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a:hover { color: var(--c-gold); }

/* ---------- Yuzen WhatsApp ---------- */
.float-wa {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%; background: var(--whatsapp); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .45);
  transition: transform .3s;
}
.float-wa:hover { transform: scale(1.1); }
.float-wa::before {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid var(--whatsapp); opacity: .5; animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse { from { transform: scale(.9); opacity: .6; } to { transform: scale(1.35); opacity: 0; } }
.float-wa svg { width: 30px; height: 30px; }

/* ---------- Cerez bandi ---------- */
.cookie-bar {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 250;
  background: var(--c-surface); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 22px 26px; display: none; gap: 20px; align-items: center; flex-wrap: wrap;
  max-width: 720px; margin-inline: auto;
}
.cookie-bar.show { display: flex; }
.cookie-bar p { flex: 1 1 320px; font-size: 14px; margin: 0; }
.cookie-bar p a { color: var(--c-primary); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-prefs { display: none; flex-basis: 100%; border-top: 1px solid var(--c-bg-alt); padding-top: 16px; }
.cookie-prefs.show { display: block; }
.cookie-prefs label { display: flex; gap: 10px; align-items: center; font-size: 14px; margin-bottom: 8px; }

/* ---------- Scroll animasyonlari ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,.61,.36,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; } .reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; } .reveal-d4 { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media img, .hero-media video { animation: none; }
}

/* ---------- Sayfalama ---------- */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination a, .pagination span {
  min-width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--c-surface); box-shadow: var(--shadow-soft); font-size: 14px; transition: all .3s;
}
.pagination a:hover { background: var(--c-primary); color: #fff; }
.pagination .current { background: var(--c-primary); color: #fff; }

/* ---------- RTL destegi ---------- */
[dir="rtl"] .hero-content .eyebrow::before { order: 2; }
[dir="rtl"] .footer-links a:hover { padding-left: 0; padding-right: 6px; }
[dir="rtl"] .about-media::before { inset: 26px 26px -26px -26px; }

/* ---------- Duyarli tasarim ---------- */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-wrap { gap: 44px; }
}
@media (max-width: 920px) {
  :root { --section-gap: 72px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 0;
    background: var(--c-primary-dark);
    transform: translateX(100%); transition: transform .45s cubic-bezier(.22,.61,.36,1);
    display: flex; align-items: center; justify-content: center;
    overflow-y: auto; z-index: 110;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 8px; text-align: center; padding: 40px 0; }
  .main-nav a { font-size: 20px; padding: 12px 20px; }
  .main-nav .nav-cta a { margin: 14px 0 0; }
  .lang-switch { margin: 18px 0 0; display: flex; justify-content: center; }
  /* Mobil menude dil secenekleri acilir kutu yerine duz liste olarak gorunur */
  .lang-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: transparent; border: 0; box-shadow: none; padding: 10px 0 0;
    flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 8px;
    display: none;
  }
  .lang-switch.open .lang-menu { display: flex; }
  .lang-menu a { border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.85); border-radius: 999px; padding: 7px 16px; }
  .lang-menu a .code { display: none; }
  .lang-menu a:hover { background: rgba(255,255,255,.1); color: #fff; }
  .lang-menu a.active { background: var(--c-gold); border-color: var(--c-gold); }
  .about-wrap { grid-template-columns: 1fr; }
  .about-badge { right: 12px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-side { position: static; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid a:nth-child(1), .gallery-grid a:nth-child(6) { grid-row: auto; aspect-ratio: 1; }
}
@media (max-width: 640px) {
  :root { --section-gap: 56px; --fs-base: 16px; --header-h: 72px; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .hero { min-height: 88vh; }
  .hero-content { padding-block: 130px 90px; }
  .hero-actions .btn { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .testi-card { padding: 34px 24px; }
  .cta-band { padding: 52px 7%; }
  .form-card, .contact-info-card { padding: 30px 24px; }
  .footer-bottom .container { justify-content: center; text-align: center; }
  .float-wa { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .detail-gallery { grid-template-columns: repeat(2, 1fr); }
}
