/* ==========================================================================
   Sueño Event Hall - Main Luxury Theme Stylesheet
   ========================================================================== */

:root {
  /* Renk Paleti - Referans Görsele Sadık */
  --bg-dark: #0a0a0a;
  --bg-surface: #111111;
  --bg-card: #161616;
  --bg-elevated: #1c1c1c;

  --gold-primary: #c5a880;
  --gold-light: #e5d5be;
  --gold-dark: #8f7555;
  --gold-muted: rgba(197, 168, 128, 0.4);
  --gold-lead: #c9ab86;
  --gold-lead-text: #1a1612;

  --text-light: #ffffff;
  --text-cream: #f5f0eb;
  --text-muted: #8e8e8e;
  --text-dim: #606060;

  --border-gold: rgba(197, 168, 128, 0.22);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(197, 168, 128, 0.45);

  /* Tipografi */
  --font-serif: 'Cinzel', 'Cormorant Garamond', Georgia, serif;
  --font-editorial: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-script: 'Pinyon Script', cursive;

  /* Layout */
  --header-height: 84px;
  --max-width: 1360px;
  --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.15s ease;
}

/* --------------------------------------------------------------------------
   Temel Sıfırlama (CSS Reset & Base)
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-cream);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   Header / Navigasyon
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999;
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.site-header.scrolled {
  height: 72px;
  background: rgba(8, 8, 8, 0.98);
  border-bottom-color: var(--border-gold);
}

.header-container {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.site-logo, .drawer-logo, .footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.site-logo:hover, .drawer-logo:hover, .footer-logo:hover {
  opacity: 0.92;
  filter: brightness(1.08);
}

.site-logo picture,
.drawer-logo picture,
.footer-logo picture {
  display: inline-flex;
  align-items: center;
}

/* Header Logo Boyutlandırma */
.site-logo .logo-img,
.site-logo .custom-logo {
  height: 50px;
  width: auto;
  max-width: 175px;
  object-fit: contain;
  display: block;
  transition: height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.site-header.scrolled .site-logo .logo-img,
.site-header.scrolled .site-logo .custom-logo {
  height: 42px;
}

/* Mobil Drawer Logo */
.drawer-logo .logo-img,
.drawer-logo .custom-logo {
  height: 44px;
  width: auto;
  max-width: 155px;
  object-fit: contain;
  display: block;
}

/* Footer Logo Boyutlandırma */
.footer-logo .logo-img,
.footer-logo .custom-logo {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.logo-script {
  font-family: var(--font-script);
  font-size: 2.75rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(197, 168, 128, 0.2);
}

.logo-sparkle {
  font-size: 0.75rem;
  color: var(--gold-primary);
  margin-left: -2px;
  transform: translateY(-8px);
}

/* Masaüstü Menü */
.desktop-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-item a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 2px;
  font-weight: 500;
  color: #bfbfbf;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: var(--transition);
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-primary);
  transition: width 0.25s ease;
}

.nav-item a:hover,
.nav-item.active a {
  color: var(--text-light);
}

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

/* Header Buton */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.btn-reservation {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 1.4rem;
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
  background: rgba(197, 168, 128, 0.04);
  transition: var(--transition);
}

.btn-reservation:hover {
  background: var(--gold-primary);
  color: #0d0d0d;
  border-color: var(--gold-primary);
  box-shadow: 0 4px 20px rgba(197, 168, 128, 0.25);
}

.btn-reservation .btn-arrow {
  display: inline-flex;
  align-items: center;
  transition: transform 0.25s ease;
}

.btn-reservation:hover .btn-arrow {
  transform: translateX(4px);
}

/* Mobil Hamburger */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  background: transparent;
  border: none;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--gold-light);
  transition: var(--transition);
}

/* Mobil Drawer Menü */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 360px;
  height: 100vh;
  background: #111111;
  border-left: 1px solid var(--border-gold);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  overflow-y: auto;
}

.mobile-drawer.is-open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
}

