*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --clay: #c4a882; --terracotta: #b5714a; --stone: #8b7355;
  --dark: #0f0b07; --warm-dark: #1a1208; --cream: #f5efe4;
  --mist: #ede4d4; --gold: #c9a96e;
  --r-sm: 10px; --r-md: 18px; --r-lg: 26px; --r-xl: 36px;
  --topbar-h: 32px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--dark); color: var(--cream); overflow-x: hidden; font-weight: 400; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* Siteye derinlik katan sabit arkaplan — glassmorphism için zemin */
body::before {
  content: ''; position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(181,113,74,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(201,169,110,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(139,115,85,0.12) 0%, transparent 50%),
    linear-gradient(160deg, #0f0b07 0%, #1a1208 50%, #100d06 100%);
  pointer-events: none;
}

/* ══════════════════════════════════════
   TOP BAR
══════════════════════════════════════ */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  background: rgba(10,7,3,0.78);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-bottom: 1px solid rgba(201,169,110,0.1);
  padding: 0 1.2rem;
  height: var(--topbar-h);
  display: flex; align-items: center; justify-content: space-between;
  transition: transform 0.4s ease;
}
.topbar.hide { transform: translateY(-100%); }
.topbar-left { display: flex; align-items: center; gap: 1.5rem; }
.topbar-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.62rem; color: rgba(245,239,228,0.45); letter-spacing: 0.06em; }
.topbar-item svg { color: var(--gold); opacity: 0.65; flex-shrink: 0; }
.topbar-item a { color: rgba(245,239,228,0.45); text-decoration: none; transition: color 0.2s; }
.topbar-item a:hover { color: var(--gold); }
.topbar-right { display: flex; align-items: center; gap: 1rem; }
.topbar-social { display: flex; align-items: center; gap: 0.6rem; }
.topbar-social a { display: flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; border: 1px solid rgba(201,169,110,0.18); color: rgba(245,239,228,0.38); transition: all 0.25s; }
.topbar-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,0.08); }
.topbar-lang { display: flex; gap: 0.5rem; }
.topbar-lang button { background: none; border: none; cursor: pointer; font-size: 0.58rem; letter-spacing: 0.12em; font-family: 'Plus Jakarta Sans', sans-serif; color: rgba(245,239,228,0.3); transition: color 0.2s; text-transform: uppercase; }
.topbar-lang button.active { color: var(--gold); }
.topbar-lang button:hover { color: var(--clay); }
.topbar-divider { width: 1px; height: 14px; background: rgba(201,169,110,0.12); }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
#navbar { position: fixed; top: var(--topbar-h); left: 0; right: 0; z-index: 200; display: flex; justify-content: center; padding: 0.8rem 1rem; pointer-events: none; transition: top 0.4s ease, padding 0.4s ease; }
#navbar.topbar-hidden { top: 0; }
#navbar.scrolled { padding: 0.5rem 1rem; }

.nav-pill {
  display: flex; align-items: center;
  background: rgba(12,8,3,0.52);
  backdrop-filter: blur(32px) saturate(1.8);
  -webkit-backdrop-filter: blur(32px) saturate(1.8);
  border: 1px solid rgba(201,169,110,0.22);
  border-radius: 999px;
  padding: 0.5rem 0.5rem 0.5rem 1.4rem;
  pointer-events: all;
  transition: background 0.4s, box-shadow 0.4s;
  box-shadow: 0 8px 48px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.07);
  width: min(860px, 96vw);
  justify-content: space-between;
  gap: 0.5rem;
}
#navbar.scrolled .nav-pill { background: rgba(12,8,3,0.94); box-shadow: 0 4px 24px rgba(0,0,0,0.65), inset 0 1px 0 rgba(255,255,255,0.04); }

.nav-logo { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; font-weight: 400; color: var(--cream); text-decoration: none; letter-spacing: 0.1em; white-space: nowrap; display: flex; align-items: center; gap: 0.5rem; }
.nav-logo em { color: var(--gold); font-weight: 800; }
.nav-logo-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: 0.7; flex-shrink: 0; }

.nav-links { display: flex; gap: 0; list-style: none; align-items: center; background: rgba(255,255,255,0.04); border-radius: 999px; padding: 0.2rem; }
.nav-links a { display: flex; align-items: center; gap: 0.4rem; color: rgba(245,239,228,0.58); text-decoration: none; font-size: 0.66rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.45rem 1rem; border-radius: 999px; transition: color 0.25s, background 0.25s; white-space: nowrap; }
.nav-links a svg { opacity: 0.55; transition: opacity 0.25s; }
.nav-links a:hover { color: var(--cream); background: rgba(255,255,255,0.09); }
.nav-links a:hover svg { opacity: 0.9; }
.nav-links .active-link { color: var(--cream); background: rgba(255,255,255,0.07); }

