/* ================================================
   PAU Spor Merkezi — 2026 Redesign
   Color: Navy (#0a1628) + White
   Font:  Barlow
   ================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Barlow', sans-serif;
  color: #fff;
  background: #0a1628;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.course-extra-hidden {
  display: none !important;
}

ul { list-style: none; }

/* ---------- Site-wide Button ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  border: 2px solid #fff;
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  cursor: pointer;
}

.btn:hover {
  background: #fff;
  color: #0a1628;
}

.btn.active {
  background: #fff;
  color: #0a1628;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  z-index: 100;
  transition: background 0.3s, padding 0.3s;
}

.header.scrolled {
  background: rgba(10, 22, 40, 0.95);
  padding: 1rem 3rem;
  backdrop-filter: blur(6px);
}

.header-logo img {
  height: 64px;
  width: auto;
}

/* Header right group */
.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-right .btn {
  padding: 0.65rem 1.8rem;
  font-size: 0.75rem;
  z-index: 101;
}

/* Hamburger — mobile only */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  z-index: 101;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Fullscreen Nav Overlay ---------- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: #0a1628;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.nav-close {
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  font-size: 2.5rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  display: none; /* hamburger X handles close */
}

.nav-list {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.nav-link {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.3rem 1rem;
  transition: opacity 0.3s;
  display: inline-block;
}

.nav-link:hover,
.nav-link.active {
  opacity: 0.5;
}

/* Online İşlemler inside mobile menu */
.nav-online-mobile {
  display: none;
  margin-top: 2.5rem;
  text-align: center;
}

.nav-online-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 1rem;
}

.nav-online-btns {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
}

.nav-online-btns .btn {
  font-size: 0.7rem;
  padding: 0.6rem 1.6rem;
  width: 100%;
  max-width: 240px;
  text-align: center;
}

.nav-footer {
  margin-top: 2.5rem;
}

.nav-social {
  display: flex;
  gap: 1.5rem;
}

.nav-social a {
  font-size: 1.2rem;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.nav-social a:hover {
  opacity: 1;
}

/* ---------- Hero Slider ---------- */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #0a1628;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 22, 40, 0.5) 0%,
    rgba(10, 22, 40, 0.3) 40%,
    rgba(10, 22, 40, 0.6) 100%
  );
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-content {
  position: absolute;
  bottom: 18%;
  left: 5%;
  z-index: 2;
  max-width: 700px;
}

.slide-subtitle {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.slide-title {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.8rem;
}

/* Hero buttons use site-wide .btn */

/* Slide indicators */
.slide-indicators {
  position: absolute;
  bottom: 5%;
  left: 5%;
  display: flex;
  gap: 1.5rem;
  z-index: 10;
}

.indicator {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  padding: 0.3rem 0;
  position: relative;
  transition: color 0.3s;
}

.indicator::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.indicator.active {
  color: #fff;
}

.indicator.active::after {
  transform: scaleX(1);
}

/* Auto-progress bar on active indicator */
.indicator.active.running::after {
  transform: scaleX(1);
  transition: transform 5s linear;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 5%;
  right: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}

.scroll-hint span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* ---------- Section Commons ---------- */
.section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.section-header {
  padding: 6rem 5% 2.5rem;
}

.works .section-title {
  color: #0a1628;
}

/* ---------- Works / Tesislerimizi Keşfedin ---------- */
.works {
  background: #fff;
  scroll-margin-top: 3.5rem;
}

/* Shared row layout */
.works-row {
  display: grid;
  gap: 0;
}

.works-row + .works-row {
  margin-top: 0;
}

.works-row--4 {
  grid-template-columns: repeat(4, 1fr);
}

.works-row--big-left {
  grid-template-columns: 2fr 1fr 1fr;
}

.works-row--big-right {
  grid-template-columns: 1fr 1fr 2fr;
}

/* Item */
.works-item {
  position: relative;
  overflow: hidden;
  display: block;
  height: 380px;
  background: #222;
}

.works-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.works-item:hover img {
  transform: scale(1.06);
}

/* Hover label — compact black box, centered on image */
.works-label {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #000;
  padding: 1.6rem 2.5rem 1.6rem 1.8rem;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  white-space: nowrap;
}

.works-item:hover .works-label {
  opacity: 1;
}

.works-name {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.works-arrow {
  display: none;
}

/* ---------- Membership / Nasıl Üye Olabilirim ---------- */
.membership {
  background: #222;
  padding-bottom: 2rem;
  scroll-margin-top: 3.5rem;
}

.section-sub {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.5;
  margin-top: 0.8rem;
  max-width: 500px;
}

.membership-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  padding: 0 5%;
  position: relative;
  z-index: 2;
}

.membership-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 2.5rem 2.2rem;
  display: flex;
  flex-direction: column;
}

.membership-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.membership-title {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}

.membership-text {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.7;
  opacity: 0.55;
  margin-bottom: 2rem;
  flex: 1;
}

.membership-card .btn {
  align-self: flex-start;
  font-size: 0.7rem;
  padding: 0.65rem 1.8rem;
}

/* Marquee */
.marquee {
  margin-top: -4.5rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding-bottom: 4rem;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, white 25%, white 75%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, white 25%, white 75%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 2em;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}

.marquee-track span {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: clamp(6rem, 12vw, 11rem);
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
  opacity: 0.15;
  line-height: 0.85;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- VMD Strip (Vizyon/Misyon/Değerlerimiz) ---------- */
.vmd-strip {
  background: #0a1628;
  color: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.vmd-block {
  position: relative;
  padding: 2rem 1.6rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  isolation: isolate;
}

.vmd-block:last-child {
  border-right: none;
}

.vmd-block::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background: #000;
  transition: height 0.4s ease;
  z-index: -1;
}

.vmd-block:hover::before {
  height: 100%;
}

.vmd-block-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.vmd-block-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  font-size: 1rem;
  color: #fff;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.vmd-block:hover .vmd-block-icon {
  background: #fff;
  color: #0a1628;
  transform: scale(1.08);
}

