/* ===================================
   RESET & BASE
=================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --font: 'Plus Jakarta Sans', sans-serif;

  /* Heading */
  --h-size: 40px;
  --h-lh: 48px;
  --h-ls: -1.2px;
  --h-color: #000000;

  /* Body */
  --b-size: 16px;
  --b-lh: 22.4px;
  --b-ls: 0px;
  --b-color: rgba(31, 31, 31, 0.8); /* #1F1F1FCC */

  /* Palette */
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --dark: #0D0D0D;
  --dark-2: #1A1A1A;
  --white: #FFFFFF;
  --off-white: #F9F7F4;
  --border: rgba(255,255,255,0.15);

  /* Nav */
  --nav-h: 80px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: var(--b-size);
  line-height: var(--b-lh);
  letter-spacing: var(--b-ls);
  color: var(--b-color);
  background: var(--off-white);
  overflow-x: hidden;
}


/* ===================================
   NAVBAR
=================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

/* Şeffaf başlangıç durumu (hero üzerinde) */
.navbar.at-top {
  background: transparent;
}

/* Aşağı kaydırınca: frosted glass */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}

.logo-main {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--white);
  transition: color 0.4s ease;
}

.logo-sub {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.4s ease;
}

.navbar.scrolled .logo-main { color: var(--dark); }
.navbar.scrolled .logo-sub  { color: var(--gold); }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

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

.navbar.scrolled .nav-link {
  color: rgba(13,13,13,0.65);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--dark);
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.btn-reservation {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--dark);
  background: var(--gold);
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-reservation:hover {
  background: #b8914f;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 1003;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar.scrolled .hamburger span { background: var(--dark); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ===================================
   HERO SLIDER
=================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 280px;
  background: linear-gradient(to bottom, transparent 0%, rgba(249,247,244,0.6) 50%, var(--off-white) 100%);
  pointer-events: none;
  z-index: 3;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Slide Arka Plan */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 7s ease;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide-bg--mobile { display: none; }

@media (max-width: 768px) {
  .slide-bg--desktop { display: none; }
  .slide-bg--mobile  { display: block; }
}

/* Fallback renk (görsel yoksa) */
.slide[data-index="0"] .slide-bg { background-color: #2C3E50; }
.slide[data-index="1"] .slide-bg { background-color: #1A2634; }
.slide[data-index="2"] .slide-bg { background-color: #2D2417; }

/* Gradient Overlay */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.3) 50%,
    rgba(0,0,0,0.1) 100%
  );
}

/* Slide İçerik */
.slide-content {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: max(40px, calc((100vw - 1320px) / 2 + 40px));
  width: min(600px, calc(100vw - 80px));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.slide-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--gold);
}

.slide-title {
  font-size: var(--h-size);
  font-weight: 500;
  line-height: var(--h-lh);
  letter-spacing: var(--h-ls);
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease 0.35s, transform 0.7s ease 0.35s;
}

.slide-desc {
  font-size: var(--b-size);
  line-height: var(--b-lh);
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}

.slide-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.65s, transform 0.6s ease 0.65s;
}

/* Aktif slide'da animasyon */
.slide.active .slide-tag,
.slide.active .slide-title,
.slide.active .slide-desc,
.slide.active .slide-actions {
  opacity: 1;
  transform: translateY(0);
}

/* Butonlar */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--dark);
  background: var(--gold);
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  background: #b8914f;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,169,110,0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--white);
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}


/* ===================================
   SLIDER KONTROLLER
=================================== */
.slider-controls {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 20px;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
  transform: scale(1.05);
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot.active {
  width: 24px;
  border-radius: 3px;
  background: var(--gold);
  border-color: var(--gold);
}

.dot:hover:not(.active) {
  border-color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.3);
}

/* Scroll İndikatörü */
.scroll-indicator {
  position: absolute;
  right: 48px;
  bottom: 48px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.7); }
}

/* Slide Sayacı */
.slide-counter {
  position: absolute;
  left: max(40px, calc((100vw - 1320px) / 2 + 40px));
  bottom: 52px;
  z-index: 20;
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
}

