

:root {
  --bg: #F8F4ED;
  --bg-soft: #FBF8F2;
  --stone: #E8E0D2;
  --charcoal: #1F2A33;
  --deep: #1B5775;
  --deep-soft: #2E6E8E;
  --coral: #E5703D;
  --coral-dark: #C75D2D;
  --coral-light: #F39E76;
  --gold: #C9A85C;
  --gold-soft: #E0C188;
  --gold-pale: #F4E5C2;
  --ink: #1A1A1A;
  --mute: #707070;
  --border: rgba(31, 42, 51, 0.08);
  
  --font-display: 'Fraunces', 'Cormorant Garamond', serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  
  --section-py: clamp(4rem, 9vw, 7rem);
  --container: 1320px;
  
  --shadow-sm: 0 2px 8px rgba(31, 42, 51, 0.06);
  --shadow-md: 0 8px 32px rgba(31, 42, 51, 0.10);
  --shadow-lg: 0 20px 60px rgba(31, 42, 51, 0.18);
  --shadow-coral: 0 8px 24px rgba(229, 112, 61, 0.35);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(1rem, 4vw, 2.5rem);
  padding-right: clamp(1rem, 4vw, 2.5rem);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  color: var(--charcoal);
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.5rem, 6.5vw, 5rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 500; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); font-weight: 600; }
p { color: var(--ink); margin-bottom: 1rem; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  background: var(--coral);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  box-shadow: var(--shadow-coral);
}

.tag.gold { background: var(--gold); color: var(--charcoal); box-shadow: 0 4px 12px rgba(201, 168, 92, 0.35); }
.tag.dark { background: var(--charcoal); color: white; box-shadow: var(--shadow-md); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--coral);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--coral);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.05rem 2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 52px;
  white-space: nowrap;
}

.btn-primary { background: var(--coral); color: white; box-shadow: var(--shadow-coral); }
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(229, 112, 61, 0.45); }

.btn-dark { background: var(--charcoal); color: white; }
.btn-dark:hover { background: var(--deep); transform: translateY(-1px); }

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

.btn-wa { background: #25D366; color: white; }
.btn-wa:hover { background: #1DA851; }

/* HEADER */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.35s ease;
  padding: 1.25rem 0;
}

.header.scrolled {
  background: rgba(248, 244, 237, 0.96);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-sm);
}

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

/* LOGO — Daha karakterli, monogram + italic */
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: white;
  transition: color 0.3s ease;
}

.logo-monogram {
  width: 42px;
  height: 42px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  font-style: italic;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.header.scrolled .logo-monogram { background: rgba(229, 112, 61, 0.08); }

.logo-text { display: flex; flex-direction: column; }

.logo-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.8;
}

.header.scrolled .logo { color: var(--charcoal); }

.nav-desktop { display: none; gap: 2.25rem; align-items: center; }

.nav-desktop a {
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-desktop a:hover::after { transform: scaleX(1); }
.header.scrolled .nav-desktop a { color: var(--charcoal); }

.header-cta { display: flex; align-items: center; gap: 1rem; }

.lang { display: flex; gap: 0.5rem; font-size: 0.75rem; font-weight: 700; color: white; letter-spacing: 0.1em; align-items: center; }
.lang a { opacity: 0.6; transition: opacity 0.3s ease; }
.lang a.active { opacity: 1; }
.header.scrolled .lang { color: var(--charcoal); }

.btn-mini-cta {
  background: var(--coral);
  color: white;
  padding: 0.6rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.3s ease;
  display: none;
}

.btn-mini-cta:hover { background: var(--coral-dark); transform: translateY(-1px); }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .btn-mini-cta { display: inline-flex; }
  .menu-toggle { display: none; }
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: white;
  transition: background 0.3s ease;
  border-radius: 2px;
}

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

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu.open { transform: translateX(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 1.5rem; }

.mobile-menu nav a {
  color: white;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.mobile-menu .cta-block {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--coral);
  border-radius: var(--radius-md);
  text-align: center;
}

.mobile-menu .cta-block p { color: white; margin-bottom: 0.5rem; font-size: 0.875rem; }

.mobile-menu .cta-block strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: white;
  font-weight: 600;
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(31, 42, 51, 0.65) 0%, rgba(27, 87, 117, 0.55) 50%, rgba(31, 42, 51, 0.7) 100%), url('../assets/images/havuz-manzara.jpg');
  background-size: cover;
  background-position: center;
}

.hero-bg::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(31, 42, 51, 0.85), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 8rem 0 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: end;
}

.hero-text { max-width: 720px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1.75rem;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(229, 112, 61, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(229, 112, 61, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(229, 112, 61, 0.1); }
}

.hero h1 {
  color: white;
  font-weight: 500;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.04;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 400;
}

.hero-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.hero-tag-row span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-tag-row svg { color: var(--coral-light); flex-shrink: 0; }

.hero-cta-row {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-cta-row .meta {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.hero-cta-row .meta::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--coral);
}

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.45fr 1fr; align-items: end; }
}

/* BOOKING WIDGET — DESKTOP ONLY */
.booking-widget {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 3;
  display: block;
}

@media (max-width: 1023px) {
  .booking-widget { display: none; }
}

.booking-widget-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.booking-widget-sub {
  font-size: 0.825rem;
  color: var(--mute);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.booking-widget-sub svg { color: var(--coral); flex-shrink: 0; }

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

.booking-field { position: relative; display: flex; flex-direction: column; }

.booking-field label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 0.4rem;
}

.booking-field input,
.booking-field select {
  width: 100%;
  background: var(--bg);
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  outline: none;
  transition: all 0.25s ease;
  cursor: pointer;
  min-height: 50px;
}

.booking-field input:focus,
.booking-field select:focus {
  border-color: var(--coral);
  background: white;
  box-shadow: 0 0 0 4px rgba(229, 112, 61, 0.1);
}

.booking-submit {
  background: var(--coral);
  color: white;
  border: none;
  padding: 1.1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-coral);
  min-height: 52px;
}

.booking-submit:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(229, 112, 61, 0.5);
}

.booking-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--mute);
  font-weight: 600;
}

.booking-trust .item { display: inline-flex; align-items: center; gap: 0.4rem; }
.booking-trust svg { color: var(--coral); }

@media (min-width: 768px) {
  .booking-grid { grid-template-columns: 1fr 1fr 0.7fr 0.9fr auto; gap: 0.75rem; align-items: end; }
  .booking-submit { padding: 0.85rem 2rem; }
}

