/* =============================================
   Kamile Konmaz Beauty — Main Stylesheet
   ============================================= */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --rose: #C2748A;
  --rose-dim: rgba(194,116,138,0.12);
  --gold: #D4A853;
  --gold-dim: rgba(212,168,83,0.1);
  --dark: #0F0E17;
  --mid: #151320;
  --card: #1c1929;
  --cream: #F5F0EB;
  --muted: rgba(245,240,235,0.5);
  --faint: rgba(245,240,235,0.07);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--dark); color: var(--cream); overflow-x: hidden; line-height: 1.6; }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 4rem;
  background: rgba(15,14,23,0.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,168,83,0.15);
}
.nav-logo { font-family: var(--serif); font-size: 1.05rem; letter-spacing: 0.2em; color: var(--cream); display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.nav-logo .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.nav-logo .gold { color: var(--gold); }
.nav-logo-img { height: 44px; width: auto; object-fit: contain; display: block; }
.nav-logo img { height: 44px; width: auto; object-fit: contain; display: block; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; transition: color 0.25s; }
.nav-links a:hover, .nav-links a.current { color: var(--gold); }
.nav-cta { background: transparent; color: var(--rose); border: 1px solid rgba(194,116,138,0.45); padding: 0.55rem 1.5rem; font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; cursor: pointer; border-radius: 1px; transition: all 0.25s; text-decoration: none; display: inline-block; }
.nav-cta:hover { background: var(--rose); color: var(--cream); }

/* Hamburger (mobile) */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.4rem; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--cream); margin: 5px 0; transition: all 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── KVKK SAYFASI ── */
.kvkk-body { background: var(--dark); overflow-x: hidden; }
.kvkk-wrap { min-height: 100vh; display: flex; flex-direction: column; }

.kvkk-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 4rem;
  border-bottom: 1px solid rgba(212,168,83,0.15);
  background: rgba(15,14,23,0.95);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}
.kvkk-logo {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--cream);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.kvkk-logo img { height: 40px; width: auto; }
.kvkk-logo .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.kvkk-back {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.kvkk-back:hover { color: var(--gold); }
.kvkk-back svg { width: 16px; height: 16px; fill: currentColor; }

.kvkk-content { flex: 1; padding: 4rem; }
.kvkk-inner {
  max-width: 760px;
  margin: 0 auto;
}
.kvkk-inner h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.kvkk-date {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 3rem;
  opacity: 0.7;
}
.kvkk-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--faint);
}
.kvkk-section:last-of-type { border-bottom: none; }
.kvkk-section h2 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1rem;
}
.kvkk-section p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 0.8rem;
}
.kvkk-section ul {
  padding-left: 1.2rem;
  margin: 0.8rem 0;
}
.kvkk-section ul li {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 0.4rem;
}
.kvkk-section strong { color: var(--cream); font-weight: 500; }
.kvkk-section a { color: var(--rose); text-decoration: none; border-bottom: 1px solid rgba(194,116,138,0.3); transition: border-color 0.2s; }
.kvkk-section a:hover { border-color: var(--rose); }

.kvkk-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--faint);
  display: flex;
  justify-content: center;
}
.kvkk-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--rose);
  color: var(--cream);
  padding: 0.9rem 2rem;
  border-radius: 1px;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.kvkk-back-btn:hover { opacity: 0.85; color: var(--cream); }
.kvkk-back-btn svg { width: 16px; height: 16px; fill: var(--cream); }

@media (max-width: 768px) {
  .kvkk-header { padding: 1rem 1.5rem; }
  .kvkk-content { padding: 2.5rem 1.5rem; }
}

/* ── TESTIMONIALS ── */
#yorumlar { background: var(--dark); padding: 5.5rem 4rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.testi-card {
  background: var(--card);
  border: 1px solid var(--faint);
  border-radius: 2px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: border-color 0.3s;
}
.testi-card:hover { border-color: rgba(212,168,83,0.2); }
.testi-stars {
  display: flex;
  gap: 3px;
}
.testi-stars svg { width: 14px; height: 14px; fill: var(--gold); }
.testi-text {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
  font-style: italic;
  flex: 1;
}
.testi-text::before { content: '"'; color: var(--gold); font-family: var(--serif); font-size: 1.5rem; line-height: 0; vertical-align: -0.4rem; margin-right: 2px; }
.testi-text::after  { content: '"'; color: var(--gold); font-family: var(--serif); font-size: 1.5rem; line-height: 0; vertical-align: -0.4rem; margin-left: 2px; }
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--faint);
}
.testi-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-dim), var(--gold-dim));
  border: 1px solid var(--faint);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-avatar svg { width: 16px; height: 16px; fill: var(--muted); }
