/* ============================================
   Only Fitness Center - Premium Theme
   Renk: Siyah + Buz Mavisi #428ddf | Neon aksan
   ============================================ */

:root {
  --ice-blue: #428ddf;
  --ice-blue-light: #5da3eb;
  --ice-blue-dark: #2d6bb8;
  --ice-glow: rgba(66, 141, 223, 0.6);
  --ice-glow-strong: rgba(66, 141, 223, 0.9);
  --bg-dark: #0a0a0f;
  --bg-card: #12121a;
  --bg-card-hover: #1a1a26;
  --text-primary: #f0f4f8;
  --text-muted: #8b95a5;
  --border-subtle: rgba(66, 141, 223, 0.2);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ----- Tipografi ----- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.neon-text {
  color: var(--ice-blue);
  text-shadow: 0 0 20px var(--ice-glow), 0 0 40px var(--ice-glow);
}

.neon-border {
  box-shadow: 0 0 15px var(--ice-glow), inset 0 0 15px rgba(66, 141, 223, 0.05);
  border: 1px solid var(--border-subtle);
}

/* Vurgu metni (buz mavisi neon) */
.text-highlight {
  color: var(--ice-blue);
  font-weight: 600;
  text-shadow: 0 0 18px var(--ice-glow);
}

/* Bölüm paragraf rengi - okunabilir gri */
.about-text {
  color: var(--text-primary);
}

/* ----- Navbar ----- */
.navbar-onlyfitness {
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.75rem 0;
  transition: var(--transition);
}

.navbar-onlyfitness.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text-primary) !important;
  letter-spacing: -0.03em;
}

.navbar-logo {
  max-height: 50px;
  width: auto;
  display: block;
}

.navbar-brand span {
  color: var(--ice-blue);
  text-shadow: 0 0 15px var(--ice-glow);
}

.nav-link-onlyfitness {
  color: var(--text-primary);
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link-onlyfitness:hover,
.nav-link-onlyfitness.active {
  color: var(--ice-blue) !important;
  text-shadow: 0 0 12px var(--ice-glow);
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--ice-blue) 0%, var(--ice-blue-dark) 100%);
  color: #fff !important;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  border: none;
  box-shadow: 0 0 20px var(--ice-glow);
  transition: var(--transition);
}

.btn-nav-cta:hover {
  box-shadow: 0 0 30px var(--ice-glow-strong), 0 4px 15px rgba(66, 141, 223, 0.4);
  transform: translateY(-2px);
  color: #fff !important;
}

/* ----- Hero ----- */
.hero-onlyfitness {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Arka plan görseli */
.hero-onlyfitness .hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Karartma overlay - metin okunaklı kalsın */
.hero-onlyfitness .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 15, 0.82) 0%, rgba(10, 10, 15, 0.72) 50%, rgba(10, 10, 15, 0.88) 100%);
  pointer-events: none;
}

.hero-onlyfitness .container {
  z-index: 1;
}

.hero-onlyfitness::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ice-blue), transparent);
  opacity: 0.5;
  animation: heroLine 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes heroLine {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.hero-title .neon-word {
  color: var(--ice-blue);
  text-shadow: 0 0 30px var(--ice-glow), 0 0 60px var(--ice-glow);
  display: inline-block;
  animation: neonPulse 2.5s ease-in-out infinite;
}

@keyframes neonPulse {
  0%, 100% { text-shadow: 0 0 20px var(--ice-glow), 0 0 40px var(--ice-glow); }
  50% { text-shadow: 0 0 35px var(--ice-glow-strong), 0 0 70px var(--ice-glow); }
}

.hero-subtitle {
  color: #ffffff;
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero-logo-wrap {
  opacity: 0.95;
}

.hero-logo {
  max-width: 420px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.hero-hours {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background: rgba(66, 141, 223, 0.08);
  border-left: 4px solid var(--ice-blue);
  border-radius: 0 12px 12px 0;
  text-align: left;
  display: inline-block;
  box-shadow: 0 0 20px rgba(66, 141, 223, 0.15);
}

.hero-hours-row {
  display: block;
  margin-bottom: 0.35rem;
}

.hero-hours-row:last-child {
  margin-bottom: 0;
}

.hero-hours-label {
  color: var(--ice-blue-light);
  font-weight: 600;
  font-size: 0.9rem;
  margin-right: 0.5rem;
  text-shadow: 0 0 12px var(--ice-glow);
}

.hero-hours-time {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--ice-blue) 0%, var(--ice-blue-dark) 100%);
  color: #fff;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  border: none;
  box-shadow: 0 0 25px var(--ice-glow);
  transition: var(--transition);
}

.btn-hero-primary:hover {
  box-shadow: 0 0 40px var(--ice-glow-strong);
  transform: translateY(-3px);
  color: #fff;
}

.btn-hero-outline {
  background: transparent;
  color: var(--ice-blue);
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  border: 2px solid var(--ice-blue);
  transition: var(--transition);
}

.btn-hero-outline:hover {
  background: rgba(66, 141, 223, 0.15);
  color: var(--ice-blue-light);
  box-shadow: 0 0 25px var(--ice-glow);
}

/* ----- Bölüm başlıkları ----- */
.section-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ice-blue);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px var(--ice-glow);
}