.drawer-close {
  color: var(--text-cream);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  padding-top: 2rem;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-list a {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  letter-spacing: 2px;
  color: var(--text-cream);
  text-transform: uppercase;
  display: block;
}

.mobile-nav-list a:hover {
  color: var(--gold-primary);
  padding-left: 6px;
}

.drawer-footer {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.btn-reservation.full-width {
  width: 100%;
  justify-content: center;
  padding: 0.85rem 1rem;
}

.drawer-contact-info {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.drawer-phone, .drawer-instagram {
  color: var(--gold-light);
  font-weight: 500;
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------------------------------
   1. HERO SECTION (Referans Tasarıma Birebir Sadık)
   -------------------------------------------------------------------------- */
.section-hero {
  margin-top: var(--header-height);
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: stretch;
  background: var(--bg-dark);
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 50px 1fr 1.05fr;
  align-items: stretch;
}

/* Sol Dikey Ray */
.hero-rail {
  border-right: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.hero-rail-inner {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.65rem;
  letter-spacing: 4px;
  color: var(--text-dim);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.rail-divider {
  color: var(--gold-primary);
  opacity: 0.6;
}

/* Sol İçerik Kolonu */
.hero-content-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 4rem 5rem 5rem;
  border-right: 1px solid var(--border-subtle);
  background: radial-gradient(circle at 10% 20%, rgba(26, 26, 26, 0.6) 0%, transparent 60%);
}

.hero-content-inner {
  max-width: 480px;
  width: 100%;
}

.hero-kicker {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 3.5px;
  color: var(--gold-primary);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.5px;
  color: var(--text-light);
  margin-bottom: 1.8rem;
}

.hero-title span {
  display: block;
}

.hero-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 3.2rem;
  max-width: 400px;
  font-weight: 300;
}

.btn-hero-plan {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0;
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  font-weight: 500;
  text-transform: uppercase;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.btn-hero-plan::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--border-gold);
  transition: var(--transition);
}

.btn-hero-plan:hover {
  color: var(--text-light);
}

.btn-hero-plan:hover::after {
  background: var(--gold-primary);
}

.btn-hero-plan .btn-arrow {
  display: inline-flex;
  transition: transform 0.25s ease;
}

.btn-hero-plan:hover .btn-arrow {
  transform: translateX(6px);
}

/* Sağ Medya Kolonu */
.hero-media-col {
  position: relative;
  overflow: hidden;
  background: #000;
}

.hero-media-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.05);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-media-col:hover .hero-img {
  transform: scale(1.03);
}

/* Sağ Üst Sayaç */
.hero-slide-counter {
  position: absolute;
  top: 3.5rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.7);
  z-index: 2;
}

.count-active {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
}

.count-line {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.3);
}

.count-total {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 2px;
}

/* Sağ Alt Keşfet Butonu */
.hero-explore-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(14, 14, 14, 0.94);
  backdrop-filter: blur(8px);
  padding: 1.4rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  border-left: 1px solid var(--border-subtle);
  z-index: 2;
  transition: var(--transition);
}

.hero-explore-badge:hover {
  background: #181818;
  border-color: var(--border-gold);
}

.badge-text {
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  color: var(--text-cream);
  text-transform: uppercase;
  font-weight: 500;
}

.badge-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: var(--transition);
}

.hero-explore-badge:hover .badge-circle {
  background: var(--gold-primary);
  color: #0d0d0d;
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   2 & 3. 2 SÜTUNLU SPIT GRID BÖLÜMLERİ (Hizmetler & Mekan)
   -------------------------------------------------------------------------- */
.section-home-services,
.section-home-venue {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-subtle);
}

.split-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.grid-media-col {
  position: relative;
  overflow: hidden;
}

.image-frame {
  width: 100%;
  height: 100%;
  min-height: 440px;
}

.split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.grid-media-col:hover .split-img {
  transform: scale(1.02);
}

.grid-content-col {
  padding: 4.5rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.services-content-box {
  border-left: 1px solid var(--border-subtle);
}

.venue-content-box {
  border-right: 1px solid var(--border-subtle);
}

/* Tipografi - Section Başlıkları */
.section-header-compact {
  margin-bottom: 2.5rem;
}

.eyebrow {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 3.5px;
  color: var(--gold-primary);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1rem;
}

.display-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.22;
  color: var(--text-light);
}