.testi-name { font-size: 0.82rem; color: var(--cream); font-weight: 500; }
.testi-source { font-size: 0.65rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; }

@media (max-width: 768px) {
  #yorumlar { padding: 3.5rem 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: 9rem;
  right: 2rem;
  z-index: 998;
  width: 42px; height: 42px;
  background: var(--card);
  border: 1px solid rgba(212,168,83,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, border-color 0.2s, transform 0.2s;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { border-color: var(--gold); transform: translateY(-3px); }
.scroll-top svg { width: 16px; height: 16px; fill: var(--gold); }

/* ── PROGRESS BAR ── */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, var(--rose), var(--gold));
  z-index: 999;
  transition: width 0.1s linear;
}

/* ── KVKK COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(15, 14, 23, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(212,168,83,0.15);
  padding: 1.2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  transform: translateY(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.cookie-banner.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
  max-width: 700px;
  flex: 1;
}
.cookie-text a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(212,168,83,0.3);
  transition: border-color 0.2s;
}
.cookie-text a:hover { border-color: var(--gold); }
.cookie-actions {
  display: flex;
  gap: 0.7rem;
  flex-shrink: 0;
}
.cookie-accept {
  background: var(--rose);
  color: var(--cream);
  border: none;
  padding: 0.6rem 1.4rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 1px;
  transition: opacity 0.2s;
}
.cookie-accept:hover { opacity: 0.85; }
.cookie-reject {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--faint);
  padding: 0.6rem 1.4rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 1px;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-reject:hover { border-color: rgba(245,240,235,0.3); color: var(--cream); }

@media (max-width: 768px) {
  .cookie-banner { padding: 1.2rem 1.5rem; flex-direction: column; align-items: flex-start; gap: 1rem; }
  .cookie-actions { width: 100%; }
  .cookie-accept, .cookie-reject { flex: 1; text-align: center; }
}

/* ── FULLSCREEN MOBILE MENU ── */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(10, 9, 16, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  padding: 2rem;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}
.mobile-menu-overlay.open .mobile-menu-inner {
  transform: translateY(0);
}

.mobile-menu-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: rgba(245,240,235,0.3);
  margin-bottom: 3rem;
}
.mobile-menu-logo span { color: var(--gold); }

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 320px;
  border-top: 1px solid var(--faint);
}

.mobile-menu-link {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: rgba(245,240,235,0.6);
  text-decoration: none;
  letter-spacing: 0.05em;
  padding: 1rem 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--faint);
  transition: color 0.2s;
  position: relative;
}
.mobile-menu-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px;
  height: 1px;
  background: var(--gold);
  transition: transform 0.3s ease;
}
.mobile-menu-link:hover,
.mobile-menu-link.current {
  color: var(--cream);
}
.mobile-menu-link:hover::after { transform: translateX(-50%) scaleX(1); }

.mobile-menu-cta {
  margin-top: 2.5rem;
  background: var(--rose);
  color: var(--cream);
  padding: 1rem 3rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 1px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: opacity 0.2s;
}
.mobile-menu-cta:hover { opacity: 0.85; color: var(--cream); }
.mobile-menu-cta svg { width: 15px; height: 15px; fill: var(--cream); }

.mobile-menu-social {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}
.mobile-menu-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--faint);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.mobile-menu-social a:hover { border-color: var(--gold); color: var(--gold); }
.mobile-menu-social svg { width: 14px; height: 14px; fill: currentColor; }

/* Hamburger → X animasyonu */
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--cream);
  margin: 5px 0;
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Body scroll kilitle menü açıkken */
body.menu-open { overflow: hidden; }

/* ── GOLD DIVIDER ── */
.gold-div { width: 100%; height: 1px; background: linear-gradient(to right, transparent, rgba(212,168,83,0.28), transparent); }