/* MOBILE IMAGE SLIDER — Replaces booking widget on mobile */
.mobile-slider-wrap {
  display: none;
  background: var(--charcoal);
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.mobile-slider-header {
  padding: 0 1.5rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.mobile-slider-header .eyebrow { color: var(--coral-light); margin-bottom: 0.25rem; }
.mobile-slider-header .eyebrow::before { background: var(--coral-light); }

.mobile-slider-header h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
}

.mobile-slider-counter {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.mobile-slider-counter strong { color: var(--coral-light); font-weight: 700; }

.mobile-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  gap: 12px;
  padding: 0 1.5rem 0.5rem;
}

.mobile-slider::-webkit-scrollbar { display: none; }

.mobile-slide {
  flex: 0 0 85%;
  scroll-snap-align: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 290px;
  position: relative;
  box-shadow: var(--shadow-md);
}

.mobile-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-slide-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(31, 42, 51, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.45rem 0.85rem;
  border-radius: 100px;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 1rem;
}

.mobile-slider-dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-slider-dot.active {
  background: var(--coral);
  width: 24px;
  border-radius: 100px;
}

.mobile-slider-cta {
  text-align: center;
  margin-top: 1.5rem;
  padding: 0 1.5rem;
}

@media (max-width: 1023px) {
  .mobile-slider-wrap { display: block; }
}

/* INTRO */
.intro { padding: var(--section-py) 0; background: var(--bg); }

.intro-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }

.intro-text h2 { margin-bottom: 1.75rem; max-width: 580px; }

.intro-text > p {
  color: var(--ink);
  margin-bottom: 1.25rem;
  max-width: 580px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 2px solid var(--stone);
}

.intro-stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--coral);
  line-height: 1;
}

.intro-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 0.5rem;
}

.intro-image-stack {
  position: relative;
  aspect-ratio: 4/5;
}

.intro-image-stack .img-main,
.intro-image-stack .img-sub {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.intro-image-stack .img-main { top: 0; right: 0; width: 80%; height: 75%; }
.intro-image-stack .img-sub { bottom: 0; left: 0; width: 55%; height: 45%; border: 8px solid var(--bg); }
.intro-image-stack img { width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 1024px) { .intro-grid { grid-template-columns: 1.2fr 1fr; gap: 5rem; } }

/* ADVANTAGES */
.advantages { padding: var(--section-py) 0; background: var(--charcoal); color: white; position: relative; overflow: hidden; }

.advantages::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(229, 112, 61, 0.15), transparent 70%);
  border-radius: 50%;
}

.advantages-header { text-align: center; max-width: 720px; margin: 0 auto 4rem; position: relative; z-index: 1; }
.advantages-header .eyebrow { color: var(--coral-light); }
.advantages-header .eyebrow::before { background: var(--coral-light); }
.advantages-header h2 { color: white; font-weight: 500; }
.advantages-header h2 em { font-style: italic; color: var(--gold-soft); }

.advantages-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; position: relative; z-index: 1; }

.advantage {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.advantage:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  border-color: var(--coral);
}

.advantage-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: var(--shadow-coral);
}

.advantage h3 { color: white; font-size: 1.35rem; font-weight: 600; }
.advantage p { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; line-height: 1.6; margin-bottom: 0; }

.advantage-highlight {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  background: rgba(229, 112, 61, 0.15);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--coral-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  align-self: flex-start;
}

@media (min-width: 768px) { .advantages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .advantages-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

/* ROOMS */
.rooms { padding: var(--section-py) 0; background: var(--bg); }

.rooms-header { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3.5rem; align-items: end; }
.rooms-header p { color: var(--mute); max-width: 480px; font-size: 1.05rem; }

.rooms-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }

.room-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
}

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

.room-image { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.room-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.room-card:hover .room-image img { transform: scale(1.06); }

.room-badge { position: absolute; top: 1rem; left: 1rem; z-index: 2; }

.room-info { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }

.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--mute);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.room-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.room-meta svg { color: var(--coral); }

.room-info h3 { margin-bottom: 0.75rem; font-size: 1.5rem; color: var(--charcoal); }
.room-info p { color: var(--mute); font-size: 0.95rem; margin-bottom: 1.5rem; flex: 1; line-height: 1.6; }

.room-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.room-actions .btn { padding: 0.85rem 1.5rem; font-size: 0.75rem; min-height: 44px; }

.room-card.disabled .room-image { filter: grayscale(0.5) brightness(0.85); }
.room-card.disabled:hover { transform: none; box-shadow: var(--shadow-sm); }
.room-card.disabled:hover .room-image img { transform: none; }

@media (min-width: 768px) { .rooms-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .rooms-header { grid-template-columns: 1fr 1fr; }
  .rooms-grid { grid-template-columns: repeat(3, 1fr); }
}

/* WELLNESS */
.wellness { padding: 0; background: var(--deep); color: white; position: relative; overflow: hidden; }

.wellness-grid { display: grid; grid-template-columns: 1fr; }

.wellness-image {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  position: relative;
}

.wellness-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(27, 87, 117, 0.3), transparent);
}

.wellness-content {
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wellness-content .eyebrow { color: var(--gold-soft); }
.wellness-content .eyebrow::before { background: var(--gold-soft); }

.wellness h2 { color: white; margin-bottom: 1.5rem; font-weight: 500; }
.wellness h2 em { color: var(--gold-soft); font-style: italic; }

.wellness-lead { color: rgba(255, 255, 255, 0.8); font-size: 1.1rem; line-height: 1.65; margin-bottom: 2.25rem; max-width: 500px; }

.wellness-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.wellness-services li {
  list-style: none;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  font-weight: 500;
}

.wellness-services li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-soft);
  font-weight: 700;
}

.wellness-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }

.wellness .btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 8px 24px rgba(201, 168, 92, 0.35);
}
.wellness .btn-primary:hover { background: var(--gold-soft); box-shadow: 0 12px 32px rgba(201, 168, 92, 0.45); }

.wellness .btn-outline { border-color: rgba(255, 255, 255, 0.4); color: white; }
.wellness .btn-outline:hover { background: white; color: var(--charcoal); }

@media (min-width: 1024px) {
  .wellness-grid { grid-template-columns: 1.1fr 1fr; min-height: 700px; }
  .wellness-image { aspect-ratio: auto; }
}

/* DINING */
.dining { padding: var(--section-py) 0; background: var(--bg); }

.dining-header { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }

.dining-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }

.dining-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  min-height: 380px;
}

.dining-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.dining-card-image {
  height: 220px;
  background-image: url('../assets/images/restoran-genel-merkez.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.dining-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31, 42, 51, 0.4), transparent 50%);
}

.dining-card.minimal .dining-card-image {
  background: linear-gradient(135deg, var(--stone) 0%, var(--bg-soft) 100%);
}

.dining-card.minimal .dining-card-image::before {
  content: attr(data-icon);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  color: var(--coral);
  opacity: 0.4;
}

.dining-card.minimal .dining-card-image::after { display: none; }

.dining-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }

.dining-meta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.5rem;
}