.display-title span {
  display: block;
}

/* Hizmet 2 Kolon Listesi */
.services-two-col-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.5rem;
  row-gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.services-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-row-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-cream);
  font-size: 0.95rem;
  font-weight: 400;
  transition: var(--transition);
}

.service-row-link:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-primary);
  padding-left: 6px;
}

/* Tüm Hizmetler Kutusu */
.services-bottom-action {
  display: flex;
  justify-content: flex-end;
}

.box-action-link {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.1rem 1.8rem;
  border: 1px solid var(--border-gold);
  background: rgba(197, 168, 128, 0.03);
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
  transition: var(--transition);
}

.box-action-link:hover {
  background: var(--gold-primary);
  color: #0d0d0d;
  box-shadow: 0 4px 20px rgba(197, 168, 128, 0.2);
}

/* Mekan Metin ve Buton */
.venue-description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 2.8rem;
  font-weight: 300;
}

.link-arrow-luxury {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
}

.link-arrow-luxury::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--border-gold);
  transition: var(--transition);
}

.link-arrow-luxury:hover {
  color: var(--text-light);
}

.link-arrow-luxury:hover::after {
  background: var(--gold-primary);
}

.link-arrow-luxury .link-icon {
  display: inline-flex;
  transition: transform 0.25s ease;
}

.link-arrow-luxury:hover .link-icon {
  transform: translateX(6px);
}

/* --------------------------------------------------------------------------
   4. GALERİ ŞERİDİ (Altın Kart + 4 Dikey Fotoğraf)
   -------------------------------------------------------------------------- */
.section-home-gallery {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.gallery-strip-container {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: stretch;
}

/* Sol Altın Lead Kart */
.gallery-lead-card {
  background: var(--gold-lead);
  color: var(--gold-lead-text);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}

.lead-tag {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.75rem;
}

.lead-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1.2;
}

.lead-arrow-link {
  display: inline-flex;
  align-items: center;
  color: var(--gold-lead-text);
  transition: transform 0.25s ease;
  margin-top: 1.5rem;
}

.lead-arrow-link:hover {
  transform: translateX(6px);
}

/* Sağ 4 Dikey Fotoğraf */
.gallery-strip-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.strip-item {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 240px;
  border-left: 1px solid rgba(0, 0, 0, 0.4);
}

.strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.strip-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

/* --------------------------------------------------------------------------
   5. FOOTER & İLETİŞİM BANDI
   -------------------------------------------------------------------------- */
.site-footer {
  background: #0d0d0d;
}

.footer-pre-banner {
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1.5fr 2fr;
  gap: 3rem;
  align-items: center;
}

.footer-col-logo .logo-script {
  font-size: 3.2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.8rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-text a {
  color: var(--text-cream);
  font-weight: 500;
}

.info-text a:hover {
  color: var(--gold-light);
}

/* Footer CTA Kutusu */
.footer-cta-card {
  border: 1px solid var(--border-gold);
  padding: 1.6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: rgba(197, 168, 128, 0.03);
  cursor: pointer;
  transition: var(--transition);
}

.footer-cta-card:hover {
  background: rgba(197, 168, 128, 0.08);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.cta-card-content h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}

.cta-card-content p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.cta-circle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
  transition: var(--transition);
}

.footer-cta-card:hover .cta-circle-btn {
  background: var(--gold-primary);
  color: #0d0d0d;
}

/* En Alt Telif Satırı */
.footer-bottom {
  padding: 1.8rem 0;
  background: #090909;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.footer-links .sep {
  color: var(--border-subtle);
}

.link-with-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-cream);
}

.link-with-arrow svg {
  transition: transform 0.25s ease;
}

.link-with-arrow:hover svg {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   REZERVASYON / TEKLİF MODAL
   -------------------------------------------------------------------------- */
.reservation-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.reservation-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: #141414;
  border: 1px solid var(--border-gold);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 3rem 3rem 2.5rem;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.reservation-modal.is-open .modal-dialog {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--text-muted);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: var(--gold-primary);
}

.modal-header {
  margin-bottom: 2rem;
  text-align: center;
}

.modal-subtitle {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 0.6rem;
}

