/* ============================================
   WORLD VILLA ISTANBUL — Premium Tasarım
   ============================================ */

:root {
  /* Marka renkleri (logo bazlı) */
  --primary: #E8762E;          /* Terracotta turuncu (logo) */
  --primary-dark: #C45A1F;     /* Hover/aktif */
  --primary-light: #F49A5C;    /* Yumuşak vurgu */

  /* DARK TEMA - Antrasit Paleti */
  --bg: #0F0F11;               /* Ana antrasit bg */
  --surface: #1A1A1D;          /* Card / yüzey */
  --surface-light: #232327;    /* Hover / hafif vurgu */
  --surface-dark: #08080A;     /* En koyu (header scroll) */

  /* Gece tonları (vurgu) */
  --navy: #0A1018;             /* Hero overlay / koyu blok */
  --navy-dark: #050810;        /* Footer */
  --anthracite: #1A1A1D;       /* Yumuşak antrasit */

  /* Krem/ivory ALIAS — geriye dönük uyumluluk için dark yapıldı */
  --cream: #0F0F11;            /* Ana bg (dark) */
  --ivory: #1A1A1D;            /* İkincil yüzey (dark) */

  --gold: #D4A574;             /* Altın aksent */
  --gold-soft: #E5C9A0;

  /* Metinler - açık tonlar */
  --text: #F5F1EA;             /* Ana metin (krem-beyaz) */
  --text-muted: #9CA3AF;       /* Orta gri */
  --text-light: #6B7280;       /* Koyu gri */
  --heading: #F8F5F0;          /* Başlık beyazı */

  /* Sınır ve beyaz */
  --border: #2A2A2E;           /* Koyu border */
  --border-light: #34343A;
  --white: #FFFFFF;

  /* Tipografi */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Animasyon */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Gölge */
  --shadow-sm: 0 2px 8px rgba(15, 30, 46, 0.05);
  --shadow-md: 0 10px 30px rgba(15, 30, 46, 0.08);
  --shadow-lg: 0 20px 60px rgba(15, 30, 46, 0.12);
  --shadow-xl: 0 30px 80px rgba(15, 30, 46, 0.18);
}

/* ============================================
   RESET
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--heading);
}

/* ============================================
   YARDIMCI SINIFLAR
   ============================================ */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 70px 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-eyebrow {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 16px;
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--primary);
  margin: 24px auto;
}

/* ============================================
   BUTONLAR
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-dark {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}

.btn-dark:hover {
  background: var(--surface-light);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-light);
}

.btn-ghost:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* ============================================
   HEADER
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.4s var(--ease);
  background: linear-gradient(180deg, rgba(15, 30, 46, 0.7) 0%, transparent 100%);
}

.header.scrolled {
  background: rgba(15, 15, 17, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

/* ============================================
   METİN-BAZLI MARKA LOGOSU
   ============================================ */

.brand-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  color: var(--text);
  transition: opacity 0.3s var(--ease);
}

.brand-logo:hover {
  opacity: 0.85;
}

.brand-logo-main {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0;
}

.brand-logo-villa {
  color: var(--text);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.brand-logo-world {
  color: var(--primary);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.brand-logo-sub {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 500;
}

.brand-logo-sub::before,
.brand-logo-sub::after {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--text-muted);
}

.brand-logo-lg .brand-logo-main {
  font-size: 2.2rem;
}

.brand-logo-lg .brand-logo-sub {
  font-size: 0.7rem;
  gap: 12px;
}

.brand-logo-lg .brand-logo-sub::before,
.brand-logo-lg .brand-logo-sub::after {
  width: 22px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s var(--ease);
  position: relative;
  padding: 8px 0;
}

.header.scrolled .nav-link {
  color: var(--text);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s var(--ease);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ============================================
   DİL DEĞİŞTİRİCİ
   ============================================ */

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease);
}

.header.scrolled .lang-switcher {
  border-color: var(--border);
  background: var(--surface);
}

.lang-btn {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 4px 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: color 0.25s var(--ease);
  border-radius: 999px;
  text-transform: uppercase;
  line-height: 1;
}