.dining-card h3 { margin-bottom: 0.75rem; font-size: 1.5rem; }
.dining-card p { color: var(--mute); font-size: 0.95rem; flex: 1; margin-bottom: 1.25rem; line-height: 1.6; }

.dining-card .link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  transition: color 0.3s ease;
}

.dining-card .link:hover { color: var(--coral); }
.dining-card .link svg { transition: transform 0.3s ease; }
.dining-card .link:hover svg { transform: translateX(4px); }

@media (min-width: 768px) { .dining-grid { grid-template-columns: repeat(3, 1fr); } }

/* LOCATION */
.location { padding: var(--section-py) 0; background: var(--stone); }
.location-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }

.location-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }

.map-card {
  aspect-ratio: 4/3;
  background-image: linear-gradient(135deg, rgba(31, 42, 51, 0.3), rgba(27, 87, 117, 0.3)), url('../assets/images/otel-cephe-sokak.jpg');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.map-pin {
  width: 72px;
  height: 72px;
  background: var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  box-shadow: 0 0 0 8px rgba(229, 112, 61, 0.3), var(--shadow-lg);
  position: relative;
  z-index: 2;
  animation: pinPulse 2.5s infinite;
}

@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(229, 112, 61, 0.3), var(--shadow-lg); }
  50% { box-shadow: 0 0 0 16px rgba(229, 112, 61, 0.15), var(--shadow-lg); }
}

.map-text {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  color: white;
  background: rgba(31, 42, 51, 0.7);
  backdrop-filter: blur(10px);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
}

.map-text strong { display: block; font-size: 1rem; margin-bottom: 0.25rem; }

.distances-block { background: white; padding: 2rem; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }

.distances-block h3 {
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.distances-block h3:first-child { margin-top: 0; }

.distance-list { list-style: none; }

.distance-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.distance-list li:last-child { border-bottom: none; }
.distance-list .place { color: var(--charcoal); font-weight: 500; }
.distance-list .meas { font-family: var(--font-display); font-size: 1.05rem; color: var(--coral); font-weight: 600; }

.location-highlight {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: white;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-coral);
}

.location-highlight svg { flex-shrink: 0; opacity: 0.9; }

.location-highlight .text { font-size: 0.9rem; line-height: 1.4; font-weight: 500; }
.location-highlight strong { display: block; font-size: 1rem; font-weight: 700; margin-bottom: 0.15rem; }

@media (min-width: 1024px) {
  .location-grid { grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: start; }
}

/* REVIEWS */
.reviews { padding: var(--section-py) 0; background: var(--bg); text-align: center; }
.reviews-header { max-width: 600px; margin: 0 auto 3rem; }

.ratings-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  margin-bottom: 4rem;
  padding: 2rem;
  background: white;
  border-radius: var(--radius-md);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-sm);
}

.rating { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.rating-score { font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; color: var(--charcoal); line-height: 1; }
.rating-source { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mute); font-weight: 700; }

.review-quotes { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 1100px; margin: 0 auto; }

.review-quote {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  text-align: left;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.review-quote:hover { transform: translateY(-3px); }
.review-quote-stars { color: var(--coral); margin-bottom: 0.75rem; font-size: 1rem; letter-spacing: 0.1em; }

.review-quote p {
  font-size: 0.975rem;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.review-quote-author { font-size: 0.875rem; color: var(--charcoal); font-weight: 700; }
.review-quote-author span { color: var(--mute); font-weight: 500; margin-left: 0.5rem; }

@media (min-width: 768px) { .review-quotes { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .review-quotes { grid-template-columns: repeat(3, 1fr); } }

/* FAQ */
.faq { padding: var(--section-py) 0; background: var(--stone); }

.faq-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.faq-intro h2 { margin-bottom: 1.25rem; max-width: 360px; }
.faq-intro p { color: var(--mute); max-width: 380px; }

.faq-items { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.faq-item.open { box-shadow: var(--shadow-md); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.3s ease;
}

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

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

.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--charcoal);
  transition: all 0.3s ease;
}

.faq-icon::before { width: 12px; height: 2px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon::after { width: 2px; height: 12px; top: 50%; left: 50%; transform: translate(-50%, -50%); }

.faq-item.open .faq-icon { background: var(--coral); }
.faq-item.open .faq-icon::before { background: white; }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); background: white; }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner { padding: 0 1.5rem 1.5rem; color: var(--mute); line-height: 1.7; font-size: 0.95rem; }

@media (min-width: 1024px) { .faq-grid { grid-template-columns: 1fr 1.7fr; gap: 5rem; } }

/* CONTACT */
.contact { padding: var(--section-py) 0; background: var(--charcoal); color: white; position: relative; overflow: hidden; }

.contact::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(229, 112, 61, 0.08), transparent 70%);
}

.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; position: relative; z-index: 1; }

.contact-info h2 { color: white; margin-bottom: 1.25rem; font-weight: 500; }
.contact-info h2 em { color: var(--coral-light); font-style: italic; }

.contact-info > p { color: rgba(255, 255, 255, 0.7); font-size: 1.075rem; line-height: 1.65; max-width: 380px; margin-bottom: 2.5rem; }

.contact-blocks { display: flex; flex-direction: column; gap: 1.25rem; max-width: 380px; }

.contact-block {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.contact-block:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--coral); }

.contact-block-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--coral-light); margin-bottom: 0.4rem; font-weight: 700; }

.contact-block-value { font-family: var(--font-display); font-size: 1.25rem; color: white; line-height: 1.4; font-weight: 500; }

.contact-form { background: white; color: var(--ink); padding: 2.25rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.contact-form h3 { margin-bottom: 0.4rem; font-size: 1.5rem; color: var(--charcoal); }
.contact-form .lead { color: var(--mute); font-size: 0.95rem; margin-bottom: 1.75rem; }

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

@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; gap: 0.4rem; }

.field label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--coral); font-weight: 700; }

.field input, .field select, .field textarea {
  background: var(--bg);
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  outline: none;
  transition: all 0.25s ease;
}

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--coral);
  background: white;
  box-shadow: 0 0 0 4px rgba(229, 112, 61, 0.1);
}

.field textarea { resize: vertical; min-height: 80px; }

.checkbox-field { display: flex; align-items: flex-start; gap: 0.75rem; margin: 0.5rem 0; font-size: 0.85rem; color: var(--mute); line-height: 1.5; }
.checkbox-field input { margin-top: 0.25rem; flex-shrink: 0; accent-color: var(--coral); }
.checkbox-field a { color: var(--coral); border-bottom: 1px solid currentColor; font-weight: 600; }

.contact-form button {
  background: var(--coral);
  color: white;
  border: none;
  padding: 1.05rem 2rem;
  font-family: var(--font-body);
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 0.5rem;
  width: 100%;
  border-radius: 100px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-coral);
  min-height: 52px;
}