.modal-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 480px;
  margin: 0 auto;
}

/* Form Alanları */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

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

.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 1px;
  color: var(--text-cream);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: #1c1c1c;
  border: 1px solid var(--border-subtle);
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  border-radius: 0;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: #222222;
  box-shadow: 0 0 0 2px rgba(197, 168, 128, 0.15);
}

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

.select-wrapper {
  position: relative;
}

.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.select-wrapper::after {
  content: '▾';
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-primary);
  pointer-events: none;
}

.form-actions {
  margin-top: 2rem;
  text-align: center;
}

.btn-submit-reservation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  width: 100%;
  padding: 1rem 2rem;
  background: var(--gold-primary);
  color: #0d0d0d;
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit-reservation:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 20px rgba(197, 168, 128, 0.3);
}

.btn-submit-reservation .btn-arrow {
  display: inline-flex;
  transition: transform 0.25s ease;
}

.btn-submit-reservation:hover .btn-arrow {
  transform: translateX(6px);
}

.btn-submit-reservation:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status-message {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  padding: 0.8rem 1rem;
  text-align: center;
  display: none;
}

.form-status-message.is-success {
  display: block;
  background: rgba(46, 125, 50, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.4);
  color: #a5d6a7;
}

.form-status-message.is-error {
  display: block;
  background: rgba(198, 40, 40, 0.15);
  border: 1px solid rgba(239, 83, 80, 0.4);
  color: #ef9a9a;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------------------------------
   WHATSAPP FLOATING BUTTON
   -------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  z-index: 950;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
  position: absolute;
  right: 64px;
  background: #141414;
  border: 1px solid var(--border-gold);
  color: var(--text-cream);
  padding: 6px 12px;
  font-size: 0.75rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* --------------------------------------------------------------------------
   İÇ SAYFALAR GENEL HERO & LAYOUT (Hizmetler, Galeri, Hakkımızda, İletişim)
   -------------------------------------------------------------------------- */
.page-hero-banner {
  margin-top: var(--header-height);
  padding: 6.5rem 2rem 5rem;
  text-align: center;
  background: radial-gradient(circle at 50% 10%, rgba(197, 168, 128, 0.08) 0%, rgba(10, 10, 10, 1) 70%);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.page-hero-container {
  max-width: 820px;
  margin: 0 auto;
}

.page-hero-tag {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 3.5px;
  color: var(--gold-primary);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.page-hero-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 300;
}

/* Ortak Container */
.services-container,
.about-container,
.gallery-container,
.contact-container,
.generic-page-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Ortak Başlık */
.section-title-center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

/* Ortak Lüks Resim Çerçevesi */
.luxury-image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  height: 100%;
  min-height: 380px;
}

.luxury-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.luxury-image-frame:hover img {
  transform: scale(1.03);
}

/* Ortak Alt CTA Bölümü */
.section-cta-luxury {
  padding: 6rem 2rem;
  background: radial-gradient(circle at 50% 50%, rgba(28, 28, 28, 0.9) 0%, rgba(10, 10, 10, 1) 100%);
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.cta-inner-container {
  max-width: 680px;
  margin: 0 auto;
}

.cta-badge {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.cta-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.85rem 1.6rem;
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
  background: rgba(197, 168, 128, 0.04);
  transition: var(--transition);
}

.btn-outline-gold:hover {
  background: var(--gold-primary);
  color: #0d0d0d;
  border-color: var(--gold-primary);
}

.btn-outline-gold .arrow-svg {
  display: inline-flex;
  transition: transform 0.25s ease;
}

.btn-outline-gold:hover .arrow-svg {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   HİZMETLER DETAY SAYFASI
   -------------------------------------------------------------------------- */
.services-detail-section {
  padding: 6rem 0;
}

.service-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.service-detail-row:last-child {
  border-bottom: none;
}

.service-detail-row.reverse-row .service-media-side {
  order: 2;
}

.service-detail-row.reverse-row .service-text-side {
  order: 1;
}

.service-number {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold-primary);
  opacity: 0.4;
  display: block;
  margin-bottom: 0.5rem;
}

.service-category {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.service-heading {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  color: var(--text-light);
}

.service-paragraph {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  font-weight: 300;
}

.service-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.service-features-list li {
  font-size: 0.88rem;
  color: var(--text-cream);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.bullet-spark {
  color: var(--gold-primary);
  font-size: 0.75rem;
}

/* Hizmet Süreci (Timeline) */
.section-process-luxury {
  padding: 6rem 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.process-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.process-step {
  padding: 2.5rem 2rem;
  background: #161616;
  border: 1px solid var(--border-subtle);
  position: relative;
  transition: var(--transition);
}

.process-step:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold-primary);
  opacity: 0.3;
  display: block;
  margin-bottom: 1rem;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  color: var(--text-light);
}

.step-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   HAKKIMIZDA SAYFASI
   -------------------------------------------------------------------------- */
.section-about-story {
  padding: 6rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.story-content .eyebrow {
  margin-bottom: 0.8rem;
}

.story-content .display-title {
  margin-bottom: 1.8rem;
}

.story-p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.story-quote {
  margin-top: 2.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold-primary);
}

.story-quote blockquote {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold-light);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.quote-author {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* Mekan Alanları */
.section-about-spaces {
  padding: 6rem 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
}

.spaces-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.space-card {
  background: #161616;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: var(--transition);
}

.space-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.space-card-img {
  height: 240px;
  overflow: hidden;
}

.space-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.space-card:hover .space-card-img img {
  transform: scale(1.05);
}

.space-card-body {
  padding: 2rem;
}

.space-tag {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.space-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.space-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* İstatistik Rakamları */
.section-about-stats {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-box {
  padding: 2rem;
  border-right: 1px solid var(--border-subtle);
}

.stat-box:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   GALERİ SAYFASI
   -------------------------------------------------------------------------- */
.gallery-filter-section {
  padding: 2.5rem 0 1.5rem;
}

.filter-buttons-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.filter-btn {
  padding: 0.55rem 1.4rem;
  font-size: 0.72rem;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--gold-light);
  border-color: var(--gold-primary);
  background: rgba(197, 168, 128, 0.08);
}

.gallery-grid-section {
  padding: 3rem 0 6rem;
}

.gallery-masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.gallery-item-card {
  position: relative;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item-card.is-hidden {
  display: none;
}

.gallery-card-inner {
  cursor: pointer;
  outline: none;
}

.card-image-wrap {
  position: relative;
  overflow: hidden;
  height: 340px;
  border: 1px solid var(--border-subtle);
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card-inner:hover .card-overlay,
.gallery-card-inner:focus .card-overlay {
  opacity: 1;
}

.gallery-card-inner:hover .card-image-wrap img,
.gallery-card-inner:focus .card-image-wrap img {
  transform: scale(1.05);
}

.overlay-icon {
  align-self: flex-end;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  background: rgba(0, 0, 0, 0.6);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.overlay-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Lightbox Modal */
.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(8px);
  z-index: 1090;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-figure {
  position: relative;
  z-index: 1110;
  max-width: 900px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border-gold);
}

.lightbox-caption {
  margin-top: 1.5rem;
  text-align: left;
  width: 100%;
}

.lightbox-bottom-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  gap: 1.5rem;
  padding-bottom: 0.5rem;
}

.lightbox-arrows {
  display: flex;
  gap: 0.5rem;
}

.lightbox-nav-inline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--text-cream);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-nav-inline:hover {
  color: var(--gold-primary);
  border-color: var(--gold-primary);
}

.lightbox-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}

.lightbox-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--text-cream);
  z-index: 1120;
  padding: 8px;
}

.lightbox-close:hover {
  color: var(--gold-primary);
}



/* --------------------------------------------------------------------------
   İLETİŞİM SAYFASI
   -------------------------------------------------------------------------- */
.contact-cards-section {
  padding: 4.5rem 0 2rem;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.contact-info-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-kicker {
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}

.card-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.card-link svg {
  transition: transform 0.25s ease;
}

.card-link:hover svg {
  transform: translateX(4px);
}

/* İletişim Formu & Harita Bölümü */
.contact-main-section {
  padding: 4rem 0 6rem;
}

.contact-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.form-luxury-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 3.5rem 3rem;
}

.form-luxury-panel .display-title {
  margin-bottom: 0.8rem;
}

.form-panel-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.map-container-frame {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 3rem 2.5rem;
}

.map-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 0.6rem;
}

.map-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.embed-map-wrapper {
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(120%);
}

.transport-highlights {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.transport-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--text-cream);
  line-height: 1.55;
}

