/* ==========================================================================
   Trendpark Hotel — Module Styles
   ========================================================================== */

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  height: 100vh; min-height: 640px;
  overflow: hidden; color: #fff;
  isolation: isolate;
}
.hero-slider { width: 100%; height: 100%; }
.hero-slider .splide__track, .hero-slider .splide__list, .hero-slider .splide__slide { height: 100%; }
.hero-slider .splide__slide { position: relative; }
.hero-slider .splide__slide img,
.hero-slider .splide__slide picture > img,
.hero-slider .splide__slide video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-slider .splide__slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,27,42,.25) 0%, rgba(13,27,42,.55) 60%, rgba(13,27,42,.85) 100%);
}
.hero__content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  /* Üst padding header'ın üstüne binmesin diye, alt padding reservation kartından bağımsız */
  padding: clamp(120px, 14vh, 180px) var(--container-px) clamp(60px, 8vh, 100px);
  z-index: 2;
}
.hero__content-inner {
  width: 100%; max-width: 1100px;
  display: flex; flex-direction: column; align-items: center;
  margin: 0 auto;
}
.hero__eyebrow { color: var(--color-accent, #f5b942); margin-bottom: 22px; }
.hero__eyebrow::before { background: var(--color-accent, #f5b942); }
.hero__title {
  color: #fff;
  margin: 0 0 22px;
  font-size: clamp(2.4rem, 5.4vw, 5rem);
  line-height: 1.05;
  /* Slide değişimlerinde altındaki feature ve CTA'lar kaymasın diye
     başlık her slide'da en az 2 satır kadar dikey alan kaplar. */
  min-height: calc(1.05em * 2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: .22em;
}
.hero__subtitle {
  color: rgba(255,255,255,.85);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  max-width: 640px;
  margin: 0 0 32px;
  line-height: 1.6;
  /* Subtitle da min-height ile sabitleniyor (en az 2 satır). */
  min-height: calc(1.6em * 2);
}
.hero__cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center;
}
.hero__meta { position: absolute; right: var(--container-px); bottom: 30px; color: rgba(255,255,255,.7); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; z-index: 2; display: none; }
/* Slider sağ alttaki ok ve sayfalama göstergelerini gizle — daha sade,
   her slide otomatik fade ile geçer. */
.hero-slider .splide__arrows,
.hero-slider .splide__pagination { display: none !important; }

/* ---------- Hero feature strip (Rixos benzeri ikon+etiket şeridi) ---------- */
.hero__features {
  list-style: none; padding: 0;
  margin: 0 auto clamp(28px, 4vw, 40px);
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: clamp(10px, 1.4vw, 22px);
  max-width: 1100px;
}
.hero__feature {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1),
              background .35s ease, border-color .35s ease;
}
.hero__feature:hover {
  transform: translateY(-2px);
  background: rgba(201, 169, 110, .18);
  border-color: rgba(201, 169, 110, .55);
}
.hero__feature-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  color: var(--color-accent, #c9a96e);
  flex-shrink: 0;
}
.hero__feature-icon svg { width: 22px; height: 22px; }
.hero__feature-label {
  font-family: var(--font-heading, serif);
  font-size: .9rem;
  letter-spacing: .03em;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero__features { gap: 8px 10px; }
  .hero__feature { padding: 6px 12px; }
  .hero__feature-label { font-size: .8rem; }
}
@media (max-width: 540px) {
  .hero__feature-label { font-size: .76rem; }
  .hero__feature { padding: 5px 10px; gap: 8px; }
  .hero__feature-icon, .hero__feature-icon svg { width: 18px; height: 18px; }
}

/* ---------- Reservation form (Hero altına ayrı blok, çıkıntı YOK) ---------- */
/* ---------- Reservation: classic single-line search bar (slider overlay) ---------- */
.reservation {
  position: absolute;
  left: 50%; bottom: clamp(28px, 5vh, 56px);
  transform: translateX(-50%);
  z-index: 5;
  width: min(1140px, calc(100% - 2 * var(--container-px)));
  padding: 0;
  /* #reservation anchor'ına tıklandığında browser elementin TOP'una scroll yapar.
     Bu absolute element hero'nun alt kısmında olduğu için tepesi 100vh civarı çıkar
     ve sayfa "kart ekran üstünde, hero görünmüyor" durumuna düşer.
     scroll-margin-top: 100vh diyerek browser'ı sayfa kökünde tutuyoruz —
     hero'nun alt kısmındaki form zaten ilk ekranda görünür. */
  scroll-margin-top: 100vh;
}
.reservation__card {
  background: #fff;
  border-radius: 0;
  box-shadow: 0 24px 60px rgba(13, 27, 42, .28), 0 2px 6px rgba(13, 27, 42, .12);
  padding: 0;
  display: flex; align-items: stretch;
}
/* Başlık yapısı sade görünüm için gizlendi (DOM'da kalmaya devam ediyor) */
.reservation__title { display: none; }

.reservation-form {
  display: flex; flex: 1; align-items: stretch; gap: 0;
}
.reservation-form .form-field {
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: 18px 28px;
  position: relative;
  min-width: 0;
}
/* Dikey ayraçlar — klasik ince çizgi */
.reservation-form .form-field + .form-field::before {
  content: ""; position: absolute; left: 0; top: 18%; bottom: 18%;
  width: 1px; background: rgba(13, 27, 42, .12);
}
.reservation-form .form-label {
  display: block;
  font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 6px; font-weight: 600;
}
.reservation-form .form-control {
  border: 0; background: transparent; padding: 0;
  font-size: 15px; font-weight: 500;
  color: var(--color-dark);
  font-family: inherit;
  outline: none; box-shadow: none;
  width: 100%;
  appearance: none; -webkit-appearance: none;
}
.reservation-form select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 18px;
}
.reservation-form .form-control::placeholder { color: var(--color-muted); }
.reservation-form .form-control:focus { color: var(--color-primary); }

.reservation-form .btn {
  align-self: stretch;
  border-radius: 0;
  padding: 0 42px;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
}

.reservation-form .form-msg {
  flex-basis: 100%;
  margin: 0 28px 10px;
  font-size: .82rem;
  color: var(--color-muted);
}

.reservation__widget { padding: 18px 24px; }
.reservation__widget iframe { width: 100%; min-height: 110px; border: 0; }
.reservation__placeholder {
  margin: 0 28px 10px;
  padding: 8px 14px;
  font-size: .8rem; color: var(--color-muted);
  border-left: 2px solid var(--color-secondary, #c9a96e);
  background: rgba(201, 169, 110, .06);
  border-radius: 0;
  flex-basis: 100%;
}

/* Hero alt padding: rezervasyon formu ile butonlar arasında güvenli boşluk.
   Reservation kartı ~90px, alt bottom 28-56px, ek 50-70px nefes payı. */
.hero .hero__content {
  padding-top: clamp(100px, 12vh, 160px);
  padding-bottom: clamp(220px, 26vh, 310px);
}

/* Tablet: form 2x2 grid'e döner, kart ~200px → butonlara daha çok pay ver */
@media (max-width: 960px) {
  .reservation { bottom: 24px; }
  .reservation__card { flex-direction: column; }
  .reservation-form { flex-wrap: wrap; }
  .reservation-form .form-field {
    flex: 1 1 50%;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(13, 27, 42, .08);
  }
  .reservation-form .form-field + .form-field::before { display: none; }
  .reservation-form .form-field:nth-child(odd) { border-right: 1px solid rgba(13, 27, 42, .08); }
  .reservation-form .form-field:nth-last-child(2),
  .reservation-form .form-field:last-of-type { border-bottom: 0; }
  .reservation-form .btn {
    width: 100%; margin: 0;
    padding: 16px 20px;
  }
  .hero .hero__content {
    padding-top: clamp(90px, 11vh, 140px);
    padding-bottom: clamp(340px, 42vh, 420px);
  }
}
/* Mobile: form full-width tek sütun, kart ~320px → daha geniş alt pay */
@media (max-width: 540px) {
  .hero {
    min-height: 760px;
    height: 100svh;
  }
  .hero-slider .splide__slide::after {
    background: linear-gradient(to bottom, rgba(13,27,42,.55) 0%, rgba(13,27,42,.58) 44%, rgba(13,27,42,.9) 100%);
  }
  .reservation {
    bottom: 14px;
    width: calc(100% - 24px);
  }
  .reservation__card { box-shadow: 0 18px 44px rgba(0,0,0,.28); }
  .reservation-form { flex-wrap: wrap; }
  .reservation-form .form-field {
    flex: 1 1 50%;
    padding: 10px 12px;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(13, 27, 42, .08);
  }
  .reservation-form .form-field:nth-child(odd) { border-right: 1px solid rgba(13, 27, 42, .08) !important; }
  .reservation-form .form-label {
    font-size: 9px;
    letter-spacing: .12em;
    margin-bottom: 4px;
  }
  .reservation-form .form-control { font-size: 13px; }
  .reservation-form .btn {
    width: 100%;
    padding: 13px 16px;
    font-size: .86rem;
  }
  .reservation__placeholder { display: none; }
  .hero__content-inner { max-width: 360px; }
  .hero__eyebrow {
    margin-bottom: 10px;
    font-size: .68rem;
  }
  .hero .hero__content {
    justify-content: center;
    padding-top: 104px;
    padding-bottom: 245px;
  }
  .hero__title {
    margin-bottom: 12px;
    min-height: auto;
    font-size: clamp(2rem, 10vw, 2.65rem);
    line-height: 1.08;
  }
  .hero__subtitle {
    margin-bottom: 14px;
    min-height: auto;
    font-size: .92rem;
    line-height: 1.45;
    max-width: 320px;
  }
  .hero__features {
    width: 100%;
    max-width: 330px;
    margin-bottom: 16px;
    gap: 7px;
  }
  .hero__feature {
    width: calc(50% - 4px);
    justify-content: center;
    gap: 6px;
    padding: 6px 7px;
    border-radius: 14px;
  }
  .hero__feature-label {
    white-space: normal;
    font-size: .68rem;
    line-height: 1.15;
    letter-spacing: .01em;
  }
  .hero__feature-icon,
  .hero__feature-icon svg {
    width: 16px;
    height: 16px;
  }
  .hero__cta {
    gap: 8px;
  }
  .hero__cta .btn {
    min-height: 42px;
    padding: 11px 16px;
    font-size: .82rem;
  }
}

@media (max-width: 380px) {
  .hero { min-height: 720px; }
  .hero .hero__content {
    padding-top: 96px;
    padding-bottom: 232px;
  }
  .hero__title { font-size: clamp(1.85rem, 9.4vw, 2.35rem); }
  .hero__subtitle { display: none; }
  .hero__feature { padding: 5px 6px; }
  .hero__feature-label { font-size: .64rem; }
  .hero__cta .btn { padding: 10px 12px; }
}

/* Eğer admin'de 6+ hero feature aktifse listenin satıra sığması daha sık
   sarmalar; bu durumda butonlar daha alta iner. Wrap durumlarında ekstra
   güvenlik için hero feature listesinin alt boşluğunu kıs. */
.hero__features { row-gap: 8px; }

/* ---------- About Module ---------- */
.about {
  display: grid; gap: clamp(32px, 5vw, 70px);
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
}
.about__media { display: grid; gap: 14px; }
.about__media-main {
  position: relative;
  aspect-ratio: 16/10; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
}
/* <picture> default inline → block + tam doluluk ile alt boşluğu önler */
.about__media-main picture,
.about__media-thumb picture {
  display: block;
  width: 100%; height: 100%;
}
.about__media-main img,
.about__media-main picture > img {
  display: block;
  width: 100%; height: 100%; object-fit: cover;
}
.about__media-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.about__media-thumb {
  position: relative;
  aspect-ratio: 1/1; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.about__media-thumb img,
.about__media-thumb picture > img {
  display: block;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.22,1,.36,1);
}
.about__media-thumb:hover img { transform: scale(1.05); }

.about__content .eyebrow { margin-bottom: 18px; }
.about__content h2 { margin-bottom: 22px; max-width: 520px; }
.about__lead { font-size: 1.1rem; color: var(--color-dark); margin-bottom: 18px; max-width: 540px; line-height: 1.7; }
.about__text { color: var(--color-muted); margin-bottom: 26px; max-width: 540px; }
.about__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 36px; }
.about__stat { padding-left: 18px; border-left: 2px solid var(--color-secondary); }
.about__stat strong { display: block; font-family: var(--font-heading); font-size: 2rem; color: var(--color-primary); }
.about__stat span { font-size: .85rem; color: var(--color-muted); letter-spacing: .12em; text-transform: uppercase; }
@media (max-width: 920px) {
  .about { grid-template-columns: 1fr; }
  .about__media-grid { gap: 10px; }
  .about__stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Featured Rooms ---------- */
/* Anasayfa öne çıkan odalar — 4 kart yan yana, 3-sütun ara durumu yok
   (4 oda hep eşit dağılsın: 4 / 2x2 / 1) */
.rooms-grid { display: grid; gap: 20px; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .rooms-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 600px)  { .rooms-grid { grid-template-columns: 1fr; } }

/* 4'lü grid daha kompakt iç padding ve tipografi */
.rooms-grid .room-card__body { padding: 22px 22px 24px; }
.rooms-grid .room-card__title { font-size: 1.18rem; line-height: 1.3; }
.rooms-grid .room-card__desc {
  font-size: .88rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rooms-grid .room-card__features { gap: 10px; font-size: .76rem; }
.rooms-grid .room-card__cta { display: flex; gap: 8px; flex-wrap: wrap; }
.rooms-grid .room-card__cta .btn { flex: 1 1 auto; justify-content: center; padding-left: 12px; padding-right: 12px; }

/* 4-sütun grid'de badge'leri yatayda yan yana koymak yerine
   sol-üstte dikey stack et — yatay daralmada üst üste binmesinler. */
.rooms-grid .room-card__view {
  top: 14px; left: 14px;
  font-size: 10px; padding: 5px 10px;
}
.rooms-grid .room-card__badge {
  top: auto; right: auto;
  top: 50px; left: 14px;
  font-size: 10px; padding: 5px 10px;
}
.rooms-grid .room-card__price {
  bottom: 14px; right: 14px;
  font-size: 1rem; padding: 6px 12px;
}

.room-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  display: flex; flex-direction: column;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.room-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.room-card__media img, .room-card__media picture > img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.22,1,.36,1); }
.room-card:hover .room-card__media img { transform: scale(1.06); }
.room-card__view {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,.95); color: var(--color-dark);
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--radius-pill);
}
.room-card__badge {
  position: absolute; top: 16px; right: 16px;
  background: #16a34a; color: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: .04em;
  padding: 6px 11px; border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(22, 163, 74, .35);
}
.room-card__price {
  position: absolute; bottom: 16px; right: 16px;
  background: var(--color-primary); color: #fff;
  padding: 8px 14px; border-radius: var(--radius-md);
  font-family: var(--font-heading); font-size: 1.1rem;
}
.room-card__price small { font-family: var(--font-body); font-size: .65rem; opacity: .8; display: block; letter-spacing: .12em; text-transform: uppercase; }
.room-card__body { padding: 26px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.room-card__title { font-size: 1.35rem; margin-bottom: 8px; }
.room-card__desc { font-size: .92rem; color: var(--color-muted); margin-bottom: 18px; flex: 1; }
.room-card__features { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; font-size: .82rem; color: var(--color-muted); }
.room-card__features span { display: inline-flex; align-items: center; gap: 6px; }
.room-card__amenities {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 18px; padding-bottom: 16px;
  border-bottom: 1px solid #f0eee6;
}
.room-card__amenities span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  background: rgba(201, 169, 110, .1);
  color: var(--color-secondary, #c9a96e);
  border-radius: 50%;
  transition: all .2s ease;
}
.room-card__amenities span:hover {
  background: var(--color-secondary, #c9a96e);
  color: #fff;
}
.room-card__cta {
  display: flex; gap: 10px; padding-top: 16px;
  border-top: 1px solid #eee;
}
.room-card__cta .btn { flex: 1; justify-content: center; }
.room-card__cta .btn--sm { padding: 10px 14px; font-size: .82rem; }

/* ---------- Amenities ---------- */
.amenities-grid { display: grid; gap: 24px; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .amenities-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .amenities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .amenities-grid { grid-template-columns: 1fr; } }

.amenity {
  text-align: left;
  padding: 32px 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13,27,42,.05);
  transition: var(--transition);
}
.amenity:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.amenity__icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.amenity__icon svg { width: 28px; height: 28px; }
.amenity h3 { font-size: 1.15rem; margin-bottom: 10px; }
.amenity p { font-size: .9rem; color: var(--color-muted); line-height: 1.6; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
}
.gallery-grid__item {
  position: relative; overflow: hidden; border-radius: var(--radius-md);
  display: block;
  background: #1a2333;
  cursor: zoom-in;
  isolation: isolate;
}
/* <picture> default inline → block + tam doluluk ile alt boşluğu önler */
.gallery-grid__item picture {
  display: block;
  width: 100%; height: 100%;
}
.gallery-grid__item img,
.gallery-grid__item picture > img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.22,1,.36,1), filter .6s ease;
}

