/* ══════════════════════════════════════
   GOOGLE FONTS
══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600;700&display=swap');

/* ══════════════════════════════════════
   RESET & BASE
══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  /* ── Uzungöl Doğa Paleti ── */
  --navy: #1a3a2a;        /* Koyu orman yeşili  */
  --navy2: #14301f;       /* Daha derin yeşil   */
  --teal: #1e3d4a;        /* Göl mavisi         */
  --gold: #c17f3a;        /* Amber / bakır      */
  --gold-l: #e8a85a;      /* Açık amber         */
  --white: #fff;
  --gray: #5a6b5e;        /* Orman gri-yeşili   */
  --gray-l: #f2f5f0;      /* Sis beyazı / açık  */
  --text: #1c1a16;        /* Toprak koyu        */
  --font: 'Cormorant Garamond','Georgia','Times New Roman',serif;
  --font-s: 'Jost',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
}
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-s); color: var(--text); overflow-x: hidden; background: #fff; max-width: 100vw; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
#header {
  position: sticky; top: 0; left: 0; right: 0; z-index: 9999;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}

/* ── Üst Bar ── */
.top-bar {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.top-bar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  height: 44px; display: flex; align-items: center; justify-content: space-between;
}
.top-bar-left { display: flex; align-items: center; gap: 0; overflow: hidden; }
.top-bar-social { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.top-bar-social a {
  color: rgba(255,255,255,.65); font-size: 13px;
  text-decoration: none;
}
.top-bar-divider {
  width: 1px; height: 20px; background: rgba(255,255,255,.15);
  margin: 0 16px; flex-shrink: 0;
}
.top-bar-info { display: flex; align-items: center; gap: 20px; overflow: hidden; }
.top-bar-info-item {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.85); font-size: 11.5px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.top-bar-info-item i { color: var(--gold); font-size: 10px; flex-shrink: 0; }
.top-bar-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

/* ── Dil Seçici ── */
.top-bar-lang {
  display: flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  padding: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.lang-divider { display: none; }
.lang-btn {
  display: flex; flex-direction: row; align-items: center; justify-content: center;
  gap: 6px;
  background: none; border: none; cursor: pointer;
  padding: 6px 11px; border-radius: 10px;
  transition: background .2s, color .2s, transform .15s, box-shadow .2s;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
  min-width: 0;
  position: relative;
}
.lang-btn .lang-flag { font-size: 16px; line-height: 1; flex-shrink: 0; }
.lang-btn .lang-code {
  font-size: 11px; font-weight: 800;
  letter-spacing: .5px; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: color .2s;
  line-height: 1;
}
.lang-btn .lang-ar-name {
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,.85);
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  transition: color .2s;
  direction: rtl;
  line-height: 1;
  letter-spacing: 0;
}
.lang-btn.active .lang-ar-name { color: var(--navy); font-weight: 900; }
.lang-btn:not(.active):hover .lang-ar-name { color: rgba(255,255,255,.9); }
.lang-btn.active {
  background: var(--gold);
  box-shadow: 0 2px 10px rgba(193,127,58,.5);
  transform: scale(1.04);
}
.lang-btn.active .lang-code { color: var(--navy); font-weight: 900; }
.lang-btn.active .lang-flag { filter: drop-shadow(0 1px 3px rgba(0,0,0,.2)); }
.lang-btn:not(.active):hover { background: rgba(255,255,255,.12); }
.lang-btn:not(.active):hover .lang-code { color: #fff; }
.top-bar-phone {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.75); font-size: 12px; font-weight: 600;
  text-decoration: none; white-space: nowrap;
}
.top-bar-phone i { font-size: 11px; }
.top-bar-flag { font-size: 16px; line-height: 1; }
.top-bar-rez {
  display: inline-flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,.85); font-size: 12px; font-weight: 600;
  letter-spacing: .5px; text-decoration: none;
  padding: 6px 14px; border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px; transition: all .2s;
}
.top-bar-rez i:last-child { font-size: 10px; }

/* ── Ana Header ── */
.header-main {
  background: #eef2ee;   /* Açık orman sisi tonu */
  overflow: visible;
  position: relative;
}

/* Header alt altın geçiş çizgisi */
.header-main::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #8b5e1a 8%,
    #c17f3a 20%,
    #e8a85a 35%,
    #f5c97a 50%,
    #e8a85a 65%,
    #c17f3a 80%,
    #8b5e1a 92%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: gold-wave 3s ease-in-out infinite;
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 2px 12px rgba(193,127,58,.45);
}
.header-main-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  height: 90px; display: flex; align-items: center; justify-content: space-between;
  position: relative; overflow: visible;
}

/* ── Split Nav ── */
.split-nav { display: flex; align-items: center; gap: clamp(16px, 2.5vw, 36px); flex: 1; }
.split-nav-left { justify-content: flex-end; padding-right: clamp(12px, 2vw, 24px); }
.split-nav-right { justify-content: flex-start; padding-left: clamp(12px, 2vw, 24px); }
.split-nav a {
  font-size: clamp(10px, 0.85vw, 12px); font-weight: 700; color: var(--navy);
  letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; position: relative; padding-bottom: 4px;
  transition: color .2s; white-space: nowrap;
}
.split-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1.5px; background: var(--gold); transform: scaleX(0); transition: transform .25s;
}
.split-nav a:hover { color: var(--gold); }
.split-nav a:hover::after { transform: scaleX(1); }

/* ── Logo (split ortada) ── */
.logo-center-split {
  flex-shrink: 0; margin: 0 clamp(16px, 2vw, 32px);
  display: flex; flex-direction: column; align-items: center;
  text-decoration: none; position: relative; z-index: 2;
}
.logo-center-split .logo-brand-name {
  font-family: var(--font); font-size: clamp(15px, 1.4vw, 20px); font-weight: 700;
  color: var(--navy); letter-spacing: clamp(3px, 0.4vw, 5px); text-transform: uppercase;
  line-height: 1; white-space: nowrap;
}
.logo-center-split .logo-brand-sub {
  font-size: 9px; color: var(--gray); letter-spacing: 3px;
  text-transform: uppercase; margin-top: 4px;
}

/* Legacy logo-center (mobil için) */
.logo-center {
  position: absolute; left: 50%; transform: translateX(-50%);
}
/* Sağ telefon ikonu */
.h-tel {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 17px; border-radius: 50%;
  transition: background .2s, color .2s; text-decoration: none;
}
.h-tel:hover { background: rgba(201,168,76,.12); color: var(--gold); }
.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
  width: 42px; height: 42px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font); font-size: 20px; font-weight: 900; color: var(--navy);
  box-shadow: 0 2px 10px rgba(201,168,76,.35); flex-shrink: 0;
}
.logo-text .logo-name { font-family: var(--font); font-size: 18px; font-weight: 700; color: var(--navy); letter-spacing: .5px; }
.logo-text .logo-sub { font-size: 10px; color: var(--gray); letter-spacing: 3px; text-transform: uppercase; margin-top: 2px; }
.desktop-nav ul { list-style: none; display: flex; align-items: center; gap: 28px; }
.desktop-nav ul li a {
  font-size: 12px; font-weight: 600; color: var(--navy);
  letter-spacing: 1.5px; text-transform: uppercase; transition: color .2s;
  position: relative; padding-bottom: 4px;
}
.desktop-nav ul li a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1.5px; background: var(--gold); transform: scaleX(0); transition: transform .25s;
}
.desktop-nav ul li a:hover { color: var(--gold); }
.desktop-nav ul li a:hover::after { transform: scaleX(1); }
.h-rez {
  background: var(--navy); color: #fff; padding: 10px 22px; border-radius: 50px;
  font-weight: 700; font-size: 12px; letter-spacing: .5px; transition: all .25s;
}
.h-rez:hover { background: var(--gold); transform: translateY(-1px); }
/* ── Hamburger Butonu ── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: rgba(26,58,42,.08); border: 1.5px solid rgba(26,58,42,.15);
  cursor: pointer; border-radius: 10px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.hamburger:hover { background: rgba(26,58,42,.14); border-color: rgba(26,58,42,.25); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: all .32s cubic-bezier(.4,0,.2,1);
}
.hamburger span:nth-child(2) { width: 16px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 22px; }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 22px; }

/* ── Mobile Nav Overlay ── */
.mobile-nav { position: fixed; inset: 0; z-index: 99998; visibility: hidden; pointer-events: none; }
.mobile-nav.open { visibility: visible; pointer-events: all; }
.mobile-nav-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .35s;
}
.mobile-nav.open .mobile-nav-backdrop { opacity: 1; }

/* ── Panel ── */
.mobile-nav-panel {
  position: absolute; top: 0; right: 0;
  width: min(340px, 90vw); height: 100%;
  background: linear-gradient(160deg, #eef2ee 0%, #ddeadd 100%);
  transform: translateX(105%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -12px 0 60px rgba(0,0,0,.25);
  overflow: hidden;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }

/* Dekoratif üst çizgi */
.mobile-nav-panel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l), var(--gold));
}

/* ── Panel Header ── */
.mnav-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 20px 20px;
  border-bottom: 1px solid rgba(26,58,42,.1);
}
.mnav-logo { display: flex; align-items: center; gap: 12px; }
.mnav-logo-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-l));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font); font-size: 18px; font-weight: 700;
  color: var(--navy); flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(193,127,58,.35);
}
.mnav-logo-name {
  font-family: var(--font); font-size: 15px; font-weight: 700;
  color: var(--navy); letter-spacing: 1.5px; text-transform: uppercase; line-height: 1.2;
}
.mnav-logo-sub {
  font-size: 9px; color: var(--gray);
  letter-spacing: 2px; text-transform: uppercase; margin-top: 3px;
}
.mnav-close {
  background: rgba(26,58,42,.08); border: 1px solid rgba(26,58,42,.15);
  cursor: pointer; width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 14px;
  transition: background .2s, color .2s, border-color .2s;
  flex-shrink: 0;
}
.mnav-close:hover { background: rgba(26,58,42,.15); color: var(--navy); border-color: rgba(26,58,42,.3); }

/* ── Nav Body ── */
.mnav-body { flex: 1; overflow-y: auto; padding: 8px 0 4px; }
.mnav-body::-webkit-scrollbar { width: 3px; }
.mnav-body::-webkit-scrollbar-track { background: transparent; }
.mnav-body::-webkit-scrollbar-thumb { background: rgba(26,58,42,.2); border-radius: 2px; }

/* ── Nav Linkleri ── */
.mnav-link {
  display: flex; align-items: center; gap: 0;
  padding: 0 16px; height: 54px;
  color: var(--navy); font-size: 12.5px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  border-bottom: 1px solid rgba(26,58,42,.07);
  transition: color .25s, background .25s, height .25s, padding .25s, font-size .25s, box-shadow .25s;
  position: relative;
}
.mnav-link:hover,
.mnav-link.mnav-link--active {
  color: var(--navy);
  background: rgba(26,58,42,.12);
  height: 64px;
  padding: 0 20px;
  font-size: 13px;
  box-shadow: inset 3px 0 0 var(--navy);
}
.mnav-link.mnav-link--active::before {
  display: none;
}
.mnav-link-ico {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: rgba(26,58,42,.07); border: 1px solid rgba(26,58,42,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--navy);
  margin-right: 14px;
  transition: background .2s, border-color .2s, color .2s;
}
.mnav-link:hover .mnav-link-ico,
.mnav-link.mnav-link--active .mnav-link-ico {
  background: rgba(26,58,42,.18);
  border-color: rgba(26,58,42,.35);
  color: var(--navy);
}
.mnav-link-text { flex: 1; }
.mnav-link-arrow {
  font-size: 9px; color: rgba(26,58,42,.3);
  transition: color .2s, transform .2s;
}
.mnav-link:hover .mnav-link-arrow,
.mnav-link.mnav-link--active .mnav-link-arrow {
  color: var(--navy); transform: translateX(2px);
}

/* ── Sosyal Medya ── */
.mnav-social {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 16px 10px;
  border-top: 1px solid rgba(26,58,42,.1);
  margin-top: 4px;
}
.mnav-social-btn {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(26,58,42,.07); border: 1px solid rgba(26,58,42,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 15px;
  transition: all .25s;
}
.mnav-social-btn:hover {
  background: var(--gold); border-color: var(--gold);
  color: var(--navy); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(193,127,58,.35);
}

/* ── Panel Footer ── */
.mnav-footer {
  padding: 16px 16px 20px;
  border-top: 1px solid rgba(26,58,42,.1);
  background: rgba(26,58,42,.05);
}

/* İletişim Bilgileri */
.mnav-contact-info {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 14px;
}
.mnav-contact-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--gray); font-size: 12px;
  transition: color .2s;
}
.mnav-contact-item[href]:hover { color: var(--gold); }
.mnav-contact-ico {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  background: rgba(193,127,58,.12); border: 1px solid rgba(193,127,58,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--gold);
}

/* Rezervasyon Butonu */
.mnav-rez {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-l));
  color: var(--navy); border-radius: 12px;
  font-weight: 700; font-size: 13.5px; letter-spacing: .5px;
  box-shadow: 0 6px 24px rgba(193,127,58,.35);
  transition: transform .2s, box-shadow .2s, opacity .2s;
}
.mnav-rez:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(193,127,58,.45);
  opacity: .95;
}
.mnav-rez i { font-size: 15px; }

/* ══════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════ */
.hero { position: relative; width: 100%; height: calc(100vh - 134px); min-height: 500px; overflow: hidden; }

/* Hero üst altın geçiş çizgisi — header ile slider arası */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #8b5e1a 8%,
    #c17f3a 20%,
    #e8a85a 35%,
    #f5c97a 50%,
    #e8a85a 65%,
    #c17f3a 80%,
    #8b5e1a 92%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: gold-wave 3s ease-in-out infinite;
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 2px 16px rgba(193,127,58,.5);
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease;
  background-size: cover; background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.2) 0%, rgba(0,0,0,.1) 40%, rgba(0,0,0,.6) 100%);
}
.hero-text-slide {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
  opacity: 0; transition: opacity 1.2s ease; pointer-events: none;
}
.hero-text-slide.active { opacity: 1; pointer-events: all; }
.hero-text-slide h1 {
  font-family: var(--font); font-size: clamp(30px,4.5vw,58px);
  font-weight: 700; color: #fff; line-height: 1.2;
  margin-bottom: 0; text-shadow: 0 2px 20px rgba(0,0,0,.3);
  letter-spacing: -.3px;
}
.hero-text-slide h1 em {
  font-style: italic;
  color: #f5c97a;
  display: inline;
  text-shadow: 0 2px 16px rgba(193,127,58,.5);
}
.hero-divider {
  width: 56px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  border-radius: 2px;
  margin: 20px auto;
  opacity: .85;
}
.hero-text-slide p {
  font-size: 15px; color: rgba(255,255,255,.72);
  max-width: 420px; line-height: 1.65;
  margin-bottom: 32px;
  letter-spacing: .1px;
}
.hero-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 24px;
  background: linear-gradient(135deg, #c17f3a 0%, #e8a85a 50%, #c17f3a 100%);
  background-size: 200% 100%;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,.2);
  border-radius: 50px;
  font-weight: 700; font-size: 13px; letter-spacing: .3px;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 6px 20px rgba(193,127,58,.45), 0 0 0 0 rgba(193,127,58,.3);
  position: relative; overflow: hidden;
  animation: hero-btn-pulse 2.5s ease-in-out infinite;
}
.hero-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.25) 0%, transparent 60%);
  border-radius: 50px;
  pointer-events: none;
}
.hero-btn::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .5s ease, height .5s ease, opacity .5s ease;
  opacity: 0;
}
.hero-btn:hover::after {
  width: 300px; height: 300px; opacity: 0;
}
.hero-btn:hover {
  background: linear-gradient(135deg, #e8a85a 0%, #f5c97a 50%, #e8a85a 100%);
  background-size: 200% 100%;
  color: #fff;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 48px rgba(193,127,58,.6), 0 0 0 6px rgba(193,127,58,.15);
  letter-spacing: 1px;
}
.hero-btn i {
  font-size: 13px;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.18);
  border: 1.5px solid rgba(255,255,255,.45);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform .3s ease, background .3s, border-color .3s, box-shadow .3s;
  box-shadow: 0 0 0 2px rgba(255,255,255,.08);
}
.hero-btn:hover i {
  transform: rotate(-10deg) scale(1.12);
  background: rgba(255,255,255,.26);
  border-color: rgba(255,255,255,.75);
  box-shadow: 0 0 0 4px rgba(255,255,255,.1);
}
@keyframes hero-btn-pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(193,127,58,.5), 0 0 0 0 rgba(193,127,58,.3); }
  50%       { box-shadow: 0 8px 32px rgba(193,127,58,.5), 0 0 0 10px rgba(193,127,58,.0); }
}
.hero-nav {
  position: absolute; top: 50%; z-index: 10; transform: translateY(-50%);
  width: 50px; height: 50px;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25); border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px; transition: all .25s;
  -webkit-tap-highlight-color: transparent;
}
.hero-nav:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.hero-nav.prev { left: 28px; }
.hero-nav.next { right: 28px; }
.hero-dots { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 2px; align-items: center; }
/* Dokunma hedefi min 44×44px — görsel boyut küçük kalır, tıklama alanı büyür */
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); cursor: pointer;
  transition: all .3s; border: none;
  /* 44px dokunma alanı için padding ile genişlet */
  padding: 18px;
  margin: -18px;
  background-clip: content-box;
  box-sizing: content-box;
}
.hero-dot.active { background: var(--gold); width: 28px; border-radius: 4px; background-clip: content-box; }
.hero-scroll-hint {
  position: absolute; bottom: 40px; right: 36px; z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.45); font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
}
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent); animation: sline 1.8s ease-in-out infinite; }
@keyframes sline { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:.3;transform:scaleY(.5)} }