.contact-form button:hover { background: var(--coral-dark); transform: translateY(-1px); box-shadow: 0 12px 32px rgba(229, 112, 61, 0.5); }

@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.3fr; gap: 5rem; } }

/* FOOTER */
.footer { background: #14181D; color: rgba(255, 255, 255, 0.6); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }

.footer-brand-block { display: flex; flex-direction: column; gap: 1rem; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: white;
}

.footer-logo .logo-monogram { width: 38px; height: 38px; font-size: 1.25rem; }
.footer-logo .logo-name { font-size: 1.4rem; }

.footer-col p { color: rgba(255, 255, 255, 0.5); font-size: 0.875rem; line-height: 1.7; margin-bottom: 0; }

.footer-col h4 {
  color: var(--coral-light);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { color: rgba(255, 255, 255, 0.55); font-size: 0.875rem; transition: color 0.3s ease; }
.footer-col ul a:hover { color: var(--coral); }

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* STICKY ELEMENTS */
.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--charcoal);
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  z-index: 100;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
}

.mobile-bar a {
  padding: 0.75rem 0.4rem;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.3s ease;
  min-height: 64px;
  justify-content: center;
}

.mobile-bar a.wa { background: #25D366; color: white; }
.mobile-bar a.cta { background: var(--coral); color: white; font-size: 0.72rem; }
.mobile-bar a:hover { filter: brightness(0.92); }
.mobile-bar svg { width: 22px; height: 22px; flex-shrink: 0; }
.mobile-bar a span { white-space: nowrap; }

@media (min-width: 1024px) { .mobile-bar { display: none; } }

.float-wa {
  display: none;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  z-index: 100;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease;
}

.float-wa:hover { transform: scale(1.08); box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5); }
.float-wa svg { width: 30px; height: 30px; color: white; }

@media (min-width: 1024px) { .float-wa { display: flex; } }
@media (max-width: 1023px) { body { padding-bottom: 64px; } }

.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════════
   ADVANTAGES CAROUSEL — Override eski grid
   ═══════════════════════════════════════════════════════════════ */

.advantages { padding-bottom: clamp(3rem, 6vw, 5rem); }

.advantages-carousel-wrap {
  position: relative;
  z-index: 1;
  margin-top: 0;
  width: 100%;
}

.advantages-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  gap: 1rem;
  padding: 0 clamp(1rem, 4vw, 2.5rem) 1rem;
  scroll-padding: clamp(1rem, 4vw, 2.5rem);
}

.advantages-carousel::-webkit-scrollbar { display: none; }

/* Override the old grid — make cards flexible & snap */
.advantages-carousel .advantage {
  flex: 0 0 80%;
  scroll-snap-align: start;
  margin: 0;
  height: auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.advantages-carousel .advantage:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--coral);
  transform: translateY(-3px);
}

@media (min-width: 600px) {
  .advantages-carousel .advantage { flex: 0 0 50%; }
  .advantages-carousel { gap: 1.25rem; }
}

@media (min-width: 1024px) {
  .advantages-carousel .advantage { flex: 0 0 calc(33.333% - 1rem); }
  .advantages-carousel { gap: 1.5rem; padding: 0 4vw 1rem; scroll-padding: 4vw; }
}

/* Carousel arrows (desktop only) */
.carousel-arrows {
  display: none;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.carousel-arrow {
  width: 52px;
  height: 52px;
  background: var(--coral);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-coral);
  transition: all 0.3s ease;
}

.carousel-arrow:hover:not(:disabled) {
  background: var(--coral-dark);
  transform: scale(1.05);
}

.carousel-arrow:disabled {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
  box-shadow: none;
}

.carousel-arrow svg { width: 20px; height: 20px; }

@media (min-width: 1024px) {
  .carousel-arrows { display: flex; }
}

/* Carousel dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--coral);
  width: 28px;
  border-radius: 100px;
}

.carousel-dot:hover:not(.active) { background: rgba(255, 255, 255, 0.4); }

/* Subtle "swipe hint" on first load */
.advantages-carousel-wrap::after {
  content: "← Kaydırın →";
  display: block;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.5rem;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .advantages-carousel-wrap::after { display: none; }
}

/* Advantage value chips — bigger sales emphasis */
.advantage-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}

.advantage-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.7rem;
  background: rgba(229, 112, 61, 0.15);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--coral-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.advantage-chip.gold { background: rgba(201, 168, 92, 0.18); color: var(--gold-soft); }

/* ═══════════════════════════════════════════════════════════════
   FORM SIMPLIFIED — daha kompakt
   ═══════════════════════════════════════════════════════════════ */

.contact-form-simple .form-grid { gap: 1rem; }

.contact-form-simple .field input,
.contact-form-simple .field textarea {
  padding: 0.85rem 1rem;
  font-size: 1rem;
}

.contact-form-simple .field textarea {
  min-height: 90px;
}

.contact-form-simple p.lead-small {
  color: var(--mute);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.contact-form-simple .quick-cta-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 480px) {
  .contact-form-simple .quick-cta-row { grid-template-columns: 1fr 1fr; }
}

.quick-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  min-height: 48px;
}

.quick-cta.tel {
  background: var(--charcoal);
  color: white;
}

.quick-cta.tel:hover { background: var(--deep); transform: translateY(-1px); }

.quick-cta.wa {
  background: #25D366;
  color: white;
}

.quick-cta.wa:hover { background: #1DA851; transform: translateY(-1px); }

.quick-cta svg { flex-shrink: 0; }


/* ═══════════════════════════════════════════════════════════════
   SALES ANCHOR — 1 yerde sabit dürtme (kurumsal yapıyı bozmadan)
   ═══════════════════════════════════════════════════════════════ */

/* Desktop anchor: Booking widget üzerinde küçük gold-coral badge */
.sales-anchor-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: linear-gradient(135deg, rgba(229, 112, 61, 0.08), rgba(201, 168, 92, 0.1));
  border: 1px solid rgba(229, 112, 61, 0.25);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral-dark);
  margin-bottom: 0.85rem;
  width: fit-content;
  position: relative;
}

.sales-anchor-badge::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 400;
}

/* Mobile anchor: Slider altında hairline nudge — tek satış noktası */
.mobile-slider-nudge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.75rem;
  padding: 0 1.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(228, 195, 128, 0.85);
}

.mobile-slider-nudge::before,
.mobile-slider-nudge::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(228, 195, 128, 0.3));
  max-width: 70px;
}

.mobile-slider-nudge::after {
  background: linear-gradient(to left, transparent, rgba(228, 195, 128, 0.3));
}

.mobile-slider-nudge .spark {
  color: var(--coral);
  font-size: 0.85rem;
}