.transport-item strong {
  color: var(--gold-light);
  display: block;
}

/* --------------------------------------------------------------------------
   GENEL VE 404 SAYFALARI
   -------------------------------------------------------------------------- */
.generic-page-main {
  margin-top: var(--header-height);
  padding: 6rem 0;
  min-height: 60vh;
}

.generic-page-header {
  margin-bottom: 3rem;
  text-align: center;
}

.generic-page-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--text-light);
}

.generic-page-content {
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
}

.page-404-main {
  margin-top: var(--header-height);
  padding: 8rem 2rem;
  text-align: center;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-404-container {
  max-width: 500px;
}

.error-code {
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--gold-primary);
  display: block;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.error-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.error-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   RESPONSIVE (MOBİL VE TABLET OPTİMİZASYONU)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root {
    --header-height: 74px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .btn-reservation {
    padding: 0.55rem 1rem;
    font-size: 0.68rem;
    gap: 0.6rem;
  }

  /* Hero */
  .hero-wrapper {
    grid-template-columns: 1fr;
  }

  .hero-rail {
    display: none;
  }

  .hero-content-col {
    padding: 4rem 2rem;
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }

  .hero-media-wrapper {
    min-height: 420px;
  }

  /* Split Grids */
  .split-grid-wrapper {
    grid-template-columns: 1fr;
  }

  .section-home-services .grid-media-col {
    order: 2;
  }

  .section-home-services .grid-content-col {
    order: 1;
  }

  .services-content-box,
  .venue-content-box {
    border-left: none;
    border-right: none;
    padding: 4rem 2rem;
  }

  /* Galeri Strip */
  .gallery-strip-container {
    grid-template-columns: 1fr;
  }

  .gallery-strip-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  /* Hizmetler Detay */
  .service-detail-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3.5rem 0;
  }

  .service-detail-row.reverse-row .service-media-side {
    order: 1;
  }

  .service-detail-row.reverse-row .service-text-side {
    order: 2;
  }

  /* Hakkımızda */
  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .spaces-cards-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-box {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }

  /* İletişim */
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }

  .contact-split-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 1.25rem;
  }

  .logo-script {
    font-size: 2.3rem;
  }

  .site-logo .logo-img,
  .site-logo .custom-logo {
    height: 40px;
    max-width: 140px;
  }

  .site-header.scrolled .site-logo .logo-img,
  .site-header.scrolled .site-logo .custom-logo {
    height: 36px;
  }

  .footer-logo .logo-img,
  .footer-logo .custom-logo {
    height: 52px;
    max-width: 170px;
  }

  .btn-reservation {
    display: none; /* Mobilde hamburger drawer içinden erişilir */
  }

  /* Hero */
  .hero-content-col {
    padding: 3rem 1.25rem;
  }

  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
  }

  .hero-desc {
    margin-bottom: 2.2rem;
  }

  .hero-slide-counter {
    top: 1.5rem;
    right: 1.25rem;
  }

  .hero-explore-badge {
    padding: 1rem 1.25rem;
  }

  /* Hizmetler 2 Kolon Listesi */
  .services-two-col-list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 2.5rem;
  }

  .services-bottom-action {
    justify-content: flex-start;
  }

  .box-action-link {
    width: 100%;
    justify-content: space-between;
  }

  /* Galeri Strip */
  .gallery-strip-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .strip-item {
    min-height: 200px;
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.4);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Modallar */
  .modal-dialog {
    padding: 2.5rem 1.5rem 2rem;
  }

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

  .form-luxury-panel {
    padding: 2.5rem 1.5rem;
  }

  .map-container-frame {
    padding: 2rem 1.25rem;
  }

  /* Galeri Grid */
  .gallery-masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

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

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

  /* Floating WhatsApp */
  .floating-whatsapp {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 48px;
    height: 48px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}