/* Mosaic layout */
.gallery-grid__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid__item:nth-child(6) { grid-column: span 2; }

/* Üst gradient (sürekli, hafif) — alt yarısını koyu yapar caption okunması için */
.gallery-grid__item::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(13,27,42,.55) 0%, rgba(13,27,42,.05) 45%, transparent 70%);
  opacity: .55;
  transition: opacity .45s ease;
  pointer-events: none;
}
/* Hover'da gradient güçlenir + zoom + büyüteç ikonu belirir */
.gallery-grid__item:hover::before { opacity: .9; }
.gallery-grid__item:hover img { transform: scale(1.07); }

/* Hover büyüteç ikonu — ortada beliren glass dairesel rozet */
.gallery-grid__item::after {
  content: ""; position: absolute; z-index: 2;
  top: 50%; left: 50%;
  width: 56px; height: 56px;
  background: rgba(255, 255, 255, .15) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><path d='M21 21l-4.35-4.35'/><path d='M11 8v6M8 11h6'/></svg>") center / 22px 22px no-repeat;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transform: translate(-50%, -50%) scale(.6);
  opacity: 0;
  transition: opacity .45s ease, transform .45s cubic-bezier(.22,1,.36,1);
  pointer-events: none;
}
.gallery-grid__item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; gap: 12px; } }
@media (max-width: 720px)  {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; gap: 10px; }
  .gallery-grid__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-grid__item:nth-child(6) { grid-column: span 1; }
  .gallery-grid__item::after { width: 44px; height: 44px; background-size: 18px 18px; }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: none; background: rgba(13,27,42,.94);
  align-items: center; justify-content: center;
  padding: 60px 30px;
}
.lightbox.is-open { display: flex; }
.lightbox__figure { max-width: 1200px; max-height: 90vh; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lightbox__figure img { max-width: 100%; max-height: 80vh; border-radius: var(--radius-md); }
.lightbox__figure figcaption { color: rgba(255,255,255,.8); font-size: .9rem; text-align: center; }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; width: 44px; height: 44px; border-radius: 50%;
  font-size: 1.5rem; line-height: 1; cursor: pointer; transition: var(--transition);
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--color-secondary); border-color: var(--color-secondary); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