/* Eski trust strip'i kaldır (3 yerde tekrar etmesin) */
.booking-trust { display: none !important; }

/* Eski mobile slider CTA'yı kaldır */
.mobile-slider-cta { display: none !important; }

/* Hero meta yumuşat — sales hook olmadan */
.hero-cta-row .meta {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* Refinement: spacing rafine */
.advantages-header { margin-bottom: 3rem; }
.rooms-header { margin-bottom: 3rem; }


/* ═══════════════════════════════════════════════════════════════
   V6 FIX — Sistematik düzeltmeler
   ═══════════════════════════════════════════════════════════════ */

/* Logo cursive — gerçek logoya yakın (Allura) */

.logo-name {
  font-family: 'Allura', 'Dancing Script', 'Brush Script MT', cursive !important;
  font-style: normal !important;
  font-size: 2.1rem !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 0.85 !important;
}

.footer-logo .logo-name { font-size: 1.95rem !important; }

.logo-monogram {
  font-family: 'Allura', 'Dancing Script', 'Brush Script MT', cursive !important;
  font-style: normal !important;
  font-size: 1.95rem !important;
  letter-spacing: 0 !important;
}

.logo-sub { letter-spacing: 0.18em !important; font-size: 0.55rem !important; }

/* Desktop hero CTA'ları gizle — booking widget tek action handler */
@media (min-width: 1024px) {
  .hero-cta-row {
    display: none !important;
  }
  .hero-text {
    max-width: 600px;
  }
}

/* Hero h1 daha sade boyutlandırma */
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem) !important;
  line-height: 1.05 !important;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
  line-height: 1.4;
  font-style: italic;
}

/* Card alignment fix — equal height tüm card group'lar */
.advantages-carousel .advantage,
.dining-card,
.room-card {
  display: flex;
  flex-direction: column;
}

.advantage > p,
.dining-card-body p,
.room-info p {
  flex: 1;
}

.advantages-carousel .advantage {
  min-height: 320px;
}

.dining-card {
  min-height: 460px;
}

/* Rooms grid — 2 oda olunca dengeli ortalansın */
@media (min-width: 1024px) {
  .rooms-grid.two-rooms {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* "Diğer süitler" not card */
.rooms-note {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--bg-soft);
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.rooms-note p {
  color: var(--mute);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

.rooms-note strong {
  color: var(--charcoal);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
}

.rooms-note a {
  color: var(--coral);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--coral);
  padding-bottom: 2px;
}


/* ═══════════════════════════════════════════════════════════════
   V7 REFINEMENT — Gerçek logo + CTA cleanup + Card alignment
   ═══════════════════════════════════════════════════════════════ */

/* Logo image versiyonları (dark + white) */
.logo {
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.logo-img {
  display: block;
  height: 44px;
  width: auto;
  transition: opacity 0.3s ease;
}

.logo-img-dark { display: none; }
.logo-img-white { display: block; }

.header.scrolled .logo-img-dark { display: block; }
.header.scrolled .logo-img-white { display: none; }

/* Eski text logo elementlerini gizle */
.logo-monogram, .logo-text { display: none !important; }

/* Footer logo — her zaman white */
.footer-logo .logo-img-white { display: block; }
.footer-logo .logo-img-dark { display: none; }

/* Header'daki SİZİ ARAYALIM pill button kaldır (CTA tekrarı) */
.btn-mini-cta { display: none !important; }

/* Hero CTA'larını her platformda gizle — booking widget + bottom bar yeterli */
.hero-cta-row { display: none !important; }

/* Hero h1 sadeleştir */
.hero h1 {
  font-size: clamp(2.75rem, 6vw, 5rem) !important;
  line-height: 1 !important;
  margin-bottom: 1rem !important;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem) !important;
  margin-bottom: 1.75rem !important;
}

/* Card alignment - tüm card grupları için consistent height */

/* Advantages cards (carousel) */
.advantages-carousel .advantage {
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.advantages-carousel .advantage > p {
  flex: 1;
}

/* Review cards alignment */
.review-quote {
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.review-quote > p {
  flex: 1;
  margin-bottom: 1.25rem;
}

/* Dining cards aligned */
.dining-card {
  min-height: 460px;
}

/* Room cards aligned */
.room-card {
  min-height: 540px;
  display: flex;
  flex-direction: column;
}

.room-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-info > p {
  flex: 1;
}

/* Konum kartında otel görseli zaten net göründüğü için pin daha minimal */
.map-pin {
  width: 56px;
  height: 56px;
  font-size: 1.4rem;
  background: rgba(229, 112, 61, 0.92);
  backdrop-filter: blur(4px);
}

/* Mobile slider header — başlık kesilmesin */
.mobile-slider-wrap { padding-top: 2.5rem; }


/* Hero pitch — h1 kompakt sade */
.hero h1.hero-pitch {
  font-size: clamp(2.25rem, 4vw, 3.4rem) !important;
  font-weight: 500 !important;
  line-height: 1.15 !important;
  margin-bottom: 1.75rem !important;
  max-width: 600px;
}

.hero h1.hero-pitch em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 400;
}


/* ═══════════════════════════════════════════════════════════════
   V8 — FORM, MENU, BOOKING WIDGET refactor
   ═══════════════════════════════════════════════════════════════ */

/* Booking grid: 4 kolon (önceden 5 idi) */
@media (min-width: 768px) {
  .booking-grid {
    grid-template-columns: 1fr 1fr 0.7fr auto !important;
    gap: 0.75rem;
    align-items: end;
  }
  .booking-submit { padding: 0.85rem 2rem; min-width: 160px; }
}

/* Form input/textarea — daha güzel */
.contact-form-simple {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: 0 24px 60px rgba(31, 42, 51, 0.20);
}

.contact-form-simple h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.contact-form-simple .lead-small {
  color: var(--mute);
  font-size: 0.92rem;
  margin-bottom: 1.75rem;
  line-height: 1.55;
}

.contact-form-simple .field {
  margin-bottom: 1rem;
}

.contact-form-simple .field label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--coral-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.contact-form-simple .field input,
.contact-form-simple .field textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border: 1.5px solid var(--border);
  background: var(--bg-soft);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  outline: none;
  transition: all 0.25s ease;
}

.contact-form-simple .field input::placeholder,
.contact-form-simple .field textarea::placeholder {
  color: rgba(31, 42, 51, 0.35);
  font-weight: 400;
}

.contact-form-simple .field input:hover,
.contact-form-simple .field textarea:hover {
  border-color: rgba(229, 112, 61, 0.3);
  background: white;
}

.contact-form-simple .field input:focus,
.contact-form-simple .field textarea:focus {
  border-color: var(--coral);
  background: white;
  box-shadow: 0 0 0 4px rgba(229, 112, 61, 0.12);
}

.contact-form-simple .field textarea {
  min-height: 100px;
  resize: vertical;
  font-family: var(--font-body);
}

.contact-form-simple .checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--mute);
  margin: 1rem 0 1.25rem;
  line-height: 1.45;
}