/* ══════════════════════════════════════
   REZERVASYon BANDI
══════════════════════════════════════ */
/* ── Rezervasyon Bandı ── */
.rez-band {
  background: linear-gradient(135deg, #0f2318 0%, var(--navy) 50%, #0f2318 100%);
  position: relative;
  overflow: visible;
  border-top: none;
  border-bottom: none;
}
/* Üst altın çizgi */
.rez-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #8b5e1a 8%,
    #c17f3a 20%,
    #e8a85a 35%,
    #f5c97a 50%,
    #e8a85a 65%,
    #c17f3a 80%,
    #8b5e1a 92%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: gold-wave 3s ease-in-out infinite;
  z-index: 3;
  pointer-events: none;
}
/* Sağ ışık efekti */
.rez-band::after {
  content: '';
  position: absolute;
  right: -40px; bottom: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(193,127,58,.14) 0%, transparent 70%);
  z-index: 0; pointer-events: none;
}

.rez-inner {
  display: flex; align-items: center; flex-wrap: wrap;
  position: relative; z-index: 1;
  padding: 0;
  min-height: 100px;
}

/* Sol davet kolonu */
.rez-brand-col {
  display: flex; align-items: center; gap: 18px;
  padding: 28px 40px;
  flex-shrink: 0;
  min-width: 280px;
  border-right: 1px solid rgba(255,255,255,.07);
  position: relative;
}
.rez-brand-col::after {
  content: '';
  position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(193,127,58,.4), transparent);
}
.rez-brand-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(193,127,58,.1);
  border: 1.5px solid rgba(193,127,58,.35);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 20px;
  position: relative;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
@keyframes icon-wiggle {
  0%   { transform: rotate(0deg) scale(1); }
  10%  { transform: rotate(-20deg) scale(1.2); }
  20%  { transform: rotate(16deg) scale(1.15); }
  30%  { transform: rotate(-12deg) scale(1.08); }
  40%  { transform: rotate(9deg) scale(1.04); }
  50%  { transform: rotate(-5deg) scale(1.02); }
  60%  { transform: rotate(3deg) scale(1.01); }
  70%  { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(0deg) scale(1); }
}
.rez-brand-icon i {
  display: inline-block;
  animation: icon-wiggle 1.6s ease-in-out infinite;
}
.rez-brand-col:hover .rez-brand-icon {
  background: rgba(193,127,58,.18);
  border-color: rgba(193,127,58,.6);
  box-shadow: 0 0 16px rgba(193,127,58,.2);
}
.rez-brand-title {
  font-family: var(--font);
  font-size: 22px; font-weight: 700;
  color: #fff; line-height: 1;
  letter-spacing: .5px;
}
.rez-brand-sub {
  font-size: 10px; color: var(--gold);
  letter-spacing: 2.5px; text-transform: uppercase;
  margin-top: 6px; font-weight: 600;
  opacity: .8;
}

/* Dikey ayırıcı */
.rez-sep { display: none; }

.rez-field {
  display: flex; align-items: center; gap: 16px;
  padding: 28px 32px;
  border-right: 1px solid rgba(255,255,255,.06);
  flex: 1; min-width: 180px;
  background: transparent;
  transition: background .3s;
  position: relative;
}
.rez-field:hover { background: rgba(255,255,255,.03); }

/* Alan üst çizgisi hover efekti */
.rez-field::before {
  content: '';
  position: absolute; top: 0; left: 20%; right: 20%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s ease;
  border-radius: 0 0 2px 2px;
}
.rez-field:hover::before { transform: scaleX(1); }

.rez-ico {
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(193,127,58,.1);
  border: 1.5px solid rgba(193,127,58,.35);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 20px;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.rez-ico i {
  display: inline-block;
  animation: icon-wiggle 1.6s ease-in-out infinite;
}
/* Her alan için farklı gecikme — senkronize görünmesin */
.rez-field:nth-child(3) .rez-ico i { animation-delay: .4s; }
.rez-field:nth-child(4) .rez-ico i { animation-delay: .8s; }
.rez-field:hover .rez-ico {
  background: rgba(193,127,58,.18);
  border-color: rgba(193,127,58,.6);
  box-shadow: 0 0 16px rgba(193,127,58,.2);
}
.rez-lbl {
  font-size: 9px; color: rgba(255,255,255,.35);
  letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 6px; font-weight: 700;
}
.rez-val { font-size: 16px; color: #fff; font-weight: 600; }
.rez-val select, .rez-val input[type="date"] {
  background: none; border: none; outline: none;
  color: #fff; font-size: 16px; font-weight: 600;
  font-family: var(--font-s); cursor: pointer; width: 100%;
  color-scheme: dark;
}
.rez-val select option { background: #0f2318; color: #fff; }
.rez-kisi-ctrl { display: flex; align-items: center; gap: 14px; }
.rez-kisi-btn {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  color: var(--gold); font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; line-height: 1;
}
.rez-kisi-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: scale(1.08); }
.rez-kisi-num { font-size: 20px; font-weight: 800; color: #fff; min-width: 28px; text-align: center; }

/* ── Özel Takvim Popup ── */
.rez-date-field { position: relative; cursor: pointer; user-select: none; }
.rez-date-display { cursor: pointer; }

.rez-cal-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  background: linear-gradient(160deg, #0f2318 0%, #1a3a2a 100%);
  border: 1px solid rgba(193,127,58,.3);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(193,127,58,.1);
  z-index: 99999;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transform: translateY(8px) scale(.97);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  pointer-events: none;
}
.rez-cal-popup.open {
  opacity: 1; visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

/* Takvim başlık */
.rez-cal-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.rez-cal-month-year {
  font-family: var(--font);
  font-size: 16px; font-weight: 700;
  color: #fff; letter-spacing: .5px;
}
.rez-cal-nav {
  width: 34px; height: 34px;
  background: rgba(193,127,58,.1);
  border: 1px solid rgba(193,127,58,.25);
  border-radius: 10px;
  color: var(--gold); font-size: 12px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.rez-cal-nav:hover { background: rgba(193,127,58,.25); border-color: var(--gold); }

/* Gün başlıkları */
.rez-cal-days-head {
  display: grid; grid-template-columns: repeat(7,1fr);
  margin-bottom: 8px;
}
.rez-cal-days-head span {
  text-align: center; font-size: 10px; font-weight: 700;
  color: var(--gold); letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 0;
}

/* Gün grid */
.rez-cal-grid {
  display: grid; grid-template-columns: repeat(7,1fr);
  gap: 3px;
}
.rez-cal-empty { height: 36px; }
.rez-cal-day {
  height: 36px; width: 100%;
  background: none; border: none;
  border-radius: 8px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.8);
  cursor: pointer;
  transition: background .15s, color .15s, transform .1s;
  display: flex; align-items: center; justify-content: center;
}
.rez-cal-day:hover:not(:disabled) {
  background: rgba(193,127,58,.2);
  color: #fff;
  transform: scale(1.08);
}
.rez-cal-day.rez-cal-past { color: rgba(255,255,255,.2); cursor: not-allowed; }
.rez-cal-day.rez-cal-today-cell {
  color: var(--gold); font-weight: 700;
  border: 1px solid rgba(193,127,58,.4);
}
.rez-cal-day.rez-cal-selected {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(193,127,58,.45);
  transform: scale(1.08);
}

/* Footer */
.rez-cal-footer {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; justify-content: center;
}
.rez-cal-today {
  background: none; border: 1px solid rgba(193,127,58,.3);
  border-radius: 8px; padding: 7px 20px;
  color: var(--gold); font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; transition: background .2s, border-color .2s;
}
.rez-cal-today:hover { background: rgba(193,127,58,.15); border-color: var(--gold); }

/* Rezervasyon Butonu */
.rez-submit {
  padding: 0;
  width: 200px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font);
  font-weight: 700; font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  transition: all .3s ease;
  cursor: pointer; border: none; white-space: nowrap;
  flex-shrink: 0; min-height: 100px;
  position: relative; overflow: hidden;
  border-left: 1px solid rgba(193,127,58,.2);
}
/* Altın dolgu — müzik ritmi sürekli animasyon */
.rez-submit::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l), var(--gold));
  background-size: 200% 100%;
  animation: rez-bar-wave 2.2s ease-in-out infinite, gold-wave 3s ease-in-out infinite;
  z-index: 1;
}
/* Ritim çubukları efekti */
.rez-submit::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(193,127,58,.22) 0%,
    rgba(193,127,58,.07) 45%,
    transparent 100%
  );
  animation: rez-fill-pulse 2.2s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}
@keyframes rez-bar-wave {
  0%   { height: 3px;  opacity: .75; border-radius: 2px 2px 0 0; }
  12%  { height: 7px;  opacity: .9; }
  25%  { height: 5px;  opacity: .8; }
  38%  { height: 9px;  opacity: .95; }
  50%  { height: 4px;  opacity: .78; }
  62%  { height: 8px;  opacity: .92; }
  75%  { height: 5px;  opacity: .82; }
  88%  { height: 7px;  opacity: .9; }
  100% { height: 3px;  opacity: .75; }
}
@keyframes rez-fill-pulse {
  0%   { opacity: .4;  transform: scaleY(.65); transform-origin: bottom; }
  20%  { opacity: .75; transform: scaleY(.85); transform-origin: bottom; }
  40%  { opacity: .55; transform: scaleY(.72); transform-origin: bottom; }
  60%  { opacity: .8;  transform: scaleY(.9);  transform-origin: bottom; }
  80%  { opacity: .6;  transform: scaleY(.78); transform-origin: bottom; }
  100% { opacity: .4;  transform: scaleY(.65); transform-origin: bottom; }
}
.rez-submit:hover::before {
  height: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-l) 100%);
  animation: none;
  border-radius: 0;
}
.rez-submit:hover::after { display: none; }
.rez-submit:hover { color: var(--navy); }

/* Rezervasyon butonu ikon animasyonu */
.rez-submit-icon {
  animation: rez-icon-float 2.2s ease-in-out infinite;
}
@keyframes rez-icon-float {
  0%   { transform: translateY(0) scale(1); }
  20%  { transform: translateY(-3px) scale(1.06); }
  40%  { transform: translateY(1px) scale(.97); }
  60%  { transform: translateY(-4px) scale(1.08); }
  80%  { transform: translateY(0px) scale(1.02); }
  100% { transform: translateY(0) scale(1); }
}
/* Buton ikonu — brand ve field ikonlarıyla aynı boyut/stil */
.rez-submit-icon {
  width: 52px; height: 52px;
  background: rgba(193,127,58,.1);
  border: 1.5px solid rgba(193,127,58,.35);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  position: relative; z-index: 1;
  transition: background .3s, border-color .3s, transform .3s;
}
.rez-submit:hover .rez-submit-icon {
  background: rgba(26,58,42,.15);
  border-color: var(--navy);
  transform: translateX(4px);
}
.rez-submit span { position: relative; z-index: 1; }

/* ══════════════════════════════════════
   SECTIONS GENEL
══════════════════════════════════════ */
section {
  padding: 96px 0;
  position: relative;
}
section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #8b5e1a 8%,
    #c17f3a 20%,
    #e8a85a 35%,
    #f5c97a 50%,
    #e8a85a 65%,
    #c17f3a 80%,
    #8b5e1a 92%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: gold-wave 3s ease-in-out infinite;
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}
.sec-label { font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; }
.sec-title { font-family: var(--font); font-size: clamp(28px,4vw,46px); font-weight: 700; color: var(--navy); line-height: 1.15; margin-bottom: 20px; }
.sec-title em { font-style: italic; color: var(--gold); }
.sec-divider { width: 48px; height: 2px; background: var(--gold); margin: 16px 0 24px; border-radius: 2px; }
.sec-desc { font-size: 15px; color: var(--gray); line-height: 1.8; max-width: 560px; }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }

/* ══════════════════════════════════════
   HİKAYEMİZ
══════════════════════════════════════ */
.hikaye { background: #f7faf7; }   /* Çok hafif yeşil beyaz */
.hikaye-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4vw, 64px); align-items: center; }

/* Görsel alan */
.hikaye-visual { position: relative; padding-bottom: 0; }
.hikaye-img-wrap { position: relative; }
.hikaye-img-main {
  border-radius: 20px; overflow: hidden;
  height: clamp(280px, 32vw, 420px);
  box-shadow: 0 24px 60px rgba(0,0,0,.15);
}
.hikaye-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.hikaye-img-main:hover img { transform: scale(1.04); }

/* Küçük accent görsel — ana görselin sağ alt köşesinde, stats barıyla çakışmaz */
.hikaye-img-accent {
  position: absolute; bottom: -14px; right: -14px;
  width: clamp(90px, 10vw, 140px); height: clamp(90px, 10vw, 140px);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  border: 3px solid #fff;
  z-index: 2;
}
.hikaye-img-accent img { width: 100%; height: 100%; object-fit: cover; }

/* İstatistik bar */
.hikaye-stats {
  display: flex; align-items: center; gap: 0;
  background: var(--navy); border-radius: 14px;
  padding: 16px 20px; margin-top: 28px;
  box-shadow: 0 10px 32px rgba(13,31,60,.22);
  position: relative; z-index: 1;
}
.hikaye-stat { flex: 1; text-align: center; }
.hikaye-stat-num {
  display: block; font-family: var(--font);
  font-size: clamp(20px, 2vw, 28px); font-weight: 900;
  color: var(--gold); line-height: 1;
}
.hikaye-stat-lbl {
  display: block; font-size: 11px; color: rgba(255,255,255,.6);
  letter-spacing: 1px; text-transform: uppercase; margin-top: 4px;
}
.hikaye-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.12); flex-shrink: 0; }

/* Feature listesi */
.hikaye-features { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.hikaye-feature {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px; border-radius: 12px;
  background: #eef2ee; transition: background .2s;
}
.hikaye-feature:hover { background: #ddeadd; }
.hikaye-feature-ico {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--gold); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 14px;
}
.hikaye-feature-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.hikaye-feature-desc { font-size: 12.5px; color: var(--gray); line-height: 1.5; }

.btn-hikaye { display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px; background: var(--navy); color: #fff; border-radius: 50px; font-weight: 700; font-size: 14px; transition: all .25s; margin-top: 28px; }
.btn-hikaye:hover { background: var(--gold); transform: translateY(-2px); }

/* Responsive hikaye */
@media (max-width: 1280px) {
  .hikaye-inner { gap: clamp(24px, 3vw, 48px); }
  .hikaye-img-main { height: clamp(260px, 28vw, 380px); }
  .hikaye-img-accent { right: -10px; bottom: -10px; width: clamp(80px, 9vw, 120px); height: clamp(80px, 9vw, 120px); }
}

@media (max-width: 1024px) {
  .hikaye-img-accent { display: none; }
}

/* ══════════════════════════════════════
   MENÜ SLIDER — VIP PREMIUM
══════════════════════════════════════ */
.menu-sec { background: #0f1e14; position: relative; overflow: hidden; }
.menu-sec::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(193,127,58,.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(193,127,58,.06) 0%, transparent 60%);
  pointer-events: none;
}
.menu-sec .container { position: relative; z-index: 1; }
.menu-sec-head { text-align: center; margin-bottom: 56px; }
.menu-sec-head .sec-label { color: var(--gold); }
.menu-sec-head .sec-title { color: #fff; }
.menu-sec-head .sec-divider { margin: 16px auto 24px; }
.menu-sec-head .sec-desc { margin: 0 auto; color: rgba(255,255,255,.5); }
.menu-slider-outer { overflow: hidden; }
.menu-slider { display: flex; gap: 24px; transition: transform .5s cubic-bezier(.4,0,.2,1); }

/* VIP Kart */
.menu-card {
  flex: 0 0 calc(33.333% - 16px);
  background: linear-gradient(160deg, #1a2e1f 0%, #0f1e14 100%);
  border: 1px solid rgba(193,127,58,.18);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s, border-color .35s;
  position: relative;
}
.menu-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(193,127,58,.5), transparent);
  z-index: 2;
}
.menu-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(193,127,58,.3);
  border-color: rgba(193,127,58,.4);
}
.menu-card-img { height: 240px; overflow: hidden; position: relative; }
.menu-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1), filter .4s;
  filter: brightness(.85) saturate(1.1);
}
.menu-card:hover .menu-card-img img { transform: scale(1.08); filter: brightness(.7) saturate(1.2); }
.menu-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,30,20,.9) 0%, rgba(15,30,20,.2) 50%, transparent 100%);
  z-index: 1;
}
.menu-card-top {
  position: absolute; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; z-index: 2;
}
.menu-chip {
  background: var(--gold); color: var(--navy);
  padding: 5px 14px; border-radius: 50px;
  font-size: 10px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(193,127,58,.4);
}
.menu-card-num {
  font-family: var(--font); font-size: 28px; font-weight: 900;
  color: rgba(255,255,255,.12); line-height: 1; letter-spacing: -1px;
}
.menu-card-hover-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px; z-index: 2;
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.menu-card:hover .menu-card-hover-info { opacity: 1; transform: translateY(0); }
.menu-card-hover-info p { font-size: 12px; color: rgba(255,255,255,.75); line-height: 1.6; margin: 0; }
.menu-card-body { padding: 20px 20px 22px; }
.menu-card-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.menu-card-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700;
  color: var(--gold); letter-spacing: 1px; text-transform: uppercase;
}
.menu-card-tag i { font-size: 9px; }
.menu-card-rating { font-size: 11px; color: var(--gold); letter-spacing: 1px; }
.menu-card-body h3 {
  font-family: var(--font); font-size: 18px; font-weight: 700;
  color: #fff; line-height: 1.25; margin-bottom: 0;
}
.menu-card-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(193,127,58,.3), transparent);
  margin: 14px 0;
}
.menu-card-footer { display: flex; align-items: center; justify-content: space-between; }
.menu-card-price-wrap { display: flex; flex-direction: column; gap: 2px; }
.menu-card-price-lbl {
  font-size: 9px; font-weight: 700;
  color: rgba(255,255,255,.3); letter-spacing: 2px; text-transform: uppercase;
}
.menu-card-price { font-size: 22px; font-weight: 900; color: var(--gold); font-family: var(--font); line-height: 1; }
.menu-card-btn {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(193,127,58,.12); border: 1px solid rgba(193,127,58,.3);
  color: var(--gold); font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, transform .2s;
}
.menu-card-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: scale(1.1); }
.menu-dots { display: flex; justify-content: center; gap: 2px; margin-top: 40px; align-items: center; }
/* Dokunma hedefi min 44×44px — görsel boyut küçük kalır, tıklama alanı büyür */
.menu-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.15); cursor: pointer;
  transition: all .3s; border: none;
  padding: 18px;
  margin: -18px;
  background-clip: content-box;
  box-sizing: content-box;
}
.menu-dot.active { background: var(--gold); width: 28px; border-radius: 4px; background-clip: content-box; }