.nav-right-group { display: flex; align-items: center; gap: 0.4rem; }
.nav-tel { display: flex; align-items: center; gap: 0.4rem; color: rgba(245,239,228,0.42); font-size: 0.64rem; text-decoration: none; padding: 0.45rem 0.8rem; border-radius: 999px; transition: color 0.25s, background 0.25s; }
.nav-tel:hover { color: var(--clay); background: rgba(255,255,255,0.06); }
.nav-tel svg { opacity: 0.6; }
.nav-cta-btn { background: linear-gradient(135deg, var(--terracotta), #a05c38); color: var(--cream); text-decoration: none; padding: 0.6rem 1.3rem; border-radius: 999px; font-size: 0.64rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; transition: transform 0.2s, box-shadow 0.2s, filter 0.2s; box-shadow: 0 4px 16px rgba(181,113,74,0.38); white-space: nowrap; display: flex; align-items: center; gap: 0.4rem; }
.nav-cta-btn:hover { transform: scale(1.04); box-shadow: 0 6px 24px rgba(181,113,74,0.55); filter: brightness(1.08); }

.nav-hamburger { display: none; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); border: none; cursor: pointer; color: var(--cream); transition: background 0.2s; }
.nav-hamburger:hover { background: rgba(255,255,255,0.14); }

.mobile-menu { display: none; position: fixed; inset: 0; z-index: 9000; }
.mobile-menu.open { display: flex; }
.mobile-menu-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.mobile-menu-drawer { position: absolute; top: 0; right: 0; bottom: 0; width: min(320px, 88vw); background: rgba(15,10,4,0.92); backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px); display: flex; flex-direction: column; border-left: 1px solid rgba(201,169,110,0.15); transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94); box-shadow: -20px 0 80px rgba(0,0,0,0.6); }
.mobile-menu.open .mobile-menu-drawer { transform: translateX(0); }
.mob-menu-head { padding: 1.5rem 1.5rem 1rem; border-bottom: 1px solid rgba(201,169,110,0.1); display: flex; align-items: center; justify-content: space-between; }
.mob-menu-logo { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.1rem; color: var(--cream); }
.mob-menu-logo em { color: var(--gold); font-weight: 800; }
.mob-close { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.07); border: none; cursor: pointer; color: rgba(245,239,228,0.6); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.mob-close:hover { background: rgba(255,255,255,0.14); }
.mob-menu-links { flex: 1; padding: 1rem 1rem; display: flex; flex-direction: column; gap: 0.25rem; overflow-y: auto; }
.mob-link { display: flex; align-items: center; gap: 0.9rem; padding: 0.9rem 1rem; border-radius: var(--r-md); color: rgba(245,239,228,0.6); text-decoration: none; font-size: 0.9rem; font-weight: 450; letter-spacing: 0.03em; transition: color 0.2s, background 0.2s; }
.mob-link:hover { color: var(--cream); background: rgba(255,255,255,0.07); }
.mob-link svg { opacity: 0.55; }
.mob-menu-footer { padding: 1.2rem 1.5rem; border-top: 1px solid rgba(201,169,110,0.1); display: flex; flex-direction: column; gap: 0.8rem; }
.mob-cta { display: flex; align-items: center; justify-content: center; gap: 0.5rem; background: linear-gradient(135deg, var(--terracotta), #a05c38); color: var(--cream); text-decoration: none; padding: 0.9rem 1.5rem; border-radius: 999px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; box-shadow: 0 4px 16px rgba(181,113,74,0.38); }
.mob-tel { display: flex; align-items: center; justify-content: center; gap: 0.5rem; color: rgba(245,239,228,0.45); text-decoration: none; font-size: 0.8rem; padding: 0.7rem; }
.mob-tel:hover { color: var(--gold); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero { min-height: 100vh; position: relative; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,5,2,0.12) 0%, rgba(8,5,2,0.45) 55%, rgba(8,5,2,0.88) 100%),
    url('images/foto1.jpg') center 40%/cover no-repeat;
  transform: scale(1.04); animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0; height: 140px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 140'%3E%3Cpath fill='%230f0b07' d='M0,140L0,100Q30,85,60,99L90,73Q115,56,140,69L165,48Q185,32,210,44L235,58Q258,42,280,55L305,69Q328,52,350,65L375,34Q395,18,418,30L442,43Q465,28,488,40L512,54Q535,37,558,50L582,65Q605,48,628,62L652,76Q675,58,698,72L720,40Q743,25,765,37L788,49Q812,34,835,48L858,62Q882,44,905,58L928,73Q950,55,974,69L996,83Q1020,65,1042,79L1065,38Q1087,22,1110,34L1132,48Q1155,32,1178,46L1200,60Q1222,43,1245,57L1268,71Q1290,54,1312,68L1335,48Q1355,32,1378,46L1400,60Q1418,43,1440,57L1440,140Z'/%3E%3C/svg%3E") bottom/cover no-repeat;
}
.hero-content { position: relative; z-index: 2; padding: 0 1.5rem 5rem; animation: fadeUp 1.2s 0.3s both; width: 100%; max-width: 720px; }
@keyframes fadeUp { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:translateY(0); } }
.hero-eyebrow { color: var(--gold); font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; margin-bottom: 1rem; font-weight: 500; display: flex; align-items: center; gap: 0.8rem; }
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }
.hero h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2.8rem,7vw,6rem); font-weight: 800; color: var(--cream); line-height: 1.06; margin-bottom: 1.2rem; }
.hero h1 em { color: var(--gold); }
.hero p { color: rgba(245,239,228,0.65); font-size: 0.9rem; font-weight: 400; max-width: 380px; line-height: 1.9; margin-bottom: 2rem; }
.hero-cta { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.btn-primary { background: linear-gradient(135deg, var(--terracotta), #a05c38); color: var(--cream); padding: 0.85rem 1.8rem; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; transition: all 0.3s; display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 999px; box-shadow: 0 6px 24px rgba(181,113,74,0.42); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(181,113,74,0.58); filter: brightness(1.08); }
.btn-ghost { color: rgba(245,239,228,0.72); font-size: 0.68rem; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; display: flex; align-items: center; gap: 0.5rem; transition: gap 0.3s, color 0.3s; }
.btn-ghost:hover { gap: 0.85rem; color: var(--cream); }

/* ══════════════════════════════════════
   STATS
══════════════════════════════════════ */
.stats-bar {
  background: rgba(10,7,3,0.82);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-top: 1px solid rgba(201,169,110,0.1);
  border-bottom: 1px solid rgba(201,169,110,0.07);
  padding: 0 1.5rem;
  display: grid; grid-template-columns: repeat(3,1fr);
}
.stat { text-align: center; padding: 1.8rem 0.5rem; border-right: 1px solid rgba(201,169,110,0.08); display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.stat:last-child { border-right: none; }
.stat-icon { color: var(--gold); opacity: 0.6; }
.stat-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.8rem,4vw,2.5rem); font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,239,228,0.3); }

/* ══════════════════════════════════════
   SECTION BASE
══════════════════════════════════════ */
section { padding: 5rem 1.5rem; }
.section-label { font-size: 0.63rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 0.7rem; font-weight: 500; }
.section-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2rem,4vw,3.2rem); font-weight: 800; line-height: 1.2; color: var(--cream); margin-bottom: 1.2rem; }
.section-title em { font-style: normal; color: var(--gold); font-weight: 800; }
.section-text { font-size: 0.87rem; line-height: 1.95; color: rgba(245,239,228,0.48); max-width: 480px; font-weight: 400; }

