/* ============================================================
   ZERAFET ANKARA — style.css
   Premium Wedding Venue · Luxury UI
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES & RESET
   ============================================================ */
:root {
  /* Colors */
  --cream:        #FAF8F4;
  --cream-dark:   #F2EDE4;
  --white:        #FFFFFF;
  --gold:         #C9A84C;
  --gold-light:   #DFC07A;
  --gold-dark:    #A8872A;
  --gold-pale:    #F5EDD6;
  --charcoal:     #1A1A1A;
  --charcoal-mid: #2C2C2C;
  --grey-dark:    #3D3D3D;
  --grey-mid:     #6B6B6B;
  --grey-light:   #AEAEAE;
  --grey-pale:    #E8E4DC;

  /* Typography */
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --section-py:   120px;
  --container:    1200px;

  /* Transitions */
  --ease-smooth:  cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:     0.2s;
  --dur-mid:      0.45s;
  --dur-slow:     0.75s;

  /* Shadows */
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.15);
  --shadow-gold:  0 8px 32px rgba(201,168,76,0.25);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.7;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ============================================================
   2. UTILITY CLASSES
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* Reveal animations — default hidden state */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease-smooth), transform 0.75s var(--ease-smooth);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

.fade-in {
  opacity: 0;
  animation: fadeInUp 1.1s var(--ease-smooth) 0.4s forwards;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Section headers */
.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--charcoal);
}
.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}
.section-divider {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.section-divider span {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ============================================================
   3. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--dur-mid) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--dur-fast);
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.98); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  box-shadow: 0 12px 40px rgba(201,168,76,0.4);
  transform: translateY(-2px);
}

.btn--outline {
  border: 1px solid rgba(255,255,255,0.6);
  color: var(--white);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
}
.btn--outline:hover {
  border-color: var(--gold-light);
  background: rgba(201,168,76,0.12);
}

.btn--light {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn--light:hover {
  background: rgba(255,255,255,0.18);
  border-color: var(--white);
}

.btn--lg {
  padding: 20px 44px;
  font-size: 14px;
}

.btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============================================================
   4. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 28px 0;
  transition: background var(--dur-mid), padding var(--dur-mid), box-shadow var(--dur-mid);
}
.nav.scrolled {
  background: rgba(26,26,26,0.95);
  backdrop-filter: blur(16px);
  padding: 16px 0;
  box-shadow: 0 1px 0 rgba(201,168,76,0.2);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.nav__logo-top {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.08em;
}
.nav__logo-sub {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--dur-fast);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--dur-mid) var(--ease-smooth);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  padding: 10px 24px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  border-radius: 2px;
  transition: all var(--dur-mid) !important;
}
.nav__cta:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
}
.nav__cta::after { display: none; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--dur-mid);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   5. HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Slider */
.hero__slider {
  position: absolute;
  inset: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s var(--ease-smooth), transform 6s var(--ease-smooth);
}
.hero__slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Placeholder gradient backgrounds (replace with real images) */
.hero__slide--1 {
  background-image: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?w=1800');
}
.hero__slide--2 {
  background-image: url('https://images.unsplash.com/photo-1606800052052-a08af7148866?w=1800');
}
.hero__slide--3 {
  background-image: url('https://images.unsplash.com/photo-1578922330920-78f52ef96e85?w=1800');
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20,16,10,0.65) 0%,
    rgba(20,16,10,0.45) 50%,
    rgba(20,16,10,0.70) 100%
  );
}

/* Decorative vertical line */
.hero__deco-line {
  position: absolute;
  left: 80px;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.4;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 820px;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.04em;
  margin-bottom: 48px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Dots */
.hero__dots {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}
.hero__dot {
  width: 28px;
  height: 2px;
  background: rgba(255,255,255,0.35);
  border-radius: 2px;
  transition: background var(--dur-mid), width var(--dur-mid);
  cursor: pointer;
}
.hero__dot.active {
  background: var(--gold);
  width: 44px;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  right: 48px;
  bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.4; transform: scaleY(0.7); }
}
.hero__scroll-text {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}