/* ══════════════════════════════════════
   ŞEF — PREMIUM REDESIGN
══════════════════════════════════════ */
.sef-sec { background: #f7faf7; position: relative; overflow: hidden; }
.sef-bg-deco {
  position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(193,127,58,.07) 0%, transparent 70%);
  pointer-events: none;
}
.sef-inner {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px); align-items: center;
  position: relative; z-index: 1;
}
.sef-visual { position: relative; }
.sef-img-frame { position: relative; padding: 16px; }
.sef-corner {
  position: absolute; width: 48px; height: 48px;
  border-color: var(--gold); border-style: solid; z-index: 2;
}
.sef-corner--tl { top: 0; left: 0; border-width: 2px 0 0 2px; border-radius: 4px 0 0 0; }
.sef-corner--br { bottom: 0; right: 0; border-width: 0 2px 2px 0; border-radius: 0 0 4px 0; }
.sef-img { border-radius: 20px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,.18); aspect-ratio: 4/5; }
.sef-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.sef-visual:hover .sef-img img { transform: scale(1.04); }
.sef-exp-badge {
  position: absolute; bottom: -8px; left: -8px;
  width: 110px; height: 110px; border-radius: 50%;
  background: var(--navy); border: 3px solid var(--gold);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; box-shadow: 0 12px 36px rgba(26,58,42,.3); z-index: 3;
}
.sef-exp-num { font-family: var(--font); font-size: 28px; font-weight: 900; color: var(--gold); line-height: 1; }
.sef-exp-num span { font-size: 18px; }
.sef-exp-lbl { font-size: 9px; font-weight: 700; color: rgba(255,255,255,.6); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; line-height: 1.4; }
.sef-michelin-badge {
  position: absolute; top: 24px; right: -12px;
  background: var(--gold); color: var(--navy);
  padding: 8px 14px; border-radius: 50px;
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(193,127,58,.4); z-index: 3;
}
.sef-michelin-badge i { font-size: 10px; }
.sef-name { font-family: var(--font); font-size: clamp(28px,4vw,44px); font-weight: 700; color: var(--navy); margin-bottom: 6px; line-height: 1.1; }
.sef-title-lbl { font-size: 11px; color: var(--gold); font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 20px; }
.sef-desc { font-size: 15px; color: var(--gray); line-height: 1.85; }
.sef-stats {
  display: flex; align-items: center;
  background: var(--navy); border-radius: 16px;
  padding: 20px 24px; margin: 28px 0;
  box-shadow: 0 8px 32px rgba(26,58,42,.15);
}
.sef-stat-item { flex: 1; text-align: center; }
.sef-stat-num { font-family: var(--font); font-size: 28px; font-weight: 900; color: var(--gold); line-height: 1; }
.sef-stat-num span { font-size: 18px; }
.sef-stat-lbl { font-size: 10px; color: rgba(255,255,255,.5); letter-spacing: 1px; text-transform: uppercase; margin-top: 5px; }
.sef-stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,.1); flex-shrink: 0; }
.sef-awards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.sef-award-card {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; background: #fff;
  border: 1px solid rgba(193,127,58,.15); border-radius: 14px;
  box-shadow: 0 2px 12px rgba(26,58,42,.06);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.sef-award-card:hover { border-color: rgba(193,127,58,.4); box-shadow: 0 6px 24px rgba(26,58,42,.1); transform: translateY(-2px); }
.sef-award-ico { width: 38px; height: 38px; flex-shrink: 0; background: rgba(193,127,58,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 14px; }
.sef-award-title { font-size: 12px; font-weight: 700; color: var(--navy); line-height: 1.2; }
.sef-award-sub { font-size: 10px; color: var(--gray); margin-top: 2px; line-height: 1.3; }
.sef-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; background: var(--navy); color: #fff;
  border-radius: 50px; font-weight: 700; font-size: 13px; letter-spacing: .5px;
  transition: all .25s; box-shadow: 0 8px 24px rgba(26,58,42,.2);
}
.sef-cta-btn:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(193,127,58,.35); }
.sef-cta-btn i { font-size: 14px; }

/* ══════════════════════════════════════
   GALERİ — PREMIUM VENUE GALLERY
══════════════════════════════════════ */
.galeri-sec {
  background: #0f1e14;
  position: relative; overflow: hidden;
}
.galeri-sec::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(193,127,58,.08) 0%, transparent 60%);
  pointer-events: none;
}
.galeri-sec .container { position: relative; z-index: 1; }
.galeri-head { text-align: center; margin-bottom: 56px; }
.galeri-head .sec-label { color: var(--gold); }
.galeri-head .sec-title { color: #fff; }
.galeri-head .sec-divider { margin: 16px auto 24px; }
.galeri-head .sec-desc { margin: 0 auto; color: rgba(255,255,255,.5); }

.galeri-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 12px;
}
.galeri-item--large { grid-column: 1; grid-row: 1 / 3; }
.galeri-item--tall  { grid-column: 3; grid-row: 1 / 3; }

.galeri-item {
  position: relative; border-radius: 18px;
  overflow: hidden; cursor: pointer;
  background: #0f1e14;
  border: 1px solid rgba(193,127,58,.1);
  transition: border-color .3s, box-shadow .3s;
}
.galeri-item:hover {
  border-color: rgba(193,127,58,.35);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.galeri-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .7s cubic-bezier(.4,0,.2,1), filter .4s;
  filter: brightness(.8) saturate(1.05);
}
.galeri-item:hover img { transform: scale(1.08); filter: brightness(.55) saturate(1.1); }

.galeri-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  background: linear-gradient(to top, rgba(15,30,20,.85) 0%, rgba(15,30,20,.1) 45%, transparent 100%);
  transition: background .4s;
}
.galeri-item:hover .galeri-overlay {
  background: linear-gradient(to top, rgba(15,30,20,.92) 0%, rgba(15,30,20,.3) 55%, transparent 100%);
}
.galeri-overlay-content {
  padding: 20px 22px;
  transform: translateY(4px);
  transition: transform .35s;
}
.galeri-item:hover .galeri-overlay-content { transform: translateY(0); }
.galeri-overlay-label {
  display: block; font-size: 9px; font-weight: 800;
  color: var(--gold); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 6px;
}
.galeri-overlay-content > span:not(.galeri-overlay-label) {
  display: block; font-family: var(--font);
  font-size: 16px; font-weight: 700; color: #fff;
  letter-spacing: .3px; text-shadow: 0 2px 8px rgba(0,0,0,.5);
  opacity: 0; transform: translateY(6px);
  transition: opacity .35s .05s, transform .35s .05s;
}
.galeri-item:hover .galeri-overlay-content > span:not(.galeri-overlay-label) {
  opacity: 1; transform: translateY(0);
}

/* ── Galeri Slider ── */
.galeri-slider-outer {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}
.galeri-slider-track {
  display: flex;
  gap: 16px;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.galeri-slide {
  flex: 0 0 calc(33.333% - 11px);
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(193,127,58,.1);
  transition: border-color .3s, box-shadow .3s;
}
.galeri-slide:hover {
  border-color: rgba(193,127,58,.35);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.galeri-slide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .7s cubic-bezier(.4,0,.2,1), filter .4s;
  filter: brightness(.8) saturate(1.05);
}
.galeri-slide:hover img { transform: scale(1.08); filter: brightness(.55) saturate(1.1); }
.galeri-slide .galeri-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  background: linear-gradient(to top, rgba(15,30,20,.85) 0%, rgba(15,30,20,.1) 45%, transparent 100%);
  transition: background .4s;
}
.galeri-slide:hover .galeri-overlay {
  background: linear-gradient(to top, rgba(15,30,20,.92) 0%, rgba(15,30,20,.3) 55%, transparent 100%);
}
.galeri-slide .galeri-overlay-content {
  padding: 20px 22px;
  transform: translateY(4px);
  transition: transform .35s;
}
.galeri-slide:hover .galeri-overlay-content { transform: translateY(0); }
.galeri-slide .galeri-overlay-label {
  display: block; font-size: 9px; font-weight: 800;
  color: var(--gold); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 6px;
}
.galeri-slide .galeri-overlay-content > span:not(.galeri-overlay-label) {
  display: block; font-family: var(--font);
  font-size: 16px; font-weight: 700; color: #fff;
  letter-spacing: .3px; text-shadow: 0 2px 8px rgba(0,0,0,.5);
  opacity: 0; transform: translateY(6px);
  transition: opacity .35s .05s, transform .35s .05s;
}
.galeri-slide:hover .galeri-overlay-content > span:not(.galeri-overlay-label) {
  opacity: 1; transform: translateY(0);
}

/* Slider kontrolleri */
.galeri-slider-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 32px;
}
.galeri-slider-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(193,127,58,.25);
  color: var(--gold); font-size: 15px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, transform .2s;
  flex-shrink: 0;
}
.galeri-slider-btn:hover {
  background: var(--gold); border-color: var(--gold);
  color: var(--navy); transform: scale(1.08);
}
.galeri-slider-dots {
  display: flex; gap: 8px; align-items: center;
}
.galeri-slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.2); border: none; cursor: pointer;
  transition: all .3s; padding: 0;
}
.galeri-slider-dot.active {
  background: var(--gold); width: 28px; border-radius: 4px;
}

/* Galeri responsive */
@media (max-width: 900px) {
  .galeri-slide { flex: 0 0 calc(50% - 8px); height: 300px; }
}
@media (max-width: 600px) {
  .galeri-slide { flex: 0 0 calc(85vw); height: 260px; }
  .galeri-slide .galeri-overlay-content > span:not(.galeri-overlay-label) { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   RTL (Arapça) DESTEĞİ
══════════════════════════════════════ */
body.rtl { direction: rtl; }
body.rtl .top-bar-inner { flex-direction: row-reverse; }
body.rtl .top-bar-left { flex-direction: row-reverse; }
body.rtl .top-bar-right { flex-direction: row-reverse; }
body.rtl .split-nav-left { justify-content: flex-start; padding-left: clamp(12px,2vw,24px); padding-right: 0; }
body.rtl .split-nav-right { justify-content: flex-end; padding-right: clamp(12px,2vw,24px); padding-left: 0; }
body.rtl .hikaye-inner { direction: rtl; }
body.rtl .sec-divider { margin-right: 0; }
body.rtl .galeri-overlay-content { padding-right: 22px; padding-left: 0; }
body.rtl .galeri-overlay-label { letter-spacing: 1px; }
body.rtl .foot-grid { direction: rtl; }
body.rtl .foot-col ul li a { flex-direction: row-reverse; }
body.rtl .sef-inner { direction: rtl; }
body.rtl .sef-exp-badge { left: auto; right: -8px; }
body.rtl .sef-michelin-badge { right: auto; left: -12px; }
body.rtl .sef-corner--tl { left: auto; right: 0; border-width: 2px 2px 0 0; border-radius: 0 4px 0 0; }
body.rtl .sef-corner--br { right: auto; left: 0; border-width: 0 0 2px 2px; border-radius: 0 0 0 4px; }
body.rtl .sef-awards-grid { direction: rtl; }
body.rtl .mnav-link { flex-direction: row-reverse; }
body.rtl .mnav-link--active::before { left: auto; right: 0; border-radius: 3px 0 0 3px; }
body.rtl .mnav-link-arrow { transform: rotate(180deg); }
body.rtl .mnav-link:hover .mnav-link-arrow,
body.rtl .mnav-link.mnav-link--active .mnav-link-arrow { transform: rotate(180deg) translateX(2px); }
body.rtl .mnav-contact-item { flex-direction: row-reverse; }
body.rtl .mobile-nav-panel { right: auto; left: 0; transform: translateX(-105%); box-shadow: 12px 0 60px rgba(0,0,0,.25); }
body.rtl .mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
body.rtl .hero-text-slide { direction: rtl; }
body.rtl .rez-inner { flex-direction: row-reverse; }
body.rtl .menu-card-top { flex-direction: row-reverse; }
body.rtl .menu-card-footer { flex-direction: row-reverse; }
body.rtl .menu-card-divider { background: linear-gradient(270deg, rgba(193,127,58,.3), transparent); }

/* ══════════════════════════════════════
   KONUM
══════════════════════════════════════ */
.konum-sec { background: #eef2ee; }
.konum-sec-head { text-align: center; margin-bottom: 56px; }
.konum-sec-head .sec-divider { margin: 16px auto 24px; }
.konum-sec-head .sec-desc { margin: 0 auto; }
.konum-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.konum-slider-wrap { border-radius: 20px; overflow: hidden; position: relative; }
.konum-slides { position: relative; height: 420px; }
.konum-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; background-size: cover; background-position: center; }
.konum-slide.active { opacity: 1; }
.konum-slide::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 60%); }
.konum-slide-caption { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 20px 24px; }
.konum-slide-caption h4 { font-family: var(--font); font-size: 20px; color: #fff; margin-bottom: 4px; }
.konum-slide-caption p { font-size: 13px; color: rgba(255,255,255,.7); }
.konum-list { display: flex; flex-direction: column; gap: 4px; }
.konum-item { display: flex; align-items: center; gap: 16px; padding: 14px 12px; cursor: pointer; transition: background .2s; border-radius: 10px; }
.konum-item:hover { background: rgba(201,168,76,.08); }
.konum-item.active { background: rgba(201,168,76,.14); }
.konum-item-img { width: 64px; height: 64px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.konum-item-img img { width: 100%; height: 100%; object-fit: cover; }
.konum-item-info h5 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.konum-item-info span { font-size: 12px; color: var(--gold); font-weight: 600; }

/* ══════════════════════════════════════
   BLOG — LIGHT PREMIUM REDESIGN
══════════════════════════════════════ */
.blog-sec { background: #f7faf7; }
.blog-sec-head { text-align: center; margin-bottom: 56px; }
.blog-sec-head .sec-divider { margin: 16px auto 24px; }
.blog-sec-head .sec-desc { margin: 0 auto; }

/* 3 eşit kart grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

/* Tüm kartlar dikey */
.blog-card--featured,
.blog-card--small {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(26,58,42,.08);
  box-shadow: 0 4px 24px rgba(26,58,42,.07);
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s, border-color .35s;
  position: relative;
  grid-row: auto;
  min-height: 0;
}
.blog-card--featured:hover,
.blog-card--small:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(26,58,42,.13);
  border-color: rgba(193,127,58,.25);
}

/* Görsel alanı */
.blog-card--featured .blog-card-img,
.blog-card--small .blog-card-img {
  height: 210px;
  width: 100%;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.blog-card--featured .blog-card-img img,
.blog-card--small .blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.blog-card--featured:hover .blog-card-img img,
.blog-card--small:hover .blog-card-img img {
  transform: scale(1.06);
}

/* Görsel alt gradient */
.blog-card--featured .blog-card-img::after,
.blog-card--small .blog-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,58,42,.35) 0%, transparent 55%);
}

/* Üst altın çizgi — hover'da görünür */
.blog-card--featured::after,
.blog-card--small::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
  z-index: 2;
}
.blog-card--featured:hover::after,
.blog-card--small:hover::after { transform: scaleX(1); }

