/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   index.css â€” SandÄ±klÄ± Thermal Park Resort Ana Sayfa
   Kaynak: sandikli_thermal_v2 (1).html (salt orijinal tasarÄ±m)
   YaklaÅŸÄ±m: Mobile-first, Tailwind CDN + Ã¶zel overrides
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ CSS DeÄŸiÅŸkenleri â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  --mineral: #12305e;
  --deep-teal: #1a3d70;
  --teal-mid: #2d6099;
  --teal-light: #4a80bc;
  --gold: #5a9854;
  --gold-light: #75aa6f;
  --gold-pale: #a8cca4;
  --stone: #8aaccc;
  --stone-light: #d6e4f0;
  --cream: #eef4fa;
  --off-white: #f6f9fc;
  --dark: #0d1e33;
  --text-mid: #000000;
  /* ── Container sistemi (tw.css ile senkron) ── */
  --container-max: 1200px;
  --container-pad: clamp(20px, 3.5vw, 40px);
}

html, body { margin: 0 !important; padding: 0 !important; }

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Topbar + Navbar wrapper: body background renginin araya girmesini engeller */
.site-header {
  display: block;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  background: #ffffff;
}

/* Desktop: body padding-top sıfır (navbar sticky) */
@media (min-width: 1024px) {
  html body {
    padding-top: 0 !important;
  }
  .navbar-bar {
    position: sticky !important;
    top: 0;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• RESERVATION BAR â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* Mobile-first: dikey düzen */
.reservation-bar {
  background: #12305e;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 14px 20px;
  gap: 0;
  box-shadow: 0 4px 24px rgba(13, 30, 51, 0.2);
  width: 100%;
}

/* Desktop: yatay Four Seasons stili */
@media (min-width: 1024px) {
  .reservation-bar {
    flex-direction: row;
    align-items: center;
    height: 90px;
    padding: 0 var(--container-pad);
  }
}

.res-fields {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .res-fields {
    flex-direction: row;
    flex: 1;
    height: 100%;
  }
}

.res-field {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s;
}

@media (min-width: 1024px) {
  .res-field {
    flex: 1;
    padding: 0 32px;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .res-field:first-child {
    padding-left: 0;
  }
}

.res-field:hover {
  background: rgba(255, 255, 255, 0.06);
}

.res-field-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 5px;
}

.res-field-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (min-width: 1024px) {
  .res-field-value {
    font-size: 17px;
  }
}

.res-field-value svg {
  width: 14px;
  height: 14px;
  fill: rgba(255, 255, 255, 0.3);
}

/* Mobilde promo alanı görünsün, kompakt */
.res-promo {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1024px) {
  .res-promo {
    flex: 0.7;
    padding: 0 32px;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }
}

.res-promo input {
  border: none;
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  outline: none;
  width: 100%;
}

@media (min-width: 1024px) {
  .res-promo input {
    font-size: 17px;
  }
}

.res-promo input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.res-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 0 0;
}

@media (min-width: 1024px) {
  .res-actions {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 0 0 0 32px;
    flex-shrink: 0;
    width: auto;
  }
}

.res-btn {
  padding: 0 36px;
  height: 48px;
  background: var(--gold);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s;
  border-radius: 2px;
  width: 100%;
}

@media (min-width: 1024px) {
  .res-btn {
    width: auto;
  }
}

.res-btn:hover {
  background: var(--gold-light);
}

/* Mobilde secondary buton da görünsün */
.res-btn-secondary {
  display: block;
  padding: 0 24px;
  height: 48px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
  border-radius: 2px;
  width: 100%;
}

@media (min-width: 1024px) {
  .res-btn-secondary {
    width: auto;
  }
}

.res-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* ── Picker panels ── */
.res-field--pick {
  position: relative;
}

.res-picker-panel {
  position: static;
  margin-top: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 16px;
  color: #fff;
}

@media (min-width: 1024px) {
  .res-picker-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    margin-top: 0;
    background: #fff;
    border: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 20px;
    min-width: 300px;
    z-index: 300;
    color: #12305e;
  }
}