/* ── BUTTONS ── */
.btn-rose { background: var(--rose); color: var(--cream); border: none; padding: 1rem 2.4rem; font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; border-radius: 1px; font-weight: 500; text-decoration: none; display: inline-flex; align-items: center; gap: 0.6rem; transition: opacity 0.2s; }
.btn-rose:hover { opacity: 0.85; color: var(--cream); }
.btn-rose svg { width: 15px; height: 15px; fill: var(--cream); flex-shrink: 0; }
.btn-outline { background: transparent; color: var(--cream); border: 1px solid rgba(245,240,235,0.2); padding: 1rem 2.4rem; font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; border-radius: 1px; text-decoration: none; display: inline-flex; align-items: center; gap: 0.6rem; transition: border-color 0.2s, background 0.2s; }
.btn-outline:hover { border-color: rgba(245,240,235,0.4); background: rgba(245,240,235,0.04); color: var(--cream); }
.btn-outline svg { width: 15px; height: 15px; fill: var(--cream); flex-shrink: 0; opacity: 0.7; }
.btn-ig { background: transparent; color: var(--rose); border: 1px solid rgba(194,116,138,0.4); padding: 1rem 2.4rem; font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; border-radius: 1px; display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; transition: all 0.2s; }
.btn-ig:hover { background: var(--rose); color: var(--cream); }
.btn-ig svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
.btn-ghost { background: transparent; color: var(--muted); border: 1px solid var(--faint); padding: 0.85rem 2.4rem; font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; border-radius: 1px; text-decoration: none; display: inline-flex; align-items: center; gap: 0.6rem; transition: border-color 0.2s, color 0.2s; }
.btn-ghost:hover { border-color: rgba(212,168,83,0.4); color: var(--gold); }
.btn-ghost svg { width: 14px; height: 14px; fill: currentColor; }

/* ── SECTION BASE ── */
.site-section { padding: 6rem 4rem; }
.s-label { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.2rem; }
.s-line { width: 2rem; height: 1px; background: var(--gold); flex-shrink: 0; }
.s-tag { font-size: 0.62rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); }
.s-title { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 600; color: var(--cream); margin-bottom: 0.8rem; line-height: 1.15; }
.s-sub { font-size: 0.9rem; color: var(--muted); line-height: 1.8; max-width: 500px; font-weight: 300; }

/* ── HERO ── */
#hero { min-height: 100vh; display: flex; align-items: center; padding: 10rem 4rem 5rem; position: relative; overflow: hidden; }
.hero-glow-a { position: absolute; top: -15%; right: -5%; width: 55%; height: 130%; background: radial-gradient(ellipse at center, rgba(194,116,138,0.1) 0%, transparent 65%); pointer-events: none; }
.hero-glow-b { position: absolute; bottom: -20%; left: 10%; width: 45%; height: 80%; background: radial-gradient(ellipse at center, rgba(212,168,83,0.06) 0%, transparent 65%); pointer-events: none; }
.hero-grain { position: absolute; inset: 0; opacity: 0.5; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"); }
.hero-content { position: relative; z-index: 2; max-width: 740px; }
.eyebrow { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.2rem; }
.eyebrow-line { width: 3.5rem; height: 1px; background: linear-gradient(to right, var(--gold), transparent); }
.eyebrow span { font-size: 0.65rem; letter-spacing: 0.38em; text-transform: uppercase; color: var(--gold); }
.hero-h1 { font-family: var(--serif); font-size: clamp(3.5rem, 6.5vw, 6rem); font-weight: 600; line-height: 1.03; margin-bottom: 2rem; }
.hero-h1 .rose { color: var(--rose); font-style: italic; }
.hero-h1 .gold { color: var(--gold); }
.hero-p { font-size: 1rem; color: var(--muted); line-height: 1.85; max-width: 520px; margin-bottom: 3rem; font-weight: 300; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── SERVICES ── */
#hizmetler { padding: 5.5rem 4rem; }
.svc-header { margin-bottom: 3.5rem; }
.svc-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--faint); }
.svc-card { background: var(--dark); padding: 2.6rem 1.8rem; position: relative; overflow: hidden; transition: background 0.35s; display: flex; flex-direction: column; }
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, var(--gold), var(--rose)); transform: scaleX(0); transform-origin: left; transition: transform 0.45s ease; }
.svc-card:hover { background: var(--card); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon { width: 36px; height: 36px; border: 1px solid rgba(212,168,83,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.4rem; }
.svc-icon svg { width: 16px; height: 16px; fill: var(--gold); opacity: 0.8; }
.svc-name { font-family: var(--serif); font-size: 1.12rem; font-weight: 600; color: var(--cream); margin-bottom: 0.5rem; line-height: 1.25; }
.svc-kw { font-size: 0.62rem; letter-spacing: 0.12em; color: var(--rose); text-transform: uppercase; margin-bottom: 1.6rem; opacity: 0.85; }
.svc-list { list-style: none; margin-top: auto; }
.svc-list li { font-size: 0.78rem; color: var(--muted); padding: 0.42rem 0; border-bottom: 1px solid var(--faint); display: flex; align-items: center; gap: 0.6rem; font-weight: 300; }
.svc-list li:last-child { border-bottom: none; }

.svc-randevu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--faint);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
  width: fit-content;
}
.svc-randevu svg { width: 13px; height: 13px; fill: currentColor; flex-shrink: 0; }
.svc-randevu:hover { color: var(--cream); gap: 0.7rem; }
.svc-list li::before { content: ''; width: 3px; height: 3px; border-radius: 50%; background: var(--gold); flex-shrink: 0; opacity: 0.5; }