/* ---------- Testimonials ---------- */
/* ---------- Reviews / Testimonials (Google card style) ---------- */
.section--reviews { color: var(--color-dark); }
.section--reviews .section__head h2,
.section--reviews .section__head p { color: inherit; }
.section--reviews .section__head .eyebrow {
  color: inherit; opacity: .65;
}

.testi-slider .splide__list { align-items: stretch; }
.testi-slider .splide__pagination { padding-top: 22px; }
.testi-slider .splide__pagination__page {
  background: rgba(0, 0, 0, .25); opacity: 1;
}
.testi-slider .splide__pagination__page.is-active {
  background: var(--color-accent); transform: scale(1.2);
}

.testi-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 14px;
  padding: 22px 22px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 18px rgba(20, 30, 48, .08);
  transition: transform .3s ease, box-shadow .3s ease;
  font-size: .92rem;
  line-height: 1.55;
}
.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(20, 30, 48, .14);
}

/* Üst: avatar + isim + Google logo */
.testi-card__head {
  display: flex; align-items: center; gap: 12px;
}
.testi-card__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  flex: 0 0 42px; object-fit: cover;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
}
.testi-card__avatar--initial {
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 600; font-family: var(--font-heading);
  font-size: 1.1rem;
}
.testi-card__author-info { flex: 1 1 auto; min-width: 0; }
.testi-card__author-info strong {
  display: block;
  font-family: var(--font-heading);
  font-size: .98rem;
  font-weight: 500;
  color: #1a2537;
  letter-spacing: .005em;
  line-height: 1.25;
}
.testi-card__meta-text {
  display: block;
  color: #6b7280;
  font-size: .78rem;
  margin-top: 2px;
}
.testi-card__google-mark {
  flex: 0 0 20px;
  display: inline-flex; align-items: center; justify-content: center;
}
.testi-card__google-mark svg { width: 20px; height: 20px; display: block; }