/* ============================================================
   6. TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--charcoal);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 52px 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-bar__item {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 20px;
}

.trust-bar__number {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.trust-bar__number sup {
  font-size: 0.55em;
  vertical-align: super;
}
.trust-bar__label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.trust-bar__divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ============================================================
   7. HİZMETLER
   ============================================================ */
.hizmetler {
  padding: var(--section-py) 0;
  background: var(--cream);
}

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

.hizmet-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-mid), transform var(--dur-mid) var(--ease-smooth);
}
.hizmet-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.hizmet-card__image {
  height: 220px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-smooth);
}
.hizmet-card:hover .hizmet-card__image {
  transform: scale(1.06);
}

/* Hizmet placeholder images */
.hizmet-card__image--dugun {
  background-image: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?w=600');
}
.hizmet-card__image--nisan {
  background-image: url('https://images.unsplash.com/photo-1511285560929-80b456fea0bc?w=600');
}
.hizmet-card__image--kina {
  background-image: url('https://images.unsplash.com/photo-1470116945706-e6bf5d5a53ca?w=600');
}
.hizmet-card__image--nikah {
  background-image: url('https://images.unsplash.com/photo-1523438885200-e635ba2c371e?w=600');
}

.hizmet-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.5), transparent);
}

.hizmet-card__body {
  padding: 28px 28px 32px;
}

.hizmet-card__icon-wrap {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: var(--gold-pale);
  transition: background var(--dur-mid), border-color var(--dur-mid);
}
.hizmet-card:hover .hizmet-card__icon-wrap {
  background: var(--gold);
  border-color: var(--gold);
}
.hizmet-card__icon {
  width: 18px;
  height: 18px;
  color: var(--gold-dark);
  transition: color var(--dur-mid);
}
.hizmet-card:hover .hizmet-card__icon {
  color: var(--white);
}

.hizmet-card__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.hizmet-card__desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--grey-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}

.hizmet-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: gap var(--dur-mid);
}
.hizmet-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--dur-mid);
}
.hizmet-card__link:hover { gap: 10px; }
.hizmet-card__link:hover svg { transform: translateX(4px); }

/* ============================================================
   8. GALERİ
   ============================================================ */
.galeri {
  padding: var(--section-py) 0;
  background: var(--charcoal-mid);
}
.galeri .section-header { margin-bottom: 56px; }
.galeri .section-title { color: var(--white); }
.galeri .section-eyebrow { color: var(--gold-light); }

.galeri__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 6px;
  padding: 0;
}

.galeri__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.galeri__item--tall {
  grid-row: span 2;
}
.galeri__item--wide {
  grid-column: span 2;
}

.galeri__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease-smooth);
}
.galeri__item:hover .galeri__img {
  transform: scale(1.08);
}