.vmd-block-title {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
  color: #fff;
}

.vmd-block-text {
  font-size: 0.92rem;
  line-height: 1.65;
  opacity: 0.7;
  margin: 0;
  transition: opacity 0.35s ease;
}

.vmd-block:hover .vmd-block-text {
  opacity: 1;
}

/* ---------- Tarihçe ---------- */
.history {
  background: #e8e4e0;
  color: #1a1a1a;
  padding: 6rem 5% 6rem;
  scroll-margin-top: 3.5rem;
}

.history-hero {
  display: flex;
  gap: 0;
  overflow: hidden;
}

.history-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 3rem 4rem 0;
  gap: 1.5rem;
  flex: 1;
}

.history-title {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.history-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.65;
}

.history-img {
  overflow: hidden;
  flex: 0 0 50%;
  min-height: 520px;
}

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

.history-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.history-card {
  padding: 2rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.history-card-icon {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  opacity: 0.4;
}

.history-card-title {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.history-card-text {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.55;
}

/* ---------- İrtibatta Kalalım ---------- */
.contact {
  background: #fff;
  color: #1a1a1a;
  scroll-margin-top: 3.5rem;
}

.contact-map {
  width: 100%;
  height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1);
}

.contact-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 5rem 5%;
}

.contact-title {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  color: #1a1a1a;
}

.contact-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.55;
  margin-bottom: 2.5rem;
}

.contact-address p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.3rem;
}

.contact-address a {
  color: #1a1a1a;
  text-decoration: none;
}

.contact-address a:hover {
  opacity: 0.6;
}

.contact-info-grid {
  display: flex;
  gap: 2.5rem;
}
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  flex: 1;
}

.contact-info-item i {
  font-size: 1.2rem;
  opacity: 0.3;
  margin-bottom: 0.8rem;
  display: block;
}

.contact-info-item strong {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.45;
  display: block;
  margin-bottom: 0.5rem;
}

.contact-info-item p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-info-item a {
  color: #1a1a1a;
  text-decoration: none;
}

.contact-info-item a:hover {
  opacity: 0.6;
}

.contact-note {
  font-size: 0.8rem;
  opacity: 0.45;
  margin-top: 0.3rem;
}

/* ---------- Footer ---------- */
.footer {
  background: #111;
  text-align: center;
  padding: 2rem 5%;
  font-size: 0.85rem;
  opacity: 0.5;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: #0a1628;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  overflow-y: auto;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  left: 4rem;
  font-size: 1.6rem;
  color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  z-index: 201;
  line-height: 1;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
  background: none;
}

.lightbox-close:hover {
  background: #fff;
  color: #0a1628;
}

.lightbox-nav {
  display: flex;
  gap: 0.8rem;
  margin-top: 2.5rem;
}

.lightbox-arrow {
  font-size: 1rem;
  color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  transition: background 0.3s, color 0.3s;
}

.lightbox-arrow:hover {
  background: #fff;
  color: #0a1628;
}

.lightbox-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.lightbox-info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem;
}