/* Yıldız sırası */
.testi-card__rating-row { display: flex; align-items: center; }
.testi-card__rating { display: inline-flex; gap: 2px; }
.testi-card__rating svg { width: 16px; height: 16px; fill: #fbbc04; }

/* Yorum içeriği — Google'da olduğu gibi 6 satırda kırpılır */
.testi-card__content {
  color: #3b4452;
  font-size: .9rem;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testi-cta { text-align: center; margin-top: 28px; }

/* ---------- Google Rating Badge (testimonials section başı) ---------- */
.g-rating-badge {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 22px; padding: 10px 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 999px;
  text-decoration: none;
  transition: all .25s ease;
  box-shadow: 0 4px 14px rgba(20, 30, 48, .08);
  color: #1a2537;
}
.g-rating-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(20, 30, 48, .14);
  border-color: rgba(0, 0, 0, .14);
}
.g-rating-badge__logo svg { width: 26px; height: 26px; display: block; }
.g-rating-badge__text {
  color: inherit; line-height: 1.2;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.g-rating-badge__text strong {
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 600;
  color: inherit;
}
.g-rating-badge__text small {
  display: block; opacity: .7; font-size: .76rem; letter-spacing: .02em;
}
.g-rating-badge__stars { display: inline-flex; gap: 2px; }
.g-rating-badge__stars svg { width: 16px; height: 16px; }

@media (max-width: 600px) {
  .g-rating-badge { padding: 8px 14px; gap: 10px; }
  .g-rating-badge__text strong { font-size: 1.15rem; }
  .g-rating-badge__text { gap: 8px; }
  .testi-card { padding: 18px 18px 20px; }
  .testi-card__content { font-size: .88rem; }
}

/* ---------- Blog cards ---------- */
.blog-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  display: flex; flex-direction: column; height: 100%;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card__media { aspect-ratio: 16/10; overflow: hidden; }
.blog-card__media img, .blog-card__media picture > img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.22,1,.36,1); }
.blog-card:hover .blog-card__media img { transform: scale(1.06); }
.blog-card__body { padding: 26px 28px 30px; flex: 1; display: flex; flex-direction: column; }
.blog-card__meta { display: flex; gap: 14px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--color-muted); margin-bottom: 12px; }
.blog-card__title { font-size: 1.25rem; margin-bottom: 12px; line-height: 1.35; }
.blog-card__excerpt { font-size: .92rem; color: var(--color-muted); flex: 1; margin-bottom: 18px; }
.blog-card__cta { color: var(--color-primary); font-weight: 600; }

