@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --red: #E31B23;
  --red-dark: #B5151B;
  --red-glow: rgba(227, 27, 35, 0.4);
  --red-soft: rgba(227, 27, 35, 0.15);
  --white: #FFFFFF;
  --off-white: #F0F0F0;
  --grey-light: #B0B0B0;
  --grey: #888888;
  --grey-dark: #2A2A2A;
  --black: #0D0D0D;
  --black-soft: #161616;
  --black-card: #1A1A1A;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Evrensel görsel responsive */
img, video, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

/* ── DOKUNMATİK HEDEF MİNİMUM BOYUT (WCAG 2.5.5) ── */
a, button, [role="button"], input[type="submit"], input[type="button"] {
  min-height: 44px;
  min-width: 44px;
}

/* ── PRELOADER ── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-ring {
  width: 60px;
  height: 60px;
  border: 3px solid var(--grey-dark);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── FLOATING ANTI-GRAVITY ── */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

@keyframes floatSlow {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

.float {
  animation: float 5s var(--transition) infinite;
}

.float-slow {
  animation: floatSlow 7s var(--transition) infinite;
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity .8s var(--transition), transform .8s var(--transition);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity .8s var(--transition), transform .8s var(--transition);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity .8s var(--transition), transform .8s var(--transition);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity .8s var(--transition), transform .8s var(--transition);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* ── NAV ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease;
}

.navbar.scrolled {
  background: rgba(13, 13, 13, .92);
  backdrop-filter: blur(18px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, .5);
  padding: .8rem 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;
}

.logo-img {
  max-height: 45px;
  width: auto;
  border-radius: 5px;
}

.nav-logo span {
  color: var(--red);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--grey-light);
  font-size: .85rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  transition: color .3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width .3s var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: .6rem 1.4rem;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: all .3s ease !important;
  box-shadow: 0 0 20px var(--red-glow);
}

.nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--red-glow);
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all .3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/news/trelif.png') center/cover no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .5) 50%, rgba(227, 27, 35, .15) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--red);
  border-radius: 50%;
  opacity: .4;
  animation: particleFloat 8s infinite;
}

@keyframes particleFloat {
  0% {
    transform: translateY(0) scale(1);
    opacity: .4;
  }

  50% {
    opacity: .8;
  }

  100% {
    transform: translateY(-100vh) scale(0);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
  margin-left: 8%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--red-soft);
  border: 1px solid rgba(227, 27, 35, .3);
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  color: var(--red);
  display: block;
}

.hero p {
  font-size: 1.1rem;
  color: var(--grey-light);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--red);
  color: var(--white);
  padding: 1rem 2.2rem;
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
  box-shadow: 0 4px 25px var(--red-glow);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 35px var(--red-glow);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
  transition: left .5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--white);
  padding: 1rem 2.2rem;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s ease;
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-3px);
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--black-soft);
  border-top: 1px solid rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  padding: 3rem 2rem;
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--red);
}

.stat-item p {
  font-size: .85rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: .3rem;
}

/* ── SECTION COMMON ── */
.section {
  padding: 6rem 2rem;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: .8rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  text-transform: uppercase;
}

.section-title .accent {
  color: var(--red);
}

.section-line {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 1.2rem auto 0;
}

/* ── CLASSES ── */
.classes {
  background: var(--black);
}

.classes-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.class-card {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 12px;
  overflow: hidden;
  transition: all .4s var(--transition);
  position: relative;
}

.class-card:hover {
  transform: translateY(-10px);
  border-color: rgba(227, 27, 35, .3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5), 0 0 30px var(--red-soft);
}

/* ── ANNOUNCEMENTS ── */
.announcements-section {
  background: var(--black-soft);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.announcements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.announce-card {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, .06);
  border-left: 4px solid var(--red);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.announce-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(227, 27, 35, 0.3);
}

.announce-card .date {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}

.announce-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: var(--white);
}