/* ── ABOUT ── */
#hakkimizda {
  background: var(--mid);
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: start;
  padding: 6rem 4rem;
}
.about-visual {
  position: relative;
  width: 380px;
  flex-shrink: 0;
}
.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, rgba(194,116,138,0.1), rgba(212,168,83,0.06));
  border: 1px solid var(--faint);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,240,235,0.15);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  overflow: hidden;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-badge { position: absolute; bottom: -1.2rem; right: -1.2rem; background: var(--card); border: 1px solid rgba(212,168,83,0.2); border-radius: 2px; padding: 1.3rem 1.8rem; text-align: center; }
.ab-num { font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--gold); line-height: 1; }
.ab-txt { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 0.3rem; }
.about-feats { margin-top: 2.8rem; display: flex; flex-direction: column; gap: 1.6rem; }
.feat { display: flex; gap: 1.4rem; align-items: flex-start; }
.feat-n { font-family: var(--serif); font-size: 1.2rem; color: var(--rose); font-weight: 600; min-width: 2.2rem; padding-top: 0.05rem; }
.feat h4 { font-size: 0.87rem; color: var(--cream); font-weight: 500; margin-bottom: 0.3rem; }
.feat p { font-size: 0.78rem; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ── TEAM ── */
#ekip { background: var(--dark); padding: 5rem 4rem; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.team-card { background: var(--card); border: 1px solid var(--faint); border-radius: 2px; overflow: hidden; display: flex; flex-direction: column; position: relative; transition: border-color 0.3s, background 0.3s; }
.team-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, var(--gold), var(--rose)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; z-index: 1; }
.team-card:hover { border-color: rgba(194,116,138,0.2); background: #1f1c2e; }
.team-card:hover::before { transform: scaleX(1); }
.team-photo { width: 100%; height: 460px; overflow: hidden; flex-shrink: 0; background: linear-gradient(160deg, rgba(194,116,138,0.1) 0%, rgba(212,168,83,0.06) 100%); display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--faint); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform 0.5s ease; }
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-photo svg { width: 32px; height: 32px; fill: rgba(245,240,235,0.1); }
.team-info { padding: 1.3rem 1.4rem 1.4rem; display: flex; flex-direction: column; gap: 0.8rem; flex: 1; }
.team-top { display: flex; justify-content: space-between; align-items: center; gap: 0.8rem; }
.team-name { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--cream); line-height: 1.2; }
.team-role { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); opacity: 0.8; margin-top: 0.2rem; }
.team-ig { width: 30px; height: 30px; border: 1px solid rgba(194,116,138,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--rose); text-decoration: none; flex-shrink: 0; transition: background 0.2s, border-color 0.2s; }
.team-ig:hover { background: var(--rose); color: var(--cream); border-color: var(--rose); }
.team-ig svg { width: 13px; height: 13px; fill: currentColor; }
.team-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.7; font-weight: 300; }
.team-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; padding-top: 0.8rem; border-top: 1px solid var(--faint); margin-top: auto; }
.team-tag { font-size: 0.58rem; letter-spacing: 0.11em; text-transform: uppercase; color: var(--rose); border: 1px solid rgba(194,116,138,0.2); padding: 0.18rem 0.5rem; border-radius: 1px; }

.team-ig-cta { display: flex; justify-content: center; margin-top: 2.5rem; }