/* ---------- Location ---------- */
.location {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: var(--radius-lg);
  /* Sabit koyu lacivert — hp-section --color-dark override'ından etkilenmesin */
  background: linear-gradient(135deg, #0d2230 0%, #1f3e54 100%);
  min-height: 520px;
  box-shadow: 0 20px 60px rgba(13, 34, 48, .15);
}
.location__info { padding: clamp(40px, 5vw, 70px); color: var(--color-light); display: flex; flex-direction: column; justify-content: center; }
.location__info h2 { color: #fff; margin-bottom: 18px; }
.location__info .eyebrow { color: var(--color-accent); margin-bottom: 18px; }
.location__info .eyebrow::before { background: var(--color-accent); }
.location__details { margin-top: 30px; display: grid; gap: 18px; }
.location__detail { display: flex; gap: 14px; align-items: flex-start; }
.location__detail svg { width: 22px; height: 22px; color: var(--color-secondary); flex: 0 0 22px; margin-top: 2px; }
.location__detail strong { display: block; color: #fff; margin-bottom: 4px; }
.location__detail span { font-size: .9rem; color: rgba(248,246,241,.78); }
.location__map { position: relative; min-height: 400px; }
.location__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.3) contrast(1.05); }
@media (max-width: 920px) { .location { grid-template-columns: 1fr; } .location__map { min-height: 320px; } }

/* ---------- CTA Strip — Premium Mediterranean Card ---------- */
.cta-strip {
  /* Sabit koyu zemin — hp-section override'ından etkilenmesin */
  background: linear-gradient(135deg, #0d2230 0%, #1d4e5f 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(44px, 6vw, 84px);
  display: grid; grid-template-columns: 1.4fr auto; gap: 44px; align-items: center;
  position: relative; overflow: hidden;
  box-shadow: 0 24px 70px rgba(13, 34, 48, .22);
}
/* Üst kenarda altın aksent şerit */
.cta-strip::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, transparent, #c9a96e 30%, #c9a96e 70%, transparent);
  z-index: 2;
}
/* Sağ üstte yumuşak altın aura */
.cta-strip::before {
  content: ""; position: absolute; right: -12%; top: -40%; width: 65%; height: 180%;
  background: radial-gradient(closest-side, rgba(201, 169, 110, .22), transparent 70%);
  z-index: 0;
}
.cta-strip > * { position: relative; z-index: 1; }
.cta-strip .eyebrow {
  color: #c9a96e !important; /* warm gold — koyu navy üstüne mükemmel kontrast */
  letter-spacing: .26em;
}
.cta-strip h2 {
  color: #fff !important;
  max-width: 680px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
}
.cta-strip p {
  color: rgba(248, 246, 241, .82);
  margin-top: 14px;
  max-width: 560px;
  font-size: 1rem; line-height: 1.65;
}
.cta-strip__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-strip__btn-ghost {
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .35) !important;
  background: transparent !important;
}
.cta-strip__btn-ghost:hover {
  background: rgba(255, 255, 255, .1) !important;
  border-color: #c9a96e !important;
  color: #fff !important;
}