.res-dp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.res-dp-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.res-dp-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
@media (min-width: 1024px) {
  .res-dp-label { color: #888; }
}
.res-date-input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  color-scheme: dark;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  outline: none;
  cursor: pointer;
  box-sizing: border-box;
}
.res-date-input:focus {
  border-color: rgba(255,255,255,0.6);
}
@media (min-width: 1024px) {
  .res-date-input {
    background: #fff;
    border-color: #ddd;
    color: #12305e;
    color-scheme: light;
  }
  .res-date-input:focus { border-color: #12305e; }
}

.res-gp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 1024px) {
  .res-gp-row { border-bottom-color: #f0f0f0; }
}
.res-gp-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.res-gp-info b {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
@media (min-width: 1024px) {
  .res-gp-info b { color: #12305e; }
}
.res-gp-info small {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}
@media (min-width: 1024px) {
  .res-gp-info small { color: #999; }
}
.res-gp-counter {
  display: flex;
  align-items: center;
  gap: 14px;
}
.res-gp-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  background: transparent;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.res-gp-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.8);
}
@media (min-width: 1024px) {
  .res-gp-btn {
    border-color: #12305e;
    color: #12305e;
  }
  .res-gp-btn:hover {
    background: #12305e;
    color: #fff;
  }
}
.res-gp-val {
  font-size: 16px;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
  color: #fff;
}
@media (min-width: 1024px) {
  .res-gp-val { color: #12305e; }
}

.res-child-age-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  gap: 12px;
}
@media (min-width: 1024px) {
  .res-child-age-row { border-bottom-color: #f0f0f0; }
}
.res-child-age-row label {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  flex: 1;
}
@media (min-width: 1024px) {
  .res-child-age-row label { color: #12305e; }
}
.res-child-age-select {
  padding: 6px 8px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  color-scheme: dark;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .res-child-age-select {
    background: #fff;
    border-color: #ddd;
    color: #12305e;
    color-scheme: light;
  }
}

.res-picker-done {
  width: 100%;
  margin-top: 14px;
  padding: 10px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.res-picker-done:hover { background: var(--gold-light); }
@media (min-width: 1024px) {
  .res-picker-done { background: #12305e; }
  .res-picker-done:hover { background: #1a4080; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• HERO SLIDER â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
  position: relative;
  height: var(--hero-vh, 100svh);
  min-height: 500px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero {
    min-height: 700px;
  }
}

/* â”€â”€ VIDEO KATMANI â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* Strateji: Video katmanÄ± her zaman z-index:4 (slide z-index:2'nin Ã¼stÃ¼nde).
   BaÅŸlangÄ±Ã§ta opacity:0 â†’ slide fotoÄŸraflarÄ± gÃ¶rÃ¼nÃ¼r.
   is-video-ready eklenince opacity:1 â†’ video fotoÄŸrafÄ±n Ã¼zerine fade-in yapar.
   Slide iÃ§erikleri & kontroller z-index:10 ile her zaman Ã¼stte. */
.hero-video-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s ease;
}

/* Video hazÄ±r olduÄŸunda (setTimeout 2.5s) tÃ¼m katmanÄ± gÃ¶rÃ¼nÃ¼r yap */
.hero-video-layer.is-video-ready {
  opacity: 1;
}

.hero-video-poster {
  position: absolute;
  inset: 0;
  background: #0d1e33;
  z-index: 0;
}

.hero-video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100vh * 16 / 9);
  height: calc(100vw * 9 / 16);
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
  z-index: 1;
}

/* Video Ã¼zeri overlay â€” kaldÄ±rÄ±ldÄ± (ÅŸeffaf) */
.hero-video-dim {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 2;
  pointer-events: none;
}

/* Slide fotoÄŸraf katmanlarÄ± (video arkasÄ±nda) â€” sadece bg+overlay */
.slide {
  z-index: 2;
}

/* Metin panelleri: .hero'nun doÄŸrudan Ã§ocuÄŸu, video layer'dan Ã¼ste */
.slide-content-panel {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 80px 24px 120px;
  pointer-events: none;
}

.slide-content-panel.active {
  display: flex;
}

.slide-content-panel a {
  pointer-events: auto;
}

@media (min-width: 768px) {
  .slide-content-panel {
    padding: 0 var(--container-pad) 80px;
    max-width: 800px;
  }
}

/* Navigasyon, oklar, dekoratif Ã¶ÄŸeler en Ã¼stte */
.slider-controls,
.slider-arrows,
.hero-vert,
.scroll-hint {
  z-index: 30;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.slide.active {
  opacity: 1;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  /* KarartÄ± tamamen kaldÄ±rÄ±ldÄ± */
  background: transparent;
}

/* slide-tag, slide-title, slide-desc, slide-btns: slide-content-panel iÃ§inde Ã§alÄ±ÅŸÄ±r */

.slide-tag {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.3s;
}

.slide-tag::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.slide.active .slide-tag {
  opacity: 1;
  transform: translateY(0);
}

.slide-content-panel.active .slide-tag {
  opacity: 1;
  transform: translateY(0);
}

.slide-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(48px, 7vw, 90px);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s ease 0.5s;
}

.slide.active .slide-title {
  opacity: 1;
  transform: translateY(0);
}

.slide-content-panel.active .slide-title {
  opacity: 1;
  transform: translateY(0);
}

.slide-title .title-accent {
  color: var(--gold-light);
  font-style: normal;
}

.slide-desc {
  font-size: 15px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 44px;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.7s;
}

.slide.active .slide-desc {
  opacity: 1;
  transform: translateY(0);
}

.slide-content-panel.active .slide-desc {
  opacity: 1;
  transform: translateY(0);
}

.slide-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.9s;
}

@media (min-width: 480px) {
  .slide-btns {
    flex-direction: row;
    gap: 16px;
  }
}

.slide.active .slide-btns {
  opacity: 1;
  transform: translateY(0);
}

.slide-content-panel.active .slide-btns {
  opacity: 1;
  transform: translateY(0);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(90, 152, 84, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.slider-controls {
  position: absolute;
  /* Mobil: saÄŸ-alt kÃ¶ÅŸeden uzaklaÅŸtÄ±r, oklarÄ±n Ã¼stene Ã§Ä±k */
  bottom: 82px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

@media (min-width: 768px) {
  .slider-controls {
    bottom: 48px;
    left: auto;
    right: 10%;
    transform: none;
  }
}

.slider-dot {
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  background: var(--gold);
  width: 48px;
}

.slider-arrows {
  position: absolute;
  /* Mobil: sol-alt kÃ¶ÅŸe â€” noktalarla Ã¼st Ã¼ste binmez */
  bottom: 24px;
  left: 24px;
  right: auto;
  display: flex;
  gap: 8px;
  z-index: 10;
}

@media (min-width: 768px) {
  .slider-arrows {
    bottom: 40px;
    left: auto;
    right: calc(10% + 200px);
  }
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border-radius: 2px;
}

.slider-arrow:hover {
  border-color: var(--gold);
  background: rgba(90, 152, 84, 0.2);
}

.hero-vert {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  display: none;
  align-items: center;
  gap: 16px;
  z-index: 5;
}

@media (min-width: 768px) {
  .hero-vert {
    display: flex;
  }
}

.hero-vert::before {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 24px;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10;
  animation: scrollBounce 2s infinite;
}

@media (min-width: 768px) {
  .scroll-hint {
    display: flex;
    left: 10%;
  }
}

.scroll-hint span {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• SECTION HEADER â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-header {
  text-align: center;
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 48px;
  }
}

@media (min-width: 1024px) {
  .section-header {
    margin-bottom: 72px;
  }
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  color: var(--mineral);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section-title em,
.title-accent {
  font-style: normal;
  color: var(--teal-mid);
}

.section-desc {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

/* INTRO / HAKKIMIZDA â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.intro {
  padding: 24px 24px;
  background: var(--off-white);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

@media (min-width: 1024px) {
  .intro {
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    padding: 120px var(--container-pad);
    align-items: stretch;
  }
  /* Resim, section-tag + margin (â‰ˆ34px) kadar aÅŸaÄŸÄ± itilir â€” h2 baÅŸlÄ±ÄŸÄ±yla hizalanÄ±r */
  /* align-items: stretch olduÄŸu iÃ§in intro-visual yÃ¼ksekliÄŸi = grid satÄ±rÄ± yÃ¼ksekliÄŸi - 34px */
  .intro-visual {
    margin-top: 34px;
  }
  /* Sabit yÃ¼kseklik kaldÄ±rÄ±ldÄ±: grid row'un tamamÄ±nÄ± kapla */
  .intro-img-main {
    height: 100%;
  }
}

.intro-visual {
  position: relative;
}

.intro-img-main {
  width: 100%;
  height: 280px; /* mobil varsayÄ±lan */
  background: linear-gradient(135deg, var(--teal-light), var(--mineral));
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .intro-img-main {
    height: 300px;
  }
}
/* â‰¥1024px: sabit yÃ¼kseklik KALDIRILDI â€” @media bloku yukarÄ±da height:100% veriyor */
@media (min-width: 1024px) {
  /* Bu kural yukarÄ±daki tÃ¼m height tanÄ±mlarÄ±ndan sonra geldiÄŸi iÃ§in kazanÄ±r */
  .intro-img-main {
    height: 100%;
    min-height: 580px;
  }
}

.intro-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro-img-small {
  position: absolute;
  bottom: -30px;
  right: -16px;
  width: 140px;
  height: 180px;
  background: linear-gradient(135deg, var(--gold), #2a6040);
  border-radius: 4px;
  border: 4px solid var(--off-white);
  overflow: hidden;
}

@media (min-width: 768px) {
  .intro-img-small {
    bottom: -40px;
    right: -40px;
    width: 220px;
    height: 280px;
    border-width: 6px;
  }
}

.intro-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro-img-small-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(13, 30, 51, 0.6), transparent);
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(14, 45, 45, 0.1);
}

@media (min-width: 480px) {
  .stats-row {
    gap: 40px;
  }
}

.stat-item {
  text-align: left;
}

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--mineral);
  line-height: 1;
}

@media (min-width: 768px) {
  .stat-num {
    font-size: 42px;
  }
}

.stat-num span {
  font-size: 20px;
  color: var(--gold);
}

@media (min-width: 768px) {
  .stat-num span {
    font-size: 24px;
  }
}

.stat-label {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-top: 6px;
}

.intro-text {
  font-size: 16px;
  font-weight: 300;
  color: black;
  line-height: 1.9;
  margin-bottom: 40px;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(14, 45, 45, 0.08);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  letter-spacing: 0.02em;
}

.feature-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• ROOMS â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.rooms {
  padding: 48px 0;
  background: var(--off-white);
  overflow: hidden;
}

@media (min-width: 768px) {
  .rooms {
    padding: 100px 0;
  }
}

/* rooms section-header is now wrapped in .site-container in rooms.php */
.rooms .section-header {
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .rooms .section-header {
    margin-bottom: 44px;
  }
}

/* Full-screen page title style (backward compat) */
.rooms-fs-page-title {
  padding: 32px 24px 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .rooms-fs-page-title {
    padding: 0 var(--container-pad) 28px;
  }
}

.rooms-fs-page-title h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 300;
  color: var(--mineral);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* â”€â”€ FS CAROUSEL VIEWPORT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/*
  TasarÄ±m: Aktif kart tam yÃ¼ksek (fotoÄŸraf + beyaz bilgi paneli).
  Yan kartlar: margin-top ile aÅŸaÄŸÄ±da, sadece fotoÄŸraf + beyaz isim barÄ±.
  --rooms-elev: yan kartlarÄ±n Ã¼stten ne kadar aÅŸaÄŸÄ±da baÅŸladÄ±ÄŸÄ±.
*/
.rooms-carousel-section {
  position: relative;
  overflow: hidden;
  --rooms-side-w: 76px;
  --rooms-active-w: 240px;
  --rooms-elev: 32px;
}

@media (min-width: 480px) {
  .rooms-carousel-section {
    --rooms-side-w: 120px;
    --rooms-active-w: 280px;
    --rooms-elev: 40px;
  }
}

@media (min-width: 640px) {
  .rooms-carousel-section {
    --rooms-side-w: 160px;
    --rooms-active-w: 340px;
    --rooms-elev: 48px;
  }
}

@media (min-width: 1024px) {
  .rooms-carousel-section {
    --rooms-side-w: 200px;
    --rooms-active-w: 420px;
    --rooms-elev: 56px;
  }
}

/* Viewport yÃ¼ksekliÄŸi = aktif kartÄ±n yÃ¼ksekliÄŸi */
.rooms-carousel-viewport {
  overflow: hidden;
  position: relative;
  height: 450px;
}

@media (min-width: 640px) {
  .rooms-carousel-viewport {
    height: 520px;
  }
}

@media (min-width: 1024px) {
  .rooms-carousel-viewport {
    height: 600px;
  }
}

.rooms-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* â”€â”€ CARD BASE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rooms-fs-card {
  position: absolute;
  top: 0;
  /* JS bu deÄŸeri override eder */
  width: var(--rooms-side-w);
  height: 100%;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(14, 45, 45, 0.14);
  cursor: pointer;
  user-select: none;
  will-change: left, top;
}

/* â”€â”€ YAN KART â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/*  JS top = elev px â†’ kart viewport'tan elev px aÅŸaÄŸÄ±da baÅŸlar  */
/*  height CSS'de 100% ama top>0 olunca gÃ¶rsel olarak kÄ±salÄ±r     */
.rooms-fs-card--side {
  opacity: 0.82;
  filter: brightness(0.88);
  transition: opacity 0.4s, filter 0.4s, top 0.55s cubic-bezier(0.77, 0, 0.175, 1), left 0.55s cubic-bezier(0.77, 0, 0.175, 1);
}

.rooms-fs-card--side:hover {
  opacity: 0.92;
  filter: brightness(0.96);
}

/* â”€â”€ AKTÄ°F (MERKEZ) KART â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/*  JS top = -elev px â†’ tam yÃ¼ksekte, viewport'un Ã¼stÃ¼ne taÅŸar   */
/*  overflow:hidden olan viewport bunu keser â†’ sadece Ã¼stten taÅŸan kÄ±smÄ± gÃ¶sterir */
.rooms-fs-card--active {
  width: var(--rooms-active-w);
  opacity: 1;
  filter: brightness(1);
  box-shadow: 0 20px 60px rgba(14, 45, 45, 0.26);
  z-index: 10;
  transition: top 0.55s cubic-bezier(0.77, 0, 0.175, 1), left 0.55s cubic-bezier(0.77, 0, 0.175, 1);
}

/* â”€â”€ KART FOTOÄRAFI â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* Aktif kartta resim %65, popup %35 kaplasÄ±n */
.rooms-fs-card-img {
  width: 100%;
  height: 100%;
  /* Side card'da tÃ¼m yÃ¼ksekliÄŸi resim kaplar */
  overflow: hidden;
  position: relative;
  background: linear-gradient(160deg, #7aa8d4 0%, #2d6099 100%);
  transition: height 0.4s ease;
}

.rooms-fs-card--active .rooms-fs-card-img {
  height: 55%;
}

@media (min-width: 640px) {
  .rooms-fs-card--active .rooms-fs-card-img {
    height: 58%;
  }
}

@media (min-width: 1024px) {
  .rooms-fs-card--active .rooms-fs-card-img {
    height: 60%;
  }
}

.rooms-fs-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.rooms-fs-card--active .rooms-fs-card-img img {
  transform: scale(1.02);
}

.rooms-fs-card:hover .rooms-fs-card-img img {
  transform: scale(1.05);
}

/* â”€â”€ YAN KART Ä°SÄ°M BARI â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/*  Resmin hemen altÄ±nda beyaz bir ÅŸerit â€“ side card'larda gÃ¶rÃ¼nÃ¼r */
.rooms-fs-card-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 8px;
  background: #ffffff;
  color: #12305e;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 640px) {
  .rooms-fs-card-name {
    font-size: 10px;
    padding: 12px 10px;
  }
}

@media (min-width: 1024px) {
  .rooms-fs-card-name {
    font-size: 11px;
    padding: 14px 12px;
  }
}

.rooms-fs-card--active .rooms-fs-card-name {
  display: none !important;
}

/* â”€â”€ POPUP (AKTÄ°F KART BÄ°LGÄ° PANELÄ°) â”€â”€â”€â”€â”€â”€â”€ */
.rooms-fs-card-popup {
  display: none;
  flex-direction: column;
  padding: 10px 12px 10px;
  background: #ffffff;
  height: 45%;
  overflow: hidden;
}

.rooms-fs-card--active .rooms-fs-card-popup {
  display: flex;
}

@media (min-width: 640px) {
  .rooms-fs-card-popup {
    height: 42%;
    padding: 14px 18px 12px;
  }
}

@media (min-width: 1024px) {
  .rooms-fs-card-popup {
    height: 40%;
    padding: 20px 28px 16px;
  }
}

.rooms-fs-card-popup h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #12305e;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .rooms-fs-card-popup h3 {
    font-size: 15px;
  }
}

@media (min-width: 1024px) {
  .rooms-fs-card-popup h3 {
    font-size: 17px;
  }
}

.rooms-popup-line {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin: 8px 0;
  flex-shrink: 0;
}

.rooms-fs-card-popup p {
  font-size: 11px;
  font-weight: 300;
  color: black;
  line-height: 1.65;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media (min-width: 768px) {
  .rooms-fs-card-popup p {
    font-size: 12px;
  }
}

/* â”€â”€ POPUP BUTONLARI â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rooms-popup-btns {
  display: flex;
  gap: 6px;
  margin-top: auto;
  padding-top: 8px;
  flex-shrink: 0;
  flex-direction: row;
}

.rooms-btn-dark {
  flex: 1;
  padding: 7px 6px;
  background: var(--mineral);
  color: #fff;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  line-height: 1.3;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

.rooms-btn-dark:hover {
  background: var(--teal-mid);
  color: #fff;
}

.rooms-btn-outline {
  flex: 1;
  padding: 7px 6px;
  background: transparent;
  color: var(--mineral);
  border: 1px solid rgba(14, 45, 45, 0.28);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  line-height: 1.3;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.rooms-btn-outline:hover {
  border-color: var(--mineral);
  background: rgba(14, 45, 45, 0.05);
}

/* â”€â”€ CONTROLS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rooms-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 0 12px;
  margin-top: 4px;
}

.rooms-ctrl-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(14, 45, 45, 0.15);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border-radius: 50%;
  color: var(--mineral);
  flex-shrink: 0;
}

.rooms-ctrl-btn:hover {
  border-color: var(--mineral);
  background: var(--mineral);
  color: #fff;
}

.rooms-ctrl-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.rooms-carousel-counter {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--mineral);
  min-width: 60px;
  text-align: center;
  letter-spacing: 0.05em;
}

.rooms-counter-sep {
  color: var(--text-mid);
  font-size: 13px;
  margin: 0 2px;
}

/* â”€â”€ CTA LINK â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rooms-cta-wrap {
  display: flex;
  justify-content: center;
  padding: 8px 0 20px;
}

.rooms-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mineral);
  text-decoration: none;
  border-bottom: 1px solid rgba(18, 48, 94, 0.3);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s;
}

.rooms-cta-link:hover {
  color: var(--teal-mid);
  border-color: var(--teal-mid);
}

.rooms-cta-link svg {
  transition: transform 0.3s;
}

.rooms-cta-link:hover svg {
  transform: translateX(4px);
}

/* â”€â”€ LEGACY FALLBACK: simple flat cards (for non-JS) â”€â”€â”€â”€â”€â”€â”€â”€ */
.room-card {
  flex: 0 0 100%;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: all 0.45s ease;
}

@media (min-width: 640px) {
  .room-card {
    flex: 0 0 50%;
  }
}

@media (min-width: 1024px) {
  .room-card {
    flex: 0 0 25%;
  }
}

.room-thumb {
  width: 100%;
  height: 260px;
  display: block;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .room-thumb {
    height: 320px;
  }
}

.room-thumb-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.7s ease;
  background-size: cover;
  background-position: center;
}

.room-card:hover .room-thumb-inner {
  transform: scale(1.04);
}

.room-thumb-1 {
  background: linear-gradient(160deg, #7aa8d4 0%, #2d6099 100%);
}

.room-thumb-2 {
  background: linear-gradient(140deg, #6a9c60 0%, #2a5028 100%);
}

.room-thumb-3 {
  background: linear-gradient(140deg, #90b8e0 0%, #3a6898 100%);
}

.room-thumb-4 {
  background: linear-gradient(140deg, #80bc7a 0%, #3a6838 100%);
}

.room-thumb-5 {
  background: linear-gradient(140deg, #5888c0 0%, #1a3d6e 100%);
}

.room-info {
  padding: 18px 20px 16px;
  border-top: 1px solid rgba(14, 45, 45, 0.06);
}

.room-category {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.room-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--mineral);
  margin-bottom: 5px;
  line-height: 1.3;
}

.room-meta {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-mid);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• TERMAL & SPA â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* Mobile-first: tek sÃ¼tun */
.thermal-spa {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .thermal-spa {
    grid-template-columns: 1fr 1fr;
  }
}

.thermal-spa-visual {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a3d70 0%, #0d1e33 100%);
  min-height: 220px;
}

@media (min-width: 768px) {
  .thermal-spa-visual {
    min-height: 280px;
  }
}

@media (min-width: 1024px) {
  .thermal-spa-visual {
    min-height: 580px;
  }
}

.thermal-spa-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.thermal-spa-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 96, 153, 0.3) 0%, rgba(13, 30, 51, 0.5) 100%);
  pointer-events: none;
  z-index: 1;
}

.thermal-spa-badge {
  position: absolute;
  bottom: clamp(12px, 3vw, 32px);
  left: clamp(12px, 3vw, 32px);
  z-index: 2;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: clamp(10px, 2vw, 16px) clamp(12px, 2.5vw, 22px);
  border-radius: 4px;
  /* Maksimum geniÅŸlik â€” kÃ¼Ã§Ã¼k gÃ¶rselde badge alanÄ±n tamamÄ±nÄ± kaplamasÄ±n */
  max-width: calc(100% - clamp(24px, 6vw, 64px));
}

.thermal-spa-badge-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(20px, 5vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.thermal-spa-badge-label {
  font-size: clamp(8px, 1.8vw, 10px);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.thermal-spa-content {
  background: #fff;
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .thermal-spa-content {
    padding: 48px 0;
  }
}

@media (min-width: 1024px) {
  .thermal-spa-content {
    padding: 80px 72px;
  }
}

.thermal-spa-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

@media (min-width: 1024px) {
  .thermal-spa-features {
    gap: 24px;
    margin-top: 44px;
  }
}

.thermal-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(14, 45, 45, 0.07);
  border-radius: 4px;
  transition: all 0.3s;
  cursor: default;
  min-width: 0;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .thermal-feature-item {
    gap: 14px;
    padding: 20px;
  }
}

.thermal-feature-item:hover {
  border-color: var(--teal-mid);
  box-shadow: 0 4px 20px rgba(45, 96, 153, 0.08);
}

.thermal-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--stone-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .thermal-feature-icon {
    width: 40px;
    height: 40px;
  }
}

.thermal-feature-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--mineral);
}

.thermal-feature-text {
  min-width: 0;
  overflow: hidden;
}

.thermal-feature-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 3px;
  letter-spacing: 0.02em;
  word-break: break-word;
}