.hero-onlyfitness .section-label {
  color: var(--ice-blue-light);
  text-shadow: 0 0 20px var(--ice-glow);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-primary);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* ----- Kartlar ----- */
.card-onlyfitness {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.card-onlyfitness:hover {
  background: var(--bg-card-hover);
  border-color: rgba(66, 141, 223, 0.35);
  box-shadow: 0 0 30px var(--ice-glow), 0 10px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
}

.card-onlyfitness .card-img-wrap {
  overflow: hidden;
  position: relative;
}

.card-onlyfitness .card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 15, 0.9) 100%);
  pointer-events: none;
}

.card-onlyfitness img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-onlyfitness:hover img {
  transform: scale(1.08);
}

.card-onlyfitness .card-body {
  padding: 1.5rem;
}

.card-onlyfitness .card-title {
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card-onlyfitness .card-text {
  color: var(--text-primary);
  font-size: 0.95rem;
}

/* ----- Hakkımızda blok ----- */
.about-block {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 0.5rem;
  transition: var(--transition);
}

.about-block:hover {
  box-shadow: 0 0 25px var(--ice-glow);
  border-color: rgba(66, 141, 223, 0.3);
}

.about-block img {
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

/* Hizmetler sayfası - hizmet görselleri */
.service-image-wrap img {
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

/* İç sayfa başlık (Hakkımızda, Hizmetler vb.) – fixed navbar altında kalmaması için üst boşluk */
.page-hero {
  background: linear-gradient(180deg, rgba(66, 141, 223, 0.06) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding-top: 5.5rem;
  padding-bottom: 2rem;
}

.page-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--text-primary);
  margin-bottom: 0;
}



/* Hakkımızda - Neden biz kartları */
.about-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1.75rem;
  height: 100%;
  transition: var(--transition);
  text-align: center;
}

.about-feature-card:hover {
  border-color: rgba(66, 141, 223, 0.35);
  box-shadow: 0 0 25px var(--ice-glow);
}

.about-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(66, 141, 223, 0.15);
  color: var(--ice-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.about-feature-card:hover .about-feature-icon {
  background: rgba(66, 141, 223, 0.25);
  box-shadow: 0 0 20px var(--ice-glow);
}

.about-feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.about-feature-desc {
  font-size: 0.9rem;
  color: var(--text-primary);
  opacity: 0.9;
  margin: 0;
  line-height: 1.5;
}

/* ----- Yorumlar ----- */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition);
  height: 100%;
}

.testimonial-card:hover {
  border-color: rgba(66, 141, 223, 0.3);
  box-shadow: 0 0 20px var(--ice-glow);
}

.testimonial-card .quote-icon {
  color: var(--ice-blue);
  font-size: 2rem;
  opacity: 0.7;
  text-shadow: 0 0 15px var(--ice-glow);
}

.testimonial-card .stars {
  color: var(--ice-blue);
  letter-spacing: 0.2em;
}

.testimonial-card .testimonial-text {
  color: var(--text-primary);
  font-size: 0.98rem;
}

