/* ===============================
   GENEL RESET + TYPOGRAPHY
================================ */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: 'Montserrat', Arial, sans-serif;
  background-color: #ffffff;
  color: #222;
}

/* ===============================
   NAVBAR
================================ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.85) 40%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0.05) 100%
  );
  padding: 6px 0;
}

.logo {
  height: 60px;
  object-fit: contain;
}

/* ===============================
   HERO SLIDER
================================ */
.hero-slider,
.slider,
.slide {
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: relative;
}

.video-slide video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-slide {
  background-size: cover;
  background-position: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.content h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 1px;
}

.content p {
  font-size: 20px;
  opacity: 0.9;
}

/* ===============================
   SLICK CONTROLS
================================ */
.slick-prev,
.slick-next {
  z-index: 10;
}

.slick-prev:before,
.slick-next:before {
  font-size: 40px;
  color: #fff;
}

.slick-dots li button:before {
  font-size: 12px;
  color: #fff;
}

.slick-dots li.slick-active button:before {
  color: #b73527;
}

/* ===============================
   SECTION TITLES
================================ */
.section-title {
  font-size: 38px;
  font-weight: 800;
  color: #2e2e2e;
  letter-spacing: 0.6px;
  margin-bottom: 60px;
  text-align: center;
}

/* ===============================
   PRICING TITLE BAR
================================ */
.pricing-title-wrapper {
  background: linear-gradient(135deg, #b73527 0%, #8b0000 100%);
  padding: 40px 20px;
  text-align: center;
}

.pricing-title {
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  background: rgba(255,255,255,0.9);
  margin: 15px auto 0;
}

/* ===============================
   PRICING SECTION
================================ */
.pricing-section {
  padding: 90px 0;
  background: linear-gradient(to bottom, #ffffff, #f3f3f3);
}

.price-box {
  background: #fff;
  border-radius: 16px;
  padding: 32px 22px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  height: 100%;
}

.price-box:hover {
  background: linear-gradient(135deg, #2a2a2a, #000);
  color: #fff;
  transform: translateY(-8px) scale(1.04);
}

.price-box h3 {
  font-size: 24px;
  margin-bottom: 18px;
}

.price-box ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.price-box ul li {
  padding: 6px 0;
  border-bottom: 1px solid #e6e6e6;
  font-size: 15px;
}

.price {
  margin-top: 18px;
}

.cash {
  font-size: 20px;
  font-weight: 700;
}

.installment {
  font-size: 14px;
  color: #777;
}

/* POPULAR */
.price-box.popular {
  border: 2px solid #b73527;
}

.price-box.popular:hover {
  background: linear-gradient(135deg, #b73527, #7a0000);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #b73527;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}

/* ===============================
   TESTIMONIALS
================================ */
.testimonials-section {
  padding: 90px 0;
  background-color: #e5e5e5;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(0,0,0,0.025),
      rgba(0,0,0,0.025) 1px,
      transparent 1px,
      transparent 3px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,0.025),
      rgba(0,0,0,0.025) 1px,
      transparent 1px,
      transparent 3px
    );
}

.testimonial-slider {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.8s ease;
}

.testimonial-card {
  min-width: 100%;
  background-color: #8b0000;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.035),
      rgba(255,255,255,0.035) 1px,
      transparent 1px,
      transparent 3px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.035),
      rgba(255,255,255,0.035) 1px,
      transparent 1px,
      transparent 3px
    );
  border-radius: 18px;
  padding: 45px 40px;
  box-shadow: 0 25px 55px rgba(0,0,0,0.4);
}

.stars {
  color: #f5c518;
  font-size: 18px;
  margin-bottom: 16px;
}

.comment {
  color: #f1f1f1;
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 26px;
}

.name {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}

.name span {
  display: block;
  font-size: 12px;
  color: #e3caca;
  margin-top: 4px;
}

/* ===============================
   FOOTER
================================ */
.site-footer {
  background: #111;
  padding: 60px 0 30px;
  color: #ccc;
}

.footer-logo img {
  height: 80px;
  margin-bottom: 25px;
}

.footer-menu {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
}

.footer-menu a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-menu a:hover {
  color: #b73527;
}

.footer-copy {
  text-align: center;
  font-size: 13px;
  color: #777;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .logo { height: 26px; }
  .content h1 { font-size: 34px; }
  .content p { font-size: 16px; }
  .testimonial-card { padding: 35px 25px; }
}
/* ===============================
   FOOTER SOSYAL MEDYA RENK FIX
================================ */

.footer-social a,
.footer-social a i {
  color: #ffffff !important;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover,
.footer-social a:hover i {
  color: #b73527 !important;
  transform: translateY(-4px);
}
/* ===============================
   TESTIMONIAL BAŞLIK (Üyelerimiz Ne Diyor)
================================ */
.testimonial-title-wrapper {
  background: linear-gradient(135deg, #b73527 0%, #8b0000 100%);
  padding: 40px 20px;
  text-align: center;
  margin-bottom: 50px;
  border-radius: 0px; /* istersen 0 bırak, istersen hafif yuvarla */
}

.testimonial-title {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  background: rgba(255,255,255,0.9);
  margin: 15px auto 0;
  border-radius: 3px;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-title-wrapper {
    padding: 30px 15px;
  }

  .testimonial-title {
    font-size: 26px;
  }
}
/* ===============================
   PERSONAL TRAINER KARTLARI
================================ */

.trainer-title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #b73527;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.service-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 15px;
}
.price-box:hover .trainer-title {
  color: #fff;
}
.price-box:hover .service-icon {
  transform: scale(1.15);
  transition: transform 0.3s ease;
}

/* ===============================
   PREMIUM TESİS GALERİSİ
================================ */
/* === TESİS GALERİSİ (OVERRIDE) === */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 20px;
}

.gallery-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

/* Hover Premium Efekt */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.4), transparent);
  opacity: 0;
  transition: 0.3s;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.gallery-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.gallery-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 20px;
  box-shadow: 0 40px 80s0px rgba(0,0,0,.6);
  animation: zoomIn .3s ease;
}