@media (min-width: 1024px) {
  .thermal-feature-title {
    font-size: 12px;
  }
}

.thermal-feature-desc {
  font-size: 10px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.5;
  word-break: break-word;
}

@media (min-width: 1024px) {
  .thermal-feature-desc {
    font-size: 11px;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• RESTAURANT & BAR â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• RESTAURANT & BAR â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.restaurant {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .restaurant {
    grid-template-columns: 1fr 1fr;
  }
}

.restaurant-content {
  background: var(--off-white);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 2;
}

@media (min-width: 768px) {
  .restaurant-content {
    padding: 48px 40px;
  }
}

@media (min-width: 1024px) {
  .restaurant-content {
    padding: 80px 72px;
    order: 1;
  }
}

.restaurant-visual {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2a1a08 0%, #0d0804 100%);
  min-height: 220px;
  order: 1;
}

@media (min-width: 768px) {
  .restaurant-visual {
    min-height: 280px;
  }
}

@media (min-width: 1024px) {
  .restaurant-visual {
    min-height: 580px;
    order: 2;
  }
}

.restaurant-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.restaurant-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 120, 50, 0.2) 0%, rgba(13, 8, 4, 0.45) 100%);
  pointer-events: none;
  z-index: 1;
}

.restaurant-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.restaurant-tag-pill {
  padding: 8px 16px;
  border: 1px solid rgba(14, 45, 45, 0.12);
  border-radius: 40px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.05em;
  background: #fff;
  transition: all 0.3s;
  cursor: default;
}