.lightbox-title {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.lightbox-desc {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  opacity: 0.7;
  max-width: 500px;
}

.lightbox-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 90vh;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .header {
    padding: 1rem 1.5rem;
  }

  .header-logo img {
    height: 44px;
  }

  .nav-close {
    top: 1.05rem;
    right: 1.35rem;
    font-size: 2.1rem;
  }

  .nav-list {
    gap: 0.22rem;
    margin-top: 0.35rem;
  }

  .nav-link {
    font-size: 1.42rem;
    padding: 0.12rem 0.9rem;
  }

  .nav-online-mobile {
    margin-top: 1.4rem;
  }

  .nav-online-title {
    margin-bottom: 0.75rem;
  }

  .nav-online-btns {
    gap: 0.5rem;
  }

  .nav-footer {
    margin-top: 1.5rem;
  }

  .btn--menu-desktop,
  .btn--online-mobile {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-online-mobile {
    display: block;
  }

  .slide-content {
    bottom: 22%;
    left: 6%;
    right: 6%;
  }

  .slide-title {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }

  .slide-indicators {
    left: 6%;
    bottom: 8%;
  }

  .scroll-hint {
    display: none;
  }

  .works-row--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .works-row--big-left,
  .works-row--big-right {
    grid-template-columns: 1fr 1fr;
  }

  .works-item {
    height: 250px;
  }

  .works-item--wide {
    grid-column: span 2;
  }

  /* Mobil: hover efekti yok, tesis adı sağ üstte btn stili */
  .works-item:hover img {
    transform: none;
  }

  .works-label {
    top: 0.6rem;
    right: 0.6rem;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #fff;
    padding: 0.45rem 1rem;
    white-space: nowrap;
  }

  .works-name {
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #0a1628;
  }

  .membership-cards {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
  }

  .marquee {
    margin-top: -1.5rem;
    z-index: 1;
  }

  .marquee-track span {
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .vmd-strip {
    border-radius: 10px;
    grid-template-columns: 1fr;
  }

  .vmd-block {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 1.3rem 1.2rem;
  }

  .vmd-block:last-child {
    border-bottom: none;
  }

  .vmd-block-head {
    margin-bottom: 0.7rem;
  }

  .vmd-block-icon {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .vmd-block-title {
    font-size: 1.1rem;
  }

  .vmd-block-text {
    font-size: 0.88rem;
    opacity: 0.85;
  }

  .history {
    padding-top: 2.5rem;
  }

  .history-hero {
    flex-direction: column;
  }

  .history-content {
    padding: 0;
    gap: 1.5rem;
  }

  .history-img {
    flex: none;
    height: 300px;
    min-height: auto;
    margin-top: 2.5rem;
  }

  .history-cards {
    grid-template-columns: 1fr;
  }

  .contact-body {
    grid-template-columns: 1fr;
  }

  .contact-info-grid {
    flex-direction: column;
  }

  .contact-map {
    height: 280px;
  }

  .lightbox-inner {
    grid-template-columns: 1fr;
  }

  .lightbox-info {
    padding: 5rem 2rem 2rem;
  }

  .lightbox-close {
    left: 2rem;
  }

  .lightbox-image {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .works-row--4,
  .works-row--big-left,
  .works-row--big-right {
    grid-template-columns: 1fr;
  }

  .works-item--wide {
    grid-column: span 1;
  }

  .works-item {
    height: 220px;
  }
}

/* ---------- Scroll to Top Button ---------- */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  width: 48px;
  height: 48px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top img {
  width: 100%;
  height: 100%;
  display: block;
}
.scroll-top .top-hover {
  display: none;
}
.scroll-top:hover .top-default {
  display: none;
}
.scroll-top:hover .top-hover {
  display: block;
}

.quality-access {
  position: absolute;
  right: 3rem;
  bottom: 2rem;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 210px;
  max-width: 210px;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(10,22,40,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(10,22,40,0.24);
  transition: transform 0.25s, background 0.25s, border-color 0.25s;
}

.quality-access:hover {
  transform: translateY(-2px);
  background: rgba(10,22,40,0.96);
  border-color: rgba(255,255,255,0.26);
}

.quality-access i {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.language-flag {
  width: 34px;
  height: 24px;
  border-radius: 4px;
  display: inline-block;
  background-color: rgba(255,255,255,0.1);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.18);
  color: transparent;
  line-height: 1;
  flex-shrink: 0;
  overflow: hidden;
  text-indent: -999px;
}

.language-flag--us {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 741 390'%3E%3Cpath fill='%23b22234' d='M0 0h741v390H0z'/%3E%3Cpath stroke='%23fff' stroke-width='30' d='M0 45h741M0 105h741M0 165h741M0 225h741M0 285h741M0 345h741'/%3E%3Cpath fill='%233c3b6e' d='M0 0h296v210H0z'/%3E%3Cg fill='%23fff'%3E%3Ccircle cx='32' cy='30' r='8'/%3E%3Ccircle cx='82' cy='30' r='8'/%3E%3Ccircle cx='132' cy='30' r='8'/%3E%3Ccircle cx='182' cy='30' r='8'/%3E%3Ccircle cx='232' cy='30' r='8'/%3E%3Ccircle cx='57' cy='70' r='8'/%3E%3Ccircle cx='107' cy='70' r='8'/%3E%3Ccircle cx='157' cy='70' r='8'/%3E%3Ccircle cx='207' cy='70' r='8'/%3E%3Ccircle cx='257' cy='70' r='8'/%3E%3Ccircle cx='32' cy='110' r='8'/%3E%3Ccircle cx='82' cy='110' r='8'/%3E%3Ccircle cx='132' cy='110' r='8'/%3E%3Ccircle cx='182' cy='110' r='8'/%3E%3Ccircle cx='232' cy='110' r='8'/%3E%3Ccircle cx='57' cy='150' r='8'/%3E%3Ccircle cx='107' cy='150' r='8'/%3E%3Ccircle cx='157' cy='150' r='8'/%3E%3Ccircle cx='207' cy='150' r='8'/%3E%3Ccircle cx='257' cy='150' r='8'/%3E%3C/g%3E%3C/svg%3E");
}

.language-flag--tr {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800'%3E%3Crect width='1200' height='800' fill='%23e30a17'/%3E%3Ccircle cx='440' cy='400' r='190' fill='%23fff'/%3E%3Ccircle cx='490' cy='400' r='150' fill='%23e30a17'/%3E%3Cpath fill='%23fff' d='M705 400l173-56-107 146V310l107 146z'/%3E%3C/svg%3E");
}

.quality-access-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.18;
  text-transform: uppercase;
  color: #fff;
}

.language-access .quality-access-label {
  text-transform: none;
}

.quality-access.is-current {
  background: #fff;
  border-color: rgba(10,22,40,0.08);
  pointer-events: none;
}

.quality-access.is-current i {
  background: rgba(10,22,40,0.08);
  color: #0a1628;
}

.quality-access.is-current .quality-access-label {
  color: #0a1628;
}

.nav-quick-actions {
  position: absolute;
  right: 3rem;
  bottom: 2rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.nav-quick-actions .quality-access {
  position: static;
  right: auto;
  bottom: auto;
  min-height: 60px;
}

/* ==========================================================================
   PRICES PAGE
   ========================================================================== */

/* ========== Full-Screen Hero Landing ========== */
.price-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 5% 5rem;
  background: url('../images/z1.jpg') center center / cover no-repeat;
}
.price-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,22,40,0.4) 0%, rgba(10,22,40,0.85) 100%);
}
.price-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.price-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.price-hero p {
  opacity: 0.85;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  max-width: 500px;
}
.price-hero-copy-space {
  height: 1.35rem;
  margin-bottom: 2.5rem;
}

/* Category Cards Panel */
.price-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  align-items: end;
  gap: clamp(0.2rem, 0.45vw, 0.5rem);
  width: 100%;
  isolation: isolate;
}
.price-hero-card:nth-child(1) { --icon-color: #0077b6; }
.price-hero-card:nth-child(2) { --icon-color: #e76f51; }
.price-hero-card:nth-child(3) { --icon-color: #2a9d8f; }
.price-hero-card:nth-child(4) { --icon-color: #8b5cf6; }
.price-hero-card:nth-child(5) { --icon-color: #f4a261; }
.price-hero-card:nth-child(6) { --icon-color: #00a6a6; }
.price-hero-card:nth-child(7) { --icon-color: #3a86ff; }
.price-hero-card:nth-child(8) { --icon-color: #43aa8b; }
.price-hero-card:nth-child(9) { --icon-color: #ef476f; }
.price-hero-card:nth-child(10) { --icon-color: #ff7a00; }
.price-hero-card:nth-child(11) { --icon-color: #6d597a; }
.price-hero-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 66px 1fr;
  justify-items: center;
  align-items: start;
  min-height: 138px;
  padding: 1rem 0.55rem 0.85rem;
  cursor: pointer;
  text-decoration: none;
  color: #0a1628;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0,0,0,0.16);
  overflow: visible;
  transform: translateZ(0);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease, opacity 0.28s ease;
}
.price-hero-grid:hover .price-hero-card:not(:hover) {
  opacity: 0.82;
  transform: translateY(3px) scale(0.985);
}
.price-hero-card:hover {
  z-index: 5;
  background: #fff;
  border-color: rgba(255,255,255,0.95);
  box-shadow: 0 34px 70px rgba(0,0,0,0.3);
  transform: translateY(-18px) scale(1.055);
}
.price-hero-card i {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  display: grid;
  align-items: center;
  justify-content: center;
  margin-top: -0.15rem;
  color: var(--icon-color, #0b5f9e);
  font-size: 1.78rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
  transition: transform 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}
.price-hero-card:hover i {
  color: var(--icon-color, #063f72);
  box-shadow: none;
  transform: translateY(-5px);
}
.price-hero-card-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(0.72rem, 0.95vw, 0.92rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.18;
  text-align: center;
  color: #0a1628;
  max-width: 100%;
}
.price-hero-card::after {
  content: '';
  position: absolute;
  left: 19%;
  right: 19%;
  bottom: 0.62rem;
  height: 7px;
  border-radius: 999px;
  background: rgba(10,22,40,0.18);
  filter: blur(8px);
  opacity: 0.45;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.price-hero-card:hover::after {
  opacity: 0.75;
  transform: translateY(8px) scaleX(1.15);
}

/* ========== Sticky Quick Nav ========== */
.price-quick-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.75rem 5%;
}
.price-quick-nav-inner {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.price-quick-nav-inner::-webkit-scrollbar { display: none; }
.price-quick-nav-inner a {
  white-space: nowrap;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
  flex-shrink: 0;
}
.price-quick-nav-inner a:hover,
.price-quick-nav-inner a.active {
  background: #fff;
  color: #0a1628;
}

/* ========== Price Sections — White BG ========== */
.price-section {
  padding: 5rem 5% 4rem;
  background: #fff;
  color: #1a1a1a;
  scroll-margin-top: 3.5rem;
}
.price-section.alt-bg {
  background: #f5f5f5;
}
.price-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: #0a1628;
}
.price-section-title i {
  opacity: 0.35;
  margin-right: 0.5rem;
}

@media (min-width: 769px) {
  #yuzme,
  #bireysel { --section-icon-color: #0077b6; }
  #tenis,
  #aile { --section-icon-color: #e76f51; }
  #cimnastik,
  #genelfitness { --section-icon-color: #2a9d8f; }
  #karate,
  #gunubirlik { --section-icon-color: #8b5cf6; }
  #basketbol,
  #digeralanlar { --section-icon-color: #f4a261; }
  #voleybol,
  #pt { --section-icon-color: #00a6a6; }
  #spinning,
  #icerikler { --section-icon-color: #3a86ff; }
  #pilates,
  #uyarilar { --section-icon-color: #43aa8b; }
  #reformer { --section-icon-color: #ef476f; }
  #kickboks { --section-icon-color: #ff7a00; }
  #sporcupaketi { --section-icon-color: #6d597a; }

  .price-section-title i {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    color: var(--section-icon-color, #0b5f9e);
    opacity: 1;
  }
}
.price-section-subtitle {
  font-size: 0.92rem;
  opacity: 0.5;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ========== Sub-title (course-sub-title) — bigger ========== */
.course-sub-title-toggle {
  cursor: pointer;
  justify-content: space-between;
}
.course-sub-title-toggle::before {
  display: none !important;
}
.course-sub-title-toggle::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.55rem;
  opacity: 0.3;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.course-sub-title-toggle.open::after {
  transform: rotate(180deg);
}
.course-sub-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.course-sub-body.open {
  max-height: 10000px;
  padding-top: 0.6rem;
}

/* ========== Desktop Tables — Light Navy ========== */
.price-table-wrap {
  overflow-x: auto;
  border-radius: 0;
  border: 1px solid rgba(10,22,40,0.1);
  margin-bottom: 1.5rem;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table th {
  background: #d5dbe3;
  padding: 0.9rem 1rem;
  text-align: left;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0a1628;
  border-bottom: 1px solid rgba(10,22,40,0.08);
  line-height: 1.5;
  vertical-align: top;
}
.price-table th small {
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(10,22,40,0.55);
  text-transform: none;
  letter-spacing: 0;
  margin-top: 0.25rem;
  line-height: 1.4;
}
.price-table .thead-sub th {
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(10,22,40,0.6);
  text-transform: none;
  letter-spacing: 0;
  padding-top: 0;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(10,22,40,0.08);
  line-height: 1.4;
}
/* Equal width for 3 price columns */
.price-table .col-price { width: 14%; }
.price-table .col-package { white-space: nowrap; min-width: 280px; }
/* Öğrenci / Personel / Standart — ayrı zemin renkleri (üst satır) */
#bireysel .price-table th:nth-child(2),
#aile .price-table th:nth-child(2) {
  background: #c8cfd8;
}
#bireysel .price-table th:nth-child(3),
#aile .price-table th:nth-child(3) {
  background: #bcc5cf;
}
@media (min-width: 769px) {
  #bireysel .price-table,
  #aile .price-table {
    table-layout: fixed;
  }
  #bireysel .price-table th,
  #aile .price-table th {
    vertical-align: top;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
  #bireysel .price-table th small,
  #aile .price-table th small {
    margin-top: 0.15rem;
  }
  #bireysel .price-table th:first-child,
  #bireysel .price-table td:first-child,
  #aile .price-table th:first-child,
  #aile .price-table td:first-child {
    width: 19%;
  }
  #bireysel .price-table th:nth-child(2),
  #bireysel .price-table td:nth-child(2),
  #bireysel .price-table th:nth-child(3),
  #bireysel .price-table td:nth-child(3),
  #bireysel .price-table th:nth-child(4),
  #bireysel .price-table td:nth-child(4),
  #aile .price-table th:nth-child(2),
  #aile .price-table td:nth-child(2),
  #aile .price-table th:nth-child(3),
  #aile .price-table td:nth-child(3),
  #aile .price-table th:nth-child(4),
  #aile .price-table td:nth-child(4) {
    width: 15%;
    min-width: 15%;
    max-width: 15%;
  }
}
#bireysel .price-table th:nth-child(4),
#aile .price-table th:nth-child(4) {
  background: #b0bac6;
}
/* thead-sub — rowspan kaydırması düzeltmesi (alt satır aynı renkler) */
#bireysel .price-table .thead-sub th:nth-child(1),
#aile .price-table .thead-sub th:nth-child(1) {
  background: #c8cfd8;
}
#bireysel .price-table .thead-sub th:nth-child(2),
#aile .price-table .thead-sub th:nth-child(2) {
  background: #bcc5cf;
}
#bireysel .price-table .thead-sub th:nth-child(3),
#aile .price-table .thead-sub th:nth-child(3) {
  background: #b0bac6;
}
/* Squash alt hücreleri — üst satırla aynı renk */
#bireysel .price-table .thead-sub th:nth-child(4),
#bireysel .price-table .thead-sub th:nth-child(5),
#aile .price-table .thead-sub th:nth-child(4),
#aile .price-table .thead-sub th:nth-child(5) {
  background: #a5b0bd;
}
/* Üst-alt hücre arasındaki çizgiyi kaldır */
#bireysel .price-table thead tr:first-child th,
#aile .price-table thead tr:first-child th {
  border-bottom: none;
}
/* Sticky thead clone — bireysel & aile */
.price-sticky-clone {
  position: fixed;
  z-index: 88;
  overflow: hidden;
  display: none;
  background: transparent;
  border-radius: 0;
}
.price-sticky-clone table {
  border-collapse: collapse;
  margin: 0;
}
/* Fixed equal width for Havuz, Islak Zemin, Fitness, Squash columns */
#bireysel .price-table th:nth-child(n+5),
#bireysel .price-table td:nth-child(n+5),
#aile .price-table th:nth-child(n+5),
#aile .price-table td:nth-child(n+5) {
  width: 7%;
  min-width: 7%;
  max-width: 7%;
}
#bireysel .price-table td.price-val:nth-child(n+5),
#aile .price-table td.price-val:nth-child(n+5) {
  font-size: 0.95rem;
}
/* Günübirlik — kullanıcı tipi dar, fiyat sütunları geniş */
#gunubirlik .price-table th:first-child,
#gunubirlik .price-table td:first-child {
  width: 40%;
}
#gunubirlik .price-table th:not(:first-child),
#gunubirlik .price-table td:not(:first-child) {
  width: 12%;
  white-space: nowrap;
}
/* PT: Ders Sayısı %25, Personel %55, Standart %20 */
#pt .price-table th:first-child,
#pt .price-table td:first-child {
  width: 25%;
}
#pt .price-table th:nth-child(2),
#pt .price-table td:nth-child(2) {
  width: 55%;
  white-space: normal;
}
#pt .price-table th:nth-child(3),
#pt .price-table td:nth-child(3) {
  width: 20%;
  white-space: nowrap;
}