/* ── GALLERY ── */
#galeri { padding: 5.5rem 4rem; }

.gal-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.gal-category { display: flex; flex-direction: column; gap: 0.8rem; }

.gal-cat-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.4rem;
}
.gal-cat-title span { font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.gal-cat-title .eyebrow-line { width: 1.5rem; height: 1px; background: linear-gradient(to right, var(--gold), transparent); flex-shrink: 0; }

.gal-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }

.g-mini-item { aspect-ratio: 1/1; overflow: hidden; border-radius: 2px; position: relative; cursor: pointer; background: var(--card); border: 1px solid var(--faint); transition: border-color 0.3s; }
.g-mini-item:hover { border-color: rgba(194,116,138,0.3); }
.g-mini-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.4s; }
.g-mini-item:hover img { transform: scale(1.06); }
.g-mini-item .g-overlay { position: absolute; inset: 0; background: rgba(15,14,23,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.g-mini-item:hover .g-overlay { opacity: 1; }
.g-mini-item .g-overlay svg { width: 16px; height: 16px; fill: var(--cream); }

@media (max-width: 1024px) { .gal-categories { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { #galeri { padding: 3.5rem 1.5rem; } .gal-categories { grid-template-columns: 1fr; } }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0;
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox-overlay {
  position: absolute; inset: 0;
  background: rgba(10, 9, 16, 0.95);
  backdrop-filter: blur(8px);
}

.lightbox-img-wrap {
  position: relative; z-index: 2;
  max-width: 90vw; max-height: 88vh;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.lightbox-img-wrap img {
  max-width: 90vw; max-height: 82vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  display: block;
}

.lightbox-counter {
  font-size: 0.7rem; letter-spacing: 0.2em;
  color: rgba(245,240,235,0.4); text-transform: uppercase;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute; z-index: 3;
  background: rgba(15,14,23,0.7);
  border: 1px solid rgba(245,240,235,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(194,116,138,0.3); border-color: var(--rose); }

.lightbox-close { top: 1.5rem; right: 1.5rem; width: 44px; height: 44px; }
.lightbox-close svg { width: 20px; height: 20px; fill: var(--cream); }

.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; }
.lightbox-prev svg, .lightbox-next svg { width: 22px; height: 22px; fill: var(--cream); }

@media (max-width: 768px) {
  #galeri { padding: 3.5rem 1.5rem; }
  .gal-count-multi { grid-template-columns: repeat(2, 1fr); }
  .gal-count-multi .g-item { height: 180px; }
  .gal-count-large { grid-template-columns: repeat(2, 1fr); }
  .gal-count-large .g-item { height: 160px; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-close { top: 0.5rem; right: 0.5rem; }
}

/* ── BLOG ── */
#blog { background: var(--mid); padding: 5.5rem 4rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 3rem; }
.blog-card { background: var(--dark); border: 1px solid var(--faint); border-radius: 2px; overflow: hidden; display: flex; flex-direction: column; position: relative; transition: border-color 0.3s, background 0.3s; text-decoration: none; color: inherit; }
.blog-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, var(--gold), var(--rose)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; z-index: 1; }
.blog-card:hover { border-color: rgba(212,168,83,0.2); background: var(--card); }
.blog-card:hover::before { transform: scaleX(1); }
.blog-cover { width: 100%; height: 180px; overflow: hidden; flex-shrink: 0; background: linear-gradient(145deg, rgba(212,168,83,0.08), rgba(194,116,138,0.06)); display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--faint); }
.blog-cover img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.blog-card:hover .blog-cover img { transform: scale(1.04); }
.blog-cover svg { width: 28px; height: 28px; fill: rgba(245,240,235,0.1); }
.blog-body { padding: 1.4rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.blog-meta { display: flex; align-items: center; gap: 0.7rem; }
.blog-cat { font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(212,168,83,0.25); padding: 0.18rem 0.5rem; border-radius: 1px; }
.blog-date { font-size: 0.68rem; color: var(--muted); font-weight: 300; margin-left: auto; }
.blog-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--cream); line-height: 1.3; }
.blog-excerpt { font-size: 0.78rem; color: var(--muted); line-height: 1.7; font-weight: 300; }
.blog-read { display: flex; align-items: center; gap: 0.45rem; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); margin-top: auto; padding-top: 0.8rem; border-top: 1px solid var(--faint); }
.blog-read svg { width: 12px; height: 12px; fill: var(--rose); transition: transform 0.2s; }
.blog-card:hover .blog-read svg { transform: translateX(3px); }
.blog-all { display: flex; justify-content: center; margin-top: 2.5rem; }

/* ── 404 ── */
.page-404-body { overflow: hidden; }
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-404-bg { position: absolute; inset: 0; pointer-events: none; }
.page-404-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
}
.page-404-logo {
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: rgba(245,240,235,0.35);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  transition: color 0.2s;
}
.page-404-logo:hover { color: var(--cream); }
.page-404-logo .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.page-404-logo .gold { color: var(--gold); }
.page-404-number {
  font-family: var(--serif);
  font-size: clamp(8rem, 22vw, 18rem);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212,168,83,0.2);
  background: linear-gradient(135deg, rgba(194,116,138,0.15), rgba(212,168,83,0.08));
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.04em;
  user-select: none;
  margin-bottom: -1rem;
}
.page-404-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.15;
}
.page-404-sub {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  max-width: 380px;
}