.restaurant-tag-pill:hover {
  background: var(--mineral);
  color: #fff;
  border-color: var(--mineral);
}

.restaurant-badge {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 2;
  text-align: right;
}

.restaurant-badge-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

@media (min-width: 768px) {
  .restaurant-badge-num {
    font-size: 52px;
  }
}

.restaurant-badge-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• KAMPANYALAR STRIP â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.kampanyalar-strip {
  background: var(--mineral);
  padding: 32px var(--container-pad);
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  position: relative;
}

@media (min-width: 1024px) {
  .kampanyalar-strip {
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
    padding: 48px var(--container-pad);
  }
}

.kampanyalar-strip::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(90, 152, 84, 0.08);
  pointer-events: none;
}

.kamp-content {
  flex: 0 0 220px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kamp-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.kamp-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.25;
}

.kamp-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.kamp-items {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  min-width: 0;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .kamp-items {
    gap: 16px;
    flex-wrap: nowrap;
  }
}

.kamp-item {
  flex: 1;
  min-width: 140px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 20px 16px;
  text-align: center;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.kamp-item:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: var(--gold);
}

.kamp-item-pct {
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.kamp-item-name {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
}

.kamp-item-sub {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.kamp-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kamp-cta .btn-primary {
  white-space: nowrap;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• SPECIAL OFFERS â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.offers {
  padding: 48px 0;
  background: #fff;
}

@media (min-width: 768px) {
  .offers {
    padding: 80px 0 90px;
  }
}

.offers-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .offers-header {
    margin-bottom: 36px;
    padding: 0 var(--container-pad);
  }
}

.offers-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mineral);
}