.price-table td {
  padding: 0.5rem 1rem;
  border-bottom: 1px solid rgba(10,22,40,0.06);
  font-size: 0.88rem;
  color: #444;
  vertical-align: middle;
  line-height: 1.3;
  background: rgba(10,22,40,0.02);
}
.price-table tr:hover td {
  background: rgba(10,22,40,0.06);
}
.price-table td strong {
  color: #0a1628;
  font-weight: 700;
  white-space: nowrap;
}
#gunubirlik .price-table td:first-child strong,
#pt .price-table td:first-child strong {
  white-space: normal;
  text-transform: uppercase;
}
.price-table .price-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: #0a1628;
}

.price-table tr[data-pkg] {
  cursor: pointer;
}
.price-table tr[data-pkg]:hover td {
  background: rgba(10,22,40,0.08);
}
.price-table tr[data-pkg] td:first-child strong::after {
  content: '\f06e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 400;
  font-size: 0.65rem;
  margin-left: 0.6rem;
  opacity: 0;
  transition: opacity 0.2s;
  vertical-align: middle;
}
.price-table tr[data-pkg]:hover td:first-child strong::after {
  opacity: 0.35;
}
.price-table td small {
  display: block;
  opacity: 0.5;
  font-size: 0.78rem;
  margin-top: 0.2rem;
}