/* İçerik alanı */
.blog-card--featured .blog-card-body,
.blog-card--small .blog-card-body {
  padding: 22px 22px 24px;
  display: flex; flex-direction: column; flex: 1;
}
.blog-card--featured .blog-card-body h3,
.blog-card--small .blog-card-body h3 {
  font-family: var(--font); font-size: 17px; font-weight: 700;
  color: var(--navy); line-height: 1.35; margin-bottom: 10px;
}
.blog-card--featured .blog-card-body p,
.blog-card--small .blog-card-body p {
  font-size: 13.5px; color: var(--gray); line-height: 1.75;
  margin-bottom: 20px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

/* Kart ayırıcı çizgi */
.blog-card-divider {
  height: 1px;
  background: rgba(26,58,42,.08);
  margin: 0 0 16px;
}

/* Ortak chip */
.blog-chip {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  background: var(--gold); color: var(--navy);
  padding: 5px 13px; border-radius: 50px;
  font-size: 10px; font-weight: 800; letter-spacing: .5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(193,127,58,.35);
}

/* Ortak date */
.blog-card-date {
  font-size: 10px; color: var(--gold); font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 6px;
}
.blog-card-date i { font-size: 9px; }

/* Ortak link */
.blog-link {
  font-size: 11px; font-weight: 800; color: var(--navy);
  display: inline-flex; align-items: center; gap: 6px;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 9px 18px; border-radius: 50px;
  border: 1.5px solid rgba(26,58,42,.15);
  transition: all .25s; align-self: flex-start;
  margin-top: auto;
}
.blog-link:hover {
  background: var(--navy); color: #fff;
  border-color: var(--navy); gap: 10px;
}
.blog-link i { font-size: 10px; transition: transform .2s; }
.blog-link:hover i { transform: translateX(3px); }

/* Featured kart için daha büyük link */
.blog-card--featured .blog-link {
  padding: 11px 24px; font-size: 12px;
}

/* ══════════════════════════════════════
   CTA BAND
══════════════════════════════════════ */
.cta-band {
  background: var(--navy);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}
/* Uzungöl arka plan — CTA */
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=80');
  background-size: cover;
  background-position: center 35%;
  background-attachment: fixed;
  opacity: 0.40;
  z-index: 0;
}
/* Koyu gradient overlay — footer ile aynı ton */
.cta-band::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,58,42,.88) 0%, rgba(26,58,42,.82) 50%, rgba(30,61,74,.78) 100%);
  z-index: 0;
}
.cta-inner { position: relative; z-index: 2; text-align: center; }
.cta-inner .sec-label { display: block; text-align: center; }
.cta-title { font-family: var(--font); font-size: clamp(28px,4vw,46px); font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 16px; }
.cta-desc { font-size: 15px; color: rgba(255,255,255,.65); max-width: 480px; margin: 0 auto 36px; line-height: 1.7; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-btn-gold { display: inline-flex; align-items: center; gap: 8px; padding: 15px 32px; background: var(--gold); color: var(--navy); border-radius: 50px; font-weight: 800; font-size: 14px; transition: all .25s; box-shadow: 0 8px 24px rgba(201,168,76,.35); }
.cta-btn-gold:hover { background: var(--gold-l); transform: translateY(-2px); }
.cta-btn-ghost { display: inline-flex; align-items: center; gap: 8px; padding: 15px 32px; background: transparent; color: #fff; border-radius: 50px; font-weight: 700; font-size: 14px; border: 2px solid rgba(255,255,255,.3); transition: all .25s; }
.cta-btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
/* ── Animasyonlu Altın Çizgi — Evrensel Yardımcı Sınıf ── */
.gold-line {
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #8b5e1a 8%,
    #c17f3a 20%,
    #e8a85a 35%,
    #f5c97a 50%,
    #e8a85a 65%,
    #c17f3a 80%,
    #8b5e1a 92%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: gold-wave 3s ease-in-out infinite;
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}

footer {
  background: var(--navy);
  padding: 48px 0 0;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}
.footer-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #8b5e1a 8%,
    #c17f3a 20%,
    #e8a85a 35%,
    #f5c97a 50%,
    #e8a85a 65%,
    #c17f3a 80%,
    #8b5e1a 92%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: gold-wave 3s ease-in-out infinite;
  z-index: 3;
}

/* Uzungöl arka plan görseli — footer (cta-band ile aynı görsel süreklilik) */
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=80');
  background-size: cover;
  background-position: center 35%;
  background-attachment: fixed;
  opacity: 0.40;
  z-index: 0;
}

/* Koyu yeşil overlay — cta-band ile aynı ton, görsel bütünlük */
footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,58,42,.88) 0%, rgba(26,58,42,.82) 50%, rgba(30,61,74,.78) 100%);
  z-index: 0;
  pointer-events: none;
}

footer .container { position: relative; z-index: 1; }
.foot-grid { display: grid; grid-template-columns: 1.8fr 1fr 1.2fr; gap: 40px; margin-bottom: 36px; }

/* Footer Logo */
.foot-logo { display: inline-flex; flex-direction: column; text-decoration: none; margin-bottom: 20px; }
.foot-logo-name {
  font-family: var(--font); font-size: 20px; font-weight: 700;
  color: #fff; letter-spacing: 4px; text-transform: uppercase; line-height: 1;
}
.foot-logo-sub {
  font-size: 9px; color: rgba(255,255,255,.4); letter-spacing: 3px;
  text-transform: uppercase; margin-top: 5px;
}

.foot-brand p { font-size: 13.5px; color: rgba(255,255,255,.45); line-height: 1.85; margin-bottom: 24px; }
.foot-social { display: flex; gap: 8px; }
.foot-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: 14px; transition: all .25s;
}
.foot-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-3px); }

.foot-col h5 {
  font-size: 10px; font-weight: 800; color: rgba(255,255,255,.85);
  text-transform: uppercase; letter-spacing: 2.5px;
  margin-bottom: 22px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col ul li a {
  color: rgba(255,255,255,.45); font-size: 13.5px;
  transition: color .2s, padding-left .2s;
  display: flex; align-items: center; gap: 8px;
}
.foot-col ul li a i { font-size: 9px; color: var(--gold); opacity: .7; }
.foot-col ul li a:hover { color: var(--gold); padding-left: 4px; }

.foot-contact { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.foot-contact li {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(255,255,255,.45); font-size: 13px; line-height: 1.6;
}
.foot-contact li i { color: var(--gold); font-size: 13px; margin-top: 2px; flex-shrink: 0; width: 16px; text-align: center; }
.foot-contact li a { color: rgba(255,255,255,.45); transition: color .2s; }
.foot-contact li a:hover { color: var(--gold); }
.foot-contact li span { color: rgba(255,255,255,.45); }

.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding: 16px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: rgba(255,255,255,.35); flex-wrap: wrap; gap: 10px;
}
.foot-bottom-links { display: flex; gap: 20px; }
.foot-bottom-links a { color: rgba(255,255,255,.35); font-size: 12.5px; transition: color .2s; }
.foot-bottom-links a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

/* Geniş ekranlar: 1400px+ */
@media (min-width: 1400px) {
  .container { max-width: 1320px; }
  .top-bar-inner, .header-main-inner { max-width: 1320px; }
}

/* Desktop nav sadece büyük ekranlarda */
@media (max-width: 1024px) {
  .desktop-nav { display: none; }
  .h-rez { display: none; }
  /* Split nav gizle, hamburger göster */
  .split-nav { display: none; }
  .hamburger { display: flex; }
  .logo-center-split { margin: 0 auto; }
  .header-main-inner { justify-content: space-between; height: 72px; }
  /* Hikayemiz ve Şef: 1024px altında tek kolon */
  .hikaye-inner, .sef-inner { grid-template-columns: 1fr; gap: 48px; }
  .hikaye-img-accent { display: none; }
  .sef-michelin-badge { right: 8px; }
  .sef-awards-grid { grid-template-columns: 1fr 1fr; }
  .hikaye-stats { margin-top: 24px; }
  .hikaye-img-main { height: clamp(260px, 50vw, 400px); }
}

/* Tablet: 900px altında grid'ler */
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .blog-card--featured, .blog-card--small { grid-row: auto; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  /* Konum: 900px altında tek kolon */
  .konum-grid { grid-template-columns: 1fr; }
  .konum-slides { height: 360px; }
}

/* Tablet: 900px altında grid'ler + top-bar adres gizle */
@media (max-width: 900px) {
  .top-bar-info { display: none; }
  .top-bar-divider { display: none; }
  .hikaye-stats { padding: 16px 20px; }
  .hikaye-stat-num { font-size: 22px; }
}

/* Tablet küçük: 768px altında */
@media (max-width: 768px) {
  .top-bar-phone { display: none; }
  .top-bar-social a:nth-child(n+3) { display: none; }
  .header-main-inner { height: 64px; }
  section { padding: 64px 0; }
  .hero-nav { width: 40px; height: 40px; font-size: 14px; }
  .hero-nav.prev { left: 12px; }
  .hero-nav.next { right: 12px; }
  .hero-scroll-hint { display: none; }
  .rez-inner { flex-direction: column; }
  .rez-field { border-right: none; border-bottom: 1px solid rgba(26,58,42,.1); min-width: 100%; }
  .rez-submit { min-height: 64px; justify-content: center; width: 100%; }
  /* Hikayemiz stats */
  .hikaye-stats { padding: 14px 16px; }
  .hikaye-stat-num { font-size: 20px; }
  .hikaye-stat-lbl { font-size: 10px; }
  .hikaye-features { gap: 10px; }
  /* Konum: daha kısa slider */
  .konum-slides { height: 300px; }
  /* Blog: 768px altında tek kolon */
  .blog-grid { grid-template-columns: 1fr; }
  /* Footer */
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .foot-bottom { flex-direction: column; text-align: center; }
  /* CTA */
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btn-gold, .cta-btn-ghost { width: 100%; max-width: 320px; justify-content: center; }
  /* Menü kartları mobilde tam genişlik */
  .menu-card { flex: 0 0 calc(85vw); }
}

/* Mobil: 480px altında */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .top-bar-inner { padding: 0 16px; }
  .top-bar-social { gap: 14px; }
  .top-bar-rez { padding: 5px 10px; font-size: 11px; }
  .hero-text-slide h1 { font-size: clamp(26px, 8vw, 40px); }
  .hero-text-slide p { font-size: 14px; }
  .hikaye-img-main { height: 240px; }
  .hikaye-stats { flex-direction: column; gap: 12px; }
  .hikaye-stat-divider { width: 40px; height: 1px; }
  .sec-title { font-size: clamp(22px, 6vw, 32px); }
  .blog-grid { grid-template-columns: 1fr; }
  .sef-badge { width: 90px; height: 90px; bottom: -10px; right: -10px; }
  .sef-badge span { font-size: 22px; }
  section { padding: 48px 0; }
}

/* Çok küçük ekranlar: 360px altında */
@media (max-width: 360px) {
  .logo-center-split .logo-brand-name { font-size: 13px; letter-spacing: 2px; }
  .top-bar-flag { display: none; }
}

/* ══════════════════════════════════════
   SOL SABİT REZERVASYON BUTONU
══════════════════════════════════════ */
.fixed-rez-panel {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9990;
  animation: frp-slide-in .6s cubic-bezier(.4,0,.2,1) .2s both;
}

@keyframes frp-slide-in {
  from { transform: translateY(-50%) translateX(-120px); opacity: 0; }
  to   { transform: translateY(-50%) translateX(0);     opacity: 1; }
}

.frp-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  /* Varsayılan: sadece ikon görünür, metin gizli */
  width: 60px;
  height: 60px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a3a2a 0%, #0f2318 100%);
  border: 1px solid rgba(193,127,58,.4);
  border-left: none;
  border-radius: 0 16px 16px 0;
  cursor: pointer;
  color: var(--gold);
  font-family: var(--font-s);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 4px 0 28px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.08);
  transition: width .35s cubic-bezier(.4,0,.2,1), box-shadow .3s, background .3s;
  position: relative;
}
.frp-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  border-radius: 0 16px 0 0;
  pointer-events: none;
}
.frp-btn::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  border-radius: 0 0 16px 0;
  pointer-events: none;
}

/* Hover: genişle, metin görünsün */
.frp-btn:hover {
  width: 210px;
  box-shadow: 6px 0 36px rgba(193,127,58,.45), 4px 0 16px rgba(0,0,0,.3);
  background: linear-gradient(135deg, #1e4a32 0%, #142a1c 100%);
}

/* İkon kutusu */
.frp-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .3s ease;
  animation: frp-icon-pulse 2.5s ease-in-out infinite;
}
@keyframes frp-icon-pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.18); }
}
.frp-btn:hover .frp-icon {
  animation: none;
  transform: scale(1.12);
  color: var(--gold-l);
}

/* Metin */
.frp-label {
  flex: 1;
  padding-right: 16px;
  color: rgba(255,255,255,.9);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .25s ease .1s, transform .25s ease .1s;
  line-height: 1.3;
  text-align: left;
}
.frp-btn:hover .frp-label {
  opacity: 1;
  transform: translateX(0);
}

/* Pulse halkası — dikkat çekici */
.frp-btn .frp-ring {
  position: absolute;
  inset: -5px;
  border-radius: 0 20px 20px 0;
  border: 2px solid rgba(193,127,58,.4);
  animation: frp-ring-pulse 2.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes frp-ring-pulse {
  0%   { transform: scale(1);    opacity: .8; }
  50%  { transform: scale(1.07); opacity: 0; }
  100% { transform: scale(1);    opacity: 0; }
}

/* Mobilde gizle */
@media (max-width: 768px) {
  .fixed-rez-panel { display: none; }
}

/* ══════════════════════════════════════
   SABİT SAĞ PANEL — ULTRA PREMIUM v4
══════════════════════════════════════ */
.fixed-side-panel {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 0;
  background: linear-gradient(175deg, #162e1e 0%, #0a1a0e 50%, #162e1e 100%);
  border: 1px solid rgba(193,127,58,.4);
  border-right: none;
  border-radius: 16px 0 0 16px;
  box-shadow:
    -10px 0 48px rgba(0,0,0,.55),
    -3px 0 16px rgba(0,0,0,.3),
    inset 1px 0 0 rgba(255,255,255,.06),
    inset 0 1px 0 rgba(193,127,58,.2);
  animation: fsp-slide-in .65s cubic-bezier(.34,1.56,.64,1) .3s both;
  overflow: hidden;
  width: 60px;
  transition: width .4s cubic-bezier(.34,1.56,.64,1);
}
.fixed-side-panel:hover {
  width: 220px;
}

@keyframes fsp-slide-in {
  from { transform: translateY(-50%) translateX(100px); opacity: 0; }
  to   { transform: translateY(-50%) translateX(0);    opacity: 1; }
}

/* Üst altın çizgi — animasyonlu */
.fixed-side-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 40%, var(--gold-l) 70%, transparent 100%);
  background-size: 200% 100%;
  animation: gold-wave 3s ease-in-out infinite;
  border-radius: 16px 0 0 0;
  pointer-events: none;
  z-index: 2;
}

/* Alt altın çizgi — animasyonlu */
.fixed-side-panel::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 40%, var(--gold-l) 70%, transparent 100%);
  background-size: 200% 100%;
  animation: gold-wave 3s ease-in-out infinite reverse;
  border-radius: 0 0 0 16px;
  pointer-events: none;
  z-index: 2;
}

/* ── Her buton ── */
.fsp-btn {
  position: relative;
  width: 100%;
  height: 60px;
  display: block;
  font-size: 22px;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  transition: background .28s ease,
              box-shadow .28s ease,
              border-color .28s ease,
              color .2s ease;
  border-radius: 12px 0 0 12px;
  margin: 0 0 0 2px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-right: none;
  flex-shrink: 0;
  overflow: hidden;
}

/* İkon kutusu — her zaman sağ kenarda, tam ortalanmış */
.fsp-btn .fsp-icon-wrap {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
}

/* İkon pulse animasyonu — her buton farklı gecikme */
.fsp-btn:nth-child(1) .fsp-icon-wrap i { animation: fsp-pulse 3.2s ease-in-out infinite; }
.fsp-btn:nth-child(2) .fsp-icon-wrap i { animation: fsp-pulse 3.2s ease-in-out .6s infinite; }
.fsp-btn:nth-child(3) .fsp-icon-wrap i { animation: fsp-pulse 3.2s ease-in-out 1.2s infinite; }
.fsp-btn:nth-child(4) .fsp-icon-wrap i { animation: fsp-pulse 3.2s ease-in-out 1.8s infinite; }

@keyframes fsp-pulse {
  0%, 80%, 100% { transform: scale(1); }
  40%           { transform: scale(1.22) rotate(-6deg); }
  60%           { transform: scale(1.1) rotate(3deg); }
}

/* Label — ikonun solunda, panel kapalıyken overflow:hidden tarafından gizlenir */
.fsp-label {
  position: absolute;
  top: 0;
  left: 0;
  right: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  padding-left: 16px;
  padding-right: 6px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .9px;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255,255,255,.95);
  opacity: 0;
  transform: translateX(12px);
  transition: opacity .28s ease .12s, transform .28s ease .12s;
  line-height: 1;
  pointer-events: none;
  text-align: left;
}

/* Hover: panel genişleyince label göster */
.fsp-btn:hover {
  color: #fff;
}
.fixed-side-panel:hover .fsp-btn .fsp-icon-wrap i {
  animation: none;
  transform: scale(1.12);
}
.fixed-side-panel:hover .fsp-btn .fsp-label {
  opacity: 1;
  transform: translateX(0);
}