.offers-all {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mineral);
  text-decoration: none;
  border-bottom: 1px solid var(--mineral);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.offers-all:hover {
  color: var(--teal-mid);
  border-color: var(--teal-mid);
}

.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .offers-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 0 var(--container-pad);
  }
}

.offer-card {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
  aspect-ratio: 3/4;
}

.offer-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}

.offer-card:hover .offer-bg {
  transform: scale(1.06);
}

.offer-bg-1 {
  background: linear-gradient(160deg, #c04060 0%, #601030 50%, #1a1030 100%);
}

.offer-bg-2 {
  background: linear-gradient(150deg, #1a6080 0%, #0a3050 50%, #0a1830 100%);
}

.offer-bg-3 {
  background: linear-gradient(140deg, #a03050 0%, #502030 50%, #1a0820 100%);
}

.offer-bg-4 {
  background: linear-gradient(155deg, #1a7050 0%, #0a4030 50%, #081820 100%);
}

.offer-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background 0.4s;
}

.offer-card:hover .offer-overlay {
  background: transparent;
}

.section-cta-row {
  margin-top: 40px;
  padding-bottom: 0;
}

.offer-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 16px;
}

@media (min-width: 768px) {
  .offer-content {
    padding: 28px 24px;
  }
}

.offer-tag {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.offer-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 10px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

.offer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.offer-link::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.3s;
}

.offer-card:hover .offer-link {
  color: #fff;
}

.offer-card:hover .offer-link::after {
  width: 32px;
  background: #fff;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• EXPERIENCES â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.experiences {
  padding: 48px 24px;
  background: linear-gradient(135deg, #12305e 0%, #0d1e33 100%);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .experiences {
    padding: 72px var(--container-pad);
  }
}

@media (min-width: 1024px) {
  .experiences {
    padding: 120px var(--container-pad);
  }
}

.experiences::before {
  content: 'THERMAL';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-family: 'Montserrat', sans-serif;
  font-size: 120px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .experiences::before {
    font-size: 100px;
  }
}

.experiences .section-title {
  color: #fff;
}

.experiences .section-tag {
  color: var(--gold);
}

.experiences .section-desc {
  color: #ffffff;
  margin-top: 8px;
  font-size: 13px;
}

@media (min-width: 1024px) {
  .experiences .section-header {
    margin-bottom: 16px;
  }
}

.exp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  margin-top: 16px;
}

@media (min-width: 640px) {
  .exp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }
}

@media (min-width: 1024px) {
  .exp-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 60px;
  }
}

.exp-card {
  position: relative;
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(184, 145, 74, 0.12);
  overflow: hidden;
  transition: all 0.4s;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .exp-card {
    padding: 52px 40px;
  }
}

.exp-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.exp-card:hover {
  background: rgba(255, 255, 255, 0.07);
}

.exp-card:hover::before {
  transform: scaleX(1);
}

.exp-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(184, 145, 74, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: border-color 0.4s;
}

@media (min-width: 1024px) {
  .exp-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
  }
}

.exp-card:hover .exp-icon {
  border-color: var(--gold);
}

.exp-icon svg { width: clamp(18px, 2.5vh, 22px); height: clamp(18px, 2.5vh, 22px); fill: none; stroke: #fff; color: #fff; transition: stroke 0.4s; }

.exp-card:hover .exp-icon svg { stroke: var(--gold); color: var(--gold); }

.exp-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.04);
}

.exp-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
}