.announce-card p {
  color: var(--grey-light);
  line-height: 1.6;
  font-size: 0.95rem;
}
.class-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--transition);
}

.class-card:hover .class-card-img img {
  transform: scale(1.08);
}

.class-card-img .overlay {
  position: absolute;
  inset: 0;
  /* Karartmayı kaldırdık veya çok hafiflettik */
  background: rgba(0, 0, 0, 0.1); 
}

.class-card-body {
  padding: 1.5rem;
}

.class-card-body .level {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: .5rem;
}

.class-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: .6rem;
}

.class-card-body p {
  font-size: .88rem;
  color: var(--grey-light);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.class-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.class-card-footer span {
  font-size: .78rem;
  color: var(--grey);
}

.class-card-footer a {
  color: var(--red);
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color .3s;
}

.class-card-footer a:hover {
  color: var(--white);
}

/* ── ABOUT / PARALLAX ── */
.about-parallax {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: -20% 0;
  background: url('images/news/salon.png') center/cover no-repeat;
  will-change: transform;
}

.parallax-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, .9), rgba(0, 0, 0, .5));
}

.about-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text .section-label {
  text-align: left;
}

.about-text .section-title {
  text-align: left;
  margin-bottom: 1.2rem;
}

.about-text p {
  color: var(--grey-light);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: .95rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  padding: 1.2rem 1.5rem;
  border-radius: 10px;
  transition: all .3s ease;
}

.about-feature:hover {
  border-color: rgba(227, 27, 35, .3);
  transform: translateX(8px);
}

.about-feature .icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--red-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.about-feature h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: .2rem;
}

.about-feature p {
  font-size: .82rem;
  color: var(--grey);
  margin: 0;
}

/* ── TRAINERS ── */
.trainers {
  background: var(--black-soft);
}

.trainers-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.trainer-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: all .4s var(--transition);
}

.trainer-card:hover {
  transform: translateY(-10px) scale(1.02);
}

.trainer-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform .6s var(--transition);
}

.trainer-card:hover img {
  transform: scale(1.1);
}

.trainer-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
}

.trainer-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-transform: uppercase;
}

.trainer-overlay .role {
  color: var(--red);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.trainer-overlay p {
  font-size: .82rem;
  color: var(--grey-light);
  margin-top: .5rem;
  line-height: 1.5;
}

/* ── SCHEDULE ── */
.schedule {
  background: var(--black);
}

.schedule-table-wrap {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-table th {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 1rem;
}

.schedule-table td {
  padding: 1rem;
  text-align: center;
  font-size: .85rem;
  color: var(--grey-light);
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  transition: all .3s ease;
}

.schedule-table tr:hover td {
  background: rgba(227, 27, 35, .05);
}

.schedule-table td.active {
  color: var(--white);
  font-weight: 600;
  background: var(--red-soft);
}

.schedule-table td.time {
  font-family: var(--font-display);
  color: var(--white);
  font-weight: 600;
  text-align: left;
  padding-left: 1.5rem;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--black-soft);
  overflow: hidden;
}

.testimonial-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  text-align: center;
  padding: 2rem;
  display: none;
}

.testimonial-card.active {
  display: block;
  animation: fadeSlide .5s var(--transition);
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-card .quote {
  font-size: 1.2rem;
  color: var(--off-white);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-card .quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--red);
  opacity: .3;
  position: absolute;
  top: -2rem;
  left: -1rem;
}

.testimonial-card .author {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
}

.testimonial-card .author-role {
  font-size: .8rem;
  color: var(--red);
  margin-top: .3rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: .6rem;
  margin-top: 2rem;
}

.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--grey-dark);
  border: none;
  cursor: pointer;
  transition: all .3s ease;
}

.testimonial-dots .dot.active {
  background: var(--red);
  box-shadow: 0 0 10px var(--red-glow);
}