.header.scrolled .lang-btn {
  color: var(--text-muted);
}

.lang-btn:hover {
  color: var(--white);
}

.header.scrolled .lang-btn:hover {
  color: var(--text);
}

.lang-btn.active {
  color: var(--white);
  background: var(--primary);
}

.header.scrolled .lang-btn.active {
  color: var(--white);
  background: var(--primary);
}

.lang-divider {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.7rem;
  user-select: none;
}

.header.scrolled .lang-divider {
  color: var(--border-light);
}

.header-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}

.header.scrolled .header-whatsapp {
  color: var(--text);
}

.header-whatsapp svg {
  width: 20px;
  height: 20px;
}

.header-cta {
  padding: 10px 24px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}

.header-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  position: absolute;
  left: 4px;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}

.header.scrolled .menu-toggle span {
  background: var(--text);
}

.menu-toggle span:nth-child(1) { top: 10px; }
.menu-toggle span:nth-child(2) { top: 16px; }
.menu-toggle span:nth-child(3) { top: 22px; }

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 16px;
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 16px;
}

/* ============================================
   HERO SLIDER
   ============================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--bg);
}

.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s var(--ease);
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.35) 0%, rgba(8, 8, 10, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
}

.hero-eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFade 1s var(--ease-out) 0.3s forwards;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--white);
  line-height: 1.1;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFade 1s var(--ease-out) 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--primary);
  font-weight: 300;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  max-width: 640px;
  margin: 0 auto 40px;
  font-weight: 300;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFade 1s var(--ease-out) 0.7s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFade 1s var(--ease-out) 0.9s forwards;
}

@keyframes heroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slider controls */
.hero-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 3;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 32px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.hero-dot.active {
  background: var(--primary);
  width: 60px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  z-index: 3;
  backdrop-filter: blur(8px);
}

.hero-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.hero-arrow-prev { left: 30px; }
.hero-arrow-next { right: 30px; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 3;
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-scroll::before {
  content: '';
  width: 1px;
  height: 60px;
  background: var(--white);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); transform-origin: bottom; }
  50% { transform: scaleY(1); transform-origin: bottom; }
}

/* ============================================
   HIZLI REZERVASYON
   ============================================ */

.booking-bar {
  position: relative;
  z-index: 5;
  margin-top: -60px;
  margin-bottom: 60px;
}

.booking-card {
  background: var(--surface);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border);
  align-items: end;
}

.booking-field label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
}

.booking-field input,
.booking-field select {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--border);
  padding: 10px 0;
  font-size: 1rem;
  font-family: var(--font-body);
  background: transparent;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s var(--ease);
  color-scheme: dark;
}

.booking-field select option {
  background: var(--surface);
  color: var(--text);
}

.booking-field input:focus,
.booking-field select:focus {
  border-color: var(--primary);
}

.booking-card .btn {
  height: 48px;
}

/* ============================================
   HAKKINDA BÖLÜMÜ
   ============================================ */

.about {
  background: var(--bg);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-eyebrow {
  text-align: left;
  margin-bottom: 16px;
}

.about-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.about-stat .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 4px;
}

.about-stat .label {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  right: -24px;
  bottom: -24px;
  border: 2px solid var(--primary);
  z-index: 0;
}

.about-image img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  aspect-ratio: 4/5;
}

/* ============================================
   ÖZELLİKLER / FEATURES
   ============================================ */

.features {
  background: var(--surface-dark);
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 118, 46, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.features .section-title {
  color: var(--white);
}

.features .section-subtitle {
  color: var(--text-muted);
}

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

.feature-card {
  padding: 36px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  transition: all 0.4s var(--ease);
  cursor: default;
}

.feature-card:hover {
  background: rgba(232, 118, 46, 0.08);
  border-color: var(--primary);
  transform: translateY(-6px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: rgba(232, 118, 46, 0.1);
  border-radius: 50%;
  transition: all 0.4s var(--ease);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--heading);
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   GALERİ ÖNİZLEME
   ============================================ */

.gallery-preview {
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 16px;
  margin-bottom: 50px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--navy);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 30, 46, 0.6) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s var(--ease);
  z-index: 2;
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-cta {
  text-align: center;
}

/* ============================================
   KONUM
   ============================================ */

.location {
  background: var(--surface-dark);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: stretch;
}

.location-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-info h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
}