/* ── SINGLE POST ── */
.single-post {
  min-height: 100vh;
}

.single-post-hero {
  padding: 9rem 4rem 3rem;
  max-width: 860px;
  margin: 0 auto;
}

.single-post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.single-post-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.15;
}

.single-post-cover {
  width: 100%;
  max-width: 860px;
  margin: 0 auto 0;
  aspect-ratio: 16/7;
  overflow: hidden;
  border-top: 1px solid var(--faint);
  border-bottom: 1px solid var(--faint);
}
.single-post-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.single-post-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 3.5rem 4rem 5rem;
}

.post-content {
  font-size: 0.95rem;
  color: rgba(245,240,235,0.75);
  line-height: 1.95;
  font-weight: 300;
}
.post-content h2 { font-family: var(--serif); font-size: 1.8rem; color: var(--cream); margin: 2.5rem 0 1rem; font-weight: 600; }
.post-content h3 { font-family: var(--serif); font-size: 1.35rem; color: var(--cream); margin: 2rem 0 0.8rem; font-weight: 600; }
.post-content p { margin-bottom: 1.4rem; }
.post-content a { color: var(--rose); text-decoration: none; border-bottom: 1px solid rgba(194,116,138,0.3); transition: border-color 0.2s; }
.post-content a:hover { border-color: var(--rose); }
.post-content ul, .post-content ol { padding-left: 1.5rem; margin-bottom: 1.4rem; }
.post-content li { margin-bottom: 0.5rem; }
.post-content img { max-width: 100%; border-radius: 2px; margin: 2rem 0; border: 1px solid var(--faint); }
.post-content blockquote { border-left: 2px solid var(--gold); padding: 1rem 1.5rem; margin: 2rem 0; color: var(--muted); font-family: var(--serif); font-size: 1.1rem; font-style: italic; }
.post-content strong { color: var(--cream); font-weight: 500; }

.post-cta {
  margin: 3.5rem 0;
  border: 1px solid rgba(212,168,83,0.15);
  border-radius: 2px;
  background: var(--mid);
  overflow: hidden;
}
.post-cta-inner { padding: 2.5rem; }
.post-cta-title { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--cream); margin-bottom: 0.6rem; }
.post-cta-sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; font-weight: 300; }