@media (min-width: 1024px) {
  .exp-title {
    font-size: 26px;
  }
}

.exp-desc {
  font-size: 13px;
  font-weight: 300;
  color: white;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.exp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• REVIEWS â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.reviews {
  padding: 48px 0 36px;
  background: var(--off-white);
  position: relative;
}

@media (min-width: 768px) {
  .reviews {
    padding: 100px 0 80px;
  }
}

.reviews .section-header {
  padding: 0 24px;
}

@media (min-width: 768px) {
  .reviews .section-header {
    padding: 0 var(--container-pad);
  }
}

.reviews-track-wrapper {
  overflow: hidden;
  margin-top: 20px;
  position: relative;
}

@media (min-width: 768px) {
  .reviews-track-wrapper {
    margin-top: 48px;
  }
}

.reviews-track {
  display: flex;
  gap: 12px;
  transition: transform 0.6s ease;
  padding: 12px 24px 20px;
}

@media (min-width: 768px) {
  .reviews-track {
    gap: 16px;
    padding: 0 var(--container-pad) 20px;
  }
}

.review-card {
  flex: 0 0 260px;
  background: #fff;
  border: 1px solid rgba(14, 45, 45, 0.07);
  padding: 24px 20px 20px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0 2px 16px rgba(14, 45, 45, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

@media (min-width: 768px) {
  .review-card {
    flex: 0 0 280px;
    padding: 28px 26px 24px;
  }
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(14, 45, 45, 0.1);
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-mid), var(--mineral));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  flex-shrink: 0;
}

.review-source {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 400;
  color: var(--text-mid);
}

.google-g {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #4285f4;
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 4px;
}

.star {
  color: #fbbc04;
  font-size: 12px;
}

.review-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--mineral);
  margin-bottom: 2px;
}

.review-date {
  font-size: 10px;
  font-weight: 300;
  color: var(--text-mid);
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.review-text {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
  letter-spacing: 0.01em;
}

.review-quote {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 52px;
  color: rgba(14, 45, 45, 0.04);
  line-height: 1;
}

.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .reviews-nav {
    margin-top: 48px;
  }
}

.rev-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(14, 45, 45, 0.15);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: var(--mineral);
}

.rev-arrow:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}

.rev-arrow svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.review-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

.score-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--mineral);
  line-height: 1;
}

.score-stars {
  display: flex;
  gap: 2px;
  margin: 4px 0;
}

.score-total {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-mid);
  letter-spacing: 0.05em;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• ABOUT STRIP â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.about-strip {
  padding: 52px 24px;
  background: linear-gradient(135deg, #1a3d70, #12305e);
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .about-strip {
    flex-direction: row;
    align-items: center;
    gap: 60px;
    padding: 100px var(--container-pad);
  }
}

.about-strip::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(184, 145, 74, 0.07);
  pointer-events: none;
}

.about-strip-content {
  flex: 1;
}

.about-strip .section-title {
  color: #fff;
}

.about-strip .section-tag {
  color: var(--gold);
}

.about-strip-text {
  font-size: 14px;
  font-weight: 300;
  color: white;
  line-height: 1.8;
  margin-top: 12px;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .about-strip-text {
    font-size: 15px;
    margin-top: 16px;
    max-width: 560px;
  }
}

.about-strip-cta {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .about-strip-cta {
    margin-top: 28px;
  }
}

.about-numbers {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
}

@media (min-width: 768px) {
  .about-numbers {
    flex-direction: column;
    gap: 48px;
    flex-shrink: 0;
  }
}

.about-num-item {
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}

@media (min-width: 768px) {
  .about-num-item {
    padding-left: 24px;
  }
}

.about-num-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
}

@media (min-width: 768px) {
  .about-num-val {
    font-size: 52px;
  }
}

.about-num-val span {
  font-size: 20px;
  color: var(--gold);
}

@media (min-width: 768px) {
  .about-num-val span {
    font-size: 28px;
  }
}

.about-num-label {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• GALLERY â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 160px 160px;
  gap: 3px;
}

@media (min-width: 640px) {
  .gallery {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 240px 240px;
  }
}

@media (min-width: 1024px) {
  .gallery {
    grid-template-rows: 300px 300px;
  }
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-row: 1 / 3;
}

.gallery-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.7s ease;
}

.gallery-item:hover .gallery-bg {
  transform: scale(1.08);
}