.current-slide {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.divider {
  font-size: 14px;
  color: rgba(255,255,255,0.3);
}


/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 1200px) {
  .slide-counter {
    left: 60px;
  }
}

/* Mobil Nav — header dışında body child olarak */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  width: 280px;
  background: #0D0D0D;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 32px;
  gap: 4px;
  z-index: 1002;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-link {
  font-size: 18px;
  font-weight: 500;
  padding: 12px 0;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  width: 100%;
  transition: color 0.25s ease;
}

.mobile-nav-link:last-of-type { border-bottom: none; }

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

.mobile-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  width: 100%;
  padding: 14px 20px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  background: var(--gold);
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.25s ease;
}

.mobile-nav-cta:hover { background: #b8914f; }

@media (max-width: 900px) {
  :root {
    --h-size: 32px;
    --h-lh: 40px;
    --nav-h: 68px;
  }

  .nav-links { display: none; }

  .mobile-nav-overlay,
  .mobile-nav { display: flex; }

  .hamburger { display: flex; }

  .slide-content {
    left: 32px;
    width: calc(100vw - 64px);
  }

  .slide-counter {
    left: 32px;
  }

  .scroll-indicator { display: none; }
}

@media (max-width: 600px) {
  :root {
    --h-size: 26px;
    --h-lh: 34px;
  }

  .nav-inner { padding: 0 20px; }

  .slide-content {
    left: 20px;
    width: calc(100vw - 40px);
  }

  .slide-actions { flex-direction: column; }

  .btn-primary, .btn-ghost {
    text-align: center;
    justify-content: center;
  }

  .slider-controls { bottom: 32px; }
  .slide-counter { left: 20px; bottom: 36px; }
}


/* ===================================
   SHARED UTILITIES
=================================== */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 900px) { .container { padding: 0 24px; } }
@media (max-width: 600px) { .container { padding: 0 16px; } }

/* Bölüm Başlığı */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--gold-light);
}

.section-title {
  font-size: var(--h-size);
  font-weight: 500;
  line-height: var(--h-lh);
  letter-spacing: var(--h-ls);
  color: var(--h-color);
  margin-bottom: 16px;
}

.section-desc {
  font-size: var(--b-size);
  line-height: var(--b-lh);
  color: var(--b-color);
}


/* ===================================
   ODALAR
=================================== */
.rooms {
  background: var(--off-white);
  padding-top: 100px;
  padding-bottom: 0;
}

/* İstatistik Şeridi */
.rooms-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--white);
  border-radius: 16px;
  padding: 32px 40px;
  margin-bottom: 80px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}

.rooms-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--dark);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(31,31,31,0.5);
  letter-spacing: 0.3px;
  text-align: center;
}

.rooms-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(0,0,0,0.08);
  flex-shrink: 0;
}

/* Kart Izgara */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

/* Oda Kartı */
.room-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

/* Öne Çıkan Kart */
.room-card--featured {
  box-shadow: 0 4px 24px rgba(201,169,110,0.15);
}

.room-card--featured:hover {
  box-shadow: 0 20px 56px rgba(201,169,110,0.25);
}

/* Görsel Alanı */
.room-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;
}

.room-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #2C3530;
  transition: transform 0.5s ease;
}

/* Görsel yokken arka plan */
.room-card:nth-child(1) .room-img-bg { background-color: #111111; }
.room-card:nth-child(2) .room-img-bg { background-color: #111111; }
.room-card:nth-child(3) .room-img-bg { background-color: #111111; }

.room-card:hover .room-img-bg {
  transform: scale(1.04);
}

.room-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.35s ease;
  z-index: 1;
}

.room-card:hover .room-image::before {
  background: rgba(0,0,0,0.25);
}

.room-view-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: 2px solid rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 2;
  pointer-events: none;
}

/* Kapasite Badge */
.room-capacity-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}

/* Tip Badge */
.room-type-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
}

/* Özellik Badge (Deniz Manzaralı) */
.room-feature-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,169,110,0.9);
  backdrop-filter: blur(8px);
  color: var(--dark);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}