.testimonial-card .testimonial-author {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Yorumlar Carousel */
.section-testimonials .testimonials-carousel-wrap {
  position: relative;
  padding: 0 4rem;
}

@media (max-width: 991.98px) {
  .section-testimonials .testimonials-carousel-wrap {
    padding: 0 3rem;
  }
}

@media (max-width: 767.98px) {
  .section-testimonials .testimonials-carousel-wrap {
    padding: 0 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .section-testimonials .testimonials-carousel-wrap {
    padding: 0 2rem;
  }
}

.testimonials-carousel-control {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(8px);
  border: 2px solid var(--ice-blue);
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.testimonials-carousel-control:hover {
  background: rgba(66, 141, 223, 0.2);
  border-color: var(--ice-blue-light);
  box-shadow: 0 0 25px var(--ice-glow);
  transform: translateY(-50%) scale(1.1);
}

.testimonials-carousel-control i {
  font-size: 1.5rem;
  color: var(--ice-blue);
  text-shadow: 0 0 10px var(--ice-glow);
  transition: var(--transition);
}

.testimonials-carousel-control:hover i {
  color: var(--ice-blue-light);
  text-shadow: 0 0 15px var(--ice-glow-strong);
}

.testimonials-carousel-control .carousel-control-prev-icon,
.testimonials-carousel-control .carousel-control-next-icon {
  display: none;
}

.testimonials-carousel-control.carousel-control-prev {
  left: -1.5rem;
}

.testimonials-carousel-control.carousel-control-next {
  right: -1.5rem;
}

@media (max-width: 991.98px) {
  .testimonials-carousel-control.carousel-control-prev {
    left: -1rem;
  }
  .testimonials-carousel-control.carousel-control-next {
    right: -1rem;
  }
}

@media (max-width: 575.98px) {
  .testimonials-carousel-control {
    width: 44px;
    height: 44px;
  }
  .testimonials-carousel-control i {
    font-size: 1.25rem;
  }
  .testimonials-carousel-control.carousel-control-prev {
    left: -0.5rem;
  }
  .testimonials-carousel-control.carousel-control-next {
    right: -0.5rem;
  }
}

/* Yorum carousel: nokta göstergeleri kapalı (mobil + masaüstü) */
.section-testimonials .carousel-indicators {
  display: none !important;
}

/* ----- Fiyat kartları ----- */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--ice-blue);
  box-shadow: 0 0 30px var(--ice-glow), inset 0 0 30px rgba(66, 141, 223, 0.05);
}

.pricing-card.featured .price {
  color: var(--ice-blue);
  text-shadow: 0 0 20px var(--ice-glow);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px var(--ice-glow);
}

.pricing-card .price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-primary);
}