/* ══════════════════════════════════════
   ROOMS
══════════════════════════════════════ */
#odalar { padding: 5rem 1.5rem; position: relative; }
#odalar::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 40%, rgba(181,113,74,0.07) 0%, transparent 65%); pointer-events: none; }
.rooms-intro { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
.rooms-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.room-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(201,169,110,0.14);
  overflow: hidden; cursor: pointer; border-radius: var(--r-lg);
  box-shadow: 0 4px 24px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
}
.room-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.42), inset 0 1px 0 rgba(255,255,255,0.08); border-color: rgba(201,169,110,0.3); }
.room-card:hover .room-thumb { transform: scale(1.04); }
.room-thumb { width: 100%; height: 220px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; transition: transform 0.5s ease; }
.room-thumb svg { opacity: 0; transition: opacity 0.3s; }
.room-card:hover .room-thumb svg { opacity: 0; }
.room-thumb-1 { background: linear-gradient(145deg,#d4bc96,#9e8462); }
.room-thumb-2 { background: linear-gradient(145deg,#c2835a,#8a5938); }
.room-thumb-3 { background: linear-gradient(145deg,#7c6349,#2d2318); }
.room-info { padding: 1.5rem 1.4rem; }
.room-type { font-size: 0.58rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 0.3rem; font-weight: 500; }
.room-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--cream); margin-bottom: 0.5rem; }
.room-desc { font-size: 0.79rem; color: rgba(245,239,228,0.45); line-height: 1.75; font-weight: 400; margin-bottom: 1.2rem; }
.room-footer { display: flex; align-items: center; justify-content: space-between; }
.room-price { display: flex; align-items: baseline; gap: 0.3rem; }
.price-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--terracotta); }
.price-unit { font-size: 0.62rem; letter-spacing: 0.1em; color: var(--stone); text-transform: uppercase; }
.room-arrow { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(201,169,110,0.18); display: flex; align-items: center; justify-content: center; color: var(--stone); transition: background 0.25s, color 0.25s, transform 0.25s, border-color 0.25s; }
.room-card:hover .room-arrow { background: var(--terracotta); color: white; transform: translateX(3px); border-color: var(--terracotta); }
.room-avail-badge { position: absolute; top: 12px; right: 12px; z-index: 3; display: flex; align-items: center; gap: 0.3rem; background: rgba(0,0,0,0.52); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.1); border-radius: 999px; padding: 0.25rem 0.65rem; font-size: 0.58rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,239,228,0.75); transition: all 0.3s; }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #5ccc7a; flex-shrink: 0; animation: pulseDot 2s ease-in-out infinite; }
@keyframes pulseDot { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.6; transform:scale(0.8); } }
.room-avail-badge.pending { border-color: rgba(224,154,58,0.3); }
.room-avail-badge.pending .badge-dot { background: #e09a3a; }
.room-avail-badge.pending .badge-txt { color: #e09a3a; }
.rsel-dot.pending-dot { background: #e09a3a; }
.rsel-stxt.pending-txt { color: #e09a3a; }
.room-avail-badge.booked .badge-dot { background: #e05555; animation: none; }
.room-avail-badge.booked .badge-txt { color: #e07070; }
.room-card.booked { cursor: not-allowed; }
.room-card.booked .room-thumb { filter: grayscale(0.5) brightness(0.65); }
.room-card.booked .room-arrow { background: rgba(255,255,255,0.04); cursor: not-allowed; }
.room-card.selected-card { box-shadow: 0 0 0 2px var(--terracotta), 0 20px 60px rgba(0,0,0,0.4); transform: translateY(-4px); }

/* Room selector cards */
.room-select-row { margin-bottom: 0.5rem; }
.room-select-grid { display: grid; grid-template-columns: 1fr; gap: 0.7rem; }
.room-sel-card {
  position: relative; display: flex; align-items: center; gap: 0.8rem;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(201,169,110,0.14);
  border-radius: var(--r-md); padding: 0.75rem 0.9rem; cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.2s; overflow: hidden;
}
.room-sel-card:hover { border-color: rgba(201,169,110,0.38); background: rgba(255,255,255,0.07); }
.room-sel-card.selected { border-color: var(--terracotta); background: rgba(181,113,74,0.1); transform: scale(1.01); box-shadow: 0 0 0 1px rgba(181,113,74,0.28), 0 8px 24px rgba(181,113,74,0.14); }
.room-sel-card.unavail { opacity: 0.4; cursor: not-allowed; pointer-events: none; }
.rsel-thumb { width: 36px; height: 36px; border-radius: var(--r-sm); flex-shrink: 0; }
.rsel-thumb-1 { background: linear-gradient(135deg,#d4bc96,#9e8462); }
.rsel-thumb-2 { background: linear-gradient(135deg,#c2835a,#8a5938); }
.rsel-thumb-3 { background: linear-gradient(135deg,#7c6349,#2d2318); }
.rsel-info { flex: 1; min-width: 0; }
.rsel-name { font-size: 0.78rem; font-weight: 600; color: var(--cream); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rsel-price { font-size: 0.62rem; color: var(--gold); margin-top: 0.1rem; }
.rsel-status { display: flex; align-items: center; gap: 0.3rem; font-size: 0.56rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,239,228,0.38); white-space: nowrap; flex-shrink: 0; }
.rsel-dot { width: 5px; height: 5px; border-radius: 50%; background: #5ccc7a; flex-shrink: 0; }
.rsel-dot.busy { background: #e05555; }
.rsel-stxt.busy { color: #e07070; }
.rsel-check { position: absolute; top: 8px; right: 8px; width: 20px; height: 20px; border-radius: 50%; background: var(--terracotta); display: flex; align-items: center; justify-content: center; opacity: 0; transform: scale(0.5); transition: opacity 0.2s, transform 0.2s; }
.room-sel-card.selected .rsel-check { opacity: 1; transform: scale(1); }

/* ══════════════════════════════════════
   REZERVASYON — TAM GLASSMORPHISM
══════════════════════════════════════ */
.booking-section {
  position: relative; padding: 5rem 1.5rem; overflow: hidden;
}
.booking-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(181,113,74,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(201,169,110,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 90%, rgba(139,115,85,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.booking-header { text-align: center; margin-bottom: 2.5rem; position: relative; z-index: 1; }
.booking-header .section-label { color: var(--gold); }
.booking-header .section-title { color: var(--cream); }
.booking-header .section-title em { color: var(--gold); }
.booking-sub { font-size: 0.88rem; color: rgba(245,239,228,0.4); font-weight: 400; max-width: 380px; margin: 0 auto; line-height: 1.8; }

.booking-card {
  max-width: 860px; margin: 0 auto;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(40px) saturate(1.8);
  -webkit-backdrop-filter: blur(40px) saturate(1.8);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--r-xl); padding: 1.8rem 1.5rem;
  position: relative; z-index: 1;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08), inset 0 -1px 0 rgba(0,0,0,0.1);
}

/* ── Booking Fields ── */
.booking-fields { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.field-wrap { position: relative; }
.field-label { display: block; font-size: 0.58rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.55rem; padding-left: 0.1rem; }

/* ── Date trigger ── */
.date-trigger {
  width: 100%; display: flex; align-items: center; gap: 0.7rem;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201,169,110,0.16);
  border-radius: var(--r-md); padding: 0.9rem 1rem;
  cursor: pointer; color: rgba(245,239,228,0.3);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.date-trigger.has-value { color: var(--cream); }
.date-trigger:hover, .date-trigger.open {
  border-color: rgba(201,169,110,0.42);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.07), inset 0 1px 0 rgba(255,255,255,0.05);
}
.date-trigger svg { color: var(--gold); opacity: 0.6; flex-shrink: 0; }
.date-trigger-text { flex: 1; font-size: 0.84rem; font-weight: 400; text-align: left; }
.date-trigger-chevron { color: rgba(245,239,228,0.28); transition: transform 0.3s; flex-shrink: 0; }
.date-trigger.open .date-trigger-chevron { transform: rotate(180deg); }

/* ── Calendar Dropdown ── */
.cal-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 600;
  background: rgba(18,12,4,0.94);
  backdrop-filter: blur(40px) saturate(1.8);
  -webkit-backdrop-filter: blur(40px) saturate(1.8);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--r-lg); padding: 1.1rem;
  box-shadow: 0 24px 80px rgba(0,0,0,0.65), inset 0 1px 0 rgba(255,255,255,0.06);
  opacity: 0; transform: translateY(-8px) scale(0.98);
  pointer-events: none; transition: opacity 0.25s ease, transform 0.25s ease;
  min-width: 270px; max-width: 92vw;
}
.cal-dropdown.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.9rem; }
.cal-nav { background: none; border: none; cursor: pointer; color: rgba(245,239,228,0.45); width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s; }
.cal-nav:hover { background: rgba(201,169,110,0.12); color: var(--gold); }
.cal-month-year { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; color: var(--cream); font-weight: 400; }
.cal-weekdays { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; margin-bottom: 0.4rem; }
.cal-wd { text-align: center; font-size: 0.56rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,239,228,0.25); padding: 0.25rem 0; }
.cal-days { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: rgba(245,239,228,0.65); cursor: pointer; border-radius: var(--r-sm); transition: background 0.2s, color 0.2s; border: 1px solid transparent; min-height: 32px; }
.cal-day:hover:not(.disabled):not(.empty) { background: rgba(201,169,110,0.14); color: var(--cream); }
.cal-day.today { border-color: rgba(201,169,110,0.3); color: var(--gold); }
.cal-day.selected { background: var(--terracotta); color: white; font-weight: 500; border-color: transparent; }
.cal-day.in-range { background: rgba(181,113,74,0.18); color: var(--cream); border-radius: 0; }
.cal-day.range-start { border-radius: var(--r-sm) 0 0 var(--r-sm); }
.cal-day.range-end { border-radius: 0 var(--r-sm) var(--r-sm) 0; }
.cal-day.disabled { color: rgba(245,239,228,0.15); cursor: default; pointer-events: none; }
.cal-day.empty { pointer-events: none; }

/* ── Guest Picker ── */
.guest-trigger {
  width: 100%; display: flex; align-items: center; gap: 0.7rem;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201,169,110,0.16);
  border-radius: var(--r-md); padding: 0.9rem 1rem;
  cursor: pointer; color: rgba(245,239,228,0.3);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.guest-trigger.has-value { color: var(--cream); }
.guest-trigger:hover, .guest-trigger.open {
  border-color: rgba(201,169,110,0.42);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.07), inset 0 1px 0 rgba(255,255,255,0.05);
}
.guest-trigger svg { color: var(--gold); opacity: 0.6; flex-shrink: 0; }
.guest-trigger-text { flex: 1; font-size: 0.84rem; font-weight: 400; text-align: left; }
.guest-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 600;
  background: rgba(18,12,4,0.94);
  backdrop-filter: blur(40px) saturate(1.8);
  -webkit-backdrop-filter: blur(40px) saturate(1.8);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--r-lg); padding: 0.9rem;
  box-shadow: 0 24px 80px rgba(0,0,0,0.65), inset 0 1px 0 rgba(255,255,255,0.06);
  opacity: 0; transform: translateY(-8px) scale(0.98);
  pointer-events: none; transition: opacity 0.25s ease, transform 0.25s ease;
}
.guest-dropdown.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.guest-row { display: flex; align-items: center; justify-content: space-between; padding: 0.65rem 0.2rem; border-bottom: 1px solid rgba(201,169,110,0.07); }
.guest-row:last-child { border-bottom: none; }
.guest-type { font-size: 0.82rem; color: var(--cream); font-weight: 400; }
.guest-sub { font-size: 0.63rem; color: rgba(245,239,228,0.28); margin-top: 0.1rem; }
.guest-counter { display: flex; align-items: center; gap: 0.75rem; }
.gc-btn { width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(201,169,110,0.28); background: rgba(255,255,255,0.04); cursor: pointer; color: var(--clay); font-size: 1rem; line-height: 1; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.gc-btn:hover { background: rgba(201,169,110,0.12); border-color: var(--gold); color: var(--gold); }
.gc-btn:disabled { opacity: 0.2; cursor: default; }
.gc-val { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.1rem; color: var(--cream); min-width: 20px; text-align: center; }

/* ── Contact Fields ── */
.contact-fields { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 1.2rem; }
.contact-field-wrap { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-input {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201,169,110,0.16);
  border-radius: var(--r-md); padding: 0.9rem 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.85rem; font-weight: 400;
  color: var(--cream); outline: none;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s; width: 100%;
}
.contact-input::placeholder { color: rgba(245,239,228,0.2); }
.contact-input:focus {
  border-color: rgba(201,169,110,0.42);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.07), inset 0 1px 0 rgba(255,255,255,0.05);
}

/* ── Booking Summary ── */
.booking-summary {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: var(--r-md); padding: 0.9rem 1.1rem; margin-bottom: 1.2rem;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.summary-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.77rem; color: rgba(245,239,228,0.4); }
.summary-row strong { color: rgba(245,239,228,0.8); font-weight: 500; }
.summary-total { border-top: 1px solid rgba(201,169,110,0.1); padding-top: 0.4rem; margin-top: 0.2rem; font-size: 0.84rem; color: rgba(245,239,228,0.6); }
.summary-total strong { color: var(--gold); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; }

/* ── Booking Bottom ── */
.booking-divider { display: flex; align-items: center; gap: 1.2rem; margin: 1.2rem 0; }
.booking-divider::before, .booking-divider::after { content: ''; flex: 1; height: 1px; background: rgba(201,169,110,0.1); }
.booking-divider-text { font-size: 0.58rem; color: rgba(245,239,228,0.2); letter-spacing: 0.2em; text-transform: uppercase; white-space: nowrap; }
.booking-bottom { display: flex; flex-direction: column; align-items: stretch; gap: 1rem; }
.booking-note { font-size: 0.72rem; color: rgba(245,239,228,0.28); font-weight: 400; line-height: 1.7; display: flex; align-items: flex-start; gap: 0.5rem; }
.booking-note svg { flex-shrink: 0; color: var(--gold); opacity: 0.45; margin-top: 0.15rem; }
.booking-submit {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--terracotta), #a05c38);
  color: var(--cream); border: none; cursor: pointer;
  padding: 1rem 2rem; width: 100%; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  border-radius: 999px; display: flex; align-items: center; gap: 0.7rem;
  transition: transform 0.25s, box-shadow 0.25s; white-space: nowrap;
  box-shadow: 0 6px 20px rgba(181,113,74,0.42);
}
.booking-submit:hover { transform: translateY(-2px) scale(1.01); box-shadow: 0 14px 36px rgba(181,113,74,0.58); }
.booking-submit:active { transform: scale(0.99); }
.btn-ring { position: absolute; inset: 0; border-radius: 999px; border: 2px solid rgba(201,169,110,0.38); animation: ringPulse 2.5s ease-out infinite; pointer-events: none; }
@keyframes ringPulse { 0% { transform:scale(1); opacity:0.6; } 70% { transform:scale(1.1); opacity:0; } 100% { transform:scale(1.1); opacity:0; } }
.booking-perks { display: flex; flex-wrap: wrap; gap: 0.8rem 1.2rem; justify-content: center; margin-top: 2rem; border-top: 1px solid rgba(201,169,110,0.08); padding-top: 1.5rem; }
.perk { display: flex; align-items: center; gap: 0.6rem; font-size: 0.7rem; color: rgba(245,239,228,0.3); font-weight: 400; }
.perk svg { color: var(--gold); opacity: 0.55; flex-shrink: 0; }

/* ══════════════════════════════════════
   RESTAURANT
══════════════════════════════════════ */
#restoran { position: relative; overflow: hidden; }
#restoran::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(181,113,74,0.09) 0%, transparent 70%); pointer-events: none; }
.restaurant-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; position: relative; }
.rest-img-main {
  width: 100%; height: 320px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; border-radius: var(--r-xl);
  border: 1px solid rgba(201,169,110,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
}
.rest-bg-word { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 4rem; color: rgba(201,169,110,0.06); position: absolute; transform: rotate(-18deg); letter-spacing: 0.2em; white-space: nowrap; pointer-events: none; }
.rest-center { position: relative; z-index: 2; text-align: center; }
.rest-center-label { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.3rem; color: rgba(245,239,228,0.38); letter-spacing: 0.18em; margin-top: 1rem;  }
.rest-badge { position: absolute; bottom: -1.2rem; right: 1rem; width: 90px; height: 90px; background: linear-gradient(135deg, var(--terracotta), #9a5230); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border-radius: var(--r-md); box-shadow: 0 8px 24px rgba(181,113,74,0.45); }
.rest-badge-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.7rem; color: var(--cream); line-height: 1; }
.rest-badge-sub { font-size: 0.46rem; letter-spacing: 0.12em; color: rgba(245,239,228,0.65); text-transform: uppercase; margin-top: 0.2rem; }
#restoran .section-title { color: var(--cream); }
#restoran .section-text { color: rgba(245,239,228,0.48); max-width: 100%; }
#restoran .section-label { color: var(--gold); }
.menu-highlights { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.5rem; }
.menu-item { display: flex; align-items: center; gap: 1rem; padding: 0.85rem 1rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(201,169,110,0.1); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: border-color 0.3s, background 0.3s; border-radius: var(--r-sm); }
.menu-item:hover { border-color: rgba(201,169,110,0.25); background: rgba(201,169,110,0.06); }
.menu-icon { color: var(--gold); opacity: 0.7; flex-shrink: 0; }
.menu-details { flex: 1; min-width: 0; }
.menu-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; color: var(--cream); margin-bottom: 0.15rem; }
.menu-sub { font-size: 0.65rem; color: rgba(245,239,228,0.3); letter-spacing: 0.05em; }
.menu-price { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; color: var(--gold); }

/* ══════════════════════════════════════
   ULAŞIM
══════════════════════════════════════ */
#ulasim { padding: 5rem 1.5rem; position: relative; }
#ulasim::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 60%, rgba(201,169,110,0.05) 0%, transparent 60%); pointer-events: none; }
.transport-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; position: relative; }
.transport-options { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 2rem; }
.transport-card { display: flex; gap: 1.2rem; padding: 1.2rem 1.3rem; background: rgba(255,255,255,0.04); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(201,169,110,0.1); border-left: 3px solid var(--terracotta); transition: transform 0.3s, box-shadow 0.3s; border-radius: 0 var(--r-md) var(--r-md) 0; }
.transport-card:hover { transform: translateX(5px); box-shadow: -4px 0 24px rgba(181,113,74,0.12), 0 8px 32px rgba(0,0,0,0.2); }
.t-icon { color: var(--terracotta); flex-shrink: 0; margin-top: 0.1rem; }
.t-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; color: var(--cream); margin-bottom: 0.25rem; }
.t-desc { font-size: 0.78rem; color: rgba(245,239,228,0.42); line-height: 1.75; font-weight: 400; }
.t-time { font-size: 0.64rem; color: var(--terracotta); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.3rem; font-weight: 500; }
.location-card { position: relative; border-radius: var(--r-xl); overflow: hidden; background: rgba(18,12,4,0.72); backdrop-filter: blur(32px) saturate(1.6); -webkit-backdrop-filter: blur(32px) saturate(1.6); border: 1px solid rgba(201,169,110,0.16); box-shadow: 0 24px 80px rgba(0,0,0,0.42), inset 0 1px 0 rgba(255,255,255,0.06); min-height: 360px; display: flex; flex-direction: column; }
.lc-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.lc-blob1 { position: absolute; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(181,113,74,0.2) 0%, transparent 70%); top: -50px; right: -50px; }
.lc-blob2 { position: absolute; width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(circle, rgba(201,169,110,0.1) 0%, transparent 70%); bottom: 20px; left: -30px; }
.lc-body { position: relative; z-index: 2; padding: 2rem; flex: 1; display: flex; flex-direction: column; gap: 1.5rem; }
.lc-address-block { display: flex; align-items: flex-start; gap: 1rem; }
.lc-pin-icon { width: 44px; height: 44px; border-radius: var(--r-md); flex-shrink: 0; background: linear-gradient(135deg, var(--terracotta), #9a5230); display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(181,113,74,0.4); }
.lc-address-text { flex: 1; }
.lc-address-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.4rem; font-weight: 400; color: var(--cream); line-height: 1.2; margin-bottom: 0.4rem; }
.lc-address-name em { color: var(--gold); }
.lc-address-street { font-size: 0.78rem; color: rgba(245,239,228,0.45); font-weight: 400; line-height: 1.8; }
.lc-pills { display: flex; flex-direction: column; gap: 0.6rem; }
.lc-pill { display: flex; align-items: center; gap: 0.9rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(201,169,110,0.12); border-radius: var(--r-md); padding: 0.8rem 1rem; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: border-color 0.3s, background 0.3s; }
.lc-pill:hover { border-color: rgba(201,169,110,0.26); background: rgba(255,255,255,0.07); }
.lc-pill-icon { width: 30px; height: 30px; border-radius: var(--r-sm); flex-shrink: 0; background: rgba(201,169,110,0.08); border: 1px solid rgba(201,169,110,0.14); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.lc-pill-content { flex: 1; min-width: 0; }
.lc-pill-label { font-size: 0.56rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,239,228,0.28); margin-bottom: 0.15rem; font-weight: 500; }
.lc-pill-value { font-size: 0.8rem; color: rgba(245,239,228,0.78); font-weight: 400; }
.lc-pill-badge { font-size: 0.56rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terracotta); background: rgba(181,113,74,0.1); border: 1px solid rgba(181,113,74,0.18); border-radius: 999px; padding: 0.18rem 0.6rem; white-space: nowrap; }
.lc-footer { position: relative; z-index: 2; margin: 0; padding: 1rem 2rem; border-top: 1px solid rgba(201,169,110,0.08); display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: rgba(0,0,0,0.15); flex-wrap: wrap; }
.lc-coords { font-size: 0.65rem; color: rgba(245,239,228,0.22); font-family: monospace; letter-spacing: 0.05em; }
.lc-cta { display: flex; align-items: center; gap: 0.45rem; background: linear-gradient(135deg, var(--terracotta), #9a5230); color: var(--cream); text-decoration: none; padding: 0.6rem 1.2rem; border-radius: 999px; font-size: 0.64rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 16px rgba(181,113,74,0.35); }
.lc-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(181,113,74,0.5); }

/* ══════════════════════════════════════
   MİSAFİR YORUMLARI
══════════════════════════════════════ */
.reviews-section { padding: 5rem 1.5rem; position: relative; }
.reviews-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 30%, rgba(201,169,110,0.05) 0%, transparent 60%); pointer-events: none; }
.reviews-header { text-align: center; margin-bottom: 3rem; position: relative; }
.reviews-score { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-top: 1.2rem; }
.reviews-score-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.8rem; font-weight: 400; color: var(--terracotta); line-height: 1; }
.reviews-score-stars { display: flex; gap: 3px; color: var(--gold); }
.reviews-score-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--stone); }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; max-width: 1200px; margin: 0 auto; }
.review-card { background: rgba(255,255,255,0.04); backdrop-filter: blur(24px) saturate(1.4); -webkit-backdrop-filter: blur(24px) saturate(1.4); border: 1px solid rgba(201,169,110,0.1); border-radius: var(--r-md); padding: 1.8rem; position: relative; box-shadow: 0 4px 24px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.05); transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; }
.review-card:hover { border-color: rgba(201,169,110,0.22); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.07); }
.review-card::before { content: '\201C'; position: absolute; top: 1rem; right: 1.4rem; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 4rem; color: var(--gold); opacity: 0.14; line-height: 1; }
.review-stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 1rem; }
.review-text { font-size: 0.9rem; line-height: 1.7; color: rgba(245,239,228,0.7); margin-bottom: 1.4rem; }
.review-author { display: flex; align-items: center; gap: 0.8rem; }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--terracotta), #9a5230); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 600; flex-shrink: 0; box-shadow: 0 4px 12px rgba(181,113,74,0.3); }
.review-name { font-size: 0.85rem; font-weight: 600; color: var(--cream); }
.review-source { font-size: 0.7rem; color: rgba(245,239,228,0.35); margin-top: 1px; }
.reviews-cta { text-align: center; margin-top: 2.5rem; }
.reviews-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--terracotta); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; text-decoration: none; border-bottom: 1px solid rgba(181,113,74,0.28); padding-bottom: 2px; transition: all 0.25s; }
.reviews-link:hover { color: var(--gold); border-color: var(--gold); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer { background: rgba(6,4,2,0.96); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-top: 1px solid rgba(201,169,110,0.1); padding: 3.5rem 1.5rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; margin-bottom: 2.5rem; }
.footer-logo { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.45rem; font-weight: 800; color: var(--cream); text-decoration: none; display: block; margin-bottom: 0.8rem; }
.footer-logo em { color: var(--gold); font-style: normal; }
.footer-tagline { font-size: 0.77rem; color: rgba(245,239,228,0.28); line-height: 1.9; font-weight: 400; }
.footer-col h4 { font-size: 0.59rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; font-weight: 500; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a, .footer-col address { color: rgba(245,239,228,0.32); text-decoration: none; font-size: 0.77rem; font-weight: 400; line-height: 2; font-style: normal; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1.5rem; display: flex; flex-direction: column; gap: 0.8rem; align-items: center; text-align: center; }
.footer-copy { font-size: 0.67rem; color: rgba(245,239,228,0.18); }
.footer-social-row { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.footer-social-row a { color: rgba(245,239,228,0.22); font-size: 0.65rem; letter-spacing: 0.15em; text-decoration: none; text-transform: uppercase; transition: color 0.3s; }
.footer-social-row a:hover { color: var(--gold); }



/* ══════════════════════════════════════
   GALERİ
══════════════════════════════════════ */
.gallery-section { padding: 5rem 1.5rem; position: relative; }
.gallery-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(201,169,110,0.06) 0%, transparent 65%); pointer-events: none; }
.gallery-header { text-align: center; margin-bottom: 2.5rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 8px;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--r-md);
  cursor: pointer;
  border: 1px solid rgba(201,169,110,0.12);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.07); filter: brightness(0.82); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 1rem 1.1rem;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem; color: var(--cream); 
}
.gallery-item-large { grid-row: span 2; }
.gallery-item-wide  { grid-column: span 2; }

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 240px 220px;
  }
  .gallery-item-large { grid-row: span 2; }
  .gallery-item-wide  { grid-column: span 2; }
}
@media (min-width: 900px) {
  .gallery-section { padding: 7rem 5rem; }
  .gallery-grid { grid-template-rows: 280px 240px; gap: 10px; }
}