@media (max-width: 720px) {
  .cta-strip { grid-template-columns: 1fr; padding: 36px 28px; gap: 28px; }
  .cta-strip__actions .btn { width: 100%; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; padding: calc(var(--header-h) + 80px) 0 80px;
  background: var(--color-dark); color: #fff;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,27,42,.6), rgba(13,27,42,.85));
  z-index: 1;
}
.page-hero img, .page-hero picture > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .5;
}
.page-hero__inner { position: relative; z-index: 2; max-width: 760px; }
.page-hero__inner h1 { color: #fff; margin-bottom: 16px; }
.page-hero__inner p { color: rgba(255,255,255,.85); font-size: 1.05rem; }
.breadcrumbs { display: flex; gap: 8px; font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 16px; flex-wrap: wrap; }
.breadcrumbs a { color: inherit; }
.breadcrumbs a:hover { color: var(--color-accent); }

/* ---------- Page content typography ---------- */
.prose { max-width: 760px; margin: 0 auto; line-height: 1.85; color: var(--color-dark); font-size: 1.05rem; }
.prose h2 {
  margin-top: 1.8em; margin-bottom: .5em;
  font-size: 1.65rem; font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.01em;
}
.prose h3 {
  margin-top: 1.6em; margin-bottom: .4em;
  font-size: 1.25rem; font-weight: 700;
  color: var(--color-dark);
}
.prose strong, .prose b { font-weight: 700; color: var(--color-dark); }
.prose em, .prose i { font-style: italic; }
.prose p { margin-bottom: 1.2em; }
.prose ul, .prose ol { margin: 1em 0 1.4em 1.4em; }
.prose ul { list-style: disc; }
.prose li { margin-bottom: .4em; }
.prose a { color: var(--color-primary); text-decoration: underline; }
.prose img { border-radius: var(--radius-md); margin: 1.5em 0; max-width: 100%; height: auto; }

/* ---------- Misc ---------- */
.section__cta-row { text-align: center; margin-top: 50px; }

/* ==========================================================================
   FULL-WIDTH MAP BLOCK — iletişim sayfası en altında
   ========================================================================== */
.map-block {
  position: relative;
  width: 100%;
  height: clamp(320px, 46vw, 480px);
  background: #e9ecef;
  overflow: hidden;
}
.map-block iframe {
  width: 100%; height: 100%;
  border: 0; display: block;
  filter: saturate(1.05);
}
.map-block__cta {
  position: absolute; bottom: 24px; right: 24px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  background: var(--color-primary, #1d3557);
  color: #fff;
  font-size: .9rem; font-weight: 500;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
  transition: transform .25s ease, background .25s ease;
}
.map-block__cta:hover {
  transform: translateY(-2px);
  background: var(--color-secondary, #c9a96e);
}
@media (max-width: 720px) {
  .map-block { height: clamp(280px, 60vw, 400px); }
  .map-block__cta { bottom: 16px; right: 16px; padding: 10px 16px; font-size: .82rem; }
}

/* ==========================================================================
   LOCATION BLOCK — iletişim sayfası "Konum Avantajları"
   ========================================================================== */
.location-block { background: var(--color-light, #f8f6f1); }
.location-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.location-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: 0 6px 20px rgba(0,0,0,.04);
  border: 1px solid #f1edda;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, border-color .35s ease;
  display: flex; flex-direction: column; align-items: flex-start;
}
.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0,0,0,.08);
  border-color: var(--color-secondary, #c9a96e);
}
.location-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-secondary, #c9a96e), var(--color-accent, #f5b942));
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(201, 169, 110, .3);
}
.location-card__icon svg { width: 26px; height: 26px; }
.location-card__title {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  color: var(--color-dark);
}
.location-card__value {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-primary, #1d3557);
  margin-bottom: 8px;
  line-height: 1.4;
}
/* Uzun açıklama metinleri (gezi yerleri, yakın imkanlar) için
   heading font yerine okunaklı body font kullan */
.location-card--text .location-card__value {
  font-family: var(--font-body, system-ui, sans-serif);
  font-size: .92rem;
  font-weight: 400;
  color: var(--color-muted, #6b7280);
  line-height: 1.65;
}
.location-card__note {
  margin: 0;
  font-size: .9rem;
  color: var(--color-muted);
  line-height: 1.55;
}

/* ==========================================================================
   ROOM DETAIL PAGE — satış odaklı tasarım
   ========================================================================== */

/* Hero */
.room-hero {
  position: relative; min-height: 70vh;
  display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
  padding: clamp(120px, 14vh, 160px) 0 clamp(50px, 6vh, 90px);
}
.room-hero > picture,
.room-hero > picture img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
}
.room-hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(13,27,42,.45) 0%, rgba(13,27,42,.55) 50%, rgba(13,27,42,.85) 100%);
}
.room-hero__inner { display: flex; flex-direction: column; gap: 14px; max-width: 920px; }
.room-hero__crumb { color: rgba(255,255,255,.85); margin-bottom: 6px; }
.room-hero__crumb a { color: rgba(255,255,255,.85); }
.room-hero__crumb a:hover { color: var(--color-accent); }
.room-hero__eyebrow { color: var(--color-accent); }
.room-hero__title {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.05; color: #fff;
}
.room-hero__lead {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: rgba(255,255,255,.86);
  max-width: 720px; line-height: 1.65;
  margin: 6px 0 16px;
}
.room-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.room-hero__price {
  display: flex; align-items: baseline; gap: 8px;
  margin-top: 26px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  width: fit-content;
}
.room-hero__price small { color: rgba(255,255,255,.7); letter-spacing: .12em; text-transform: uppercase; font-size: .72rem; }
.room-hero__price strong { font-family: var(--font-heading); font-size: 1.6rem; color: var(--color-accent); font-weight: 600; }
.room-hero__price span { color: rgba(255,255,255,.78); font-size: .9rem; }