/* ── Her buton için özel renk ve sol kenar ── */
.fsp-instagram {
  border-left: 3px solid rgba(220,39,67,.65);
}
.fsp-instagram:hover {
  background: linear-gradient(90deg, #c13584 0%, #e1306c 30%, #fd1d1d 60%, #f56040 100%);
  box-shadow: -8px 0 28px rgba(220,39,67,.55);
  border-left-color: rgba(220,39,67,.95);
  color: #fff;
}

.fsp-whatsapp {
  border-left: 3px solid rgba(37,211,102,.65);
}
.fsp-whatsapp:hover {
  background: linear-gradient(90deg, #075e54 0%, #128c7e 40%, #25d366 100%);
  box-shadow: -8px 0 28px rgba(37,211,102,.55);
  border-left-color: rgba(37,211,102,.95);
  color: #fff;
}

.fsp-phone {
  border-left: 3px solid rgba(193,127,58,.65);
}
.fsp-phone:hover {
  background: linear-gradient(90deg, #0a1a0e 0%, #1a3a2a 50%, #2a5a3a 100%);
  box-shadow: -8px 0 28px rgba(193,127,58,.55);
  border-left-color: rgba(193,127,58,.95);
  color: #fff;
}

.fsp-location {
  border-left: 3px solid rgba(231,76,60,.65);
}
.fsp-location:hover {
  background: linear-gradient(90deg, #922b21 0%, #c0392b 50%, #e74c3c 100%);
  box-shadow: -8px 0 28px rgba(231,76,60,.55);
  border-left-color: rgba(231,76,60,.95);
  color: #fff;
}

/* ── Tooltip — artık kullanılmıyor ── */
.fsp-tooltip { display: none; }

/* ── WhatsApp — online yeşil nokta ── */
.fsp-whatsapp .fsp-icon-wrap::after {
  content: '';
  position: absolute;
  top: 9px; right: 9px;
  width: 10px; height: 10px;
  background: #25d366;
  border-radius: 50%;
  border: 1.5px solid rgba(12,29,18,.9);
  box-shadow: 0 0 10px rgba(37,211,102,.9);
  animation: fsp-online-blink 2.2s ease-in-out infinite;
  z-index: 2;
}
@keyframes fsp-online-blink {
  0%, 100% { opacity: 1;  box-shadow: 0 0 6px rgba(37,211,102,.7); }
  50%       { opacity: .5; box-shadow: 0 0 16px rgba(37,211,102,1); }
}

/* ── Telefon — çalan halka animasyonu ── */
.fsp-phone .fsp-icon-wrap::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(193,127,58,.55);
  animation: fsp-ring 3s ease-in-out 1.5s infinite;
  pointer-events: none;
}
@keyframes fsp-ring {
  0%   { transform: scale(1);    opacity: .9; }
  40%  { transform: scale(1.28); opacity: 0; }
  100% { transform: scale(1);    opacity: 0; }
}

/* ── Konum — pin bounce animasyonu ── */
@keyframes fsp-pin-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  30%       { transform: translateY(-5px) scale(1.18); }
  60%       { transform: translateY(2px) scale(.94); }
  80%       { transform: translateY(-2px) scale(1.06); }
}
.fsp-btn.fsp-location .fsp-icon-wrap i {
  animation: fsp-pin-bounce 3s ease-in-out 2.4s infinite !important;
  transform-origin: center bottom;
}

/* ── Panel içi ince ayırıcı çizgi ── */
.fsp-btn + .fsp-btn {
  border-top: 1px solid rgba(255,255,255,.07);
}

/* Mobilde gizle (hamburger menüde zaten var) */
@media (max-width: 768px) {
  .fixed-side-panel { display: none; }
}

/* ══════════════════════════════════════
   YUKARI KAYDIRMA BUTONU
══════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 64px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy) 0%, #0f2318 100%);
  color: var(--gold);
  border: 1.5px solid rgba(193,127,58,.4);
  border-radius: 14px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.3), 0 0 0 0 rgba(193,127,58,.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity .3s, visibility .3s, transform .35s cubic-bezier(.4,0,.2,1),
              background .3s, border-color .3s, color .3s, box-shadow .3s;
  z-index: 9989;
  overflow: hidden;
}
/* Üst altın çizgi */
.scroll-top::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-l), var(--gold), transparent);
  background-size: 200% 100%;
  animation: gold-wave 3s ease-in-out infinite;
  border-radius: 14px 14px 0 0;
  pointer-events: none;
}
/* İç parlaklık efekti */
.scroll-top::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(193,127,58,.12) 0%, transparent 60%);
  border-radius: 14px;
  pointer-events: none;
}
.scroll-top i {
  position: relative;
  z-index: 1;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  animation: scroll-top-pulse 2.5s ease-in-out infinite;
}
.scroll-top:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-l) 100%);
  color: var(--navy);
  border-color: var(--gold-l);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(193,127,58,.45), 0 0 0 6px rgba(193,127,58,.12);
  animation: none;
}
.scroll-top:hover i {
  transform: translateY(-2px) scale(1.15);
}
@keyframes scroll-top-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(0,0,0,.3), 0 0 0 0 rgba(193,127,58,.3); }
  50%       { box-shadow: 0 8px 24px rgba(0,0,0,.3), 0 0 0 8px rgba(193,127,58,.0); }
}

@media (max-width: 768px) {
  .scroll-top { right: 16px; bottom: 20px; width: 44px; height: 44px; font-size: 14px; border-radius: 12px; }
}

/* ══════════════════════════════════════
   İLETİŞİM SAYFASI
══════════════════════════════════════ */

/* ══════════════════════════════════════
   ALTIN ÇİZGİ ANİMASYONU — GLOBAL
══════════════════════════════════════ */
@keyframes gold-wave {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Ortak animasyonlu çizgi mixin değeri */
:root {
  --gold-line-bg: linear-gradient(
    90deg,
    transparent 0%,
    #8b5e1a 8%,
    #c17f3a 20%,
    #e8a85a 35%,
    #f5c97a 50%,
    #e8a85a 65%,
    #c17f3a 80%,
    #8b5e1a 92%,
    transparent 100%
  );
}

/* ── Page Hero ── */
.page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #8b5e1a 8%,
    #c17f3a 20%,
    #e8a85a 35%,
    #f5c97a 50%,
    #e8a85a 65%,
    #c17f3a 80%,
    #8b5e1a 92%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: gold-wave 3s ease-in-out infinite;
  z-index: 2;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.page-hero:hover .page-hero-bg { transform: scale(1.08); }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,58,42,.82) 0%,
    rgba(26,58,42,.70) 50%,
    rgba(30,61,74,.80) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}
.page-hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.page-hero-title {
  font-family: var(--font);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}
.page-hero-breadcrumb a {
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.page-hero-breadcrumb a:hover { color: var(--gold); }
.page-hero-breadcrumb i {
  font-size: 9px;
  color: var(--gold);
}
.page-hero-breadcrumb span:last-child {
  color: rgba(255,255,255,.9);
}

/* ── İletişim Sayfası Genel ── */
.iletisim-page { background: #f7faf7; }

.iletisim-intro {
  text-align: center;
  padding: 64px 0 0;
}
.iletisim-intro .sec-divider { margin: 16px auto 24px; }
.iletisim-intro .sec-desc { margin: 0 auto; }

/* ── 3 Bilgi Kartı ── */
.iletisim-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0 56px;
}
.iletisim-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(26,58,42,.08);
  border: 1px solid rgba(26,58,42,.07);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.iletisim-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26,58,42,.13);
  border-color: rgba(193,127,58,.25);
}
.iletisim-card-ico {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 22px;
  box-shadow: 0 8px 24px rgba(26,58,42,.2);
  transition: background .3s, transform .3s;
}
.iletisim-card:hover .iletisim-card-ico {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.08);
}
.iletisim-card h3 {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.iletisim-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}
.iletisim-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .5px;
  padding: 8px 18px;
  border: 1.5px solid rgba(193,127,58,.3);
  border-radius: 50px;
  transition: all .25s;
  margin-top: 4px;
}
.iletisim-card-link:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.iletisim-card-hours {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  margin-top: 8px;
  display: block;
}

/* ── Harita + Form İki Kolon ── */
.iletisim-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
  align-items: start;
}

/* Harita Kolonu */
.iletisim-map-col {}
.iletisim-map-header {
  margin-bottom: 20px;
}
.iletisim-map-header h3 {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.iletisim-map-header p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.6;
}
.iletisim-map-wrap {
  height: 340px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26,58,42,.12);
  border: 1px solid rgba(26,58,42,.08);
}
.iletisim-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.iletisim-nearby {
  margin-top: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 4px 16px rgba(26,58,42,.07);
  border: 1px solid rgba(26,58,42,.07);
}
.iletisim-nearby h4 {
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(26,58,42,.08);
}
.iletisim-nearby ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.iletisim-nearby ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray);
}
.nearby-ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(193,127,58,.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* Form Kolonu */
.iletisim-form-col {}
.iletisim-form-header {
  margin-bottom: 24px;
}
.iletisim-form-header h3 {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.iletisim-form-header p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.6;
}
.iletisim-form {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(26,58,42,.08);
  border: 1px solid rgba(26,58,42,.07);
}
.iletisim-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.iletisim-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.iletisim-form-group label {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.iletisim-form-group input,
.iletisim-form-group textarea,
.iletisim-form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e0e8e0;
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font-s);
  color: var(--text);
  background: #f7faf7;
  transition: border-color .2s, box-shadow .2s, background .2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.iletisim-form-group input:focus,
.iletisim-form-group textarea:focus,
.iletisim-form-group select:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(193,127,58,.12);
}
.iletisim-form-group input.error,
.iletisim-form-group textarea.error,
.iletisim-form-group select.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231,76,60,.1);
}
.iletisim-form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.iletisim-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a3a2a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-error-msg {
  font-size: 11px;
  color: #e74c3c;
  display: none;
}
.iletisim-form-group.has-error .form-error-msg { display: block; }
.iletisim-form-btn {
  width: 100%;
  padding: 15px 32px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-s);
  letter-spacing: .5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background .25s, transform .25s, box-shadow .25s;
  margin-top: 8px;
}
.iletisim-form-btn:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(193,127,58,.35);
}
.iletisim-form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  gap: 16px;
}
.iletisim-form-success.show { display: flex; }
.iletisim-form-success i {
  font-size: 48px;
  color: #27ae60;
}
.iletisim-form-success h4 {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}
.iletisim-form-success p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 320px;
}

/* ── Çalışma Saatleri Bandı ── */
.iletisim-hours-band {
  background: var(--navy);
  border-radius: 24px;
  padding: 48px 40px;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.iletisim-hours-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}