/* Kart İçeriği */
.room-body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.room-meta {
  margin-bottom: 10px;
}

.room-pension {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(31,31,31,0.45);
  letter-spacing: 0.3px;
}

.room-honeymoon-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #b5467a;
  background: #fdf0f6;
  border: 1px solid #f5c6e0;
  padding: 5px 12px;
  border-radius: 100px;
  margin-top: 10px;
}

.room-name {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.room-desc {
  font-size: 14px;
  line-height: 21px;
  color: rgba(31,31,31,0.65);
  margin-bottom: 20px;
}

/* Yatak Bilgileri */
.room-beds {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  padding: 14px 16px;
  background: var(--off-white);
  border-radius: 10px;
}

.bed-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(31,31,31,0.7);
}

.bed-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* Donanım */
.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  margin-top: auto;
  padding-top: 8px;
}

.amenity {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(31,31,31,0.6);
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 5px 10px;
  border-radius: 8px;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.amenity svg { color: var(--gold); flex-shrink: 0; }

/* CTA */
.room-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.room-cta:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-1px);
}

.room-card--featured .room-cta {
  background: var(--gold);
  color: var(--dark);
}

.room-card--featured .room-cta:hover {
  background: #b8914f;
}

/* Ortak Özellikler Notu */
.rooms-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(31,31,31,0.5);
  padding: 20px;
  margin-bottom: 80px;
}

.rooms-note svg { color: var(--gold); flex-shrink: 0; }
.rooms-note strong { color: var(--dark); font-weight: 600; }


/* ===================================
   RESTORAN BANDI
=================================== */
.restaurant-banner {
  background: var(--dark-2);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.restaurant-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, transparent 70%);
  pointer-events: none;
}

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

.restaurant-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.restaurant-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: -0.8px;
  color: var(--white);
  margin-bottom: 16px;
}

.restaurant-desc {
  font-size: 15px;
  line-height: 23px;
  color: rgba(255,255,255,0.5);
  max-width: 420px;
}

.restaurant-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  flex-shrink: 0;
}

.restaurant-stat {
  text-align: right;
}

.r-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -2px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.r-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
}

.btn-restaurant {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-restaurant:hover {
  background: #b8914f;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,169,110,0.3);
}


/* ===================================
   ROOMS RESPONSIVE
=================================== */
@media (max-width: 1100px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .room-card:last-child {
    grid-column: 1 / -1;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 700px) {
  .rooms { padding-top: 72px; }

  .rooms-stats {
    flex-wrap: wrap;
    gap: 24px;
    padding: 24px 20px;
  }

  .rooms-stat-divider { display: none; }

  .rooms-stat { flex: 0 0 calc(50% - 12px); }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .room-card:last-child {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }

  .restaurant-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .restaurant-right {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    width: 100%;
  }

  .restaurant-stat { text-align: left; }

  .restaurant-title { font-size: 28px; line-height: 36px; }
}


/* ===================================
   GALERİ
=================================== */
.gallery {
  background: var(--off-white);
  padding: 100px 0;
}

.gallery-grid {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 40px 20px;
  scrollbar-width: none;
  cursor: grab;
}

.gallery-grid::-webkit-scrollbar { display: none; }
.gallery-grid.dragging { cursor: grabbing; }

.gallery-item {
  position: relative;
  overflow: hidden;
  flex: 0 0 360px;
  height: 260px;
  border-radius: 14px;
  scroll-snap-align: start;
  cursor: pointer;
  background: #ddd;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  pointer-events: none;
  user-select: none;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s ease;
  border-radius: 14px;
}

.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover::after { background: rgba(0,0,0,0.15); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  user-select: none;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease;
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease;
}

.lightbox-arrow:hover { background: rgba(255,255,255,0.25); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
}

.gallery-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.gallery-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12);
  background: var(--white);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.gallery-nav-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(201,169,110,0.3);
}

@media (max-width: 900px) {
  .gallery-item { flex: 0 0 280px; height: 210px; }
  .gallery-grid { padding: 0 24px 16px; }
}