@keyframes zoomIn {
  from { transform: scale(.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ===============================
   GALERİ GRID RESPONSIVE
================================ */

.gallery-grid {
  display: grid;
  gap: 20px;
}

/* MOBİL: 2 kolon */
@media (max-width: 575px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* TABLET: 3 kolon */
@media (min-width: 576px) and (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* DESKTOP: 4 kolon */
@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.why-text {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 22px;
  text-align: center;
}
.home-cta {
  padding: 80px 0;
}

.home-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid #e5e5e5;
  padding-top: 40px;
}

.home-cta-text {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

.home-cta-text strong {
  display: block;
  font-weight: 800;
}

.home-cta-actions {
  display: flex;
  gap: 20px;
}

.cta-link {
  padding: 14px 30px;
  border: 1px solid #000;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s ease;
}

.cta-link:hover {
  background: #000;
  color: #fff;
}

.cta-link.primary {
  background: #000;
  color: #fff;
}

.cta-link.primary:hover {
  background: #222;
}
@media (max-width: 768px) {
  .home-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-cta-text {
    font-size: 22px;
  }

  .home-cta-actions {
    width: 100%;
  }

  .cta-link {
    width: 100%;
    text-align: center;
  }
}
/* WHY TEK FIT - PREMIUM LIST */
.reason-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 30px;
}

.reason-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #dcdcdc;
}

.reason-item i {
  color: #f5c542; /* sitedeki gold/sarı vurgu */
  font-size: 16px;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .reason-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.worktime-title .pricing-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.worktime-sub {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px;
}

/* Mobil ince ayar */
@media (max-width: 768px) {
  .worktime-sub {
    font-size: 13px;
    text-align: center;
    line-height: 1.4;
  }
}
.worktime-minimal {
  background: #111;
  padding: 14px 0;
  text-align: center;
  font-size: 14px;
  color: #ccc;
  letter-spacing: 0.4px;
}

.worktime-minimal span {
  color: #b73527;
  font-weight: 700;
  margin-right: 10px;
}

.worktime-minimal strong {
  color: #fff;
  font-weight: 500;
}

.worktime-minimal em {
  margin: 0 10px;
  opacity: 0.4;
  font-style: normal;
}

/* Mobil */
@media (max-width: 768px) {
  .worktime-minimal {
    font-size: 13px;
    line-height: 1.6;
  }

  .worktime-minimal em {
    display: none;
  }
}