/* Quick Info Strip */
.room-quick-info { padding: 28px 0; background: var(--color-light, #f8f6f1); border-bottom: 1px solid rgba(0,0,0,.04); }
.room-quick-info__grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}
.room-quick-info__grid li {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 4px; padding: 8px;
}
.room-quick-info__grid svg { color: var(--color-secondary, #c9a96e); margin-bottom: 4px; }
.room-quick-info__grid small { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--color-muted); }
.room-quick-info__grid strong { font-family: var(--font-heading); font-size: 1.05rem; color: var(--color-dark); }

@media (max-width: 720px) {
  .room-quick-info__grid { grid-template-columns: 1fr 1fr; }
}

/* Layout: main + sticky aside */
.room-detail__layout {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 56px;
  align-items: start;
}
.room-detail__main { min-width: 0; }
.room-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  margin: 0 0 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}
.room-section-title:not(:first-child) { margin-top: 50px; }
.room-detail__prose { margin-bottom: 0; }

/* Galeri (Splide carousel) */
.room-gallery { margin-bottom: 30px; }
.room-gallery .splide__slide {
  height: clamp(320px, 48vw, 540px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f3f4f6;
}
.room-gallery .splide__slide a,
.room-gallery .splide__slide picture {
  display: block;
  width: 100%; height: 100%;
}
.room-gallery .splide__slide img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.room-gallery .splide__arrow {
  background: rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.2);
  width: 44px; height: 44px;
}
.room-gallery .splide__arrow:hover { background: var(--color-secondary); border-color: var(--color-secondary); }
.room-gallery .splide__arrow svg { fill: #fff; }
.room-gallery .splide__pagination { bottom: 16px; }
.room-gallery .splide__pagination__page { background: rgba(255,255,255,.6); }
.room-gallery .splide__pagination__page.is-active { background: var(--color-accent); transform: scale(1.4); }

/* Amenities grid */
.room-amenities {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.room-amenity {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius-md);
  transition: all .25s ease;
}
.room-amenity.is-on { border-color: rgba(201, 169, 110, .35); }
.room-amenity.is-on:hover {
  border-color: var(--color-secondary, #c9a96e);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}
.room-amenity.is-off { opacity: .55; }
.room-amenity__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  flex-shrink: 0;
  color: var(--color-secondary, #c9a96e);
  border-radius: 50%;
  background: rgba(201, 169, 110, .1);
}
.room-amenity__icon svg { width: 20px; height: 20px; }
.room-amenity__label { flex: 1; font-weight: 500; color: var(--color-dark); font-size: .95rem; }
.room-amenity__check { color: #22c55e; flex-shrink: 0; }

/* Mid CTA band */
.room-cta-band {
  margin-top: 50px;
  padding: 32px 36px;
  background: linear-gradient(135deg, var(--color-primary, #1d3557) 0%, var(--color-secondary, #c9a96e) 130%);
  border-radius: var(--radius-lg);
  color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.room-cta-band strong {
  display: block; font-family: var(--font-heading);
  font-size: 1.4rem; margin-bottom: 4px;
}
.room-cta-band p { color: rgba(255,255,255,.85); margin: 0; max-width: 540px; line-height: 1.5; }

/* Aside (sticky booking) */
.room-detail__aside {
  position: sticky; top: 110px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md, 0 16px 40px rgba(0,0,0,.08));
  padding: 30px;
  border: 1px solid #f1edda;
}
.room-aside__price {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px;
  padding-bottom: 22px; border-bottom: 1px solid #eee; margin-bottom: 18px;
}
.room-aside__price small {
  display: block; width: 100%;
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--color-muted); margin-bottom: 4px;
}
.room-aside__price strong {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary, #1d3557);
  font-weight: 600;
}
.room-aside__price span { color: var(--color-muted); font-size: .92rem; }

.room-aside__facts { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 10px; }
.room-aside__facts li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  font-size: .92rem;
}
.room-aside__facts span { color: var(--color-muted); }
.room-aside__facts strong { color: var(--color-dark); text-align: right; }

.room-aside__trust {
  margin-top: 22px; padding-top: 22px;
  border-top: 1px solid #eee;
}
.room-aside__trust strong {
  display: block; margin-bottom: 12px;
  font-family: var(--font-heading); font-size: 1rem; color: var(--color-dark);
}
.room-aside__trust ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.room-aside__trust li {
  display: flex; align-items: center; gap: 10px;
  color: var(--color-muted); font-size: .85rem;
}
.room-aside__trust svg { color: #22c55e; flex-shrink: 0; }

/* Mobile sticky bar */
.room-mobile-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: #fff;
  padding: 12px 16px;
  border-top: 1px solid #eee;
  box-shadow: 0 -8px 24px rgba(0,0,0,.08);
  align-items: center; justify-content: space-between; gap: 14px;
}
.room-mobile-bar__price { display: flex; flex-direction: column; line-height: 1.1; }
.room-mobile-bar__price small { font-size: .68rem; color: var(--color-muted); letter-spacing: .12em; text-transform: uppercase; }
.room-mobile-bar__price strong { font-family: var(--font-heading); font-size: 1.15rem; color: var(--color-primary); }
.room-mobile-bar .btn { padding: 12px 18px; }

/* Responsive */
@media (max-width: 1024px) {
  .room-detail__layout { grid-template-columns: 1fr; gap: 36px; }
  .room-detail__aside { position: static; }
}
@media (max-width: 640px) {
  .room-cta-band { padding: 24px; flex-direction: column; align-items: flex-start; }
  .room-cta-band .btn { width: 100%; }
  .room-mobile-bar { display: flex; }
  body.room-detail { padding-bottom: 80px; }
  .room-detail__aside { display: none; }
}

/* ==========================================================================
   FAQ — Sıkça Sorulan Sorular (Accordion)
   ========================================================================== */
.section--faq { background: #fafaf7; }
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(20, 30, 48, .04);
  overflow: hidden;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.faq-item[open] {
  box-shadow: 0 6px 22px rgba(20, 30, 48, .09);
  border-color: rgba(0, 0, 0, .12);
}
.faq-item__q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: #1a2537;
  line-height: 1.4;
  transition: background-color .2s ease;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q:hover { background: rgba(0, 0, 0, .02); }
.faq-item__num {
  flex: 0 0 auto;
  font-family: var(--font-heading);
  font-size: .8rem;
  letter-spacing: .12em;
  color: var(--color-secondary, #c9a96e);
  font-weight: 600;
  font-feature-settings: "tnum";
}
.faq-item__text { flex: 1 1 auto; }
.faq-item__icon {
  flex: 0 0 22px;
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #6b7280;
  transition: transform .3s ease, color .2s ease;
}
.faq-item__icon svg { width: 18px; height: 18px; }
.faq-item[open] .faq-item__icon {
  transform: rotate(180deg);
  color: var(--color-secondary, #c9a96e);
}
.faq-item__a {
  padding: 0 24px 22px 60px;
  color: #4b5462;
  font-size: .96rem;
  line-height: 1.7;
  animation: faqFadeIn .3s ease;
}
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 640px) {
  .faq-item__q { padding: 16px 18px; gap: 12px; font-size: .98rem; }
  .faq-item__a { padding: 0 18px 18px 18px; font-size: .92rem; }
  .faq-item__num { display: none; }
}