/* ── GALLERY ── */
.gallery {
  background: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ── CTA BANNER ── */
.cta-banner {
  position: relative;
  padding: 5rem 2rem;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/action.png') center/cover no-repeat;
  opacity: .15;
  mix-blend-mode: multiply;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  position: relative;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, .85);
  max-width: 600px;
  margin: 0 auto 2rem;
  position: relative;
  line-height: 1.7;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  color: var(--red);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: all .3s ease;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
}

/* ── CONTACT ── */
.contact {
  background: var(--black);
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item .icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--red-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--red);
}

.contact-item h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: .95rem;
  margin-bottom: .3rem;
}

.contact-item p {
  font-size: .88rem;
  color: var(--grey-light);
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
  transition: all .3s ease;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 15px var(--red-soft);
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--grey);
}

/* ── GALLERY ── */
.gallery {
  background: var(--black-soft);
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 0 1rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 300px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .06);
  transition: all .4s var(--transition);
}

.gallery-item:hover {
  border-color: rgba(227, 27, 35, .3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 80%;
  transition: transform .6s var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(227, 27, 35, .6), transparent);
  opacity: 0;
  transition: opacity .4s ease;
}

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

/* ── FOOTER ── */
.footer {
  background: var(--black-soft);
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding: 3rem 2rem 1.5rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand .nav-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: .85rem;
  color: var(--grey);
  line-height: 1.7;
  max-width: 300px;
}

.footer h4 {
  font-family: var(--font-display);
  font-size: .95rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: .6rem;
}

.footer ul a {
  color: var(--grey);
  font-size: .85rem;
  text-decoration: none;
  transition: color .3s;
}

.footer ul a:hover {
  color: var(--red);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: .8rem;
  color: var(--grey);
}

.footer-signature {
  display: flex;
  align-items: center;
  gap: .6rem;
  min-width: 180px;
}

.footer-signature a {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--grey);
  font-size: .9rem;
  text-decoration: none;
  transition: color .3s ease;
}

.footer-signature a:hover {
  color: var(--white);
}

.footer-signature img {
  max-height: 60px;
  width: auto;
  display: block;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: .9rem;
  text-decoration: none;
  transition: all .3s ease;
}

.footer-socials a:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-signature {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.footer-signature a {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--grey);
  font-size: .85rem;
  text-decoration: none;
  transition: color .3s ease;
}

.footer-signature a:hover {
  color: var(--white);
}

.footer-signature img {
  max-height: 40px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
}

/* ── SCHEDULE SCROLL GÖSTERGESI ── */
.schedule-scroll-hint {
  display: none;
  text-align: center;
  font-size: .72rem;
  color: var(--grey);
  letter-spacing: 1px;
  padding: .5rem 0 0;
  text-transform: uppercase;
}

.schedule-scroll-hint i {
  color: var(--red);
  margin: 0 .3rem;
  animation: bounceX 1.2s ease infinite;
}

@keyframes bounceX {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(6px); }
}

/* ── RESPONSIVE ── */