.galeri__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,16,10,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-mid);
}
.galeri__item:hover .galeri__item-overlay {
  background: rgba(20,16,10,0.45);
}
.galeri__item-overlay svg {
  width: 28px;
  height: 28px;
  color: var(--white);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity var(--dur-mid), transform var(--dur-mid) var(--ease-spring);
}
.galeri__item:hover .galeri__item-overlay svg {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,8,6,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-mid), visibility var(--dur-mid);
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox__img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 2px;
  transform: scale(0.94);
  transition: transform var(--dur-mid) var(--ease-spring);
}
.lightbox.open .lightbox__img {
  transform: scale(1);
}
.lightbox__caption {
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: fixed;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: color var(--dur-fast), background var(--dur-fast);
  border-radius: 50%;
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev  { left: 24px;  top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__close svg,
.lightbox__prev svg,
.lightbox__next svg { width: 22px; height: 22px; }

/* ============================================================
   9. SALON
   ============================================================ */
.salon {
  padding: var(--section-py) 0;
  background: var(--cream-dark);
}

.salon__split {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.salon__visual {
  position: relative;
}
.salon__main-img {
  width: 100%;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  overflow: hidden;
  transition: transform 8s var(--ease-smooth);
}
.salon__main-img:hover {
  transform: scale(1.02);
}

.salon__badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}
.salon__badge-text {
  font-family: var(--font-serif);
  font-size: 12px;
  font-style: italic;
  color: var(--white);
  text-align: center;
  line-height: 1.5;
}

.salon__content .section-title { text-align: left; }
.salon__content .section-eyebrow { text-align: left; }
.salon__content .section-divider { justify-content: flex-start; }

.salon__text {
  font-size: 15px;
  font-weight: 300;
  color: var(--grey-dark);
  line-height: 1.9;
  margin-top: 24px;
}

.salon__features {
  margin-top: 32px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.salon__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.salon__feature-icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.salon__feature span {
  font-size: 14px;
  font-weight: 300;
  color: var(--grey-dark);
  line-height: 1.6;
}

/* ============================================================
   10. SÜREÇ
   ============================================================ */
.surec {
  padding: var(--section-py) 0;
  background: var(--charcoal);
}
.surec .section-title { color: var(--white); }
.surec .section-eyebrow { color: var(--gold-light); }
.surec .section-divider span {
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.surec__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.surec__step {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 0 24px;
}

.surec__step-number {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 300;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.surec__step-icon-wrap {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: rgba(201,168,76,0.06);
  transition: all var(--dur-mid);
}
.surec__step:hover .surec__step-icon-wrap {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
}
.surec__step-icon {
  width: 26px;
  height: 26px;
  color: var(--gold);
}

.surec__step-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}

.surec__step-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  margin-bottom: 20px;
}

.surec__step-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--dur-mid);
}
.surec__step-cta svg { width: 14px; height: 14px; }
.surec__step-cta:hover { gap: 10px; }

.surec__connector {
  display: flex;
  align-items: center;
  padding-top: 100px;
  opacity: 0.3;
}
.surec__connector-icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

/* ============================================================
   11. YORUMLAR
   ============================================================ */
.yorumlar {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.yorumlar__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}
.yorumlar__stars {
  display: flex;
  gap: 4px;
}
.yorumlar__stars svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  fill: var(--gold);
}
.yorumlar__rating-text {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--grey-mid);
}

.yorumlar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.yorum-card {
  background: var(--white);
  border-radius: 4px;
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-pale);
  transition: box-shadow var(--dur-mid), transform var(--dur-mid) var(--ease-smooth), border-color var(--dur-mid);
  position: relative;
}
.yorum-card::before {
  content: '\201C';
  position: absolute;
  top: 18px;
  right: 28px;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold-pale);
  line-height: 1;
  font-style: italic;
}
.yorum-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold-pale);
}

.yorum-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.yorum-card__stars svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  fill: var(--gold);
}

.yorum-card__text {
  font-family: var(--font-serif);
  font-size: 15px;
  font-style: italic;
  font-weight: 400;
  color: var(--grey-dark);
  line-height: 1.8;
  margin-bottom: 24px;
}

.yorum-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.yorum-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--white);
  flex-shrink: 0;
}
.yorum-card__name {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.04em;
}
.yorum-card__date {
  display: block;
  font-size: 11px;
  font-weight: 300;
  color: var(--grey-light);
  letter-spacing: 0.06em;
}