.contact-form-simple .checkbox-field input[type="checkbox"] {
  margin-top: 0.18rem;
  width: 18px;
  height: 18px;
  accent-color: var(--coral);
  flex-shrink: 0;
}

.contact-form-simple .checkbox-field a {
  color: var(--coral-dark);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.contact-form-simple > button[type="submit"] {
  width: 100%;
  padding: 1.1rem 1.5rem;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: white;
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(229, 112, 61, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-form-simple > button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(229, 112, 61, 0.5);
}

.contact-form-simple .quick-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.contact-form-simple .quick-cta {
  padding: 0.85rem 1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.25s ease;
  min-height: 48px;
}

.contact-form-simple .quick-cta.tel {
  background: var(--charcoal);
  color: white;
}
.contact-form-simple .quick-cta.tel:hover { background: #2A3845; transform: translateY(-1px); }

.contact-form-simple .quick-cta.wa {
  background: #25D366;
  color: white;
}
.contact-form-simple .quick-cta.wa:hover { background: #20BC5A; transform: translateY(-1px); }

@media (max-width: 600px) {
  .contact-form-simple { padding: 1.75rem 1.5rem; }
  .contact-form-simple .quick-cta-row {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE MENU — Kompakt slide-down
   ═══════════════════════════════════════════════════════════════ */

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  bottom: auto;
  background: rgba(31, 42, 51, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  padding: 0;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 100vh;
  overflow-y: auto;
}

.mobile-menu.open { transform: translateY(0); }

.mobile-menu-inner {
  padding: 5rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu nav a {
  color: white;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.25s ease, padding-left 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu nav a:hover,
.mobile-menu nav a:active {
  color: var(--coral-light);
  padding-left: 0.5rem;
}

.mobile-menu nav a::after {
  content: "→";
  font-family: var(--font-body);
  font-size: 1rem;
  opacity: 0.4;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mobile-menu nav a:hover::after {
  opacity: 1;
  transform: translateX(4px);
}

.mobile-menu-phone {
  margin-top: 1.5rem;
  padding: 1.1rem 1.5rem;
  background: var(--coral);
  color: white;
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-decoration: none;
  transition: background 0.25s ease;
  box-shadow: 0 6px 16px rgba(229, 112, 61, 0.35);
}

.mobile-menu-phone:hover { background: var(--coral-dark); }

.mobile-menu-phone-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}

.mobile-menu-phone-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Mobile menu close button — tek X üstte */
.mobile-menu::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  pointer-events: none;
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1;
  z-index: 1;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(90deg);
}

/* Mobile menü açıkken body scroll lock — JS'den ekleyeceğiz */
body.menu-open { overflow: hidden; }

/* Active nav link */
.nav-active { 
  color: var(--coral-light) !important;
  position: relative;
}

.nav-active::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--coral);
}

/* ═══════════════════════════════════════════════════════════════
   HERO H1 — Mobil için daha kompakt
   ═══════════════════════════════════════════════════════════════ */

.hero h1.hero-pitch {
  font-size: clamp(2.1rem, 5vw, 3.4rem) !important;
  font-weight: 500 !important;
  line-height: 1.1 !important;
  margin-bottom: 1.5rem !important;
  max-width: 520px;
}

.hero h1.hero-pitch em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 400;
  display: inline;
}

.hero h1.hero-pitch br {
  display: none;
}

@media (min-width: 1024px) {
  .hero h1.hero-pitch br { display: block; }
}

/* ═══════════════════════════════════════════════════════════════
   GENERAL POLISH
   ═══════════════════════════════════════════════════════════════ */

/* FAQ daha küçük olsun reviews kalktı için ihtiyaç olmasın */

/* Sticky bottom bar - daha küçük tipografi */
.mobile-bar a {
  font-size: 0.62rem !important;
  padding: 0.7rem 0.4rem !important;
}

.mobile-bar a.cta {
  font-size: 0.7rem !important;
}

.mobile-bar a span {
  white-space: nowrap;
}



/* Menu toggle hamburger → X dönüşümü */
.menu-toggle {
  position: relative;
  z-index: 1001;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.menu-toggle.active span {
  background: white !important;
}

.menu-toggle span {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════════════════════════
   V9 — A'dan Z'ye iyileştirmeler
   ═══════════════════════════════════════════════════════════════ */

/* Skip-to-content (a11y) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--coral);
  color: white;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  text-decoration: none;
  z-index: 10000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* Focus-visible outlines (a11y) */
*:focus-visible {
  outline: 2.5px solid var(--coral);
  outline-offset: 3px;
  border-radius: 4px;
}

button:focus-visible, a:focus-visible {
  outline-offset: 4px;
}

/* Booking submit button — single line guarantee */
.booking-submit {
  white-space: nowrap;
  min-width: 180px;
  padding: 0.85rem 1.75rem !important;
  letter-spacing: 0.05em !important;
  font-size: 0.78rem !important;
}

@media (max-width: 600px) {
  .booking-submit {
    width: 100%;
    padding: 1rem !important;
  }
}

/* Map card — gerçek Google Maps iframe */
.map-card {
  aspect-ratio: 16/10;
  background: var(--stone);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-card .map-pin,
.map-card .map-text {
  display: none !important;
}

.map-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.75rem 1.25rem;
  background: var(--charcoal);
  color: white;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
}

.map-directions:hover {
  background: var(--coral);
  transform: translateY(-1px);
}

/* Mobile bar — daha kompakt */
.mobile-bar a {
  font-size: 0.6rem !important;
  padding: 0.6rem 0.3rem !important;
  letter-spacing: 0.04em !important;
}

.mobile-bar a.cta {
  font-size: 0.68rem !important;
}

.mobile-bar a.cta span:first-child {
  font-size: 0.78rem !important;
}

.mobile-bar svg {
  width: 18px !important;
  height: 18px !important;
}

/* Room meta düzeltme */
.room-meta {
  flex-wrap: wrap;
  gap: 0.4rem 0.8rem;
}

.room-meta span {
  font-size: 0.66rem !important;
  letter-spacing: 0.06em;
  color: var(--coral-dark);
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.room-meta span::before {
  content: "✓";
  color: var(--coral);
  font-weight: 700;
}

/* Dining card 02 - artık image var, minimal class kalmasın */
.dining-card .dining-card-image {
  position: relative;
}

/* Section başlıklarda <em> renk tutarlılığı */
.intro-text h2 em,
.location-header h2 em,
.dining-header h2 em,
.contact-info h2 em {
  font-style: italic;
}

/* Form button hover daha keskin */
.contact-form-simple > button[type="submit"]:focus-visible {
  outline: 3px solid var(--coral-light);
  outline-offset: 4px;
}

/* WCAG color contrast iyileştirme */
.distance-list .place {
  color: #2A3744;
  font-weight: 500;
}

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

.intro-text p {
  color: #2A3744;
}

/* Touch target sizes (a11y) — minimum 44px */
.lang a, .footer-col ul a {
  display: inline-block;
  padding: 0.4rem 0.2rem;
  min-height: 44px;
  line-height: 1.5;
}

.faq-question {
  min-height: 56px;
}

/* Intro stats vurgu */
.intro-stat-num {
  letter-spacing: -0.02em;
}

.intro-stat-label {
  font-size: 0.7rem;
  font-weight: 700;
}


/* ═══════════════════════════════════════════════════════════════
   V10 — Final clean fixes
   ═══════════════════════════════════════════════════════════════ */

/* CSS-TEXT LOGO — blob bug fix */
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-decoration: none;
  line-height: 1;
}

.logo-script {
  font-family: 'Allura', 'Dancing Script', 'Brush Script MT', cursive;
  font-size: 2.4rem;
  font-weight: 400;
  color: white;
  letter-spacing: 0;
  line-height: 0.95;
  display: block;
  font-style: normal;
}

.logo-tag {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.2em;
  margin-top: 2px;
  display: block;
  opacity: 0.9;
}

.header.scrolled .logo-script,
.header.scrolled .logo-tag {
  color: var(--charcoal);
}

/* Mobile menu açıkken header'da logo white kalır */
body.menu-open .logo-script,
body.menu-open .logo-tag {
  color: white !important;
}

/* Footer logo */
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 1rem;
}

.footer-logo .logo-script,
.footer-logo .logo-tag {
  color: white;
}

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

.footer-logo .logo-tag {
  font-size: 0.55rem;
}

/* Old img-based logo CSS rules — kaldır */
.logo-img,
.logo-img-dark,
.logo-img-white,
.logo-monogram,
.logo-text,
.logo-name,
.logo-sub {
  display: none !important;
}

/* MAP — Statik görsel + overlay */
.map-card {
  display: block;
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.map-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(31, 42, 51, 0.18);
}

.map-card .map-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.map-card .map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(31, 42, 51, 0.4) 50%, rgba(31, 42, 51, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.map-pin-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%);
  width: 64px;
  height: 64px;
  background: var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(229, 112, 61, 0.3), 0 12px 32px rgba(31, 42, 51, 0.3);
  animation: pinPulse 2.5s ease-in-out infinite;
}

@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(229, 112, 61, 0.3), 0 12px 32px rgba(31, 42, 51, 0.3); }
  50% { box-shadow: 0 0 0 16px rgba(229, 112, 61, 0.15), 0 12px 32px rgba(31, 42, 51, 0.3); }
}

.map-info {
  color: white;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.map-info strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.map-info span {
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.92;
}

.map-info .map-cta {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral-light);
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Old map-pin (text "L") + map-text + map-directions kaldır */
.map-pin,
.map-text,
.map-directions {
  display: none !important;
}

/* HERO h1 — mobile word break iyileştirme */
.hero h1.hero-pitch {
  word-break: keep-all;
  overflow-wrap: break-word;
  hyphens: none;
}

@media (max-width: 600px) {
  .hero h1.hero-pitch {
    font-size: clamp(1.85rem, 7vw, 2.4rem) !important;
    line-height: 1.15 !important;
  }
}

/* HERO meta tag-row mobile — daha ferah */
@media (max-width: 600px) {
  .hero-tag-row {
    gap: 0.5rem 1rem !important;
    font-size: 0.85rem !important;
  }
}

/* WELLNESS başlık - kompakt */
.wellness h2 {
  font-size: clamp(1.85rem, 4vw, 3.25rem) !important;
  line-height: 1.05 !important;
}

/* INTRO h2 — kompakt */
.intro-text h2 {
  font-size: clamp(2rem, 4.2vw, 3.4rem) !important;
  line-height: 1.05 !important;
}

/* DINING başlık - kompakt */
.dining-header h2 {
  font-size: clamp(1.85rem, 4vw, 3rem) !important;
  line-height: 1.1 !important;
}

/* ROOMS başlık - daha bilgilendirici */
.rooms-header h2 {
  font-size: clamp(2rem, 4vw, 3rem) !important;
  line-height: 1.05 !important;
}

/* Mobile bar — daha kompakt */
@media (max-width: 600px) {
  .mobile-bar a.cta {
    line-height: 1.1;
  }
  .mobile-bar a.cta span:first-child {
    font-size: 0.74rem !important;
  }
  .mobile-bar a.cta span:last-child {
    font-size: 0.55rem !important;
    opacity: 0.9;
    margin-top: 1px;
  }
}

/* Touch target sizes - 44px+ */
.lang a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.4rem;
}

.faq-question {
  min-height: 60px;
}

/* Mobile slider header düzeltme */
.mobile-slider-header h3 {
  font-size: 1.4rem;
  line-height: 1.2;
}

/* Header — Lang switcher sticky tek satır */
.lang {
  white-space: nowrap;
}


/* ═══════════════════════════════════════════════════════════════
   V11 — Final polish
   ═══════════════════════════════════════════════════════════════ */

/* Mobile konum kartı — pin'i overlay alt başlığın üstünde tut */
@media (max-width: 768px) {
  .map-card {
    aspect-ratio: 4/3;
  }
  
  .map-pin-icon {
    transform: translate(-50%, -100%);
    top: 35%;
    width: 52px;
    height: 52px;
  }
  
  .map-card .map-overlay {
    padding: 1.25rem;
  }
  
  .map-info strong {
    font-size: 1.1rem;
  }
  
  .map-info span {
    font-size: 0.8rem;
  }
}

/* Advantages card — chip alignment uniformity */
.advantage .chips {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.advantage .chips .chip {
  font-size: 0.65rem !important;
  padding: 0.4rem 0.7rem !important;
  letter-spacing: 0.08em !important;
  white-space: nowrap;
}

/* Card heights uniform */
.advantages-carousel .advantage {
  min-height: 290px !important;
}

/* Mobile booking widget submit button — full width when stacked */
@media (max-width: 600px) {
  .booking-widget .booking-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.6rem;
  }
  
  .booking-submit {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
  }
}

/* Form heading - period yok */
.contact-info h2 em {
  font-style: italic;
  color: var(--coral);
}

/* Logo Allura font fallback iyileştirme */
.logo-script {
  font-family: 'Allura', 'Dancing Script', 'Pinyon Script', cursive;
  font-display: swap;
}

@supports (font-variation-settings: normal) {
  .logo-script {
    font-feature-settings: "liga" 1, "dlig" 1;
  }
}

/* Booking widget number select - readable */
.booking-field select {
  padding: 0.85rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Mobile slider nudge — daha sade */
.mobile-slider-nudge {
  font-size: 0.62rem !important;
  letter-spacing: 0.18em;
  opacity: 0.7;
}




/* ═══════════════════════════════════════════════════════════════
   v12 — A'dan Z'ye düzeltmeler
   ═══════════════════════════════════════════════════════════════ */

/* Form success — inline başarı mesajı */
.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #2DCE89 0%, #25B175 100%);
  color: white;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 6px 18px rgba(45, 206, 137, 0.3);
  animation: successSlideIn 0.4s ease;
}

.form-success svg {
  flex-shrink: 0;
}

@keyframes successSlideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Submit button disabled state */
button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  background: linear-gradient(135deg, #2DCE89 0%, #25B175 100%) !important;
}

/* Form input invalid state visual feedback */
.field input:focus,
.field textarea:focus,
.booking-field input:focus,
.booking-field select:focus {
  border-color: var(--coral) !important;
  outline: 2px solid rgba(229, 112, 61, 0.2);
  outline-offset: 0;
}

/* Rooms note — Aile odası bilgilendirmesi */
.rooms-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 680px;
  margin: 3rem auto 0;
  padding: 1.25rem 1.5rem;
  background: white;
  border-left: 3px solid var(--coral);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.55;
  box-shadow: 0 4px 16px rgba(31, 42, 51, 0.06);
}

.rooms-note svg {
  color: var(--coral);
  margin-top: 2px;
  flex-shrink: 0;
}

.rooms-note a {
  color: var(--coral);
  text-decoration: underline;
  font-weight: 600;
}

.rooms-note a:hover {
  color: #C95F2D;
}

/* Wellness h2 düzeltmesi - inline em için space korumak */
.wellness-content h2 em {
  display: inline;
  font-style: italic;
}

/* Lang disabled */
.lang-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.lang-disabled:hover {
  text-decoration: line-through;
}

/* Card 02 chip uniformity güçlendir */
.advantage .chip {
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .advantage .chip {
    font-size: 0.62rem !important;
    padding: 0.35rem 0.65rem !important;
  }
}


/* ═══════════════════════════════════════════════════════════════
   V2 — Formsuz Versiyon Stilleri
   Doğrudan iletişim CTA kartları (form yerine)
   ═══════════════════════════════════════════════════════════════ */

/* Hero Direct CTA Widget (booking widget yerine) */
.booking-widget.direct-cta {
  display: flex;
  flex-direction: column;
}

.direct-cta-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 1.25rem 0 1rem;
}