.location-info p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.location-details {
  list-style: none;
  margin-bottom: 32px;
}

.location-details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.location-details li:last-child {
  border-bottom: none;
}

.location-details .icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
}

.location-details .icon svg {
  width: 18px;
  height: 18px;
}

.location-details .text strong {
  display: block;
  color: var(--heading);
  margin-bottom: 2px;
  font-weight: 600;
}

.location-details .text span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.location-map {
  min-height: 480px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
  filter: invert(0.92) hue-rotate(180deg);
}

.location-map iframe {
  filter: contrast(0.95);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================
   YORUMLAR
   ============================================ */

.testimonials {
  background: var(--bg);
}

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

.testimonial {
  background: var(--surface);
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s var(--ease);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
}

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-stars {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-family: var(--font-display);
}

.testimonial-name {
  font-weight: 600;
  color: var(--heading);
  font-size: 0.95rem;
}

.testimonial-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   SSS / FAQ
   ============================================ */

.faq {
  background: var(--surface-dark);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
  border: 1px solid var(--border);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--heading);
  font-family: var(--font-display);
  cursor: pointer;
  background: transparent;
}

.faq-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  position: relative;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--white);
  transition: opacity 0.3s var(--ease);
}

.faq-icon::before {
  width: 12px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 12px;
}

.faq-item.active .faq-icon::after {
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(rgba(8, 8, 10, 0.78), rgba(8, 8, 10, 0.88)), url('../images/villa-08.jpg') center/cover no-repeat;
  background-attachment: fixed;
  color: var(--text);
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.cta-banner p {
  max-width: 600px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--surface-dark);
  color: var(--text-muted);
  padding: 80px 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-logo {
  margin-bottom: 24px;
  display: inline-block;
}

.footer-about {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s var(--ease);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ============================================
   WHATSAPP YÜZER BUTON
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 90;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: all 0.3s var(--ease);
  animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #128C7E;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.8), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   ALT SAYFA HERO
   ============================================ */

.page-hero {
  position: relative;
  padding: 200px 0 100px;
  background: linear-gradient(rgba(8, 8, 10, 0.7), rgba(8, 8, 10, 0.92)), url('../images/villa-03.jpg') center/cover no-repeat;
  color: var(--text);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--primary);
}

.breadcrumbs span {
  opacity: 0.6;
}

/* ============================================
   VILLA DETAY SAYFASI
   ============================================ */

.villa-detail {
  background: var(--bg);
}

.villa-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.villa-detail-content h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.villa-detail-content > p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 32px;
}

.villa-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 40px 0;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.villa-spec {
  text-align: center;
  padding: 8px;
}

.villa-spec svg {
  width: 36px;
  height: 36px;
  color: var(--primary);
  margin: 0 auto 8px;
}

.villa-spec .val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--heading);
  font-weight: 500;
}

.villa-spec .lbl {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.villa-amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.villa-amenities li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text);
}

.villa-amenities li svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.villa-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.sidebar-card {
  background: var(--surface);
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
}

.sidebar-price {
  text-align: center;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.sidebar-price .amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--primary);
  font-weight: 600;
}

.sidebar-price .period {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.sidebar-card label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
  margin-top: 16px;
}

.sidebar-card input,
.sidebar-card select {
  width: 100%;
  border: 1px solid var(--border);
  padding: 12px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color 0.3s var(--ease);
  color-scheme: dark;
}

.sidebar-card select option {
  background: var(--surface);
  color: var(--text);
}

.sidebar-card input:focus,
.sidebar-card select:focus {
  border-color: var(--primary);
}

.sidebar-card .btn {
  margin-top: 24px;
}