/* ============================================================
   12. CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
}
.cta-section__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1465495976277-4387d4b0b4c6?w=1800');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
}
.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,12,8,0.85) 0%,
    rgba(15,12,8,0.75) 100%
  );
}

.cta-section .container { position: relative; z-index: 2; }

.cta-section__content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cta-section__eyebrow { color: var(--gold-light); }

.cta-section__title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
  margin-top: 16px;
}
.cta-section__title em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-section__subtitle {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
  margin-bottom: 48px;
  letter-spacing: 0.03em;
}

.cta-section__actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.cta-section__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
}
.cta-section__note svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

/* ============================================================
   13. FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
}

.footer__top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 60px;
}

.footer__logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 20px;
}
.footer__logo-top {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.06em;
}
.footer__logo-sub {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer__tagline {
  font-family: var(--font-serif);
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
  line-height: 1.7;
}

.footer__social {
  display: flex;
  gap: 14px;
}
.footer__social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--dur-mid);
}
.footer__social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.footer__social-link svg { width: 16px; height: 16px; }

.footer__col-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  transition: color var(--dur-fast), padding-left var(--dur-mid);
}
.footer__links a:hover {
  color: rgba(255,255,255,0.85);
  padding-left: 6px;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.footer__contact svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer__contact a {
  color: rgba(255,255,255,0.5);
  transition: color var(--dur-fast);
}
.footer__contact a:hover { color: var(--gold); }

.footer__bottom {
  padding: 28px 0;
}
.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__copy {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
}

/* ============================================================
   14. FLOATING WHATSAPP FAB
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: var(--white);
  padding: 14px 22px 14px 18px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: all var(--dur-mid) var(--ease-spring);
  overflow: hidden;
}
.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(37,211,102,0.55);
}
.whatsapp-fab:active { transform: scale(0.97); }

.whatsapp-fab__icon {
  width: 22px;
  height: 22px;
  fill: var(--white);
  flex-shrink: 0;
}
.whatsapp-fab__label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* Pulse ring */
.whatsapp-fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50px;
  animation: fabPulse 2.5s ease-out infinite;
}
@keyframes fabPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================================================
   15. RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 88px; }

  .hizmetler__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .galeri__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .galeri__item--tall { grid-row: span 1; }
  .galeri__item--wide { grid-column: span 2; }

  .salon__split { gap: 48px; }
  .salon__badge { width: 96px; height: 96px; bottom: -20px; right: -16px; }
  .salon__badge-text { font-size: 10px; }

  .surec__connector { display: none; }
  .surec__steps { flex-wrap: wrap; gap: 40px; justify-content: center; }
  .surec__step { min-width: 260px; }

  .yorumlar__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: span 2; }
}

/* ============================================================
   16. RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-py: 72px; }

  .container { padding: 0 24px; }

  /* Nav */
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 280px;
    background: rgba(20,16,10,0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: flex-start;
    padding: 96px 40px 40px;
    gap: 28px;
    transition: right var(--dur-mid) var(--ease-smooth);
    border-left: 1px solid rgba(201,168,76,0.15);
  }
  .nav__links.open { right: 0; }
  .nav__links a { font-size: 14px; }
  .nav__hamburger { display: flex; }

  /* Hero */
  .hero__deco-line { display: none; }
  .hero__title { font-size: 2.4rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__scroll { display: none; }

  /* Trust bar */
  .trust-bar__inner { flex-wrap: wrap; gap: 12px; }
  .trust-bar__divider { display: none; }
  .trust-bar__item { min-width: 130px; }

  /* Hizmetler */
  .hizmetler__grid { grid-template-columns: 1fr; }

  /* Galeri */
  .galeri__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .galeri__item--tall,
  .galeri__item--wide { grid-row: unset; grid-column: unset; }

  /* Salon */
  .salon__split {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }
  .salon__badge { bottom: -16px; right: 16px; }

  /* Yorumlar */
  .yorumlar__grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-section__bg { background-attachment: scroll; }
  .cta-section { padding: 100px 0; }
  .cta-section__actions { flex-direction: column; align-items: center; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__brand { grid-column: unset; }
  .footer__bottom .container { justify-content: center; text-align: center; }

  /* FAB */
  .whatsapp-fab { bottom: 24px; right: 20px; padding: 14px 18px; }
  .whatsapp-fab__label { display: none; }
}

/* ============================================================
   17. RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero__title { font-size: 2rem; }
  .section-title { font-size: 1.75rem; }
  .galeri__grid { grid-template-columns: 1fr; }
  .trust-bar__item { min-width: 100%; }
  .trust-bar__inner { gap: 4px; }
}