/* ── TABLET (≤ 992px) ── */
@media (max-width: 992px) {

  /* Navbar */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(13, 13, 13, .98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    display: flex;
    transform: translateX(100%);
    transition: transform .4s var(--transition);
    z-index: 999;
    box-shadow: -5px 0 30px rgba(0,0,0,.5);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .hamburger {
    display: flex;
    position: relative;
    z-index: 1002;
  }

  /* Sections */
  .about-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4rem 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Classes grid: allow smaller min */
  .classes-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  /* Trainers grid */
  .trainers-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  /* Schedule table */
  .schedule-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .schedule-table {
    min-width: 580px;
  }
}

/* ── MOBILE (≤ 600px) ── */
@media (max-width: 600px) {

  /* Global spacing */
  .section {
    padding: 4rem 1.2rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  /* Navbar */
  .navbar {
    padding: 1rem 1.2rem;
  }

  .navbar.scrolled {
    padding: .7rem 1.2rem;
  }

  .nav-logo {
    font-size: 1.3rem;
    gap: 8px;
  }

  .logo-img {
    max-height: 36px;
  }

  .nav-links {
    width: 100%;
    max-width: 100%;
  }

  /* Hero */
  .hero {
    min-height: 100svh;
    align-items: flex-end;
    padding-bottom: 4rem;
  }

  .hero-content {
    margin-left: 0;
    padding: 0 1.2rem;
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
    line-height: 1.05;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: .92rem;
    margin-bottom: 1.8rem;
  }

  .hero-badge {
    font-size: .65rem;
    margin-bottom: 1rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: .8rem;
  }

  .hero-btns .btn-primary,
  .hero-btns .btn-outline {
    width: 100%;
    justify-content: center;
    padding: .9rem 1.5rem;
  }

  /* Stats */
  .stats-bar {
    padding: 2rem 1.2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .stat-item p {
    font-size: .72rem;
    letter-spacing: 1px;
  }

  /* Classes */
  .classes-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* About */
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.2rem;
  }

  .about-features {
    gap: .9rem;
  }

  .about-feature {
    padding: 1rem 1.2rem;
  }

  /* Trainers */
  .trainers-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trainer-card img {
    height: 320px;
  }

  /* Schedule */
  .schedule-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
  }

  .schedule-table {
    min-width: 520px;
  }

  .schedule-table th,
  .schedule-table td {
    padding: .7rem .6rem;
    font-size: .75rem;
  }

  .schedule-table td.time {
    padding-left: .8rem;
  }

  /* Testimonials */
  .testimonial-card .quote {
    font-size: 1rem;
  }

  .testimonial-card .quote::before {
    font-size: 3.5rem;
    top: -1.5rem;
    left: -.5rem;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 3.5rem 1.2rem;
  }

  .cta-banner h2 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .cta-banner p {
    font-size: .9rem;
  }

  .btn-white {
    width: 100%;
    justify-content: center;
  }

  /* Contact */
  .contact-grid {
    gap: 2rem;
  }

  .contact-info {
    gap: 1.5rem;
  }

  .form-row {
    flex-direction: column;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0;
  }

  .gallery-item {
    height: 220px;
  }

  /* Footer */
  .footer {
    padding: 2.5rem 1.2rem 1.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* About parallax — mobilde kapalı */
  .parallax-bg {
    position: absolute;
    inset: 0;
    background-attachment: scroll;
    background-position: center center;
    filter: brightness(0.4);
  }

  .parallax-bg::after {
    background: linear-gradient(to bottom, rgba(0,0,0,.75) 0%, rgba(0,0,0,.55) 100%);
  }

  .about-text .section-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  /* Schedule scroll göstergesi */
  .schedule-scroll-hint {
    display: block;
  }

  .schedule-table-wrap {
    scrollbar-width: thin;
    scrollbar-color: var(--red) var(--grey-dark);
  }

  .schedule-table-wrap::-webkit-scrollbar {
    height: 4px;
  }

  .schedule-table-wrap::-webkit-scrollbar-track {
    background: var(--grey-dark);
  }

  .schedule-table-wrap::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 4px;
  }

  .schedule-table th,
  .schedule-table td {
    white-space: nowrap;
  }

  /* Class card resimleri */
  .class-card-img {
    height: 180px;
  }

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

  /* Buttons — min dokunma hedefi 48px */
  .btn-primary,
  .btn-outline,
  .btn-white {
    min-height: 48px;
    padding: .9rem 1.6rem;
    font-size: .85rem;
  }

  .btn-white {
    width: 100%;
    justify-content: center;
  }

  .nav-cta {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* ── SMALL PHONES (≤ 380px) ── */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 1.9rem;
  }

  .stat-item h3 {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .btn-primary,
  .btn-outline {
    font-size: .78rem;
    padding: .85rem 1rem;
  }

  .trainer-card img {
    height: 240px;
  }

  .class-card-img {
    height: 160px;
  }
}