.sidebar-contact {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.sidebar-contact a {
  color: var(--primary);
  font-weight: 600;
}

/* ============================================
   GALERİ SAYFASI
   ============================================ */

.gallery-page {
  background: var(--bg);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.gallery-filter {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.gallery-filter:hover,
.gallery-filter.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.gallery-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-full .gallery-item {
  aspect-ratio: 4/3;
  height: auto;
}

.video-section {
  margin-top: 80px;
  text-align: center;
}

.video-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 16/9;
  background: var(--surface-dark);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border);
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 30, 46, 0.95);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  display: block;
  box-shadow: var(--shadow-xl);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(10px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.lightbox-close {
  top: -60px;
  right: 0;
}

.lightbox-prev {
  top: 50%;
  left: -80px;
  transform: translateY(-50%);
}

.lightbox-next {
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
}

.lightbox-counter {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
}

/* ============================================
   HAKKIMIZDA SAYFASI
   ============================================ */

.about-page {
  background: var(--bg);
}

.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.about-page-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.about-page-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values {
  background: var(--surface-dark);
}

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

.value-card {
  background: var(--surface);
  padding: 48px 32px;
  text-align: center;
  transition: all 0.3s var(--ease);
  border: 1px solid var(--border);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 32px;
  height: 32px;
}

.value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.value-card p {
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================
   İLETİŞİM SAYFASI
   ============================================ */

.contact-page {
  background: var(--bg);
}

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

.contact-info-card {
  background: var(--surface-dark);
  color: var(--text);
  padding: 48px 36px;
  border: 1px solid var(--border);
}

.contact-info-card h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.contact-info-card > p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail .icon {
  width: 44px;
  height: 44px;
  background: rgba(232, 118, 46, 0.15);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail .icon svg {
  width: 18px;
  height: 18px;
}

.contact-detail strong {
  display: block;
  color: var(--white);
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-detail span,
.contact-detail a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.contact-detail a:hover {
  color: var(--primary);
}

.contact-form {
  background: var(--surface);
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
}

.contact-form h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.contact-form > p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: all 0.3s var(--ease);
  color-scheme: dark;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group select option {
  background: var(--surface);
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--surface);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

/* ============================================
   YASAL SAYFA (KVKK / GİZLİLİK)
   ============================================ */

.legal {
  background: var(--bg);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--surface);
  padding: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
}

.legal-content h2 {
  font-size: 1.6rem;
  margin: 32px 0 16px;
  color: var(--heading);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 14px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 18px;
}

.legal-meta {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-full {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .villa-specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .villa-detail-grid {
    grid-template-columns: 1fr;
  }
  .villa-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }
  .container {
    padding: 0 20px;
  }
  .menu-toggle {
    display: block;
  }
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--surface-dark);
    padding: 100px 32px 32px;
    transition: right 0.4s var(--ease);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
    border-left: 1px solid var(--border);
  }
  .nav.active {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .nav-link {
    color: var(--text) !important;
    font-size: 1rem;
  }
  .header-actions {
    display: none;
  }

  /* Mobil: dil switcher görünür kalsın (whatsapp/cta gizli) */
  .lang-switcher-mobile {
    display: inline-flex !important;
    margin-right: 12px;
  }
  .header-mobile-row {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .hero-arrow {
    width: 40px;
    height: 40px;
  }
  .hero-arrow-prev { left: 10px; }
  .hero-arrow-next { right: 10px; }
  .hero-scroll { display: none; }
  .booking-bar {
    margin-top: -40px;
    padding: 0 20px;
  }
  .booking-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }
  .about-grid,
  .location-grid,
  .about-page-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image::before {
    display: none;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1) {
    grid-column: span 2;
  }
  .testimonials-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .villa-specs {
    grid-template-columns: 1fr 1fr;
    padding: 20px;
  }
  .villa-amenities {
    grid-template-columns: 1fr;
  }
  .contact-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
  .gallery-full {
    grid-template-columns: 1fr;
  }
  .legal-content {
    padding: 32px 24px;
  }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 8px; right: 8px; background: rgba(0,0,0,0.5); }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    width: 100%;
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
  }
  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .cta-buttons .btn {
    width: 100%;
  }
}