@media (min-width: 769px) {
  .price-table th,
  .price-table td,
  .price-table .price-val,
  #bireysel .price-table td:nth-child(2),
  #bireysel .price-table td:nth-child(3),
  #bireysel .price-table td:nth-child(4),
  #aile .price-table td:nth-child(2),
  #aile .price-table td:nth-child(3),
  #aile .price-table td:nth-child(4) {
    font-size: 1.1rem;
  }
}

/* ========== Info Box ========== */
.info-box {
  background: rgba(10,22,40,0.04);
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: 8px;
  padding: 1rem 1.4rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  line-height: 1.7;
  color: #555;
}
.info-box i {
  color: #0a1628;
  opacity: 0.35;
  margin-right: 0.5rem;
}
.info-box strong {
  color: #1a1a1a;
}

/* ========== Warning / Genel Bilgi Box ========== */
.warning-box {
  background: rgba(10,22,40,0.04);
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: 8px;
  padding: 2rem 2.5rem;
}
.warning-box h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: #0a1628;
}
.warning-box h2 i {
  opacity: 0.4;
  margin-right: 0.5rem;
}
.warning-box ul {
  list-style: none;
  padding: 0;
}
.warning-box li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(10,22,40,0.06);
  color: #555;
  font-size: 0.9rem;
  line-height: 1.7;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}