.iletisim-hours-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,58,42,.92) 0%, rgba(30,61,74,.88) 100%);
  z-index: 0;
}
.iletisim-hours-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.iletisim-hours-item {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 20px 24px;
}
.iletisim-hours-item i {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.hours-day {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: rgba(255,255,255,.5);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hours-time {
  display: block;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.iletisim-hours-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
  align-self: center;
}

/* ── Nav Active ── */
.split-nav a.nav-active,
.desktop-nav ul li a.nav-active {
  color: var(--gold);
}
.split-nav a.nav-active::after,
.desktop-nav ul li a.nav-active::after {
  transform: scaleX(1);
}

/* ── İletişim RTL ── */
body.rtl .iletisim-cards { direction: rtl; }
body.rtl .iletisim-body { direction: rtl; }
body.rtl .iletisim-form-group select {
  background-position: left 14px center;
  padding-right: 16px;
  padding-left: 40px;
}
body.rtl .iletisim-hours-inner { direction: rtl; }
body.rtl .page-hero-breadcrumb { direction: rtl; }

/* ── İletişim Responsive ── */
@media (max-width: 1024px) {
  .iletisim-cards { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .iletisim-body { gap: 28px; }
}

@media (max-width: 900px) {
  .iletisim-cards { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .iletisim-body { grid-template-columns: 1fr; }
  .iletisim-hours-inner { gap: 0; }
  .iletisim-hours-divider { width: 80px; height: 1px; }
}

@media (max-width: 768px) {
  .page-hero { height: 280px; }
  .page-hero-bg { background-attachment: scroll; }
  .iletisim-form { padding: 24px 18px; }
  .iletisim-form-row { grid-template-columns: 1fr; gap: 0; }
  .iletisim-hours-band { padding: 32px 20px; border-radius: 16px; }
  .iletisim-hours-inner { flex-direction: column; gap: 8px; }
  .iletisim-hours-divider { width: 60px; height: 1px; }
  .iletisim-hours-item { padding: 16px 20px; }
}

@media (max-width: 480px) {
  .page-hero { height: 240px; }
  .iletisim-intro { padding: 48px 0 0; }
  .iletisim-cards { margin: 32px 0 40px; }
  .iletisim-card { padding: 28px 20px; }
  .iletisim-hours-band { margin-bottom: 48px; }
}
/* ══════════════════════════════════════
   PAGE HERO — KÜÇÜK VARYANTı
══════════════════════════════════════ */
.page-hero--sm { height: 280px; }
@media (max-width: 768px) { .page-hero--sm { height: 220px; } }

/* ══════════════════════════════════════
   HAKKIMIZDA SAYFASI
══════════════════════════════════════ */
.about-story-sec { background: #f7faf7; padding: 80px 0; }
.about-story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,72px); align-items: center; }
.about-story-visual { position: relative; }
.about-story-img-main { border-radius: 20px; overflow: hidden; height: clamp(300px,35vw,460px); box-shadow: 0 24px 60px rgba(0,0,0,.15); }
.about-story-img-main img { width:100%; height:100%; object-fit:cover; transition:transform .7s; }
.about-story-img-main:hover img { transform:scale(1.04); }
.about-story-img-accent { position:absolute; bottom:-16px; right:-16px; width:clamp(100px,12vw,160px); height:clamp(100px,12vw,160px); border-radius:16px; overflow:hidden; box-shadow:0 10px 30px rgba(0,0,0,.18); border:3px solid #fff; z-index:2; }
.about-story-img-accent img { width:100%; height:100%; object-fit:cover; }
.about-story-stats { display:flex; align-items:center; background:var(--navy); border-radius:14px; padding:16px 20px; margin-top:28px; box-shadow:0 10px 32px rgba(13,31,60,.22); }
.about-stat { flex:1; text-align:center; }
.about-stat-num { display:block; font-family:var(--font); font-size:clamp(20px,2vw,28px); font-weight:900; color:var(--gold); line-height:1; }
.about-stat-lbl { display:block; font-size:11px; color:rgba(255,255,255,.6); letter-spacing:1px; text-transform:uppercase; margin-top:4px; }
.about-stat-divider { width:1px; height:40px; background:rgba(255,255,255,.12); flex-shrink:0; }
.about-features { display:flex; flex-direction:column; gap:14px; margin-top:28px; }
.about-feature { display:flex; align-items:flex-start; gap:14px; padding:14px 16px; border-radius:12px; background:#eef2ee; transition:background .2s; }
.about-feature:hover { background:#ddeadd; }
.about-feature-ico { width:38px; height:38px; flex-shrink:0; background:var(--gold); border-radius:10px; display:flex; align-items:center; justify-content:center; color:var(--navy); font-size:14px; }
.about-feature-title { font-size:14px; font-weight:700; color:var(--navy); margin-bottom:2px; }
.about-feature-desc { font-size:12.5px; color:var(--gray); line-height:1.5; }
.about-values-sec { background:#fff; padding:80px 0; }
.about-values-head { text-align:center; margin-bottom:56px; }
.about-values-head .sec-divider { margin:16px auto 24px; }
.about-values-head .sec-desc { margin:0 auto; }
.about-values-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.about-value-card { background:#f7faf7; border-radius:20px; padding:32px 24px; text-align:center; border:1px solid rgba(26,58,42,.07); box-shadow:0 4px 20px rgba(26,58,42,.06); transition:transform .3s, box-shadow .3s, border-color .3s; }
.about-value-card:hover { transform:translateY(-6px); box-shadow:0 16px 48px rgba(26,58,42,.12); border-color:rgba(193,127,58,.25); }
.about-value-ico { width:64px; height:64px; border-radius:50%; background:var(--navy); color:var(--gold); display:flex; align-items:center; justify-content:center; font-size:24px; margin:0 auto 20px; box-shadow:0 8px 24px rgba(26,58,42,.2); transition:background .3s, transform .3s; }
.about-value-card:hover .about-value-ico { background:var(--gold); color:var(--navy); transform:scale(1.08); }
.about-value-card h3 { font-family:var(--font); font-size:17px; font-weight:700; color:var(--navy); margin-bottom:10px; }
.about-value-card p { font-size:13.5px; color:var(--gray); line-height:1.7; }
.about-chef-sec { background:#f7faf7; padding:80px 0; }
.about-chef-inner { display:grid; grid-template-columns:1.1fr 1fr; gap:clamp(40px,6vw,96px); align-items:center; }
.about-chef-visual { position:relative; }
.about-chef-img-frame { position:relative; padding:16px; }
.about-chef-img { border-radius:20px; overflow:hidden; box-shadow:0 32px 80px rgba(0,0,0,.18); aspect-ratio:4/5; }
.about-chef-img img { width:100%; height:100%; object-fit:cover; transition:transform .7s; }
.about-chef-visual:hover .about-chef-img img { transform:scale(1.04); }
.about-chef-exp-badge { position:absolute; bottom:-8px; left:-8px; width:110px; height:110px; border-radius:50%; background:var(--navy); border:3px solid var(--gold); display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; box-shadow:0 12px 36px rgba(26,58,42,.3); z-index:3; }
.about-chef-exp-badge .exp-num { font-family:var(--font); font-size:28px; font-weight:900; color:var(--gold); line-height:1; }
.about-chef-exp-badge .exp-lbl { font-size:9px; font-weight:700; color:rgba(255,255,255,.6); letter-spacing:1px; text-transform:uppercase; margin-top:4px; line-height:1.4; }
.about-chef-michelin { position:absolute; top:24px; right:-12px; background:var(--gold); color:var(--navy); padding:8px 14px; border-radius:50px; display:flex; align-items:center; gap:6px; font-size:11px; font-weight:800; letter-spacing:1px; text-transform:uppercase; box-shadow:0 8px 24px rgba(193,127,58,.4); z-index:3; }
.about-chef-awards { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin:24px 0; }
.about-chef-award { display:flex; align-items:center; gap:12px; padding:14px 16px; background:#fff; border:1px solid rgba(193,127,58,.15); border-radius:14px; box-shadow:0 2px 12px rgba(26,58,42,.06); transition:border-color .2s, box-shadow .2s, transform .2s; }
.about-chef-award:hover { border-color:rgba(193,127,58,.4); box-shadow:0 6px 24px rgba(26,58,42,.1); transform:translateY(-2px); }
.about-chef-award-ico { width:38px; height:38px; flex-shrink:0; background:rgba(193,127,58,.1); border-radius:10px; display:flex; align-items:center; justify-content:center; color:var(--gold); font-size:14px; }
.about-chef-award-title { font-size:12px; font-weight:700; color:var(--navy); line-height:1.2; }
.about-chef-award-sub { font-size:10px; color:var(--gray); margin-top:2px; line-height:1.3; }
.about-chef-cta { display:inline-flex; align-items:center; gap:10px; padding:14px 28px; background:var(--navy); color:#fff; border-radius:50px; font-weight:700; font-size:13px; transition:all .25s; box-shadow:0 8px 24px rgba(26,58,42,.2); }
.about-chef-cta:hover { background:var(--gold); color:var(--navy); transform:translateY(-2px); }
.about-timeline-sec { background:#fff; padding:80px 0; }
.about-timeline-head { text-align:center; margin-bottom:56px; }
.about-timeline-head .sec-divider { margin:16px auto 24px; }
.about-timeline { position:relative; max-width:800px; margin:0 auto; padding-left:40px; }
.about-timeline::before { content:''; position:absolute; left:16px; top:0; bottom:0; width:2px; background:linear-gradient(to bottom, var(--gold), rgba(193,127,58,.1)); }
.about-timeline-item { position:relative; margin-bottom:48px; padding-left:32px; }
.about-timeline-item:last-child { margin-bottom:0; }
.about-timeline-dot { position:absolute; left:-32px; top:4px; width:16px; height:16px; border-radius:50%; background:var(--gold); border:3px solid #fff; box-shadow:0 0 0 3px rgba(193,127,58,.3); }
.about-timeline-year { font-size:11px; font-weight:800; color:var(--gold); letter-spacing:2px; text-transform:uppercase; margin-bottom:6px; }
.about-timeline-content h3 { font-family:var(--font); font-size:18px; font-weight:700; color:var(--navy); margin-bottom:8px; }
.about-timeline-content p { font-size:14px; color:var(--gray); line-height:1.7; }
.about-cta-band { background:var(--navy); padding:64px 0; position:relative; overflow:hidden; text-align:center; }
.about-cta-band::before { content:''; position:absolute; inset:0; background-image:url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=80'); background-size:cover; background-position:center 35%; background-attachment:fixed; opacity:0.35; z-index:0; }
.about-cta-band::after { content:''; position:absolute; inset:0; background:linear-gradient(to bottom, rgba(26,58,42,.88) 0%, rgba(30,61,74,.82) 100%); z-index:0; }
.about-cta-inner { position:relative; z-index:1; }
.about-cta-inner .sec-label { display:block; text-align:center; }
.about-cta-title { font-family:var(--font); font-size:clamp(26px,4vw,42px); font-weight:700; color:#fff; line-height:1.2; margin-bottom:16px; }
.about-cta-desc { font-size:15px; color:rgba(255,255,255,.65); max-width:480px; margin:0 auto 36px; line-height:1.7; }
.about-cta-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
@media (max-width:1024px) { .about-story-inner { grid-template-columns:1fr; gap:48px; } .about-story-img-accent { display:none; } .about-values-grid { grid-template-columns:repeat(2,1fr); } .about-chef-inner { grid-template-columns:1fr; gap:48px; } .about-chef-michelin { right:8px; } }
@media (max-width:600px) { .about-values-grid { grid-template-columns:1fr; } .about-chef-awards { grid-template-columns:1fr; } .about-timeline { padding-left:28px; } }

/* ══════════════════════════════════════
   GALERİ SAYFASI
══════════════════════════════════════ */
.galeri-page { background:#f7faf7; padding:64px 0 80px; }
.galeri-filter { display:flex; align-items:center; justify-content:center; gap:10px; flex-wrap:wrap; margin-bottom:48px; }
.galeri-filter-btn { padding:9px 22px; border-radius:50px; background:#fff; border:1.5px solid rgba(26,58,42,.12); color:var(--navy); font-size:12px; font-weight:700; letter-spacing:.5px; cursor:pointer; transition:all .25s; }
.galeri-filter-btn:hover { border-color:var(--gold); color:var(--gold); }
.galeri-filter-btn.active { background:var(--navy); color:#fff; border-color:var(--navy); box-shadow:0 4px 16px rgba(26,58,42,.2); }
.galeri-page-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.galeri-page-item { position:relative; border-radius:18px; overflow:hidden; aspect-ratio:4/3; cursor:pointer; border:1px solid rgba(26,58,42,.08); box-shadow:0 4px 20px rgba(26,58,42,.08); transition:border-color .3s, box-shadow .3s, opacity .3s, transform .3s; }
.galeri-page-item:hover { border-color:rgba(193,127,58,.35); box-shadow:0 16px 48px rgba(0,0,0,.18); }
.galeri-page-item img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .6s cubic-bezier(.4,0,.2,1), filter .4s; filter:brightness(.88) saturate(1.05); }
.galeri-page-item:hover img { transform:scale(1.07); filter:brightness(.65) saturate(1.1); }
.galeri-page-overlay { position:absolute; inset:0; background:linear-gradient(to top, rgba(15,30,20,.85) 0%, rgba(15,30,20,.1) 50%, transparent 100%); display:flex; align-items:flex-end; transition:background .4s; }
.galeri-page-item:hover .galeri-page-overlay { background:linear-gradient(to top, rgba(15,30,20,.92) 0%, rgba(15,30,20,.3) 60%, transparent 100%); }
.galeri-page-overlay-content { padding:18px 20px; transform:translateY(4px); transition:transform .35s; }
.galeri-page-item:hover .galeri-page-overlay-content { transform:translateY(0); }
.galeri-page-cat { display:block; font-size:9px; font-weight:800; color:var(--gold); letter-spacing:3px; text-transform:uppercase; margin-bottom:5px; }
.galeri-page-title { display:block; font-family:var(--font); font-size:15px; font-weight:700; color:#fff; opacity:0; transform:translateY(6px); transition:opacity .35s .05s, transform .35s .05s; }
.galeri-page-item:hover .galeri-page-title { opacity:1; transform:translateY(0); }
.galeri-page-zoom { position:absolute; top:14px; right:14px; width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.25); color:#fff; font-size:13px; display:flex; align-items:center; justify-content:center; opacity:0; transform:scale(.8); transition:opacity .25s, transform .25s, background .2s; }
.galeri-page-item:hover .galeri-page-zoom { opacity:1; transform:scale(1); }
.galeri-page-zoom:hover { background:var(--gold); border-color:var(--gold); color:var(--navy); }
#galeriPageLightbox { position:fixed; inset:0; z-index:99999; display:flex; align-items:center; justify-content:center; visibility:hidden; pointer-events:none; }
#galeriPageLightbox.open { visibility:visible; pointer-events:all; }
#galeriPageLightbox .glb-backdrop { position:absolute; inset:0; background:rgba(0,0,0,.92); opacity:0; transition:opacity .35s; }
#galeriPageLightbox.open .glb-backdrop { opacity:1; }
#galeriPageLightbox .glb-inner { position:relative; z-index:1; display:flex; align-items:center; gap:16px; max-width:90vw; max-height:90vh; transform:scale(.92); opacity:0; transition:transform .35s cubic-bezier(.4,0,.2,1), opacity .35s; }
#galeriPageLightbox.open .glb-inner { transform:scale(1); opacity:1; }
#galeriPageLightbox .glb-img-wrap { position:relative; border-radius:16px; overflow:hidden; box-shadow:0 32px 80px rgba(0,0,0,.6); max-width:80vw; max-height:80vh; }
#galeriPageLightbox .glb-img { display:block; max-width:80vw; max-height:72vh; object-fit:contain; border-radius:16px; }
#galeriPageLightbox .glb-caption { position:absolute; bottom:0; left:0; right:0; padding:16px 20px; background:linear-gradient(to top, rgba(0,0,0,.8), transparent); border-radius:0 0 16px 16px; }
#galeriPageLightbox .glb-label { display:block; font-size:10px; font-weight:800; color:#c17f3a; letter-spacing:3px; text-transform:uppercase; margin-bottom:4px; }
#galeriPageLightbox .glb-title { display:block; font-family:Georgia,serif; font-size:18px; font-weight:700; color:#fff; }
#galeriPageLightbox .glb-close { position:absolute; top:-48px; right:0; width:40px; height:40px; border-radius:50%; background:rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.25); color:#fff; font-size:16px; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .2s; }
#galeriPageLightbox .glb-close:hover { background:rgba(255,255,255,.3); }
#galeriPageLightbox .glb-prev, #galeriPageLightbox .glb-next { width:52px; height:52px; border-radius:50%; flex-shrink:0; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.2); color:#fff; font-size:18px; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .2s, border-color .2s; }
#galeriPageLightbox .glb-prev:hover, #galeriPageLightbox .glb-next:hover { background:#c17f3a; border-color:#c17f3a; }
@media (max-width:900px) { .galeri-page-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px) { .galeri-page-grid { grid-template-columns:1fr; } #galeriPageLightbox .glb-prev, #galeriPageLightbox .glb-next { display:none; } }

/* ══════════════════════════════════════
   BLOG LİSTE SAYFASI
══════════════════════════════════════ */
.blog-page { background:#f7faf7; padding:64px 0 80px; }
.blog-page-filter { display:flex; align-items:center; justify-content:center; gap:10px; flex-wrap:wrap; margin-bottom:48px; }
.blog-filter-btn { padding:9px 22px; border-radius:50px; background:#fff; border:1.5px solid rgba(26,58,42,.12); color:var(--navy); font-size:12px; font-weight:700; letter-spacing:.5px; cursor:pointer; transition:all .25s; }
.blog-filter-btn:hover { border-color:var(--gold); color:var(--gold); }
.blog-filter-btn.active { background:var(--navy); color:#fff; border-color:var(--navy); box-shadow:0 4px 16px rgba(26,58,42,.2); }
.blog-page-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; align-items:start; }
.blog-page-card { display:flex; flex-direction:column; border-radius:20px; overflow:hidden; background:#fff; border:1px solid rgba(26,58,42,.08); box-shadow:0 4px 24px rgba(26,58,42,.07); transition:transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s, border-color .35s; position:relative; }
.blog-page-card:hover { transform:translateY(-8px); box-shadow:0 20px 56px rgba(26,58,42,.13); border-color:rgba(193,127,58,.25); }
.blog-page-card::after { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg, var(--gold), var(--gold-l)); transform:scaleX(0); transform-origin:left; transition:transform .35s; z-index:2; }
.blog-page-card:hover::after { transform:scaleX(1); }
.blog-page-card--featured { grid-column:1 / -1; flex-direction:row; }
.blog-page-card--featured .blog-page-card-img { flex:0 0 45%; height:auto; min-height:280px; }
.blog-page-card--featured .blog-page-card-body { flex:1; padding:36px 32px; }
.blog-page-card-img-link { display:block; }
.blog-page-card-img { height:220px; overflow:hidden; position:relative; flex-shrink:0; }
.blog-page-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .6s cubic-bezier(.4,0,.2,1); }
.blog-page-card:hover .blog-page-card-img img { transform:scale(1.06); }
.blog-page-card-img::after { content:''; position:absolute; inset:0; background:linear-gradient(to top, rgba(26,58,42,.3) 0%, transparent 55%); }
.blog-page-card-body { padding:22px 22px 24px; display:flex; flex-direction:column; flex:1; }
.blog-page-card-meta { display:flex; align-items:center; gap:16px; margin-bottom:12px; flex-wrap:wrap; }
.blog-card-date { font-size:10px; color:var(--gold); font-weight:700; letter-spacing:2px; text-transform:uppercase; display:flex; align-items:center; gap:5px; }
.blog-card-date i { font-size:9px; }
.blog-page-read-time { font-size:10px; color:var(--gray); font-weight:600; display:flex; align-items:center; gap:5px; }
.blog-page-read-time i { font-size:9px; }
.blog-page-card-body h2 { font-family:var(--font); font-size:17px; font-weight:700; color:var(--navy); line-height:1.35; margin-bottom:10px; }
.blog-page-card-body h2 a { color:inherit; transition:color .2s; }
.blog-page-card-body h2 a:hover { color:var(--gold); }
.blog-page-card-body p { font-size:13.5px; color:var(--gray); line-height:1.75; margin-bottom:20px; flex:1; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.blog-page-card--featured .blog-page-card-body h2 { font-size:22px; }
.blog-page-card--featured .blog-page-card-body p { -webkit-line-clamp:4; }
.blog-pagination { display:flex; align-items:center; justify-content:center; gap:8px; margin-top:56px; flex-wrap:wrap; }
.blog-pag-btn { width:40px; height:40px; border-radius:10px; background:#fff; border:1.5px solid rgba(26,58,42,.12); color:var(--navy); font-size:14px; font-weight:700; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:all .2s; }
.blog-pag-btn:hover { border-color:var(--gold); color:var(--gold); }
.blog-pag-btn--active { background:var(--navy); color:#fff; border-color:var(--navy); }
.blog-pag-dots { color:var(--gray); font-size:14px; padding:0 4px; }
@media (max-width:1024px) { .blog-page-card--featured { flex-direction:column; grid-column:auto; } .blog-page-card--featured .blog-page-card-img { flex:none; height:220px; } .blog-page-card--featured .blog-page-card-body { padding:22px; } }
@media (max-width:900px) { .blog-page-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px) { .blog-page-grid { grid-template-columns:1fr; } }

/* ══════════════════════════════════════
   BLOG DETAY SAYFASI
══════════════════════════════════════ */
.bdetay-main { background:#f7faf7; padding:64px 0 80px; }
.bdetay-layout { display:grid; grid-template-columns:1fr 340px; gap:40px; align-items:start; }
.bdetay-article { background:#fff; border-radius:24px; overflow:hidden; box-shadow:0 4px 32px rgba(26,58,42,.08); border:1px solid rgba(26,58,42,.07); }
.bdetay-article-head { padding:36px 40px 0; }
.bdetay-meta { display:flex; align-items:center; gap:16px; flex-wrap:wrap; margin-bottom:16px; }
.bdetay-chip { background:var(--gold); color:var(--navy); padding:5px 14px; border-radius:50px; font-size:10px; font-weight:800; letter-spacing:1px; text-transform:uppercase; }
.bdetay-meta-item { font-size:12px; color:var(--gray); display:flex; align-items:center; gap:5px; }
.bdetay-meta-item i { color:var(--gold); font-size:10px; }
.bdetay-article-title { font-family:var(--font); font-size:clamp(22px,3vw,32px); font-weight:700; color:var(--navy); line-height:1.25; margin-bottom:20px; }
.bdetay-author { display:flex; align-items:center; gap:14px; padding:16px 0; border-top:1px solid rgba(26,58,42,.08); border-bottom:1px solid rgba(26,58,42,.08); flex-wrap:wrap; }
.bdetay-author-avatar { width:48px; height:48px; border-radius:50%; overflow:hidden; flex-shrink:0; border:2px solid var(--gold); }
.bdetay-author-avatar img { width:100%; height:100%; object-fit:cover; }
.bdetay-author-info { display:flex; flex-direction:column; gap:2px; flex:1; }
.bdetay-author-name { font-size:14px; font-weight:700; color:var(--navy); }
.bdetay-author-role { font-size:11px; color:var(--gold); font-weight:600; letter-spacing:.5px; }
.bdetay-share { display:flex; align-items:center; gap:10px; margin-left:auto; }
.bdetay-share span { font-size:11px; color:var(--gray); font-weight:600; letter-spacing:.5px; }
.bdetay-share a { width:32px; height:32px; border-radius:8px; background:rgba(26,58,42,.06); border:1px solid rgba(26,58,42,.1); color:var(--navy); font-size:13px; display:flex; align-items:center; justify-content:center; transition:all .2s; }
.bdetay-share a:hover { background:var(--navy); color:#fff; border-color:var(--navy); }
.bdetay-cover { margin:0; }
.bdetay-cover img { width:100%; height:clamp(240px,35vw,480px); object-fit:cover; display:block; }
.bdetay-cover-caption { font-size:12px; color:var(--gray); text-align:center; padding:10px 40px; font-style:italic; background:#f7faf7; }
.bdetay-content { padding:36px 40px; }

.bdetay-lead { font-size:17px; color:var(--navy); line-height:1.85; font-weight:500; margin-bottom:28px; border-left:3px solid var(--gold); padding-left:20px; }
.bdetay-content h2 { font-family:var(--font); font-size:22px; font-weight:700; color:var(--navy); margin:36px 0 14px; }
.bdetay-content h3 { font-family:var(--font); font-size:18px; font-weight:700; color:var(--navy); margin:28px 0 10px; }
.bdetay-content p { font-size:15px; color:var(--gray); line-height:1.85; margin-bottom:20px; }
.bdetay-content a { color:var(--gold); text-decoration:underline; text-underline-offset:3px; }
.bdetay-content a:hover { color:var(--navy); }
.bdetay-blockquote { margin:32px 0; padding:24px 28px; background:rgba(193,127,58,.06); border-left:4px solid var(--gold); border-radius:0 16px 16px 0; }
.bdetay-blockquote p { font-family:var(--font); font-size:18px; font-style:italic; color:var(--navy); line-height:1.7; margin:0 0 10px; }
.bdetay-blockquote cite { font-size:12px; color:var(--gold); font-weight:700; letter-spacing:1px; text-transform:uppercase; font-style:normal; }
.bdetay-img-pair { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin:28px 0; }
.bdetay-img-pair figure { margin:0; border-radius:14px; overflow:hidden; }
.bdetay-img-pair figure img { width:100%; height:200px; object-fit:cover; display:block; transition:transform .5s; }
.bdetay-img-pair figure:hover img { transform:scale(1.04); }
.bdetay-img-pair figcaption { font-size:11px; color:var(--gray); text-align:center; padding:8px 4px; font-style:italic; }
.bdetay-list { list-style:none; padding:0; margin:0 0 24px; display:flex; flex-direction:column; gap:10px; }
.bdetay-list li { display:flex; align-items:flex-start; gap:12px; font-size:14.5px; color:var(--gray); line-height:1.6; }
.bdetay-list li::before { content:'\f00c'; font-family:'Font Awesome 6 Free'; font-weight:900; color:var(--gold); font-size:11px; margin-top:4px; flex-shrink:0; }
.bdetay-cta-box { background:var(--navy); border-radius:20px; padding:32px 36px; margin:36px 0; display:flex; align-items:center; gap:24px; flex-wrap:wrap; }
.bdetay-cta-box-text h3 { font-family:var(--font); font-size:20px; font-weight:700; color:#fff; margin-bottom:6px; }
.bdetay-cta-box-text p { font-size:13.5px; color:rgba(255,255,255,.65); line-height:1.6; margin:0; }
.bdetay-cta-box-btn { margin-left:auto; flex-shrink:0; }
.bdetay-tags { padding:0 40px 28px; display:flex; align-items:center; gap:10px; flex-wrap:wrap; border-top:1px solid rgba(26,58,42,.08); padding-top:24px; }
.bdetay-tags-label { font-size:11px; font-weight:700; color:var(--gray); letter-spacing:1px; text-transform:uppercase; margin-right:4px; }
.bdetay-tag { padding:5px 14px; border-radius:50px; background:rgba(26,58,42,.06); border:1px solid rgba(26,58,42,.1); color:var(--navy); font-size:12px; font-weight:600; transition:all .2s; }
.bdetay-tag:hover { background:var(--navy); color:#fff; border-color:var(--navy); }
.bdetay-author-box { margin:0 40px 40px; padding:28px 32px; background:#f7faf7; border-radius:20px; border:1px solid rgba(26,58,42,.08); display:flex; gap:20px; align-items:flex-start; }
.bdetay-author-box-avatar { width:72px; height:72px; border-radius:50%; overflow:hidden; flex-shrink:0; border:3px solid var(--gold); box-shadow:0 4px 16px rgba(193,127,58,.25); }
.bdetay-author-box-avatar img { width:100%; height:100%; object-fit:cover; }
.bdetay-author-box-info { flex:1; }
.bdetay-author-box-label { font-size:10px; font-weight:800; color:var(--gold); letter-spacing:2px; text-transform:uppercase; margin-bottom:4px; }
.bdetay-author-box-name { font-family:var(--font); font-size:18px; font-weight:700; color:var(--navy); margin-bottom:8px; }
.bdetay-author-box-bio { font-size:13.5px; color:var(--gray); line-height:1.7; }
.bdetay-sidebar { display:flex; flex-direction:column; gap:24px; position:sticky; top:100px; }
.bdetay-widget { background:#fff; border-radius:20px; padding:24px; border:1px solid rgba(26,58,42,.08); box-shadow:0 4px 20px rgba(26,58,42,.06); }
.bdetay-widget-title { font-family:var(--font); font-size:16px; font-weight:700; color:var(--navy); margin-bottom:18px; padding-bottom:12px; border-bottom:2px solid rgba(193,127,58,.2); display:flex; align-items:center; gap:8px; }
.bdetay-widget-title i { color:var(--gold); font-size:14px; }
.bdetay-related-list { display:flex; flex-direction:column; gap:14px; }
.bdetay-related-item { display:flex; gap:12px; align-items:flex-start; }
.bdetay-related-img { width:64px; height:64px; border-radius:10px; overflow:hidden; flex-shrink:0; }
.bdetay-related-img img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.bdetay-related-item:hover .bdetay-related-img img { transform:scale(1.08); }
.bdetay-related-info { flex:1; }
.bdetay-related-date { font-size:10px; color:var(--gold); font-weight:700; letter-spacing:1px; text-transform:uppercase; margin-bottom:4px; }
.bdetay-related-title { font-size:13px; font-weight:700; color:var(--navy); line-height:1.4; transition:color .2s; }
.bdetay-related-item:hover .bdetay-related-title { color:var(--gold); }
.bdetay-cat-list { display:flex; flex-direction:column; gap:8px; }
.bdetay-cat-item { display:flex; align-items:center; justify-content:space-between; padding:10px 14px; border-radius:10px; background:#f7faf7; border:1px solid rgba(26,58,42,.07); transition:all .2s; cursor:pointer; }
.bdetay-cat-item:hover { background:var(--navy); border-color:var(--navy); }
.bdetay-cat-item:hover .bdetay-cat-name, .bdetay-cat-item:hover .bdetay-cat-count { color:#fff; }
.bdetay-cat-name { font-size:13px; font-weight:600; color:var(--navy); display:flex; align-items:center; gap:8px; }
.bdetay-cat-name i { color:var(--gold); font-size:11px; }
.bdetay-cat-count { font-size:11px; font-weight:700; color:var(--gray); background:rgba(26,58,42,.08); padding:2px 8px; border-radius:50px; }
.bdetay-rez-widget { background:var(--navy); border-radius:20px; padding:28px 24px; text-align:center; }
.bdetay-rez-widget-ico { width:56px; height:56px; border-radius:50%; background:rgba(193,127,58,.15); border:2px solid rgba(193,127,58,.3); color:var(--gold); font-size:22px; display:flex; align-items:center; justify-content:center; margin:0 auto 16px; }
.bdetay-rez-widget h3 { font-family:var(--font); font-size:18px; font-weight:700; color:#fff; margin-bottom:8px; }
.bdetay-rez-widget p { font-size:13px; color:rgba(255,255,255,.6); line-height:1.6; margin-bottom:20px; }
.bdetay-nav { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-top:40px; }
.bdetay-nav-item { background:#fff; border-radius:16px; padding:20px 24px; border:1px solid rgba(26,58,42,.08); box-shadow:0 4px 16px rgba(26,58,42,.06); transition:all .3s; display:flex; flex-direction:column; gap:6px; }
.bdetay-nav-item:hover { border-color:rgba(193,127,58,.3); box-shadow:0 12px 36px rgba(26,58,42,.1); transform:translateY(-3px); }
.bdetay-nav-item--next { text-align:right; }
.bdetay-nav-label { font-size:10px; font-weight:800; color:var(--gold); letter-spacing:2px; text-transform:uppercase; display:flex; align-items:center; gap:6px; }
.bdetay-nav-item--next .bdetay-nav-label { justify-content:flex-end; }
.bdetay-nav-title { font-family:var(--font); font-size:15px; font-weight:700; color:var(--navy); line-height:1.35; transition:color .2s; }
.bdetay-nav-item:hover .bdetay-nav-title { color:var(--gold); }
.btn-gold { display:inline-flex; align-items:center; gap:8px; padding:12px 24px; background:var(--gold); color:var(--navy); border-radius:50px; font-weight:700; font-size:13px; transition:all .25s; box-shadow:0 6px 20px rgba(193,127,58,.3); border:none; cursor:pointer; }
.btn-gold:hover { background:var(--gold-l); transform:translateY(-2px); box-shadow:0 10px 28px rgba(193,127,58,.4); }
.btn-gold--full { width:100%; justify-content:center; }
@media (max-width:1100px) { .bdetay-layout { grid-template-columns:1fr; } .bdetay-sidebar { position:static; } }
@media (max-width:768px) { .bdetay-article-head { padding:24px 20px 0; } .bdetay-content { padding:24px 20px; } .bdetay-tags { padding:16px 20px 20px; } .bdetay-author-box { margin:0 20px 28px; padding:20px; flex-direction:column; } .bdetay-img-pair { grid-template-columns:1fr; } .bdetay-cta-box { flex-direction:column; } .bdetay-cta-box-btn { margin-left:0; width:100%; } .bdetay-nav { grid-template-columns:1fr; } .bdetay-cover-caption { padding:10px 20px; } }

/* ── bdetay-rez-widget buton görünürlük düzeltmesi ── */
.bdetay-rez-widget .btn-gold--full {
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  border: 2px solid var(--gold-l);
}
.bdetay-rez-widget .btn-gold--full:hover {
  background: var(--gold-l);
  border-color: #fff;
}

/* ── bdetay-cat-item link düzeltmesi ── */
.bdetay-cat-item { cursor: pointer; }
.bdetay-cat-item a.bdetay-cat-name { text-decoration: none; flex: 1; }
.bdetay-cat-item:hover a.bdetay-cat-name { color: #fff; }

/* ══════════════════════════════════════
   TAM MOBİL UYUMLULUK — EK RESPONSIVE KURALLAR
   (Audit sonrası eksik bulunan kurallar)
══════════════════════════════════════ */

/* ── iOS / Android: parallax background-attachment:fixed çalışmaz ── */
@media (max-width: 1024px) {
  .cta-band::before,
  footer::before,
  .about-cta-band::before,
  .iletisim-hours-band::before,
  .page-hero-bg {
    background-attachment: scroll;
  }
}

/* ── Rezervasyon Bandı — Mobil İyileştirme ── */
@media (max-width: 768px) {
  .rez-brand-col {
    width: 100%;
    min-width: 0;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.07);
    padding: 20px 20px;
    justify-content: center;
  }
  .rez-brand-col::after { display: none; }
  .rez-field {
    padding: 16px 20px;
    gap: 12px;
  }
  .rez-ico, .rez-brand-icon, .rez-submit-icon {
    width: 42px; height: 42px;
    font-size: 16px;
    border-radius: 10px;
  }
  .rez-val { font-size: 14px; }
  .rez-val select, .rez-val input[type="date"] { font-size: 14px; }
  .rez-kisi-num { font-size: 18px; }
  .rez-submit {
    flex-direction: row;
    gap: 12px;
    padding: 16px 20px;
    border-left: none;
    border-top: 1px solid rgba(193,127,58,.2);
  }
}

@media (max-width: 480px) {
  .rez-brand-title { font-size: 18px; }
  .rez-brand-sub { font-size: 9px; }
  .rez-field { padding: 14px 16px; }
  .rez-lbl { font-size: 8px; }
  .rez-val { font-size: 13px; }
}

/* ── Takvim Popup — Mobilde tam genişlik ── */
@media (max-width: 480px) {
  .rez-cal-popup {
    width: calc(100vw - 32px);
    left: 16px !important;
    right: 16px !important;
  }
}

/* ── Galeri Grid (Ana Sayfa) — Responsive ── */
@media (max-width: 900px) {
  .galeri-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .galeri-item--large,
  .galeri-item--tall {
    grid-column: auto;
    grid-row: auto;
  }
}
@media (max-width: 600px) {
  .galeri-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Şef Bölümü — Ek Mobil Kurallar ── */
@media (max-width: 768px) {
  .sef-stats {
    padding: 16px 12px;
    gap: 0;
  }
  .sef-stat-num { font-size: 22px; }
  .sef-stat-lbl { font-size: 9px; }
  .sef-exp-badge {
    width: 90px; height: 90px;
    bottom: -4px; left: -4px;
  }
  .sef-exp-num { font-size: 22px; }
  .sef-exp-num span { font-size: 14px; }
  .sef-michelin-badge { right: 4px; font-size: 10px; padding: 6px 10px; }
}
@media (max-width: 480px) {
  .sef-awards-grid { grid-template-columns: 1fr; }
  .sef-stats { flex-direction: column; gap: 8px; }
  .sef-stat-divider { width: 40px; height: 1px; }
  .sef-exp-badge { display: none; }
  .sef-michelin-badge { position: static; margin-bottom: 12px; align-self: flex-start; }
  .sef-img-frame { padding: 8px; }
}

/* ── Hikayemiz — Ek Mobil Kurallar ── */
@media (max-width: 480px) {
  .hikaye-feature { padding: 12px 14px; gap: 10px; }
  .hikaye-feature-ico { width: 32px; height: 32px; font-size: 12px; border-radius: 8px; }
  .hikaye-feature-title { font-size: 13px; }
  .hikaye-feature-desc { font-size: 11.5px; }
  .btn-hikaye { width: 100%; justify-content: center; }
}

/* ── Konum Bölümü — Ek Mobil Kurallar ── */
@media (max-width: 480px) {
  .konum-slides { height: 240px; }
  .konum-item-img { width: 52px; height: 52px; }
  .konum-item-info h5 { font-size: 13px; }
}

/* ── Blog Kartları — Ek Mobil Kurallar ── */
@media (max-width: 480px) {
  .blog-card--featured .blog-card-img,
  .blog-card--small .blog-card-img { height: 180px; }
  .blog-card--featured .blog-card-body,
  .blog-card--small .blog-card-body { padding: 16px 16px 18px; }
  .blog-card--featured .blog-card-body h3,
  .blog-card--small .blog-card-body h3 { font-size: 15px; }
  .blog-link { padding: 8px 14px; font-size: 10px; }
}

/* ── CTA Band — Ek Mobil Kurallar ── */
@media (max-width: 480px) {
  .cta-band { padding: 48px 0; }
  .cta-title { font-size: clamp(22px, 6vw, 32px); }
  .cta-desc { font-size: 14px; }
  .cta-btn-gold, .cta-btn-ghost { padding: 13px 24px; font-size: 13px; }
}

/* ── Footer — Ek Mobil Kurallar ── */
@media (max-width: 480px) {
  footer { padding: 36px 0 0; }
  .foot-logo-name { font-size: 17px; letter-spacing: 3px; }
  .foot-col h5 { font-size: 9px; }
  .foot-bottom { font-size: 11.5px; }
  .foot-bottom-links { gap: 14px; }
  .foot-bottom-links a { font-size: 11.5px; }
}

/* ── Hakkımızda Sayfası — Ek Mobil Kurallar ── */
@media (max-width: 768px) {
  .about-story-sec,
  .about-values-sec,
  .about-chef-sec,
  .about-timeline-sec { padding: 56px 0; }
  .about-cta-band { padding: 48px 0; }
  .about-story-stats { flex-wrap: wrap; }
  .about-chef-exp-badge { width: 90px; height: 90px; }
  .about-chef-exp-badge .exp-num { font-size: 22px; }
}
@media (max-width: 480px) {
  .about-story-sec,
  .about-values-sec,
  .about-chef-sec,
  .about-timeline-sec { padding: 40px 0; }
  .about-story-stats { flex-direction: column; gap: 8px; }
  .about-stat-divider { width: 40px; height: 1px; }
  .about-stat-num { font-size: 22px; }
  .about-timeline-item { padding-left: 20px; margin-bottom: 32px; }
  .about-timeline-dot { left: -20px; width: 12px; height: 12px; }
  .about-timeline-content h3 { font-size: 16px; }
  .about-cta-band { padding: 40px 0; }
  .about-cta-title { font-size: clamp(20px, 6vw, 30px); }
  .about-chef-exp-badge { display: none; }
  .about-chef-michelin { position: static; margin-bottom: 12px; align-self: flex-start; }
  .about-chef-img-frame { padding: 8px; }
  .about-feature { padding: 12px 14px; }
  .about-feature-ico { width: 32px; height: 32px; font-size: 12px; }
}

/* ── Galeri Sayfası — Ek Mobil Kurallar ── */
@media (max-width: 768px) {
  .galeri-page { padding: 48px 0 64px; }
  .galeri-filter { gap: 8px; margin-bottom: 32px; }
  .galeri-filter-btn { padding: 7px 16px; font-size: 11px; }
}
@media (max-width: 480px) {
  .galeri-page { padding: 32px 0 48px; }
  .galeri-page-grid { gap: 12px; }
  .galeri-filter-btn { padding: 6px 14px; font-size: 10px; }
}

/* ── Blog Liste Sayfası — Ek Mobil Kurallar ── */
@media (max-width: 768px) {
  .blog-page { padding: 48px 0 64px; }
  .blog-page-filter { gap: 8px; margin-bottom: 32px; }
  .blog-filter-btn { padding: 7px 16px; font-size: 11px; }
  .blog-page-card-img { height: 180px; }
  .blog-pagination { margin-top: 40px; }
}
@media (max-width: 480px) {
  .blog-page { padding: 32px 0 48px; }
  .blog-page-card-body { padding: 16px 16px 18px; }
  .blog-page-card-body h2 { font-size: 15px; }
  .blog-pag-btn { width: 36px; height: 36px; font-size: 13px; }
}

/* ── Blog Detay Sayfası — Ek Mobil Kurallar ── */
@media (max-width: 480px) {
  .bdetay-main { padding: 32px 0 48px; }
  .bdetay-article-head { padding: 18px 16px 0; }
  .bdetay-content { padding: 18px 16px; }
  .bdetay-tags { padding: 12px 16px 16px; }
  .bdetay-author-box { margin: 0 16px 24px; padding: 16px; }
  .bdetay-author-box-avatar { width: 56px; height: 56px; }
  .bdetay-article-title { font-size: clamp(18px, 5vw, 24px); }
  .bdetay-lead { font-size: 15px; padding-left: 14px; }
  .bdetay-content h2 { font-size: 18px; }
  .bdetay-content h3 { font-size: 16px; }
  .bdetay-content p { font-size: 14px; }
  .bdetay-blockquote { padding: 16px 18px; }
  .bdetay-blockquote p { font-size: 15px; }
  .bdetay-cta-box { padding: 20px 18px; }
  .bdetay-cta-box-text h3 { font-size: 17px; }
  .bdetay-nav-item { padding: 14px 16px; }
  .bdetay-nav-title { font-size: 13px; }
  .bdetay-widget { padding: 18px; }
  .bdetay-cover img { height: clamp(180px, 45vw, 280px); }
}

/* ── İletişim Sayfası — Ek Mobil Kurallar ── */
@media (max-width: 480px) {
  .iletisim-map-wrap { height: 260px; }
  .iletisim-nearby { padding: 16px 16px; }
  .iletisim-hours-item i { font-size: 22px; }
  .hours-time { font-size: 17px; }
}

/* ── Hero — Küçük Ekran ── */
@media (max-width: 480px) {
  .hero { min-height: 420px; }
  .hero-text-slide .slide-label { font-size: 10px; letter-spacing: 3px; margin-bottom: 12px; }
  .hero-text-slide p { font-size: 13px; margin-bottom: 24px; }
  .hero-btn { padding: 12px 24px; font-size: 13px; }
  .hero-dots { bottom: 20px; }
}

/* ── Genel Container — Çok Küçük Ekranlar ── */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .top-bar-inner { padding: 0 12px; }
  .top-bar-lang { padding: 3px; }
  .lang-btn { padding: 5px 8px; gap: 4px; }
  .lang-btn .lang-code { font-size: 10px; }
  .lang-btn .lang-flag { font-size: 14px; }
  .hero-btn { padding: 11px 20px; font-size: 12px; }
  .sec-title { font-size: clamp(20px, 6vw, 28px); }
}

/* ── Touch Cihazlar: Hover Efektlerini Kaldır ── */
@media (hover: none) and (pointer: coarse) {
  .galeri-page-title { opacity: 1; transform: translateY(0); }
  .galeri-overlay-content > span:not(.galeri-overlay-label) { opacity: 1; transform: translateY(0); }
  .galeri-slide .galeri-overlay-content > span:not(.galeri-overlay-label) { opacity: 1; transform: translateY(0); }
  .menu-card-hover-info { opacity: 1; transform: translateY(0); }
  .galeri-page-zoom { opacity: 1; transform: scale(1); }
}

/* ── Yatay Mod (Landscape) — Kısa Ekranlar ── */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: 320px; height: calc(100vh - 110px); }
  .page-hero { height: 200px; }
  .page-hero--sm { height: 160px; }
  .rez-brand-col { padding: 12px 20px; }
  .rez-field { padding: 12px 16px; }
}

/* ══════════════════════════════════════
   FOOTER MOBİL ACCORDION
══════════════════════════════════════ */
@media (max-width: 768px) {
  /* foot-col başlığı tıklanabilir toggle */
  .foot-col h5 {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    padding-bottom: 14px;
    user-select: none;
  }
  .foot-col h5::after {
    content: '\f078'; /* fa-chevron-down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    color: var(--gold);
    transition: transform .3s ease;
    flex-shrink: 0;
  }
  .foot-col.open h5::after {
    transform: rotate(180deg);
  }
  /* İçerik varsayılan kapalı */
  .foot-col ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, margin-top .35s ease;
    margin-top: 0;
  }
  /* Açık halde */
  .foot-col.open ul {
    max-height: 400px;
    margin-top: 14px;
  }
  /* foot-brand her zaman görünür */
  .foot-brand { display: block !important; }
}

/* ══════════════════════════════════════
   REZERVASYON MODAL — VIP PREMIUM
══════════════════════════════════════ */

/* Overlay */
.rez-modal-overlay {
  position: fixed; inset: 0; z-index: 999999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(10,20,14,.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .35s ease, visibility .35s ease;
}
.rez-modal-overlay.open {
  opacity: 1; visibility: visible; pointer-events: all;
}

/* Modal kutusu — koyu navy, altın detaylar */
.rez-modal {
  position: relative;
  background: linear-gradient(160deg, #0f2318 0%, #1a3a2a 60%, #0f2318 100%);
  border: 1px solid rgba(193,127,58,.35);
  border-radius: 28px;
  padding: 0;
  width: 100%; max-width: 580px;
  max-height: 92vh; overflow-y: auto;
  box-shadow:
    0 40px 100px rgba(0,0,0,.6),
    0 0 0 1px rgba(193,127,58,.12),
    inset 0 1px 0 rgba(255,255,255,.06);
  transform: translateY(28px) scale(.96);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  scrollbar-width: thin;
  scrollbar-color: rgba(193,127,58,.3) transparent;
}
.rez-modal-overlay.open .rez-modal {
  transform: translateY(0) scale(1);
}
.rez-modal::-webkit-scrollbar { width: 4px; }
.rez-modal::-webkit-scrollbar-track { background: transparent; }
.rez-modal::-webkit-scrollbar-thumb { background: rgba(193,127,58,.35); border-radius: 4px; }

/* Üst altın çizgi */
.rez-modal::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #8b5e1a 10%, #c17f3a 25%, #e8a85a 40%, #f5c97a 50%, #e8a85a 60%, #c17f3a 75%, #8b5e1a 90%, transparent 100%);
  background-size: 200% 100%;
  animation: gold-wave 3s ease-in-out infinite;
  border-radius: 28px 28px 0 0;
  z-index: 1;
}

/* Kapat butonu — modal içinde sağ üst, her zaman görünür */
.rez-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(193,127,58,.15);
  border: 1.5px solid rgba(193,127,58,.4);
  color: var(--gold); font-size: 15px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  transition: background .2s, border-color .2s, transform .25s, color .2s;
  z-index: 10;
}
.rez-modal-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: rotate(90deg) scale(1.08);
}

/* Başlık alanı */
.rez-modal-top {
  text-align: center;
  padding: 40px 40px 24px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  position: relative;
}
/* Dekoratif ikon — büyük, belirgin */
.rez-modal-top::before {
  content: '\f073';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 36px;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
  opacity: .95;
  filter: drop-shadow(0 4px 16px rgba(193,127,58,.5));
  animation: modal-icon-float 3s ease-in-out infinite;
}
@keyframes modal-icon-float {
  0%, 100% { transform: translateY(0) scale(1); }
  40%       { transform: translateY(-5px) scale(1.08); }
  70%       { transform: translateY(2px) scale(.97); }
}

/* Arka plan watermark ikon */
.rez-modal-top::after {
  content: '\f073';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 180px;
  color: rgba(193,127,58,.04);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}
.rez-modal-title {
  font-family: var(--font);
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.15;
  letter-spacing: .3px;
}
.rez-modal-sub {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
  max-width: 420px;
  margin: 0 auto;
}

/* Form alanı */
.rez-modal-form {
  display: flex; flex-direction: column; gap: 12px;
  padding: 28px 36px 32px;
}

/* İki kolonlu satır */
.rmf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Alan */
.rmf-field { display: flex; flex-direction: column; gap: 5px; }
.rmf-field--full { grid-column: 1 / -1; }

/* Label */
.rmf-label {
  font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,.4);
  letter-spacing: 2px; text-transform: uppercase;
  padding-left: 4px;
}

/* Input / Textarea */
.rmf-input {
  width: 100%;
  padding: 14px 20px;
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 14px;
  font-size: 14px;
  font-family: var(--font-s);
  color: #fff;
  background: rgba(255,255,255,.06);
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  appearance: none;
  -webkit-appearance: none;
}
.rmf-input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 3px rgba(193,127,58,.18);
}
.rmf-input.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231,76,60,.15);
}
.rmf-input::placeholder { color: rgba(255,255,255,.25); }

/* Readonly (tarih) */
.rmf-input[readonly] {
  cursor: default;
  color: rgba(255,255,255,.7);
}

/* Textarea — köşeli */
.rmf-textarea {
  border-radius: 14px;
  resize: vertical;
  min-height: 80px;
  padding: 14px 20px;
  line-height: 1.6;
}

/* Custom date/time trigger — rmf-input gibi görünür ama tıklanabilir */
.rmf-date-trigger,
.rmf-time-trigger {
  cursor: pointer;
  user-select: none;
}
.rmf-date-trigger.error,
.rmf-time-trigger.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231,76,60,.15);
}
.rmf-date-trigger:hover,
.rmf-time-trigger:hover {
  border-color: rgba(193,127,58,.4);
  background: rgba(255,255,255,.09);
}

/* ── Modal İçi Mini Takvim ── */
.rmf-cal-popup {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 280px;
  background: linear-gradient(160deg, #0f2318 0%, #1a3a2a 100%);
  border: 1px solid rgba(193,127,58,.35);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(193,127,58,.1);
  z-index: 9999;
  padding: 16px;
  opacity: 0; visibility: hidden;
  transform: translateY(6px) scale(.97);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  pointer-events: none;
}
.rmf-cal-popup.open {
  opacity: 1; visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.rmf-cal-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.rmf-cal-month-year {
  font-family: var(--font);
  font-size: 14px; font-weight: 700;
  color: #fff; letter-spacing: .3px;
}
.rmf-cal-nav {
  width: 30px; height: 30px;
  background: rgba(193,127,58,.1);
  border: 1px solid rgba(193,127,58,.25);
  border-radius: 8px;
  color: var(--gold); font-size: 11px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.rmf-cal-nav:hover { background: rgba(193,127,58,.25); border-color: var(--gold); }
.rmf-cal-days-head {
  display: grid; grid-template-columns: repeat(7,1fr);
  margin-bottom: 6px;
}
.rmf-cal-days-head span {
  text-align: center; font-size: 9px; font-weight: 700;
  color: var(--gold); letter-spacing: .5px; text-transform: uppercase;
  padding: 3px 0;
}
.rmf-cal-grid {
  display: grid; grid-template-columns: repeat(7,1fr);
  gap: 2px;
}
.rmf-cal-empty { height: 32px; }
.rmf-cal-day {
  height: 32px; width: 100%;
  background: none; border: none;
  border-radius: 7px;
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,.8);
  cursor: pointer;
  transition: background .15s, color .15s, transform .1s;
  display: flex; align-items: center; justify-content: center;
}
.rmf-cal-day:hover:not(:disabled) {
  background: rgba(193,127,58,.2);
  color: #fff;
  transform: scale(1.08);
}
.rmf-cal-past { color: rgba(255,255,255,.2) !important; cursor: not-allowed !important; }
.rmf-cal-today-cell {
  color: var(--gold) !important; font-weight: 700;
  border: 1px solid rgba(193,127,58,.4);
}
.rmf-cal-selected {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 800;
  box-shadow: 0 3px 12px rgba(193,127,58,.45);
  transform: scale(1.08);
}
.rmf-cal-footer {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; justify-content: center;
}
.rmf-cal-today {
  background: none; border: 1px solid rgba(193,127,58,.3);
  border-radius: 7px; padding: 6px 18px;
  color: var(--gold); font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; transition: background .2s, border-color .2s;
}
.rmf-cal-today:hover { background: rgba(193,127,58,.15); border-color: var(--gold); }

/* ── Custom Saat Dropdown ── */
.rmf-time-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: linear-gradient(160deg, #0f2318 0%, #1a3a2a 100%);
  border: 1px solid rgba(193,127,58,.35);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(193,127,58,.1);
  z-index: 9999;
  opacity: 0; visibility: hidden;
  transform: translateY(6px) scale(.97);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  pointer-events: none;
  overflow: hidden;
}
.rmf-time-dropdown.open {
  opacity: 1; visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.rmf-time-list {
  max-height: 200px;
  overflow-y: auto;
  padding: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(193,127,58,.3) transparent;
}
.rmf-time-list::-webkit-scrollbar { width: 3px; }
.rmf-time-list::-webkit-scrollbar-track { background: transparent; }
.rmf-time-list::-webkit-scrollbar-thumb { background: rgba(193,127,58,.35); border-radius: 3px; }
.rmf-time-opt {
  display: block; width: 100%;
  padding: 9px 14px;
  background: none; border: none;
  border-radius: 9px;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.75);
  text-align: left;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.rmf-time-opt:hover {
  background: rgba(193,127,58,.18);
  color: #fff;
}
.rmf-time-opt.active {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
}

/* Kişi sayısı */
.rmf-kisi-wrap { display: flex; justify-content: stretch; }
.rmf-kisi {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 50px;
  padding: 10px 20px;
  transition: border-color .2s;
}
.rmf-kisi:hover { border-color: rgba(193,127,58,.35); }
.rmf-kisi-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(193,127,58,.15);
  border: 1.5px solid rgba(193,127,58,.35);
  color: var(--gold); font-size: 20px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, transform .15s, color .2s;
  line-height: 1; flex-shrink: 0;
}
.rmf-kisi-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: scale(1.1);
}
.rmf-kisi-label {
  font-size: 16px; font-weight: 700; color: #fff;
  display: flex; align-items: center; gap: 10px;
  flex: 1;
  justify-content: center;
}
.rmf-kisi-label i { color: var(--gold); font-size: 15px; }

/* Hata mesajı */
.rmf-err {
  font-size: 11px; color: #ff6b6b;
  padding-left: 6px; min-height: 14px;
  display: block;
}

/* Gönder butonu */
.rmf-submit {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-l) 50%, var(--gold) 100%);
  background-size: 200% 100%;
  color: var(--navy);
  border: none; border-radius: 14px;
  font-size: 13px; font-weight: 800;
  font-family: var(--font-s);
  letter-spacing: 3px; text-transform: uppercase;
  cursor: pointer;
  transition: background-position .4s, transform .2s, box-shadow .25s;
  box-shadow: 0 8px 28px rgba(193,127,58,.4);
  margin-top: 6px;
  position: relative; overflow: hidden;
}
.rmf-submit::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2) 0%, transparent 60%);
  border-radius: 14px;
  pointer-events: none;
}
.rmf-submit:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(193,127,58,.55);
}
.rmf-submit:active { transform: translateY(0); }

/* Başarı ekranı */
.rez-modal-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 36px 40px;
  gap: 18px;
}
.rez-modal-success-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(39,174,96,.15);
  border: 2px solid rgba(39,174,96,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  color: #4cd964;
  box-shadow: 0 0 32px rgba(39,174,96,.2);
}
.rez-modal-success h3 {
  font-family: var(--font);
  font-size: 26px; font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.rez-modal-success-msg {
  font-size: 14px; color: rgba(255,255,255,.55);
  line-height: 1.75; max-width: 380px;
}

/* Divider — form içi bölücü */
.rmf-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(193,127,58,.25), transparent);
  margin: 4px 0;
}

/* Modal Responsive */
@media (max-width: 600px) {
  .rez-modal {
    border-radius: 22px;
    max-height: 95vh;
  }
  .rez-modal-top { padding: 36px 24px 20px; }
  .rez-modal-form { padding: 22px 20px 26px; gap: 10px; }
  .rez-modal-close { top: 14px; right: 14px; width: 36px; height: 36px; font-size: 13px; }
  .rmf-row { grid-template-columns: 1fr; }
  .rez-modal-title { font-size: 22px; }
  .rmf-input { padding: 13px 16px; font-size: 14px; }
  .rmf-submit { padding: 15px 24px; font-size: 12px; letter-spacing: 2px; }
  .rez-modal-success { padding: 36px 24px 32px; }
}

@media (max-width: 400px) {
  .rez-modal-top { padding: 32px 18px 18px; }
  .rez-modal-form { padding: 18px 16px 22px; }
  .rmf-kisi { padding: 8px 16px; gap: 14px; }
  .rmf-kisi-label { min-width: 70px; font-size: 14px; }
}