.gallery-bg-1 {
  background: linear-gradient(135deg, #1a4070 0%, #0a1830 100%);
}

.gallery-bg-2 {
  background: linear-gradient(135deg, #2a6050 0%, #0a2018 100%);
}

.gallery-bg-3 {
  background: linear-gradient(135deg, #1a3870 0%, #0a1430 100%);
}

.gallery-bg-4 {
  background: linear-gradient(135deg, #2a5848 0%, #0a1c18 100%);
}

.gallery-bg-5 {
  background: linear-gradient(135deg, #1a3468 0%, #0a1228 100%);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 45, 45, 0);
  transition: background 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(14, 45, 45, 0.45);
}

.gallery-plus {
  opacity: 0;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-plus {
  opacity: 1;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• ORNAMENT â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.ornament {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 16px auto;
  width: fit-content;
}

.ornament-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.ornament-line.rev {
  background: linear-gradient(to left, transparent, var(--gold));
}

.ornament-dot {
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• ANIMATIONS â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.animate-on-scroll {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

html.js .animate-on-scroll:not(.visible) {
  opacity: 0;
  transform: translateY(40px);
}

html.js .animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FLOATING BUTONLAR (WhatsApp + Telefon)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.float-btns {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.float-btn {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
  flex-shrink: 0;
}
.float-btn svg { width: 24px; height: 24px; flex-shrink: 0; display: block; }
.float-btn:hover { transform: scale(1.10) translateY(-2px); }
.float-btn--wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  animation: floatPulse 3s infinite;
}
.float-btn--wa:hover { box-shadow: 0 8px 30px rgba(37,211,102,0.55); animation: none; }
.float-btn--tel { background: #12305e; color: #fff; box-shadow: 0 4px 20px rgba(18,48,94,0.35); }
.float-btn--tel:hover { background: #2d6099; box-shadow: 0 8px 30px rgba(45,96,153,0.45); }
.float-btn__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(4px);
  background: rgba(15,30,55,0.92);
  color: #fff;
  font-size: 11.5px;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.float-btn__tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: rgba(15,30,55,0.92);
}
.float-btn:hover .float-btn__tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }
@keyframes floatPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 767px) {
  .float-btns { bottom: 20px; right: 16px; gap: 10px; }
  .float-btn  { width: 46px; height: 46px; }
  .float-btn svg { width: 20px; height: 20px; }
  .float-btn__tooltip { display: none; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HAVA DURUMU WIDGET'I
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.weather-toggle {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px 8px 10px;
  background: linear-gradient(135deg, #1a3d70 0%, #12305e 100%);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 40px;
  color: #fff;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(18,48,94,0.40);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s, opacity 0.3s;
  white-space: nowrap;
}
.weather-toggle:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(18,48,94,0.50); }
.weather-toggle.is-hidden { opacity: 0; pointer-events: none; transform: translateY(8px); }
.weather-toggle-emoji { font-size: 18px; line-height: 1; display: block; }
.weather-toggle-temp  { font-size: 14px; font-weight: 600; line-height: 1; }

.weather-widget {
  position: fixed;
  bottom: 80px;
  left: 28px;
  z-index: 9998;
  width: 280px;
  background: linear-gradient(160deg, #162e58 0%, #0d1e33 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 16px;
  color: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(74,128,188,0.15);
  font-family: 'Montserrat', sans-serif;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.97);
  transform-origin: bottom left;
  transition: opacity 0.3s ease, visibility 0.3s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.weather-widget.is-open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.weather-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.weather-location {
  display: flex; align-items: center; gap: 5px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.weather-location svg { width: 11px; height: 11px; flex-shrink: 0; opacity: 0.7; }
.weather-close {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s, color 0.2s; flex-shrink: 0;
}
.weather-close:hover { background: rgba(220,60,40,0.3); color: #fff; }
.weather-close svg { width: 13px; height: 13px; }
.weather-main {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.weather-emoji { font-size: 48px; line-height: 1; flex-shrink: 0; }
.weather-temp-wrap { display: flex; flex-direction: column; gap: 3px; }
.weather-temp { font-size: 42px; font-weight: 300; line-height: 1; color: #fff; letter-spacing: -0.02em; }
.weather-unit { font-size: 22px; font-weight: 300; vertical-align: super; margin-left: 2px; opacity: 0.75; }
.weather-desc { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.65); }
.weather-details {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.weather-detail-item { display: flex; flex-direction: column; align-items: center; gap: 2px; flex: 1; }
.weather-detail-sep { width: 1px; height: 30px; background: rgba(255,255,255,0.08); flex-shrink: 0; }
.weather-detail-icon { font-size: 12px; opacity: 0.6; }
.weather-detail-val  { font-size: 14px; font-weight: 600; color: #fff; line-height: 1.2; }
.weather-detail-lbl  { font-size: 9px; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; text-transform: uppercase; }
.weather-forecast { display: flex; justify-content: space-between; gap: 4px; margin-bottom: 12px; }
.weather-fc-day {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  flex: 1; padding: 6px 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; transition: background 0.2s;
}
.weather-fc-day:hover { background: rgba(74,128,188,0.15); }
.weather-fc-name { font-size: 9px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.weather-fc-icon { font-size: 18px; line-height: 1; }
.weather-fc-temps { display: flex; gap: 3px; font-size: 10px; }
.weather-fc-max { color: #fff; font-weight: 600; }
.weather-fc-min { color: rgba(255,255,255,0.40); }
.weather-footer { font-size: 9.5px; color: rgba(255,255,255,0.30); text-align: right; }

@media (max-width: 767px) {
  .weather-widget  { width: calc(100vw - 32px); left: 16px; bottom: 76px; }
  .weather-toggle  { bottom: 20px; left: 16px; }
  .weather-emoji   { font-size: 38px; }
  .weather-temp    { font-size: 36px; }
}

/* ── Blog Kart Görsel Üzeri Badge'ler ─────────────────────────── */
.blog-card-badges {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.blog-card-badges--featured {
  top: 20px;
  bottom: auto;
  left: 20px;
  right: 20px;
}

.blog-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 2px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.blog-badge--cat {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.blog-badge--read {
  background: rgba(90,152,84,0.85);
  border: 1px solid rgba(90,152,84,0.6);
  color: #fff;
  gap: 5px;
}

.blog-badge--read svg {
  flex-shrink: 0;
}

.blog-badge--one-cikan {
  background: var(--gold);
  border: 1px solid transparent;
  color: #fff;
}

.page-hero-bg--havuzlar {
  background-image: url('../img/havuzlar-gallery/Musterek-Acik-Yuzme-Havuzlari.jpg');
}


/* == Basinda Biz == */
/* ════════════════════════════════════════════════════════════════
   basinda-biz — basın kupürleri ızgarası, lightbox & responsive
   ════════════════════════════════════════════════════════════════ */

/* ── HERO ──────────────────────────────────────────────────────── */

main.page-basinda .page-hero.page-hero--basinda {
  position: relative;
  min-height: 300px;
  height: clamp(240px, 38vh, 380px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

main.page-basinda .page-hero--basinda .page-hero-bg {
  position: absolute;
  inset: 0;
  background-color: #1a2f4a;
  background-image:
    linear-gradient(120deg, rgba(13, 30, 51, 0.75) 0%, rgba(26, 47, 74, 0.45) 50%, rgba(13, 30, 51, 0.65) 100%),
    url("/assets/images/banner/basin.jpg");
  background-size: cover;
  background-position: center center;
}

main.page-basinda .page-hero--basinda .page-hero-bg::after {
  display: none; /* ic-sayfa.css'teki radial gradyanı devre dışı */
}

main.page-basinda .page-hero--basinda .page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  padding: 56px var(--container-pad);
}

/* ── SECTION WRAPPER ───────────────────────────────────────────── */

main.page-basinda .bb-section {
  background: linear-gradient(180deg, #faf9f7 0%, var(--off-white) 12%);
  padding: 60px var(--container-pad) 88px;
}

main.page-basinda .bb-inner {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

/* ── LEAD (açıklama metni + gold divider) ──────────────────────── */

main.page-basinda .bb-lead {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

main.page-basinda .bb-lead::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.85;
}

main.page-basinda .bb-lead p {
  margin: 0;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: 0.06em;
  color: var(--text-mid);
}

/* ── IZGARA ────────────────────────────────────────────────────── */

main.page-basinda .bb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

/* ── KART ──────────────────────────────────────────────────────── */

main.page-basinda .bb-item {
  margin: 0;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(14, 45, 45, 0.07);
  border: 1px solid rgba(14, 45, 45, 0.06);
  transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}

main.page-basinda .bb-item:hover {
  box-shadow: 0 16px 48px rgba(14, 45, 45, 0.12);
  transform: translateY(-4px);
  border-color: rgba(184, 145, 74, 0.35);
}

main.page-basinda .bb-item-link {
  display: block;
  line-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(14, 45, 45, 0.04);
}

/* Görseli yüklenemeyen kupürler için placeholder */
main.page-basinda .bb-item--broken {
  pointer-events: none;
  opacity: 0.55;
}
main.page-basinda .bb-item--broken .bb-item-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f0e8, #ede8dc);
  border: 1px dashed rgba(184,145,74,0.35);
}
main.page-basinda .bb-item--broken .bb-item-link::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b8914a' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 0-2-2V6H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2z'/%3E%3Cline x1='10' y1='7' x2='18' y2='7'/%3E%3Cline x1='10' y1='11' x2='18' y2='11'/%3E%3Cline x1='10' y1='15' x2='16' y2='15'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0.6;
}
main.page-basinda .bb-item--broken .bb-item-zoom { display: none; }

main.page-basinda .bb-item-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

main.page-basinda .bb-item:hover .bb-item-link img {
  transform: scale(1.06);
}

/* ── ZOOM İKONU ────────────────────────────────────────────────── */

main.page-basinda .bb-item-zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--mineral);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

main.page-basinda .bb-item:hover .bb-item-zoom {
  opacity: 1;
  transform: scale(1);
}

main.page-basinda .bb-item-zoom svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}

/* ── LİGHTBOX ─────────────────────────────────────────────────── */

main.page-basinda .bb-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 22, 38, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  box-sizing: border-box;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

main.page-basinda .bb-lightbox[hidden] {
  display: none !important;
}

main.page-basinda .bb-lightbox-inner {
  position: relative;
  max-width: min(96vw, 1100px);
  max-height: 90vh;
}

main.page-basinda .bb-lightbox-inner img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

main.page-basinda .bb-lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--mineral);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2);
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}

main.page-basinda .bb-lightbox-close:hover {
  background: var(--gold-pale);
  transform: scale(1.06);
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 1023px)
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 1023px) {

  /* Mobil hero görseli */
  main.page-basinda .page-hero--basinda .page-hero-bg {
    background-image:
      linear-gradient(120deg, rgba(13, 30, 51, 0.78) 0%, rgba(26, 47, 74, 0.5) 100%),
      url("/assets/images/banner/basin-mobil.jpg");
  }

  /* Hero içerik padding: fixed navbar (56px) + nefes payı */
  main.page-basinda .page-hero--basinda .page-hero-content {
    padding: calc(56px + 20px) var(--container-pad) 40px;
  }

  /* Section daha az boşluk */
  main.page-basinda .bb-section {
    padding: 40px var(--container-pad) 64px;
  }

  /* Lead metni biraz küçülsün */
  main.page-basinda .bb-lead {
    margin-bottom: 36px;
  }

  /* 2 sütun ızgara */
  main.page-basinda .bb-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* Zoom ikonu mobilde dokunmaya hazır — hover olmadan görünür */
  main.page-basinda .bb-item-zoom {
    opacity: 1;
    transform: scale(1);
  }

  /* Kartlar hover'da yükselmez (dokunma UX) */
  main.page-basinda .bb-item:hover {
    transform: none;
  }

  /* Lightbox kapatma butonu dokunabilir alan */
  main.page-basinda .bb-lightbox-close {
    width: 48px;
    height: 48px;
    top: -14px;
    right: -10px;
    font-size: 24px;
  }

  main.page-basinda .bb-lightbox {
    padding: 16px;
  }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — Büyük mobil (≤ 767px)
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {

  main.page-basinda .page-hero.page-hero--basinda {
    min-height: 200px;
    height: clamp(180px, 32vh, 280px);
  }

  main.page-basinda .page-hero--basinda .page-hero-content {
    padding: 0 16px 28px;
  }

  main.page-basinda .bb-section {
    padding: 32px 16px 56px;
  }

  main.page-basinda .bb-lead {
    margin-bottom: 28px;
  }

  main.page-basinda .bb-lead p {
    font-size: 12px;
  }

  /* Izgara mümkün olduğunca sığ: 2 sütun (küçük ekranda yeterince geniş) */
  main.page-basinda .bb-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — Küçük mobil (≤ 479px)
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 479px) {

  main.page-basinda .page-hero.page-hero--basinda {
    min-height: 160px;
    height: clamp(160px, 28vh, 240px);
  }

  main.page-basinda .page-hero--basinda .page-hero-content {
    padding: 0 14px 22px;
  }

  /* Çok dar ekranda tek sütun */
  main.page-basinda .bb-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  main.page-basinda .bb-lead p {
    font-size: 12px;
    letter-spacing: 0.03em;
  }

  /* Zoom ikonu biraz küçülsün */
  main.page-basinda .bb-item-zoom {
    width: 30px;
    height: 30px;
    right: 8px;
    bottom: 8px;
  }

  main.page-basinda .bb-item-zoom svg {
    width: 14px;
    height: 14px;
  }

  /* Lightbox tam ekran yakın kapatma butonu */
  main.page-basinda .bb-lightbox {
    padding: 10px;
    align-items: flex-start;
    padding-top: 48px;
  }

  main.page-basinda .bb-lightbox-inner {
    max-width: 100%;
    max-height: calc(100vh - 56px);
  }

  main.page-basinda .bb-lightbox-close {
    position: fixed;
    top: 10px;
    right: 12px;
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  main.page-basinda .bb-lightbox-inner img {
    max-height: calc(100vh - 56px);
  }
}

/* ════════════════════════════════════════════════════════════════
   Dokunmatik cihazlar: hover animasyonları devre dışı
   ════════════════════════════════════════════════════════════════ */
@media (hover: none) {
  main.page-basinda .bb-item:hover {
    box-shadow: 0 4px 24px rgba(14, 45, 45, 0.07);
    transform: none;
    border-color: rgba(14, 45, 45, 0.06);
  }

  main.page-basinda .bb-item:hover .bb-item-link img {
    transform: none;
  }

  main.page-basinda .bb-item-zoom {
    opacity: 1;
    transform: scale(1);
  }
}

/* ════════════════════════════════════════════════════════════════
   Restaurant & Bar — QR Kod (gerçek QR görsel)
   ════════════════════════════════════════════════════════════════ */

.qr-image-link {
  display: block;
  text-decoration: none;
  margin-bottom: 12px;
}

.qr-img-wrap {
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.qr-image-link:hover .qr-img-wrap {
  transform: scale(1.03);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

.qr-img-wrap img {
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 4px;
}

.qr-img-wrap.qr-img-error {
  width: 200px;
  height: 200px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #999;
}

.qr-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px 24px;
  background: var(--gold-light, #75aa6f);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.qr-cta-btn:hover {
  background: var(--gold, #5a9854);
  transform: translateY(-1px);
  color: #fff;
}

.nav-mobile-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 4px;
}

/* Masaüstünde topbar zaten gösteriyor, burada gizle */
@media (min-width: 1025px) {
  .nav-mobile-lang {
    display: none;
  }
}

.nav-mobile-lang-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(18, 48, 94, 0.5);
  text-decoration: none;
  padding: 4px 6px;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
  line-height: 1;
}

.nav-mobile-lang-btn:hover {
  color: var(--mineral, #12305e);
  background: rgba(18, 48, 94, 0.08);
}

.nav-mobile-lang-btn.active {
  color: var(--mineral, #12305e);
  font-weight: 700;
}

.nav-mobile-lang-sep {
  color: rgba(18, 48, 94, 0.25);
  font-size: 11px;
  line-height: 1;
  user-select: none;
}