.warning-box li:last-child {
  border-bottom: none;
}
.warning-box li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(10,22,40,0.25);
  flex-shrink: 0;
  margin-top: 0.55rem;
}

/* ========== Çalışma Saatleri Modal ========== */
.hours-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1100;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.hours-modal-overlay.open {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.hours-modal {
  background: #fff;
  border-radius: 12px;
  width: 94%;
  max-width: 960px;
  margin: 2rem auto;
  color: #1a1a1a;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
}
.hours-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem 1rem;
  border-bottom: 1px solid rgba(10,22,40,0.08);
}
.hours-modal-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #0a1628;
  margin: 0;
}
.hours-modal-close {
  width: 36px; height: 36px;
  border: none; background: rgba(0,0,0,0.06);
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #333;
  transition: background 0.2s;
  flex-shrink: 0;
}
.hours-modal-close:hover { background: rgba(0,0,0,0.12); }
.hours-modal-body {
  padding: 1.5rem 2rem 2rem;
}
.hours-modal-body .hours-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(135deg, rgba(220,53,69,0.08), rgba(220,53,69,0.03));
  border: 1px solid rgba(220,53,69,0.18);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
}
.hours-alert i {
  color: #dc3545;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.hours-alert strong {
  display: block;
  font-size: 1.05rem;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.03em;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.hours-alert span {
  font-size: 0.8rem;
  color: #666;
}
.hours-modal-body .hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.hours-modal-body .hours-card {
  background: #f7f8fa;
  border-radius: 10px;
  padding: 1.2rem;
  border: 1px solid rgba(0,0,0,0.05);
}
.hours-card--online {
  background: linear-gradient(135deg, rgba(10,22,40,0.06), rgba(10,22,40,0.02));
}
.hours-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.hours-icon {
  width: 34px; height: 34px;
  background: #0a1628;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hours-icon i { color: #fff; font-size: 0.85rem; }
.hours-icon--accent { background: linear-gradient(135deg, #0a1628, #1a2d4a); }
.hours-card-head h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #0a1628;
  margin: 0;
  line-height: 1.2;
}
.hours-card table {
  width: 100%;
  border-collapse: collapse;
}
.hours-card td {
  padding: 0.35rem 0;
  font-size: 0.82rem;
  color: #333;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.hours-card tr:last-child td { border-bottom: none; }
.hours-card td:first-child {
  font-weight: 600;
  white-space: nowrap;
  padding-right: 0.8rem;
}
.hours-card .ho { color: #198754; font-weight: 600; }
.hours-card .hc { color: #dc3545; font-weight: 600; }
.hours-card-note {
  margin-top: 0.7rem;
  font-size: 0.75rem;
  color: #666;
  line-height: 1.5;
}
.hours-card-note i { color: #dc3545; margin-right: 4px; }
.hours-card-desc {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.hours-card-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hours-btn-primary {
  display: block;
  text-align: center;
  background: #0a1628;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.hours-btn-primary:hover { background: #1a2d4a; }
.hours-btn-ghost {
  display: block;
  text-align: center;
  background: transparent;
  color: #0a1628;
  padding: 0.55rem 1rem;
  border: 1.5px solid #0a1628;
  border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}
.hours-btn-ghost:hover { background: #0a1628; color: #fff; }

/* ========== İletişim Modal ========== */
.contact-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1100;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.contact-modal-overlay.open {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-modal {
  background: #fff;
  border-radius: 12px;
  width: 94%;
  max-width: 880px;
  margin: 2rem auto;
  color: #1a1a1a;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  overflow: hidden;
}
.contact-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem 1rem;
  border-bottom: 1px solid rgba(10,22,40,0.08);
}
.contact-modal-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #0a1628;
  margin: 0;
}
.contact-modal-body {
  padding: 1.5rem 2rem 0;
}
.contact-modal-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cm-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.cm-item:last-child { border-bottom: none; }
.cm-icon {
  width: 36px; height: 36px;
  background: #0a1628;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cm-icon i { color: #fff; font-size: 0.85rem; }
.cm-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
  margin-bottom: 2px;
  font-weight: 600;
}
.cm-value {
  font-size: 0.9rem;
  color: #1a1a1a;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.5;
  display: block;
}
a.cm-value:hover { color: #0a1628; opacity: 0.7; }
.contact-modal-map {
  height: 250px;
  line-height: 0;
  font-size: 0;
}
.contact-modal-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* ========== Incele Modal ========== */
.incele-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.incele-modal-overlay.open {
  display: flex;
  justify-content: center;
  align-items: center;
}
.incele-modal {
  background: #fff;
  border-radius: 10px;
  width: 90%;
  max-width: 900px;
  margin: 1rem auto;
  overflow: visible;
  color: #1a1a1a;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
}
.incele-modal-header {
  padding: 1.8rem 2rem 1rem;
  border-bottom: 1px solid rgba(10,22,40,0.08);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.incele-modal-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #1a6bb5;
}
.incele-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #999;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.incele-modal-close:hover {
  color: #333;
}
.incele-modal-body {
  padding: 1.2rem 2rem 2rem;
}
.incele-section-box {
  border: 1px solid rgba(10,22,40,0.12);
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
}
.incele-section-box .incele-modal-subtitle {
  margin-top: 0;
}
.incele-section-box .incele-modal-list {
  margin-bottom: 0;
}
.incele-modal-subtitle {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 0.6rem;
  font-family: 'Barlow Condensed', sans-serif;
}
.incele-modal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.incele-modal-list li {
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(10,22,40,0.06);
  font-size: 0.9rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1.3;
}
.incele-modal-list li:last-child {
  border-bottom: none;
}
.incele-modal-list li i {
  color: #0a1628;
  font-size: 0.7rem;
  opacity: 0.4;
}
.incele-modal-extra {
  margin-top: 0;
}
.incele-modal-list li > span:first-of-type {
  width: 220px;
  min-width: 220px;
  max-width: 220px;
}
.incele-modal-extra li > span:first-of-type {
  width: 180px;
  min-width: 180px;
  max-width: 180px;
}
.incele-modal-extra li {
  color: #888;
}
.incele-modal-extra li .facility-peek {
  color: #1a1a1a;
}
.incele-modal-note {
  font-size: 0.82rem;
  color: #999;
  margin-top: 0.5rem;
  line-height: 1.5;
}
.incele-modal-list li[data-facility] {
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  border-radius: 6px;
  padding: 0.15rem 0.6rem;
  margin: 0 -0.6rem;
}
.incele-modal-list li[data-facility]:hover {
  color: #0a1628;
  background: rgba(10,22,40,0.03);
}
.incele-modal-list li[data-facility] .facility-peek {
  margin-left: auto;
  font-size: 1.3rem;
  color: #0a1628;
  opacity: 0.7;
  flex-shrink: 0;
  cursor: pointer;
  transition: opacity 0.2s;
}
.incele-modal-list li[data-facility] .facility-peek:hover {
  opacity: 1;
}

/* ========== Incele Modal — Price Grid ========== */
.incele-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.incele-price-cell {
  padding: 0.9rem 1rem;
  background: rgba(10,22,40,0.04);
  border-right: 1px solid rgba(10,22,40,0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.incele-price-cell:last-child {
  border-right: none;
}
.incele-price-label {
  display: block;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0a1628;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.incele-price-desc {
  display: block;
  font-size: 0.7rem;
  font-style: italic;
  color: #888;
}
.incele-price-amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0a1628;
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(10,22,40,0.1);
}

/* ========== Incele Modal — Extra list price ========== */
.incele-extra-price {
  white-space: nowrap;
  text-align: left;
  width: 70px;
  min-width: 70px;
  max-width: 70px;
}

/* ========== Incele Modal — Note icon ========== */
.incele-modal-note i {
  opacity: 0.4;
  margin-right: 0.4rem;
}

/* ========== Incele Modal — CTA Banner ========== */
.incele-cta {
  display: block;
  margin-top: 1.5rem;
  padding: 1.1rem 1.5rem;
  background: #0a1628;
  border-radius: 8px;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
}
.incele-cta:hover {
  background: #1a2d4a;
}

/* ========== Diğer Alanlar — Gündüz notu ========== */
/* Facility lightbox — modal üzerinde açılması için */
#facilityLightbox {
  z-index: 1100;
}

.diger-info-note {
  margin-top: 0.6rem;
  padding: 0.6rem 0.8rem;
  background: rgba(10,22,40,0.04);
  border-radius: 6px;
  font-size: 0.78rem;
  color: #666;
  line-height: 1.4;
}
.diger-info-note i {
  opacity: 0.4;
  margin-right: 0.3rem;
}

/* ========== Paket İçerikleri — Mobil kart varyantları ========== */
.mobile-card-value--detail {
  text-align: right;
  font-size: 0.82rem;
}
.mobile-card-value--muted {
  text-align: right;
  font-size: 0.82rem;
  opacity: 0.5;
}
.mobile-card-header .header-note {
  font-weight: 400;
  font-size: 0.75rem;
  opacity: 0.5;
  text-transform: none;
  letter-spacing: 0;
}

/* ========== Mobile Cards ========== */
.mobile-cards {
  display: none;
}

/* ========== Prices — Responsive ========== */
@media (max-width: 768px) {
  .price-hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 6rem 4% clamp(4.5rem, 12vh, 7rem);
    justify-content: flex-end;
  }
  .price-hero h1 {
    font-size: clamp(2.7rem, 11vw, 3.6rem);
    margin-bottom: 0.55rem;
    line-height: 0.95;
  }
  .price-hero p {
    font-size: 0.95rem;
    margin-bottom: 1.15rem;
  }
  .price-hero-copy-space {
    height: 1.05rem;
    margin-bottom: 1.15rem;
  }
  .price-hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 218px));
    justify-content: center;
    gap: 0.32rem;
  }
  .price-hero-card {
    grid-template-columns: 23px minmax(0, 1fr);
    grid-template-rows: 1fr;
    justify-items: start;
    align-items: center;
    min-height: 43px;
    padding: 0.34rem 0.5rem;
    gap: 0.28rem;
    border-radius: 8px;
    background: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.74);
    color: #0a1628;
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
  }
  .price-hero-card:hover,
  .price-hero-grid:hover .price-hero-card:not(:hover) {
    opacity: 1;
    transform: none;
  }
  .price-hero-card:active {
    background: #fff;
    transform: translateY(-2px);
  }
  .price-hero-card i {
    font-size: 0.92rem;
    width: 23px;
    height: 23px;
    margin: 0;
    color: var(--icon-color, #0b5f9e);
    border-radius: 6px;
    background: transparent;
    box-shadow: none;
  }
  .price-hero-card:hover i {
    transform: none;
  }
  .price-hero-card-label {
    font-size: 0.67rem;
    line-height: 1.08;
    text-align: left;
  }
  .price-hero-card::after {
    display: none;
  }
  .price-section {
    padding: 3.5rem 5% 3rem;
  }

  .quality-access {
    position: static;
    right: auto;
    bottom: auto;
    align-self: center;
    margin-top: 0.85rem;
    min-width: 148px;
    max-width: 148px;
    padding: 0.58rem 0.65rem;
    border-radius: 10px;
  }

  .quality-access i {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    font-size: 0.74rem;
  }

  .language-flag {
    width: 28px;
    height: 20px;
    border-radius: 3px;
  }

  .quality-access-label {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    line-height: 1.12;
  }

  .nav-quick-actions {
    position: static;
    right: auto;
    bottom: auto;
    z-index: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-self: center;
    gap: 0.6rem;
    margin-top: 0.85rem;
  }

  .nav-quick-actions .quality-access {
    margin-top: 0;
    min-width: 148px;
    max-width: 148px;
    min-height: 52px;
  }

  /* Section accordion — mobil only */
  .price-section.collapsible {
    padding: 1.5rem 5%;
  }
  .price-section-title {
    font-size: clamp(1.3rem, 4.5vw, 1.6rem);
    margin-bottom: 1.5rem;
  }
  .price-section.collapsible .price-section-header {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .price-section.collapsible .price-section-title {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    align-items: center;
    gap: 0;
    margin-bottom: 0;
  }
  .price-section.collapsible .price-section-title i {
    justify-self: start;
    margin-right: 0;
  }
  .price-section.collapsible .price-section-header::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: #0a1628;
    opacity: 0.3;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
  }
  .price-section.collapsible.open .price-section-header::after {
    transform: rotate(180deg);
  }
  .price-section.collapsible .price-section-subtitle {
    display: none;
  }
  .price-section.collapsible .price-section-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }
  .price-section.collapsible.open .price-section-body {
    max-height: 10000px;
    padding-top: 1.5rem;
  }
  .price-table-wrap {
    display: none;
  }
  .mobile-cards {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0;
    margin-bottom: 0.8rem;
  }
  .mobile-cards + .info-box,
  .mobile-cards + .warning-box,
  .mobile-cards ~ .info-box,
  .mobile-cards ~ .warning-box {
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
  }
  .mobile-card {
    background: rgba(10,22,40,0.03);
    border: 1px solid rgba(10,22,40,0.08);
    border-radius: 8px;
    overflow: hidden;
  }
  .mobile-card-header {
    background: rgba(10,22,40,0.06);
    padding: 0.9rem 1.2rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-bottom: 1px solid rgba(10,22,40,0.06);
    color: #0a1628;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .mobile-card-header::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    opacity: 0.4;
    transition: transform 0.3s;
  }
  .mobile-card[data-pkg] .mobile-card-header::after {
    content: '\f06e';
    font-weight: 400;
    font-size: 0.75rem;
    transition: none;
  }
  #pt .mobile-card-header {
    display: block;
    position: relative;
    padding-right: 2.4rem;
  }
  #pt .mobile-card-header::after {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .mobile-card.open .mobile-card-header::after {
    transform: rotate(180deg);
  }
  .mobile-card-header a {
    font-size: 0.75rem;
    font-weight: 500;
    color: #0a1628;
    opacity: 0.4;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
    margin-right: 1rem;
  }
  .mobile-card-body {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .mobile-card.open .mobile-card-body {
    max-height: 600px;
  }
  .mobile-card-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.65rem 1.2rem;
    border-bottom: 1px solid rgba(10,22,40,0.04);
    gap: 1rem;
  }
  .mobile-card-row:last-child {
    border-bottom: none;
  }
  .mobile-card-label {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
    flex: 1;
    line-height: 1.4;
  }
  .mobile-card-value {
    font-size: 0.85rem;
    color: #1a1a1a;
    font-weight: 700;
    text-align: right;
    flex-shrink: 0;
  }
  .mobile-card-value--detail,
  .mobile-card-value--muted {
    font-weight: 700;
  }
  .warning-box {
    padding: 1.5rem;
  }
  .price-quick-nav {
    padding: 0.6rem 3%;
  }
  /* Modal — mobil ekrana sığdır */
  .incele-modal-overlay.open {
    display: block;
  }
  .incele-modal {
    width: 94%;
    border-radius: 10px;
    margin: 0.5rem auto;
  }
  .incele-modal-header {
    padding: 1.2rem 1.2rem 0.8rem;
  }
  .incele-modal-body {
    padding: 1rem 1.2rem 1.5rem;
  }
  .incele-price-grid {
    grid-template-columns: 1fr;
  }
  .incele-price-cell {
    border-right: none;
    border-bottom: 1px solid rgba(10,22,40,0.06);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0.8rem;
  }
  .incele-price-cell:last-child {
    border-bottom: none;
  }
  .incele-price-label {
    font-size: 0.82rem;
    margin-bottom: 0;
    flex: 1;
    min-width: 0;
    padding-right: 1rem;
  }
  .incele-price-amount {
    font-size: 1.05rem;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    flex-shrink: 0;
    margin-left: 1rem;
  }
  .incele-modal-list li > span:first-of-type {
    width: 160px;
    min-width: 160px;
    max-width: 160px;
  }
  .incele-modal-extra li > span:first-of-type {
    width: 130px;
    min-width: 130px;
    max-width: 130px;
  }
  .incele-extra-price {
    width: 60px;
    min-width: 60px;
    max-width: 60px;
  }
  /* Çalışma Saatleri Modal — mobil */
  .hours-modal-overlay.open {
    display: block;
  }
  .hours-modal {
    width: 94%;
    margin: 0.5rem auto;
    border-radius: 10px;
  }
  .hours-modal-header {
    padding: 1.2rem 1.2rem 0.8rem;
  }
  .hours-modal-header h2 {
    font-size: 1.2rem;
  }
  .hours-modal-body {
    padding: 1rem 1rem 1.5rem;
  }
  .hours-modal-body .hours-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .hours-card-head h3 {
    font-size: 0.85rem;
  }
  /* İletişim Modal — mobil */
  .contact-modal {
    width: 94%;
    margin: 0.5rem auto;
    border-radius: 10px;
  }
  .contact-modal-header {
    padding: 1.2rem 1.2rem 0.8rem;
  }
  .contact-modal-header h2 {
    font-size: 1.2rem;
  }
  .contact-modal-body {
    padding: 1rem 1rem 0;
  }
  .contact-modal-map {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .price-hero-card {
    padding: 0.55rem 0.45rem;
    gap: 0.3rem;
  }
  .price-hero-card i {
    width: 22px;
    height: 22px;
    font-size: 0.66rem;
  }
  .price-hero-card-label {
    font-size: 0.72rem;
  }
}