.direct-cta-btn {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1.5px solid transparent;
  background: #FFF;
}

.direct-cta-btn > span {
  grid-column: 2;
}

.direct-cta-btn .direct-cta-label {
  grid-row: 1;
}

.direct-cta-btn .direct-cta-num {
  grid-row: 2;
}

.direct-cta-btn.phone {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: #FFF;
  box-shadow: 0 8px 22px rgba(229, 112, 61, 0.3);
}

.direct-cta-btn.phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(229, 112, 61, 0.45);
}

.direct-cta-btn.wa {
  background: linear-gradient(135deg, #25D366 0%, #1FAE54 100%);
  color: #FFF;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.3);
}

.direct-cta-btn.wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

.direct-cta-btn svg {
  flex-shrink: 0;
}

.direct-cta-btn .direct-cta-label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.direct-cta-btn .direct-cta-num {
  display: block;
  font-size: 0.78rem;
  opacity: 0.9;
  font-weight: 500;
  margin-top: 2px;
}

/* Contact CTA Panel (form yerine) */
.contact-cta-panel {
  background: #FFF;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(31, 42, 51, 0.12);
}

.contact-cta-panel h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.contact-cta-panel .lead-small {
  color: rgba(31, 42, 51, 0.65);
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

.contact-cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-cta-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  text-decoration: none;
  background: var(--bg);
  border: 1.5px solid rgba(31, 42, 51, 0.08);
  transition: all 0.25s ease;
  position: relative;
}

.contact-cta-card:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 42, 51, 0.18);
  box-shadow: 0 12px 28px rgba(31, 42, 51, 0.1);
}