.pricing-card .list-unstyled li {
  color: var(--text-primary);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pricing-card .list-unstyled li:last-child {
  border-bottom: none;
}

.btn-pricing {
  background: linear-gradient(135deg, var(--ice-blue) 0%, var(--ice-blue-dark) 100%);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  border: none;
  transition: var(--transition);
}

.btn-pricing:hover {
  box-shadow: 0 0 25px var(--ice-glow);
  transform: translateY(-2px);
  color: #fff;
}

/* ----- Paket Fiyatları Sayfası ----- */
.pricing-widgets-section {
  background: linear-gradient(180deg, transparent 0%, rgba(66, 141, 223, 0.04) 50%, transparent 100%);
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.pricing-widget:hover {
  border-color: rgba(66, 141, 223, 0.35);
  box-shadow: 0 0 20px var(--ice-glow);
}

.pricing-widget-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(66, 141, 223, 0.15);
  color: var(--ice-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.pricing-widget-text {
  font-size: 0.8rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.3;
}

@media (max-width: 575.98px) {
  .pricing-widget-text {
    font-size: 0.7rem;
  }
}

.section-pricing-page {
  background: var(--bg-dark);
}

/* Kart içeriği flex: buton her zaman en altta, hepsi aynı hizada */
.pricing-page-card {
  display: flex;
  flex-direction: column;
}

.pricing-page-card .list-unstyled {
  flex: 1 1 auto;
  min-height: 0;
}

.pricing-page-card .btn-pricing {
  margin-top: auto;
  flex-shrink: 0;
}

.pricing-page-card .pricing-card-title {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.pricing-page-card .pricing-card-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.pricing-page-card .price {
  font-size: 1.75rem;
}

.price-currency {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.9;
}

.text-ice {
  color: var(--ice-blue) !important;
}

/* 12 Aylık kartı: En çok tercih edilen rozet (yeşil, parlama-sönme) */
.pricing-card-popular {
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.25);
}

.pricing-card-popular .badge-popular {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: inline-block;
  padding: 0.35rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
  animation: badge-glow-pulse 2s ease-in-out infinite;
}

@keyframes badge-glow-pulse {
  0%, 100% {
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.5);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 24px rgba(34, 197, 94, 0.8), 0 0 36px rgba(34, 197, 94, 0.4);
    opacity: 0.95;
  }
}

/* Not kartları (Partner indirim, Ramazan hediyesi) */
.pricing-notes .pricing-note-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.pricing-note-card .pricing-note-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(66, 141, 223, 0.15);
  color: var(--ice-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.pricing-note-card strong {
  color: var(--ice-blue-light);
}

/* Ücretsiz Deneme + Personal Training col-6 bölümü */
.section-pricing-extra {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0c0c12 100%);
  border-top: 1px solid var(--border-subtle);
}

.pricing-extra-card {
  position: relative;
  padding-top: 2.5rem;
}

.pricing-extra-icon {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  left: auto;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(66, 141, 223, 0.15);
  color: var(--ice-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.pricing-extra-featured {
  border-color: rgba(66, 141, 223, 0.35);
  box-shadow: 0 0 28px var(--ice-glow);
}

.pricing-extra-featured .pricing-extra-icon {
  background: rgba(66, 141, 223, 0.25);
  color: var(--ice-blue-light);
}

/* ----- İletişim ----- */
/* ----- Bize Ulaşın (İletişim) ----- */
.section-contact {
  padding: 4rem 0 4.5rem;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0c0c12 100%);
}

.contact-header .section-desc {
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 767.98px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

a.contact-item:hover {
  border-color: rgba(66, 141, 223, 0.4);
  box-shadow: 0 0 24px var(--ice-glow);
  color: inherit;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(66, 141, 223, 0.15);
  color: var(--ice-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.contact-item-label {
  color: var(--ice-blue-light);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-item-value {
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-item-value strong {
  color: var(--text-primary);
  font-weight: 600;
}

.contact-item-hours .contact-item-value {
  line-height: 1.6;
}

/* İletişim sayfası: col-6 sol bilgi + col-6 harita, sosyal medya harita altında */
.section-contact-page {
  padding: 3rem 0 4rem;
}

.section-contact-page .h4.text-ice {
  color: var(--ice-blue-light);
}

.contact-social-below-map .contact-item-label {
  color: var(--ice-blue-light);
}

/* Kartlar sol bölümde kendi içinde col-6 (2'şer sütun) */
.contact-page-list.row {
  --bs-gutter-x: 0.75rem;
  --bs-gutter-y: 0.75rem;
}

.contact-item-page {
  position: relative;
  padding-right: 2.5rem;
}

.contact-item-action {
  position: absolute;
  top: 1.5rem;
  right: 1rem;
  font-size: 0.8rem;
  color: var(--ice-blue);
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

a.contact-item-page:hover .contact-item-action {
  opacity: 1;
}

.contact-item-hours .contact-item-action {
  display: none;
}

.contact-social-block .contact-social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(66, 141, 223, 0.15);
  color: var(--ice-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition);
}

.contact-social-block .contact-social-link:hover {
  background: rgba(66, 141, 223, 0.3);
  color: var(--ice-blue-light);
  transform: translateY(-2px);
}

.contact-map-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-map-link {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  color: var(--ice-blue);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-map-link:hover {
  background: rgba(66, 141, 223, 0.15);
  border-color: rgba(66, 141, 223, 0.4);
  color: var(--ice-blue-light);
}

.contact-map-iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

@media (max-width: 575.98px) {
  .contact-map-iframe {
    height: 280px;
  }
  .contact-map-link-text {
    font-size: 0.85rem;
  }
}

/* ----- Footer ----- */
.footer-onlyfitness {
  background: #060609;
  border-top: 1px solid var(--border-subtle);
  padding: 0;
}

.footer-main {
  padding: 2.5rem 0;
  text-align: center;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer-onlyfitness .footer-logo {
  max-height: 48px;
  width: auto;
  display: block;
}

.footer-onlyfitness .footer-desc {
  color: var(--text-primary);
  font-size: 0.9rem;
  max-width: 320px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: rgba(240, 244, 248, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.footer-social-link i {
  font-size: 1.25rem;
}

.footer-social-link:hover {
  background: rgba(66, 141, 223, 0.2);
  border-color: var(--ice-blue);
  color: var(--ice-blue);
  box-shadow: 0 0 18px var(--ice-glow);
}

.footer-bottom {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer-onlyfitness .footer-copyright {
  color: var(--text-primary);
  font-size: 0.8rem;
  margin: 0;
}

/* ----- Animasyonlar (scroll) ----- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ----- Form ----- */
.form-onlyfitness .form-control,
.form-onlyfitness .form-select {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  border-radius: 10px;
  padding: 0.75rem 1rem;
}

.form-onlyfitness .form-control:focus,
.form-onlyfitness .form-select:focus {
  border-color: var(--ice-blue);
  box-shadow: 0 0 0 3px rgba(66, 141, 223, 0.2);
  color: var(--text-primary);
}

.form-onlyfitness .form-control::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}

/* ----- Responsive ----- */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(10, 10, 15, 0.98);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 0.5rem;
    border: 1px solid var(--border-subtle);
  }
}

@media (max-width: 575.98px) {
  .hero-onlyfitness {
    min-height: 90vh;
  }
  .btn-hero-primary, .btn-hero-outline {
    display: block;
    width: 100%;
    margin-bottom: 0.75rem;
  }
}

/* ============================================
   UI/UX İyileştirmeleri
   ============================================ */

/* Skip to Content (Accessibility) */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--ice-blue);
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  z-index: 10000;
  border-radius: 0 0 8px 0;
  transition: top 0.3s ease;
}

.skip-to-content:focus {
  top: 0;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--ice-blue), var(--ice-blue-light));
  z-index: 9999;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px var(--ice-glow);
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(66, 141, 223, 0.9);
  backdrop-filter: blur(8px);
  border: 2px solid var(--ice-blue);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--ice-glow);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--ice-blue);
  box-shadow: 0 0 30px var(--ice-glow-strong);
  transform: translateY(-3px);
}

.scroll-to-top:focus {
  outline: 2px solid var(--ice-blue-light);
  outline-offset: 2px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: #20BA5A;
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  color: #fff;
}

.whatsapp-float:focus {
  outline: 2px solid #25D366;
  outline-offset: 2px;
}

.whatsapp-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(10, 10, 15, 0.95);
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-subtle);
  pointer-events: none;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(10, 10, 15, 0.95);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
  }
}

@media (max-width: 767.98px) {
  .scroll-to-top,
  .whatsapp-float {
    bottom: 1.25rem;
  }
  
  .scroll-to-top {
    right: 1.25rem;
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
  }
  
  .whatsapp-float {
    left: 1.25rem;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
  
  .whatsapp-tooltip {
    display: none;
  }
}

/* Focus States Improvements */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--ice-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn:focus-visible {
  outline-offset: 2px;
}

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Loading State (Optional - can be enhanced) */
img {
  transition: opacity 0.3s ease;
}

img[loading="lazy"] {
  opacity: 0;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* ----- Galeri Sayfası ----- */
.section-gallery {
  background: var(--bg-dark);
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.gallery-item:hover {
  border-color: rgba(66, 141, 223, 0.4);
  box-shadow: 0 0 24px var(--ice-glow);
}

.gallery-link {
  display: block;
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-link:hover .gallery-img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: #fff;
  font-size: 2rem;
}

.gallery-link:hover .gallery-overlay {
  opacity: 1;
}

/* GLightbox tema: koyu arka plan, buz mavisi kontroller */
.glightbox-container .gslide-description {
  background: rgba(18, 18, 26, 0.95);
  color: var(--text-primary);
  border-top: 1px solid var(--border-subtle);
}

.glightbox-container .gdesc-inner {
  padding: 0.75rem 1rem;
}

.glightbox-container .gnext,
.glightbox-container .gprev {
  background: rgba(66, 141, 223, 0.2);
  border: 1px solid var(--border-subtle);
  color: var(--ice-blue);
}

.glightbox-container .gnext:hover,
.glightbox-container .gprev:hover {
  background: rgba(66, 141, 223, 0.35);
  color: var(--ice-blue-light);
}

.glightbox-container .gclose {
  background: rgba(18, 18, 26, 0.9);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
}

.glightbox-container .gclose:hover {
  background: rgba(66, 141, 223, 0.2);
  color: var(--ice-blue);
}

.glightbox-clean .gslide-description {
  background: rgba(18, 18, 26, 0.95);
}