.post-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  padding-top: 2.5rem;
  border-top: 1px solid var(--faint);
  margin-top: 1rem;
}
.post-nav-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s;
  min-width: 0;
}
.post-nav-item:hover { color: var(--cream); }
.post-nav-item svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.post-nav-right { justify-content: flex-end; text-align: right; }
.post-nav-label { display: block; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.post-nav-title { display: block; font-family: var(--serif); font-size: 0.95rem; color: inherit; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 220px; }
.post-nav-all {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.2s;
  flex-shrink: 0;
}
.post-nav-all:hover { color: var(--gold); }
.post-nav-all svg { width: 16px; height: 16px; fill: currentColor; }

/* ── BLOG PAGE ── */
.blog-page {
  min-height: 100vh;
  padding: 9rem 4rem 5rem;
}

.blog-page-header {
  margin-bottom: 3.5rem;
  border-bottom: 1px solid var(--faint);
  padding-bottom: 2.5rem;
}

.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.blog-empty {
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.blog-pagination a,
.blog-pagination span {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--faint);
  border-radius: 1px;
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.2s;
}
.blog-pagination a:hover,
.blog-pagination span.current { border-color: var(--gold); color: var(--gold); }

/* ── CONTACT ── */
#iletisim { background: var(--mid); text-align: center; padding: 6rem 4rem; }
#iletisim .s-label { justify-content: center; }
#iletisim .s-title { margin: 0 auto 0.8rem; }
#iletisim .s-sub { margin: 0 auto 3.2rem; }
.contact-actions { display: flex; justify-content: center; align-items: center; gap: 1.2rem; flex-wrap: wrap; }

/* ── FOOTER ── */
.site-footer { background: #0a0910; border-top: 1px solid var(--faint); }
.footer-main { display: grid; grid-template-columns: 1fr 1.6fr 1fr; gap: 3rem; padding: 3.5rem 4rem; align-items: start; }
.foot-brand-logo { font-family: var(--serif); font-size: 1.1rem; letter-spacing: 0.2em; color: var(--cream); margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.foot-brand-logo .gold { color: var(--gold); }
.foot-brand-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.foot-brand-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.7; font-weight: 300; max-width: 220px; margin-bottom: 1.5rem; }
.foot-social { display: flex; gap: 0.7rem; }
.foot-social a { width: 32px; height: 32px; border: 1px solid var(--faint); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--muted); text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.foot-social a:hover { border-color: var(--gold); color: var(--gold); }
.foot-social svg { width: 14px; height: 14px; fill: currentColor; }
.foot-map-label { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.6rem; }
.foot-map-label::before { content: ''; width: 1.5rem; height: 1px; background: var(--gold); }
.map-container { width: 100%; height: 200px; border-radius: 2px; overflow: hidden; border: 1px solid rgba(212,168,83,0.15); }
.map-container iframe { width: 100%; height: 100%; border: none; filter: grayscale(100%) invert(90%) contrast(85%) brightness(0.75) sepia(20%); }
.map-address { margin-top: 0.9rem; display: flex; align-items: flex-start; gap: 0.6rem; }
.map-address svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; margin-top: 3px; opacity: 0.7; }
.map-address a { font-size: 0.76rem; color: var(--muted); text-decoration: none; line-height: 1.6; font-weight: 300; transition: color 0.2s; }
.map-address a:hover { color: var(--gold); }
.foot-col-label { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.6rem; }
.foot-col-label::before { content: ''; width: 1.5rem; height: 1px; background: var(--gold); }
.foot-nav-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
.foot-nav-list a { font-size: 0.8rem; color: var(--muted); text-decoration: none; font-weight: 300; transition: color 0.2s; display: flex; align-items: center; gap: 0.5rem; }
.foot-nav-list a::before { content: ''; width: 12px; height: 1px; background: rgba(212,168,83,0.3); transition: background 0.2s; }
.foot-nav-list a:hover { color: var(--cream); }
.foot-nav-list a:hover::before { background: var(--gold); }
.foot-cta-mini { display: flex; flex-direction: column; gap: 0.6rem; }
.foot-btn-randevu { background: var(--rose); color: var(--cream); border: none; padding: 0.7rem 1.4rem; font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; border-radius: 1px; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: opacity 0.2s; width: fit-content; }
.foot-btn-randevu:hover { opacity: 0.85; color: var(--cream); }
.foot-btn-randevu svg { width: 13px; height: 13px; fill: var(--cream); }
.foot-btn-adres { background: transparent; color: var(--muted); border: 1px solid var(--faint); padding: 0.7rem 1.4rem; font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; border-radius: 1px; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.2s; width: fit-content; }
.foot-btn-adres:hover { border-color: rgba(212,168,83,0.4); color: var(--gold); }
.foot-btn-adres svg { width: 13px; height: 13px; fill: currentColor; }
.footer-bottom { border-top: 1px solid var(--faint); padding: 1.1rem 4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.fb-copy { font-size: 0.65rem; color: rgba(245,240,235,0.18); letter-spacing: 0.1em; display: flex; align-items: center; gap: 0.55rem; flex-wrap: wrap; }
.fb-sep { width: 3px; height: 3px; border-radius: 50%; background: rgba(212,168,83,0.25); flex-shrink: 0; }
.fb-credit { font-size: 0.65rem; color: rgba(245,240,235,0.18); letter-spacing: 0.1em; }
.fb-credit a { color: rgba(212,168,83,0.45); text-decoration: none; transition: color 0.2s; }
.fb-credit a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .footer-bottom { padding: 1rem 1.5rem; flex-direction: row; align-items: center; justify-content: space-between; }
  .fb-copy { font-size: 0.6rem; }
  .fb-credit { font-size: 0.6rem; }
  .wa-float { width: 44px; height: 44px; bottom: 1.2rem; right: 1.2rem; }
  .wa-float svg { width: 22px; height: 22px; }
  .wa-float-pulse { inset: -3px; }
  .scroll-top { width: 36px; height: 36px; bottom: 7rem; right: 1.2rem; }
  .scroll-top svg { width: 14px; height: 14px; }
}

/* ── FLOATING WA ── */
.wa-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; width: 52px; height: 52px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.35); text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-float svg { width: 26px; height: 26px; fill: #fff; }
.wa-float-pulse { position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(37,211,102,0.4); animation: waPulse 2s ease-out infinite; }
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.5); opacity: 0; } }