.contact-cta-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-cta-card.phone .contact-cta-icon {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: #FFF;
}

.contact-cta-card.wa .contact-cta-icon {
  background: linear-gradient(135deg, #25D366 0%, #1FAE54 100%);
  color: #FFF;
}

.contact-cta-card.mail .contact-cta-icon {
  background: linear-gradient(135deg, var(--deep) 0%, #14445C 100%);
  color: #FFF;
}

.contact-cta-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.contact-cta-action {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.contact-cta-detail {
  font-size: 0.95rem;
  color: var(--coral);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.contact-cta-card.wa .contact-cta-detail { color: #1FAE54; }
.contact-cta-card.mail .contact-cta-detail { color: var(--deep); word-break: break-all; }

.contact-cta-note {
  font-size: 0.78rem;
  color: rgba(31, 42, 51, 0.55);
  margin-top: 2px;
}

.contact-cta-arrow {
  color: rgba(31, 42, 51, 0.3);
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.contact-cta-card:hover .contact-cta-arrow {
  color: var(--coral);
  transform: translateX(4px);
}

.contact-cta-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(229, 112, 61, 0.08);
  border-radius: 12px;
  font-size: 0.85rem;
  color: rgba(31, 42, 51, 0.75);
  line-height: 1.5;
}

.contact-cta-footer svg {
  color: var(--coral);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .contact-cta-panel {
    padding: 1.75rem 1.25rem;
    border-radius: 18px;
  }
  
  .contact-cta-card {
    padding: 1rem;
    gap: 1rem;
  }
  
  .contact-cta-icon {
    width: 48px;
    height: 48px;
  }
  
  .contact-cta-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .contact-cta-action {
    font-size: 0.9rem;
  }
  
  .contact-cta-detail {
    font-size: 0.88rem;
  }
}

/* Footer KVKK linki */
.footer-bottom a {
  color: var(--coral-light, #F5A580);
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom a:hover {
  color: var(--coral);
  text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════════
   V1 PHP Backend — Form error mesajı
   ═══════════════════════════════════════════════════════════════ */
.form-error {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #E5703D 0%, #C95F2D 100%);
  color: white;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 6px 18px rgba(229, 112, 61, 0.3);
  animation: errorSlideIn 0.4s ease;
}

.form-error svg {
  flex-shrink: 0;
}

@keyframes errorSlideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CRITICAL FIX: HTML hidden attribute her zaman görünmezliği zorlamalı */
.form-success[hidden],
.form-error[hidden] {
  display: none !important;
}