/* ── Lightbox ── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  align-items: center; justify-content: center; padding: 1rem;
  opacity: 0; transition: opacity 0.35s ease;
}
.lightbox.open { opacity: 1; }
.lightbox-img-wrap {
  position: relative; max-width: 90vw; max-height: 80vh;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
}
.lightbox-img {
  max-width: 90vw; max-height: 75vh;
  object-fit: contain; border-radius: var(--r-md);
  box-shadow: 0 32px 100px rgba(0,0,0,0.7);
  transition: opacity 0.25s ease;
}
.lightbox-caption {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem; color: rgba(245,239,228,0.55);
   letter-spacing: 0.06em;
}
.lightbox-close {
  position: fixed; top: 1.2rem; right: 1.2rem;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2); cursor: pointer;
  color: var(--cream); display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 2;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev, .lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18); cursor: pointer;
  color: var(--cream); display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 2;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.18); }
.lightbox-dots {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.45rem; align-items: center;
}
.lb-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.3); cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.lb-dot.active { background: var(--gold); transform: scale(1.3); }

/* ══════════════════════════════════════
   SSS
══════════════════════════════════════ */
.faq-section { padding: 5rem 1.5rem; position: relative; }
.faq-header { text-align: center; margin-bottom: 2.5rem; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.6rem; }
.faq-item {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201,169,110,0.14);
  border-radius: var(--r-md); overflow: hidden;
  cursor: pointer; transition: border-color 0.3s;
}
.faq-item:hover, .faq-item.open { border-color: rgba(201,169,110,0.3); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.3rem;
  font-size: 0.9rem; font-weight: 500; color: var(--cream);
}
.faq-chevron { color: var(--gold); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 0.84rem; color: rgba(245,239,228,0.55); line-height: 1.8;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 1.3rem;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 1.3rem 1.1rem; }
@media (min-width: 900px) { .faq-section { padding: 7rem 5rem; } }