/* ── ANIMATIONS & SCROLL REVEAL ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero — hemen çalışır */
.hero-content > * { animation: fadeUp 0.85s ease both; }
.hero-content .eyebrow   { animation-delay: 0.1s; }
.hero-content .hero-h1   { animation-delay: 0.22s; }
.hero-content .hero-p    { animation-delay: 0.38s; }
.hero-content .hero-btns { animation-delay: 0.52s; }

/* Scroll reveal — JS tarafından .reveal sınıfı eklenir */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Gecikme sınıfları — grid elemanları için */
.reveal-d1 { transition-delay: 0.05s; }
.reveal-d2 { transition-delay: 0.13s; }
.reveal-d3 { transition-delay: 0.21s; }
.reveal-d4 { transition-delay: 0.29s; }
.reveal-d5 { transition-delay: 0.37s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .site-nav { padding: 1rem 2rem; }
  #hero { padding: 8rem 2rem 4rem; }
  .site-section, #hizmetler, #galeri, #blog, #ekip { padding: 4rem 2rem; }
  #hakkimizda { padding: 4rem 2rem; gap: 3rem; }
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; padding: 2.5rem 2rem; }
  .foot-map-wrap { grid-column: span 2; }
}

@media (max-width: 768px) {
  .site-nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; } /* masaüstü menü gizli — fullscreen overlay kullanılıyor */
  .nav-toggle { display: block; }

  #hero { padding: 6rem 1.5rem 3rem; min-height: auto; }
  .hero-h1 { font-size: clamp(2.5rem, 8vw, 3.5rem); }
  .hero-p { font-size: 0.9rem; max-width: 100%; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { width: 100%; justify-content: center; }

  .site-section, #hizmetler, #galeri, #blog, #ekip { padding: 3.5rem 1.5rem; }
  .svc-grid { grid-template-columns: 1fr 1fr; }

  #hakkimizda { grid-template-columns: 1fr; padding: 3.5rem 1.5rem; gap: 2rem; }
  .about-visual { width: 100%; max-width: 380px; }
  .about-badge { bottom: 1rem; right: 1rem; }

  .gal-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px 160px; }
  .g-item:first-child { grid-row: span 1; }

  .team-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-page-grid { grid-template-columns: 1fr 1fr; }

  #iletisim { padding: 3.5rem 1.5rem; }
  .contact-actions { flex-direction: column; align-items: center; }
  .contact-actions a { width: 100%; justify-content: center; }

  .footer-main { grid-template-columns: 1fr; padding: 2rem 1.5rem; gap: 2rem; }
  .foot-map-wrap { grid-column: auto; }
  .footer-bottom { padding: 1rem 1.5rem; }

  .single-post-hero { padding: 7rem 1.5rem 2rem; }
  .single-post-body { padding: 2.5rem 1.5rem 4rem; }
  .blog-page { padding: 7rem 1.5rem 3rem; }
  .blog-page-grid { grid-template-columns: 1fr 1fr; }
  .post-nav { grid-template-columns: 1fr; gap: 1.2rem; }
  .post-nav-all { flex-direction: row; }
  .post-nav-right { justify-content: flex-start; text-align: left; }
}

@media (max-width: 480px) {
  .svc-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-page-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 160px); }
  .g-item:first-child { grid-row: span 1; }
  .hero-h1 { font-size: 2.4rem; }
  .nav-cta { display: none; }
}