@media (max-width: 600px) {
  .gallery { padding: 72px 0; }
  .gallery-item { flex: 0 0 240px; height: 180px; }
  .gallery-grid { padding: 0 16px 12px; gap: 8px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}


/* ===================================
   YORUMLAR
=================================== */
.reviews {
  background: var(--white);
  padding: 100px 0;
}

.reviews-embed {
  min-height: 200px;
}

/* Trustindex widget genel override — beyaz zemine uyum */
.reviews-embed .ti-widget {
  font-family: var(--font) !important;
}

@media (max-width: 700px) {
  .reviews { padding: 72px 0; }
}


/* ===================================
   SSS — FAQ
=================================== */
.faq {
  background: var(--off-white);
  padding: 100px 0;
}

.faq .container {
  max-width: 860px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.faq-item:first-child {
  border-top: 1px solid rgba(0,0,0,0.07);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 500;
  color: var(--dark);
  text-align: left;
  line-height: 1.4;
  transition: color 0.25s ease;
}

.faq-question:hover { color: var(--gold); }

.faq-question[aria-expanded="true"] { color: var(--gold); }

.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--dark);
  transition: all 0.3s ease;
}

.faq-question:hover .faq-icon,
.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.faq-icon svg {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question[aria-expanded="true"] .faq-icon svg {
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease,
              padding 0.3s ease;
  opacity: 0;
}

.faq-answer.open {
  max-height: 300px;
  opacity: 1;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 25px;
  color: rgba(31,31,31,0.65);
  padding-right: 60px;
}

.faq-answer p strong { color: var(--dark); font-weight: 600; }

.faq-answer p a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

.faq-answer p a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .faq { padding: 72px 0; }
  .faq-question { font-size: 15px; padding: 20px 0; }
  .faq-answer p { padding-right: 0; font-size: 14px; }
}


/* ===================================
   İLETİŞİM
=================================== */
.contact {
  background: var(--white);
  padding: 100px 0 80px;
}

/* İki Kolon Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: start;
}

/* Bilgi Kartları */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 20px;
  border-radius: 14px;
  transition: background 0.25s ease;
}

.contact-card:hover { background: var(--off-white); }

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.contact-card:hover .contact-icon {
  background: var(--gold-light);
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 2px;
}

.contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(31,31,31,0.4);
}

.contact-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.25s ease;
}

a.contact-value:hover { color: var(--gold); }

/* Hızlı Arama Butonları */
.contact-ctas {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  padding: 0 20px;
}

.btn-call,
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
  padding: 13px 20px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.2px;
}

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

.btn-call:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.3);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

/* Harita */
.contact-map {
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.1);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Form Bölümü */
.contact-form-wrap {
  background: var(--off-white);
  border-radius: 24px;
  padding: 48px;
  margin-bottom: 0;
}

.contact-form-header {
  margin-bottom: 36px;
}

.contact-form-title {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-form-desc {
  font-size: 14px;
  color: var(--b-color);
  line-height: 21px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group--full { grid-column: 1 / -1; }

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(31,31,31,0.55);
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(31,31,31,0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,169,110,0.1);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: flex-start;
  padding: 15px 36px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--white);
  background: #25D366;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.35);
}


/* ===================================
   WHATSAPP FLOAT
=================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 20px 14px 16px;
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}

@media (max-width: 600px) {
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 16px; border-radius: 50%; bottom: 20px; right: 20px; }
}


/* ===================================
   FOOTER
=================================== */
.footer {
  background: var(--dark-2);
  padding: 56px 0 0;
  margin-top: 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo-main {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--white);
}

.footer-logo-sub {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 4px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom span {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}


/* ===================================
   İLETİŞİM & FOOTER RESPONSIVE
=================================== */
@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map { height: 320px; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .contact { padding-top: 72px; }

  .contact-form-wrap { padding: 28px 20px; }

  .form-row { grid-template-columns: 1fr; }

  .contact-ctas { flex-direction: column; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .btn-submit { width: 100%; }
}