/* ══════════════════════════════════════
   İLETİŞİM FORMU
══════════════════════════════════════ */
.contact-section { padding: 5rem 1.5rem; position: relative; }
.contact-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 40%, rgba(181,113,74,0.08) 0%, transparent 55%); pointer-events: none; }
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; position: relative; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-detail-icon {
  width: 40px; height: 40px; border-radius: var(--r-sm); flex-shrink: 0;
  background: rgba(201,169,110,0.08); border: 1px solid rgba(201,169,110,0.16);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
}
.contact-detail-label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,239,228,0.3); margin-bottom: 0.2rem; }
.contact-detail-val { font-size: 0.85rem; color: rgba(245,239,228,0.72); line-height: 1.6; }
.contact-form-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(32px) saturate(1.6); -webkit-backdrop-filter: blur(32px) saturate(1.6);
  border: 1px solid rgba(201,169,110,0.18);
  border-radius: var(--r-xl); padding: 2rem 1.6rem;
  box-shadow: 0 24px 72px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.07);
  display: flex; flex-direction: column; gap: 1rem;
}
.cf-field-wrap { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.contact-textarea { resize: vertical; min-height: 110px; }
.contact-submit {
  background: linear-gradient(135deg, var(--terracotta), #a05c38);
  color: var(--cream); border: none; cursor: pointer;
  padding: 1rem 2rem; border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 0.7rem;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 6px 20px rgba(181,113,74,0.4); margin-top: 0.4rem;
}
.contact-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(181,113,74,0.55); }
@media (min-width: 900px) {
  .contact-section { padding: 7rem 5rem; }
  .contact-layout { grid-template-columns: 1fr 1.2fr; gap: 5rem; }
}

/* ══════════════════════════════════════
   WHATSAPP SABİT BUTON
══════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 1.8rem;
  right: 1.5rem;
  z-index: 8000;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  text-decoration: none;
  padding: 0.7rem 1.1rem 0.7rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4), 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.25s, box-shadow 0.25s;
  animation: waEntrance 0.7s 1.5s both cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes waEntrance {
  from { opacity: 0; transform: translateY(24px) scale(0.8); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 40px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.3);
}
.wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid rgba(37,211,102,0.5);
  animation: waPulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%   { transform: scale(1);    opacity: 0.7; }
  70%  { transform: scale(1.15); opacity: 0; }
  100% { transform: scale(1.15); opacity: 0; }
}
.wa-icon { flex-shrink: 0; }
.wa-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* ══════════════════════════════════════
   KONAK HİKAYESİ
══════════════════════════════════════ */
.story-section {
  position: relative;
  padding: 5rem 1.5rem;
  overflow: hidden;
}
.story-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201,169,110,0.09) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(181,113,74,0.07) 0%, transparent 55%);
  pointer-events: none;
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

/* ── Görsel taraf ── */
.story-visual { position: relative; }
.story-img-wrap { position: relative; }

.story-img-inner {
  width: 100%;
  height: 340px;
  background: rgba(30,20,8,0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201,169,110,0.18);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.06);
}
.story-bg-pattern {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(201,169,110,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(181,113,74,0.1) 0%, transparent 55%);
  pointer-events: none;
}
.story-img-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  color: rgba(245,239,228,0.55);
  letter-spacing: 0.1em;
  
  position: relative;
  z-index: 1;
}
.story-img-label em { color: var(--gold); }

.story-year-badge {
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  background: linear-gradient(135deg, var(--terracotta), #9a5230);
  border-radius: var(--r-md);
  padding: 0.7rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 28px rgba(181,113,74,0.5);
  z-index: 4;
}
.story-year-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  color: var(--cream);
  line-height: 1;
  font-weight: 500;
}
.story-year-sub {
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,239,228,0.65);
  margin-top: 0.15rem;
}

.story-detail-card {
  position: absolute;
  bottom: -1.2rem;
  right: 1rem;
  background: rgba(15,10,4,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--r-md);
  padding: 0.9rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
  z-index: 4;
  max-width: 240px;
}
.story-detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  color: rgba(245,239,228,0.55);
  letter-spacing: 0.02em;
}
.story-detail-item svg { color: var(--gold); opacity: 0.7; flex-shrink: 0; }

/* ── İçerik taraf ── */
.story-lead {
  font-size: 0.95rem !important;
  line-height: 1.9 !important;
  color: rgba(245,239,228,0.62) !important;
}

.story-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 2rem;
}
.story-pillar {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: var(--r-md);
  transition: border-color 0.3s, background 0.3s;
}
.story-pillar:hover {
  border-color: rgba(201,169,110,0.28);
  background: rgba(255,255,255,0.07);
}
.story-pillar-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.story-pillar-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.2rem;
}
.story-pillar-sub {
  font-size: 0.65rem;
  color: rgba(245,239,228,0.38);
  line-height: 1.5;
}

.story-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  background: linear-gradient(135deg, var(--terracotta), #a05c38);
  color: var(--cream);
  text-decoration: none;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(181,113,74,0.4);
  transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
}
.story-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(181,113,74,0.55);
  filter: brightness(1.08);
}

@media (min-width: 900px) {
  .story-layout { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .story-section { padding: 7rem 5rem; }
  .story-img-inner { height: 480px; }
}

/* ══════════════════════════════════════
   REVEAL ANIMATION
══════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(50px) scale(0.95); filter: blur(16px);
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 1.2s ease;
  will-change: opacity, transform, filter;
}
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }


/* ══════════════════════════════════════
   MÜSAİTLİK TAKVİMİ
══════════════════════════════════════ */
.avail-calendar-wrap {
  margin: 0.5rem 0 0;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(201,169,110,0.18);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.3s;
}
.avail-calendar-wrap:hover {
  border-color: rgba(201,169,110,0.28);
}
.avail-cal-header {
  padding: 0.65rem 1rem 0.6rem;
  border-bottom: 1px solid rgba(201,169,110,0.1);
}
.avail-cal-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.avail-cal-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.avail-cal-title svg { opacity: 0.7; }
.avail-cal-nav-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.avail-cal-month {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--cream);
  font-weight: 400;
  min-width: 100px;
  text-align: center;
}
.avail-nav-btn {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,110,0.2);
  cursor: pointer;
  color: rgba(245,239,228,0.5);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.avail-nav-btn:hover {
  background: rgba(201,169,110,0.12);
  color: var(--gold);
  border-color: rgba(201,169,110,0.4);
}
.avail-cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
  align-items: center;
}
.avail-legend-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.55rem;
  color: rgba(245,239,228,0.4);
  letter-spacing: 0.06em;
}
.avail-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.avail-dot-free    { background: #5ccc7a; }
.avail-dot-busy    { background: #e05555; }
.avail-dot-pending { background: #e09a3a; }
.avail-dot-selected { background: var(--terracotta); }

.avail-cal-body {
  padding: 0.5rem 0.75rem 0.4rem;
}
.avail-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 0.3rem;
}
.avail-cal-weekdays span {
  text-align: center;
  font-size: 0.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245,239,228,0.25);
  padding: 0.15rem 0;
}
.avail-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

/* Takvim hücreleri */
.avail-cell {
  position: relative;
  width: 100%;
  height: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: background 0.18s, border-color 0.18s, transform 0.15s;
  overflow: hidden;
}
.avail-cell-num {
  font-size: 0.65rem;
  font-weight: 500;
  line-height: 1;
  color: rgba(245,239,228,0.7);
  z-index: 1;
}
.avail-cell-price {
  font-size: 0.38rem;
  letter-spacing: 0.03em;
  color: rgba(201,169,110,0.65);
  line-height: 1;
  margin-top: 1px;
  z-index: 1;
}

/* Durum renkleri */
.avail-empty { pointer-events: none; }
.avail-past {
  opacity: 0.2;
  pointer-events: none;
}
.avail-past .avail-cell-num { color: rgba(245,239,228,0.3); }

.avail-free {
  cursor: pointer;
  border-color: rgba(92,204,122,0.12);
  background: rgba(92,204,122,0.06);
}
.avail-free:hover {
  background: rgba(92,204,122,0.14);
  border-color: rgba(92,204,122,0.3);
  transform: scale(1.06);
}
.avail-free .avail-cell-num { color: rgba(245,239,228,0.85); }

.avail-booked {
  background: rgba(224,85,85,0.08);
  border-color: rgba(224,85,85,0.15);
  cursor: not-allowed;
}
.avail-booked .avail-cell-num {
  color: rgba(224,85,85,0.5);
  text-decoration: line-through;
}
.avail-booked::after {
  content: '';
  position: absolute;
  top: 50%; left: 10%; right: 10%;
  height: 1px;
  background: rgba(224,85,85,0.3);
  transform: translateY(-50%);
}

.avail-pending {
  background: rgba(224,154,58,0.08);
  border-color: rgba(224,154,58,0.2);
  cursor: not-allowed;
}
.avail-pending .avail-cell-num { color: rgba(224,154,58,0.6); }

.avail-today {
  border-color: rgba(201,169,110,0.35) !important;
}
.avail-today .avail-cell-num { color: var(--gold) !important; }

/* Seçilen aralık */
.avail-selected {
  background: var(--terracotta) !important;
  border-color: var(--terracotta) !important;
}
.avail-selected .avail-cell-num { color: white !important; font-weight: 600; }
.avail-selected .avail-cell-price { color: rgba(255,255,255,0.65) !important; }

.avail-in-range {
  background: rgba(181,113,74,0.2) !important;
  border-color: rgba(181,113,74,0.25) !important;
  border-radius: 0;
}
.avail-in-range .avail-cell-num { color: rgba(245,239,228,0.9) !important; }

.avail-range-start {
  border-radius: var(--r-sm) 0 0 var(--r-sm) !important;
}
.avail-range-end {
  border-radius: 0 var(--r-sm) var(--r-sm) 0 !important;
}

/* Hint bar */
.avail-cal-hint {
  padding: 0.65rem 1.2rem;
  background: rgba(201,169,110,0.06);
  border-top: 1px solid rgba(201,169,110,0.1);
  font-size: 0.72rem;
  color: rgba(245,239,228,0.45);
  text-align: center;
  letter-spacing: 0.04em;
  transition: color 0.3s, background 0.3s;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .avail-cell { min-height: 44px; }
  .avail-cell-num { font-size: 0.82rem; }
  .avail-cell-price { font-size: 0.5rem; }
}
@media (min-width: 900px) {
  .avail-cell { min-height: 50px; }
  .avail-cell-num { font-size: 0.88rem; }
  .avail-cell-price { font-size: 0.55rem; }
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET (≥640px)
══════════════════════════════════════ */
@media (min-width: 640px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .room-select-grid { grid-template-columns: repeat(3, 1fr); }
  .booking-fields { grid-template-columns: 1fr 1fr; }
  .contact-fields { grid-template-columns: 1fr 1fr; }
  .booking-bottom { flex-direction: row; align-items: center; }
  .booking-submit { width: auto; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════
   RESPONSIVE — DESKTOP (≥900px)
══════════════════════════════════════ */
@media (min-width: 900px) {
  :root { --topbar-h: 32px; }
  section, .booking-section { padding: 7rem 5rem; }
  #odalar { padding: 7rem 5rem; }
  #ulasim { padding: 7rem 5rem; }
  .topbar { padding: 0 4rem; }
  .topbar-item:not(:first-child) { display: flex; }
  .rooms-intro { grid-template-columns: 1fr 1fr; gap: 3.5rem; margin-bottom: 3.5rem; }
  .rooms-grid { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
  .room-thumb { height: 240px; }
  .restaurant-layout { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .rest-img-main { height: 500px; }
  .transport-layout { grid-template-columns: 1fr 1.2fr; gap: 4rem; }
  .booking-card { padding: 2.8rem; }
  .booking-fields { grid-template-columns: 1fr 1fr 1fr; }
  .stats-bar { padding: 0 5rem; }
  .reviews-section { padding: 7rem 5rem; }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-content { padding: 0 5rem 7rem; }
  .hero-cta { flex-wrap: nowrap; }
  .nav-hamburger { display: none; }
  .nav-links { display: flex; }
  .nav-tel { display: flex; }
}

/* ══════════════════════════════════════
   MOBİL DÜZELTMELER
══════════════════════════════════════ */
@media (max-width: 639px) {
  .topbar-item { display: none; }
  .topbar-item:first-child { display: flex; }
  .topbar-social { display: none; }
  .topbar-divider { display: none; }
  /* Takvim mobil overflow düzeltmesi */
  .cal-dropdown {
    position: fixed;
    top: auto !important;
    bottom: 1rem;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(20px) scale(0.98) !important;
    width: min(300px, 94vw);
    max-height: 70vh;
    overflow-y: auto;
    z-index: 9990;
  }
  .cal-dropdown.open {
    transform: translateX(-50%) translateY(0) scale(1) !important;
  }
  .guest-dropdown { position: fixed; left: 1rem !important; right: 1rem !important; bottom: 1rem; top: auto !important; width: auto; z-index: 9990; }
  .booking-card { border-radius: var(--r-lg); padding: 1.4rem 1rem; }
}
@media (max-width: 899px) {
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
  .nav-tel { display: none; }
  .stats-bar { grid-template-columns: repeat(3,1fr); }
}