/* Global Styles */
/* Global link colors */
a, 
a:visited {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.25s ease;
}
a:hover {
  color: #f0f0e6;
}
* {
  margin: 0;
  padding: 0;

  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  overflow-x: hidden; /* Prevent horizontal scroll */
  background: #000 url('../images/Background-v2.png') center / cover no-repeat;
  background-attachment: scroll;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: none; /* removed global dark overlay */
  pointer-events: none;
  z-index: 0;
}

/* Modern Scrollbar */
body::-webkit-scrollbar {
  width: 8px;
  background: #181818;
}
body::-webkit-scrollbar-thumb {
  background: linear-gradient(120deg, #232323 0%, #444 100%);
  border-radius: 8px;
  border: 2px solid #111;
  min-height: 40px;
  box-shadow: 0 2px 8px #0008 inset;
}
body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(120deg, #444 0%, #666 100%);
}
body::-webkit-scrollbar-corner {
  background: #181818;
}
html, body {
  scrollbar-width: thin;
  scrollbar-color: #444 #181818;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  scroll-behavior: smooth;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background: url("../images/hero-background.jpg") center/cover no-repeat;
  display: flex;
  flex-direction: column;
}

/* Görseli daha koyu göstermek için koyu bir overlay */
/* Removed hero::before effect */

/* Sol alt köşedeki ışık daha küçük ve daha az parlak */
/* Removed hero::after effect */

/* Navbar */
.navbar {
  width: 100%;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 15002;
  margin-top: 10px; /* Added top margin */
}

.navbar__logo {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
}

.navbar__logo img {
  width: 140px;
  height: auto;
}

.navbar__links {
  list-style: none;
  display: flex;
  gap: 48px;
  font-weight: 400;
  font-size: 15px;
}

.navbar__links a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
}

.navbar__links a:hover {
  color: #c5c5c5;
}

/* Modern Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  justify-content: space-between;
  z-index: 1001;
}

.hamburger__line {
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

/* Hamburger Animation */
.hamburger.active .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .navbar {
    padding: 20px 24px;
  }
  
  .navbar__logo {
    left: 24px;
  }
  
  .navbar__logo img {
    width: 120px;
  }
  
  .hamburger {
    display: flex;
    right: 24px;
    z-index: 15003;
  }
  
  .navbar__links {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 15000;
  }
  
  .navbar__links.active {
    right: 0;
  }
  
  .navbar__links li {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 15001;
  }
  
  .navbar__links.active li {
    opacity: 1;
    transform: translateX(0);
    z-index: 15001;
  }
  
  .navbar__links.active li:nth-child(1) { transition-delay: 0.1s; }
  .navbar__links.active li:nth-child(2) { transition-delay: 0.2s; }
  .navbar__links.active li:nth-child(3) { transition-delay: 0.3s; }
  .navbar__links.active li:nth-child(4) { transition-delay: 0.4s; }
  .navbar__links.active li:nth-child(5) { transition-delay: 0.5s; }
  
  .navbar__links a {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 15002;
  }
  
  .navbar__links a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
  }
  
  .navbar__links a:hover::before {
    left: 100%;
  }
  
  .navbar__links a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transform: translateX(8px);
  }
}

/* Mobile menu overlay */
.menu-overlay {
  /* lowered z-index so that mobile nav stays on top */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 14999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Hero Content */
.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 15002;
}

.hero__logo-wrapper {
  position: relative;
  display: inline-block;
}

.hero__logo {
  width: clamp(300px, 50vw, 750px);
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 15002;
}

.hero__logo-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 35%;
  transform: translateY(-50%);
  height: 40px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

.hero__title {
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 800;
  letter-spacing: 8px;
  text-transform: uppercase;
  line-height: 1;
}

.buff {
  display: inline-block;
}

.gym {
  display: inline-block;
  font-weight: 400;
}

.hero__subtitle {
  margin-top: 12px;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  letter-spacing: 6px;
  font-weight: 300;
  text-transform: uppercase;
  color: #dddddd;
}

/* Sparkles */
.hero__sparkles {
  z-index: 2000;
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 0;
  height: 0;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  filter: blur(2px);
  animation: sparkle 3s infinite ease-in-out;
}

.s1 { top: 0; left: 0; animation-delay: 0s; }
.s2 { top: 12px; left: 30px; animation-delay: .8s; }
.s3 { top: -10px; left: 60px; animation-delay: 1.5s; }
.s4 { top: 20px; left: 90px; animation-delay: 2.3s; }

@keyframes sparkle {
  0%, 100% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1); opacity: 1; }
}

/* Scrolling strip */
.scroll-strip {
  position: relative;
  z-index: 15002;
  width: 100%;
  height: 120px;
  margin-top: -60px; /* Moved up */
  margin-bottom: 0;
  overflow: hidden;
}

.scroll-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: url("../images/serit-beyaz-01.png") repeat-x;
  background-size: auto 100%;
  animation: scroll-slide 20s linear infinite;
  will-change: transform;
}

@keyframes scroll-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* removed old scroll-strip keyframes */
/*
  0% { background-position-x: 0; }
  100% { background-position-x: -1024px; }
}

/* stars on strip */
.strip-stars {
  display: none;
  z-index: 2000;
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.strip-star {
  position: absolute;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  filter: blur(2px);
  animation: sparkle 4s infinite ease-in-out;
}
.st1 { left: 20%; top: 30%; animation-delay: 0s; }
.st2 { left: 50%; top: 60%; animation-delay: 1.2s; }
.st3 { left: 80%; top: 40%; animation-delay: 2.4s; }

/* Second glow under logo */
.hero__light {
  position: relative;
  width: 30%;
  height: 40px; /* user can adjust */
  margin-top: -30px;
}
.hero__light::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
  filter: blur(20px);
  pointer-events:none;
  z-index:0;
}

/* Subtitle glow */
.hero__subtitle {
  position: relative;
  display: inline-block;
  margin-top: 8px;
}

.hero__subtitle-wrapper {
  position: relative;
  display: inline-block;
  margin-top: 8px;
}

.hero__subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

/* Placeholder section styles */
.about-section, .packages-section, .contact-section {
  position: relative;
  z-index: 3;
  background: rgba(255,255,255,0.0); /* Tam şeffaf */
  color: #fff;
  box-shadow: none;
}

/* Features Section */
.features-section {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 64px 0 80px 0;
  background: none;
  z-index: 3;
}

.features-stars {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2000;
}

.features-title-group {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

.features-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(100deg, #e0e0e0 0%, #bdbdbd 30%, #fff 60%, #bdbdbd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.features-subtitle {
  color: #d6d6d6;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 0;
  text-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

.features-cards {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 32px;
  z-index: 2;
  perspective: 1800px;
}

.features-card,
.features-card-left,
.features-card-center,
.features-card-right {
  border-radius: 0 !important;
  border-width: 3px !important;
  border-style: solid !important;
  border-color: rgba(255,255,255,0.18) !important;
  /* Removed default animation to allow specific ones to apply */
}

.features-card-center {
  animation-delay: 1.1s;
}
.features-card-right {
  animation-delay: 2.1s;
  animation-name: cardFloatYRight;
  animation-duration: 3.2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-name: cardFloatYRight;
  animation-duration: 3.2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@keyframes cardFloatYLeft {
  0% { transform: translateY(0) rotateY(18deg) scale(0.98); }
  15% { transform: translateY(-10px) rotateY(18deg) scale(0.98); }
  30% { transform: translateY(0) rotateY(18deg) scale(0.98); }
  100% { transform: translateY(0) rotateY(18deg) scale(0.98); }
}
.features-card-center {
  animation: none !important;
}
@keyframes cardFloatYCenter {
  0% { transform: translateY(0); }
  15% { transform: translateY(10px); }
  30% { transform: translateY(0); }
  100% { transform: translateY(0); }
}
.features-card-right {
  animation: none !important;
}
@keyframes cardFloatYRight {
  0% { transform: translateY(0) rotateY(-18deg) scale(0.98); }
  15% { transform: translateY(-7px) rotateY(-18deg) scale(0.98); }
  30% { transform: translateY(0) rotateY(-18deg) scale(0.98); }
  100% { transform: translateY(0) rotateY(-18deg) scale(0.98); }
}
.features-card {
  width: 320px;
  min-height: 480px;
  padding: 0;
  /* Ultra Fast Fake Glass - No Blur */
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 0;
  box-shadow: 
    0 8px 32px 0 rgba(128, 128, 128, 0.25),
    0 0 0 1px rgba(255,255,255,0.15) inset,
    0 4px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ffffff;
}

.features-card-inner {
  padding: 32px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.features-card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 5px;
  background: linear-gradient(100deg, #fff 60%, #fff8 100%);
  clip-path: polygon(10% 0, 90% 0, 88% 100%, 12% 100%);
  z-index: 3;
  opacity: 0.85;
}
.features-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 35%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.45) 55%, rgba(255,255,255,0) 100%);
  opacity: 0.6;
  transform: skewX(-20deg);
  pointer-events: none;
  transition: transform 0.2s ease; /* Faster transition */
}
.features-card:hover::before {
  transform: translateX(260%) skewX(-20deg);
}

/* Rightmost feature card – shine comes from left side hitting angled surface */
.features-card-right::before {
  right: -120%;
  left: auto;
  transform: skewX(20deg);
}
.features-card-right:hover::before {
  transform: translateX(-260%) skewX(20deg);
}
.features-card-bottom {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(100deg, #fff 60%, #fff8 100%);
  clip-path: polygon(10% 0, 90% 0, 88% 100%, 12% 100%);
  z-index: 3;
  opacity: 0.7;
}
.features-card b {
  font-size: 1.13em;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px #000a;
}
.features-card-left:hover {
  transform: rotateY(15deg) scale(1.05) translateX(-8px);
  box-shadow: -20px 12px 50px 0 rgba(0,0,0,0.45), 0 0 0 1.5px rgba(255,255,255,0.25) inset;
}
.features-card-center:hover {
  transform: scale(1.06) translateY(-8px);
  box-shadow: 0 16px 60px 0 rgba(0,0,0,0.5), 0 0 0 1.5px rgba(255,255,255,0.25) inset;
}
.features-card-right:hover {
  transform: rotateY(-15deg) scale(1.05) translateX(8px);
  box-shadow: 20px 12px 50px 0 rgba(0,0,0,0.45), 0 0 0 1.5px rgba(255,255,255,0.25) inset;
}

/* Left-aligned feature card */
.features-card-left {
  transform: rotateY(15deg) scale(0.98);
  box-shadow: -16px 8px 40px 0 rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.15) inset;
  z-index: 2;
}

/* Center feature card */
.features-card-center {
  transform: scale(1.02);
  z-index: 3;
  box-shadow: 0 12px 48px 0 rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.18) inset;
}

/* Right-aligned feature card */
.features-card-right {
  transform: rotateY(-15deg) scale(0.98);
  box-shadow: 16px 8px 40px 0 rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.15) inset;
  z-index: 2;
}

@media (max-width: 900px) {
  .features-card {
    width: 90vw;
    max-width: 350px;
    min-height: 420px;
  }
  
  .features-card-left,
  .features-card-center,
  .features-card-right {
    transform: none !important;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.15) inset;
  }
  
  .features-card-left:hover,
  .features-card-center:hover,
  .features-card-right:hover {
    transform: scale(1.03) !important;
    box-shadow: 0 12px 40px 0 rgba(0,0,0,0.45), 0 0 0 1.5px rgba(255,255,255,0.25) inset;
  }
}

/* Override Pricing Tab & Button Colors */
.pricing-tab.active {
  color: #ffffff !important;
  border-color: #ffffff !important;
}
.pricing-tab:hover {
  color: #e0e0e0 !important;
}
.pricing-cta,
.uyelik-plan-btn {
  background: #ffffff !important;
  color: #000000 !important;
}
.pricing-cta:hover,
.uyelik-plan-btn:hover {
  background: #e0e0e0 !important;
}


.pricing-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-align: center;
  background: linear-gradient(90deg, #e0e0e0 0%, #bdbdbd 30%, #fff 60%, #bdbdbd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  position: relative;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.pricing-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  width: 60%;
  max-width: 420px;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.00) 0%,
    rgba(255,255,255,0.45) 18%,
    #fff 50%,
    rgba(255,255,255,0.45) 82%,
    rgba(255,255,255,0.00) 100%
  );
  border-radius: 1px;
  box-shadow: 0 0 12px 2px #fff5;
  filter: blur(0.1px);
  opacity: 0.95;
}

/* Pricing Subline */
.pricing-subline{
  display:block;
  margin:-8px auto 32px auto;
  padding:4px 16px;
  font-size:1.6rem;
  font-weight:800;
  letter-spacing:1px;
  text-align:center;
  position:relative;
  background:linear-gradient(90deg,#ff5252 0%,#ff9800 20%,#ffeb3b 50%,#ff9800 80%,#ff5252 100%);
  background-size:200% 100%;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  color:transparent;
  animation:priceGradient 6s linear infinite, priceGlow 3s ease-in-out infinite;
}
.pricing-subline::before{
  content:"";
  position:absolute;
  top:50%;left:50%;transform:translate(-50%,-50%);
  width:140%;height:220%;
  background:radial-gradient(circle at center,rgba(255,255,255,0.55) 0%,rgba(255,255,255,0) 70%);
  filter:blur(25px);
  z-index:-1;
  pointer-events:none;
}
@keyframes priceGradient{0%{background-position:0% 0%}100%{background-position:100% 0%}}
@keyframes priceGlow{0%,100%{filter:drop-shadow(0 0 6px #ff5252)}50%{filter:drop-shadow(0 0 12px #ffeb3b)}}

/* Simple variant for Pricing Subline */
.pricing-subline{
  animation:none!important;
  background:none!important; -webkit-text-fill-color:#ffffff!important; color:#ffffff!important;
  background-size:100% 100%!important;
  text-shadow:0 1px 4px rgba(255,255,255,0.2);
}
.pricing-subline::before{display:none!important;}

/* Program Section */
.program-section {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 64px 0 40px 0;
  background: none;
}
.program-title-group {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}
.program-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #e0e0e0 0%, #bdbdbd 30%, #fff 60%, #bdbdbd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.program-title-underline {
  width: 60%;
  max-width: 420px;
  height: 2px;
  margin: 0 auto 18px auto;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.00) 0%,
    rgba(255,255,255,0.45) 18%,
    #fff 50%,
    rgba(255,255,255,0.45) 82%,
    rgba(255,255,255,0.00) 100%
  );
  border-radius: 1px;
  box-shadow: 0 0 12px 2px #fff5;
  filter: blur(0.1px);
  opacity: 0.95;
}
.program-subtitle {
  color: #e0e0e0;
  font-size: 1.18rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-top: 0;
  text-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
@media (max-width: 600px) {
  .program-title {
    font-size: 2rem;
  }
  .program-title-underline {
    width: 90%;
    height: 3px;
  }
  .program-subtitle {
    font-size: 1rem;
  }
}

/* Membership Card Layout */
.uyelik-plans {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  padding: 24px 0;
}

/* Membership Card Width Override */

/* Price typography */
.uyelik-plan-price {
  font-size: clamp(2.4rem, 5vw, 3.4rem) !important;
  font-weight: 900;
  letter-spacing: 1px;
  display: inline-block;
  line-height: 1.1;
}
.uyelik-plan-currency {
  font-size: 0.55em !important; /* relative to price size */
  font-weight: 700;
  margin-left: 4px;
  vertical-align: top;
}

/* Feature list styling */
.uyelik-plan-features {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.uyelik-plan-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.4;
}
.uyelik-plan-features li::before {
  content: "\2714"; /* checkmark */
  position: absolute;
  left: 0;
  top: 0;
  color: #ffffff; /* neutral accent */
  font-weight: 900;
}
.uyelik-plan {
  flex: 0 0 420px;
  max-width: 420px;
}

@media (max-width: 600px) {
  .uyelik-plan {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
  
  .uyelik-plan-card {
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
  }
}

/* Video Section */
.program-video-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.program-video-outer {
  width: 950px;
  max-width: 98vw;
  aspect-ratio: 16/7;
  background: #181818;
  border: 2px solid #fff;
  border-radius: 0;
  box-shadow: 0 0 0 2px #fff2, 0 8px 32px 0 rgba(0,0,0,0.38);
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: skew(4deg, 1deg);
}
.program-video-frame {
  overflow: hidden; /* video kenarlıkları taşmasın */
  width: 96%;
  height: 100%;
  background: #222;
  border: 0;
  border-radius: 0;
  box-shadow: 0 0 24px 0 #000a;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}
.program-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  padding: 0;
  transition: filter 0.2s;
}
.program-video-play:hover {
  filter: brightness(1.2) drop-shadow(0 0 8px #fff8);
}
.program-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1000px) {
  .program-video-outer {
    width: 99vw;
  }
}

/* BUFF WEAR Section */
.buffwear-section {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 64px 0 40px 0;
  background: none;
}
.buffwear-title-group {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.buffwear-title {
  font-size: 3.4rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
  margin-bottom: 8px;
}
.buffwear-subtitle {
  color: #e0e0e0;
  font-size: 1.18rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-top: 0;
  text-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.buffwear-slider-wrapper {
  width: 92vw;
  max-width: 1100px;
  min-height: 340px;
  margin: 0 auto;
  display: block;
  background: none;
  position: relative;
}
.buffwear-slider {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #181818;
  border: 2px solid #fff;
  border-radius: 0;
  box-shadow: 0 0 0 2px #fff2, 0 8px 32px 0 rgba(0,0,0,0.38);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto 32px auto;
  padding-bottom: 0;
}
.buffwear-slide {
  width: 100%;
  height: 100%;
  object-fit: contain; /* show entire image */
  display: block;
  background: #000; /* blank fill */
}
.buffwear-slider-dots {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  margin: 0;
  z-index: 2;
}
.buffwear-slider-dot {
  background: #fff;
  opacity: 1;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  transition: width 0.2s, border-radius 0.2s;
  cursor: pointer;
}
.buffwear-slider-dot.active {
  width: 28px;
  height: 10px;
  border-radius: 10px;
}
.buffwear-slider-btn {
  margin: 24px auto 0 auto;
  font-size: 1.1rem;
  padding: 8px 28px;
  border-radius: 28px;
  display: block;
  background: #fff;
  color: #181818 !important;
  font-weight: 800;
  border: none;
  box-shadow: 0 2px 16px #0005;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  text-decoration: none;
  text-align: center;
  width: fit-content;
}
.buffwear-slider-btn:hover {
  background: rgba(255, 255, 255, 0.632);
  color: #fff;
}
@media (max-width: 900px) {
  .buffwear-slider {
    max-width: 99vw;
    aspect-ratio: 16/10;
  }
  .buffwear-slider-btn {
    font-size: 1rem;
    padding: 8px 18px;
    margin-top: 18px;
  }
}

/* Keyframes */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}
/* Membership Plans Section - Animate on Scroll */
.uyelik-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 48px;
  justify-content: center;
  align-items: stretch;
  margin: 48px auto 0 auto;
  max-width: 1400px;
  width: 92vw;
}

/* Responsive Grid for Membership Plans */
@media (max-width: 1200px) {
  .uyelik-plans {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
  }
}

.uyelik-plan {
  /* Animation setup - REMOVED FOR IMMEDIATE VISIBILITY */
  /* opacity: 0; Start hidden */
  /* animation: fadeIn 0.6s ease-out forwards; */
  opacity: 1; /* Show immediately */
  /* Layout */
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* NO ANIMATION DELAYS - IMMEDIATE VISIBILITY */

.uyelik-plan-card {
  transform: skewX(6deg);
  transition: transform 0.2s ease;
  width: 420px;
  padding: 44px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  min-height: 440px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  overflow: hidden;
  position: relative;
  border-radius: 0;
  /* Light Blur - Minimal Performance Impact */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}


/* Ultra Minimal Çözüm */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }

  .uyelik-plans {
    width: 100% !important;
    display: flex !important;
    flex-direction: column;
    align-items: center !important;
    padding: 0 8px !important;
    box-sizing: border-box;
  }

  .uyelik-plan {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
  }

  .uyelik-plan-card {
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
    position: static !important;
    left: auto !important;
    margin: 0 !important;
    padding: 32px 20px !important;
  }
}
@media (max-width: 480px) {
  .uyelik-plans {
    padding: 0 8px !important;
    width: 100% !important;
  }

  .uyelik-plan {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
  }

  .uyelik-plan-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 28px 16px 20px 16px !important;
    min-height: 350px;
    transform: none !important;
  }
}
.uyelik-plan-card-inner {
  transform: skewX(-6deg);
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Make inner content fill the card */
}

.uyelik-plan-btn {
  margin-top: auto; /* Push button to the bottom */
}
.uyelik-plan-card:hover {
  /* Light Blur on Hover */
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transform: skewX(6deg) scale(1.02);
}

/* Featured card specifics */
.uyelik-plan-featured-label {
  position: absolute;
  top: -38px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
}

.uyelik-plan-featured-buff {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  width: auto;
  object-fit: contain;
  z-index: 5;
}

/* Featured card overflow */
.uyelik-plan-featured {
  overflow: visible;
}

.uyelik-plan-card b {
  font-size: 1.13em;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px #000a;
}
/* Label removed */
.uyelik-plan-featured-label {
  position: absolute;
  top: -48px;
  left: 50%;
  transform: translateX(-50%) skewY(-6deg);
  background: linear-gradient(90deg, #fff 60%, #e0e0e0 100%);
  color: #181818;
  font-weight: 900;
  font-size: 1.08rem;
  letter-spacing: 2px;
  padding: 8px 38px 8px 38px;
  border-radius: 18px;
  box-shadow: 0 4px 24px #0003;
  z-index: 10;
  text-transform: uppercase;
  white-space: nowrap;
  border: 2.5px solid #fff;
  opacity: 0.98;
}
.uyelik-plan-featured-buff {
  position: absolute;
  top: 8px;
  right: -38px;
  font-size: 18px;
  font-weight: 200;
  color: #fff;
  letter-spacing: 2px;
  opacity: 0; /* hidden until loaded */
  transition: opacity 0.4s ease;
  pointer-events: none;
  text-shadow: 0 2px 24px #000a;
}
.uyelik-plan-featured-buff.loaded{
  opacity:1;
}

@media (max-width: 900px) {
  .uyelik-plan-featured-label {
    font-size: 0.98rem;
    padding: 6px 18px;
    top: -32px;
  }
  .uyelik-plan-featured-buff {
    font-size: 1.5rem;
    top: -22px;
    right: -18px;
  }
}

@media (max-width: 768px) {
  .uyelik-plan-featured-label {
    font-size: 0.9rem;
    padding: 4px 12px;
    top: -24px;
    letter-spacing: 1px;
  }
  .uyelik-plan-featured-buff {
    font-size: 1.2rem;
    top: -16px;
    right: -12px;
    letter-spacing: 2px;
  }
}

@media (max-width: 480px) {
  .uyelik-plan-featured-label {
    font-size: 0.8rem;
    padding: 3px 10px;
    top: -20px;
  }
  .uyelik-plan-featured-buff {
    font-size: 1rem;
    top: -12px;
    right: -8px;
    letter-spacing: 1px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    padding: 16px 24px;
  }
  .navbar__links {
    gap: 24px;
    font-size: 14px;
  }
}

.hero-scroll-image-wrapper {
  width: 100vw;
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  background: transparent;
  height: 32px; /* Daha küçük şerit yüksekliği */
  background: url("../images/serit-beyaz-01.png") repeat-x;
  background-size: auto 100%;
  animation: hero-strip 20s linear infinite;
  will-change: background-position;
  pointer-events: none;
}
.hero-scroll-inner {
  display: none;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 200vw; /* two images each 100vw for seamless loop */
  animation: hero-scroll-move 24s linear infinite;
}
.hero-scroll-image {
  width: auto;
  height: 22px;
  max-width: none;
  min-width: unset;
  display: block;
  margin: 0;
  pointer-events: none;
  user-select: none;
}
.hero-scroll-gap {
  width: 0;
  min-width: 0;
  height: 100%;
  display: inline-block;
}
@media (max-width: 900px) {
  .hero-scroll-image-wrapper {
    height: 20px; /* Büyütüldü */
  }
  .hero-scroll-image {
    height: 16px; /* Büyütüldü */
  }
}

@media (max-width: 600px) {
  .hero-scroll-image-wrapper {
    height: 24px; /* Daha da büyütüldü */
  }
  .hero-scroll-image {
    height: 20px; /* Daha da büyütüldü */
  }
}
@keyframes hero-strip {
  0% { background-position-x: 0; }
  100% { background-position-x: -1024px; }
}
@keyframes hero-scroll-move {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100vw); }
 }

.uyelik-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(100deg, #e0e0e0 0%, #bdbdbd 30%, #fff 60%, #bdbdbd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

/* Mobile title optimization */
@media (max-width: 768px) {
  .uyelik-title {
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .uyelik-title {
    font-size: 1.8rem;
    letter-spacing: 0.5px;
  }
}

/* Tagline */
.uyelik-branch-tagline {
  font-size: 1.8rem;
  font-weight: 800;
  font-style: italic;
  color: #fff;
  margin: 28px 0 32px 0;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.uyelik-branch-tagline::before,
.uyelik-branch-tagline::after {
  content: "";
  position: absolute;
  left: -60px;
  right: -60px;
  height: 4px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
  top: 50%;
  transform: translateY(-50%);
  filter: blur(4px);
  pointer-events: none;
}
.uyelik-branch-tagline::after { top: calc(50% + 10px); }

/* Toggle switch */
.uyelik-title-group {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 48px auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}
.uyelik-toggle-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 40px;
}

.uyelik-toggle-label {
  font-size: 1.4rem;
  font-weight: 600;
}

.uyelik-switch {
  position: relative;
  display: inline-block;
  width: 74px;
  height: 38px;
}

/* Mobile toggle optimization */
@media (max-width: 768px) {
  .uyelik-toggle-group {
    gap: 12px;
    margin-bottom: 32px;
  }
  
  .uyelik-toggle-label {
    font-size: 1.2rem;
  }
  
  .uyelik-switch {
    width: 64px;
    height: 32px;
  }
  
  .uyelik-slider::before {
    height: 24px;
    width: 24px;
    left: 2px;
    bottom: 2px;
  }
  
  .uyelik-switch input:checked + .uyelik-slider::before {
    transform: translateX(28px);
  }
}

@media (max-width: 480px) {
  .uyelik-toggle-label {
    font-size: 1.1rem;
  }
  
  .uyelik-switch {
    width: 56px;
    height: 28px;
  }
  
  .uyelik-slider::before {
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
  }
  
  .uyelik-switch input:checked + .uyelik-slider::before {
    transform: translateX(24px);
  }
}

.uyelik-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.uyelik-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  border: 2px solid #fff;
  transition: 0.3s;
  border-radius: 38px;
}

.uyelik-slider::before {
  position: absolute;
  content: "";
  height: 28px;
  width: 28px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  transition: 0.3s;
  border-radius: 50%;
}

.uyelik-switch input:checked + .uyelik-slider {
  background: #fff;
}

.uyelik-switch input:checked + .uyelik-slider::before {
  transform: translateX(34px);
  background: #000;
}

/* Uyelik Plan Cards Styles */
.uyelik-plans {
  flex-wrap: wrap;
}

.uyelik-plan {
  margin-bottom: 48px;
}

.uyelik-plan-duration {
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: #d0d0d0;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.uyelik-plan-price {
  font-size: 3.8rem;
  font-weight: 800;
  margin: 0;
  line-height: 1;
}

.uyelik-plan-price .uyelik-plan-currency {
  font-size: 2rem;
  vertical-align: super;
}

.uyelik-plan-type {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 12px 0 24px 0;
}

.uyelik-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  font-size: 1rem;
  line-height: 1.6;
}

.uyelik-plan-features li {
  margin-bottom: 6px;
}

.uyelik-plan-btn {
  align-self: flex-start;
  background: #fff;
  color: #000;
  font-weight: 800;
  padding: 10px 34px;
  border-radius: 28px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
}

.uyelik-plan-btn:hover {
  background: #222;
  color: #fff;
}

/* Mobile typography optimizations */
@media (max-width: 768px) {
  .uyelik-plan-duration {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
  }
  
  .uyelik-plan-price {
    font-size: 3rem;
    margin: 8px 0;
  }
  
  .uyelik-plan-price .uyelik-plan-currency {
    font-size: 1.6rem;
  }
  
  .uyelik-plan-type {
    font-size: 1rem;
    margin: 8px 0 16px 0;
  }
  
  .uyelik-plan-features {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 20px 0;
  }
  
  .uyelik-plan-features li {
    margin-bottom: 4px;
  }
  
  .uyelik-plan-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
    border-radius: 24px;
    align-self: center; /* Center button on mobile */
    width: 100%; /* Full width on mobile */
    text-align: center;
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .uyelik-plan-duration {
    font-size: 1rem;
  }
  
  .uyelik-plan-price {
    font-size: 2.5rem;
  }
  
  .uyelik-plan-price .uyelik-plan-currency {
    font-size: 1.4rem;
  }
  
  .uyelik-plan-features {
    font-size: 0.9rem;
  }
  
  .uyelik-plan-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}



/* Slightly stronger glow on hover for extra emphasis */
.uyelik-plan-card:hover img.uyelik-plan-featured-buff {
  filter: drop-shadow(0 0 16px rgba(255,255,255,0.9)) drop-shadow(0 0 36px rgba(255,255,255,0.6));
}

/* Match the membership-section strip height to the hero strip */
.uyelik-section + .scroll-strip {
  height: 32px;        /* Same as hero-scroll-image-wrapper */
  margin-top: -16px;   /* Pull up closer to section */
}

@media (max-width: 900px) {
  .uyelik-section + .scroll-strip {
    height: 14px;      /* Mirror hero responsive size */
  }
}

/* ================= FAQ Section ================= */
.faq-section {
  width: 100vw;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 3;
  background: none;
}

.faq-title-group {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

.faq-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(100deg, #e0e0e0 0%, #bdbdbd 30%, #fff 60%, #bdbdbd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.faq-title-underline {
  width: 60%;
  max-width: 420px;
  height: 2px;
  margin: 0 auto 18px auto;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.00) 0%,
    rgba(255,255,255,0.45) 18%,
    #fff 50%,
    rgba(255,255,255,0.45) 82%,
    rgba(255,255,255,0.00) 100%
  );
  border-radius: 1px;
  box-shadow: 0 0 12px 2px #fff5;
  filter: blur(0.1px);
  opacity: 0.95;
}

.faq-subtitle {
  color: #e0e0e0;
  font-size: 1.18rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-top: 0;
  text-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

.faq-container {
  max-width: 900px;
  width: 92vw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.faq-question {
  padding: 24px 32px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.faq-icon {
  font-size: 1.8rem;
  font-weight: 300;
  color: #ffffff;
  transition: all 0.3s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: rgba(0, 0, 0, 0.1);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 32px 24px 32px;
}

.faq-answer p {
  color: #e8e8e8;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  padding-top: 16px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.faq-answer strong {
  color: #ffffff;
  font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  
  .faq-title {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }
  
  .faq-subtitle {
    font-size: 1rem;
  }
  
  .faq-container {
    width: 95vw;
    gap: 16px;
  }
  
  .faq-question {
    padding: 20px 24px;
  }
  
  .faq-question h3 {
    font-size: 1.1rem;
  }
  
  .faq-icon {
    font-size: 1.5rem;
    width: 28px;
    height: 28px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 24px 20px 24px;
  }
  
  .faq-answer p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 1.8rem;
  }
  
  .faq-question {
    padding: 16px 20px;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 16px 20px;
  }
  
  .faq-answer p {
    font-size: 0.95rem;
  }
}

/* ================= Contact Section ================= */
.contact-section {
  width: 100vw;
  padding: 60px 0 80px 0; /* reduced so section fits viewport */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
}

.contact-card {
  width: min(92vw, 600px);
  /* Ultra Fast Fake Glass - No Blur */
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 0;
  box-shadow: 
    0 8px 32px 0 rgba(39, 40, 49, 0.25),
    0 0 0 1px rgba(255,255,255,0.15) inset,
    0 4px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: skewX(6deg);
}

/* Inner wrapper to cancel skew so content stays straight */
.contact-card-inner {
  transform: skewX(-6deg);
  padding: 48px 36px 56px 36px;
  width: 100%;
}

.contact-card:hover {
  transform: skewX(6deg) scale(1.02);
  /* Enhanced Fake Glass on Hover */
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 12px 48px 0 rgba(128, 128, 128, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 8px 24px rgba(0, 0, 0, 0.15);
}

.contact-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 32px;
  text-align: left;
  text-transform: uppercase;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  max-width: 460px; /* narrow the inputs */
  margin: 0 auto;    /* center within card */
}

.contact-input,
.contact-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #fff;
  padding: 12px 0;
  font-size: 1.1rem;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  outline: none;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #d0d0d0;
  opacity: 1;
}

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

.contact-btn {
  align-self: flex-start;
  background: #fff;
  color: #000;
  font-weight: 800;
  padding: 14px 64px;
  border-radius: 36px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.contact-btn:hover {
  background: #222;
  color: #fff;
}

.contact-btn:disabled {
  background: #666;
  color: #ccc;
  cursor: not-allowed;
}

/* Form message styles */
.form-message {
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.form-message.success {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #4caf50;
}

.form-message.error {
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #f44336;
}

@media (max-width: 600px) {
  .contact-card-inner {
    padding: 48px 32px 56px 32px;
  }
  .contact-title {
    font-size: 1.8rem;
    margin-bottom: 36px;
  }
  .contact-input, .contact-textarea {
    font-size: 1rem;
  }
  .contact-btn {
    padding: 12px 42px;
  }
}

/* ================= Google Review Section ================= */
.google-review-section {
  width: 100vw;
  padding: 80px 0 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 3;
}

.google-review-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(100deg, #e0e0e0 0%, #bdbdbd 30%, #fff 60%, #bdbdbd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 40px;
  text-align: center;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.google-review-card {
  width: min(92vw, 720px);
  border: 2px solid rgba(255,255,255,0.35);
  box-shadow: 0 0 0 1.5px rgba(255,255,255,0.15) inset, 0 8px 32px rgba(0,0,0,0.32);
  border-radius: 4px;
  overflow: hidden;
}

.google-review-iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

@media (max-width: 600px) {
  .google-review-title {
    font-size: 2rem;
  }
  .google-review-iframe {
    height: 320px;
  }
}

/* Light glow behind Google review card */
.google-review-section {
  position: relative; /* ensure pseudo-element positioning */
}
.google-review-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  max-width: 800px;
  height: 420px;
  background: radial-gradient(circle, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0) 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 15002;
}

.google-review-card {
  position: relative;
  z-index: 2; /* above glow */
}

.google-review-title::after {
  content: "";
  display: block;
  width: 60%;
  max-width: 420px;
  height: 2px;
  margin: 12px auto 0 auto;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.00) 0%,
    rgba(255,255,255,0.45) 18%,
    #fff 50%,
    rgba(255,255,255,0.45) 82%,
    rgba(255,255,255,0.00) 100%);
  border-radius: 1px;
  box-shadow: 0 0 12px 2px #fff5;
  opacity: 0.95;
}

/* ================= Footer ================= */
.site-footer {
  width: 100vw;
  padding: 80px 0 40px 0;
  background: none;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  z-index: 3;
}
.footer-container {
  max-width: 1200px;
  width: 92vw;
  margin: 0 auto 48px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}
.footer-column h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.footer-column p, .footer-column a, .footer-links a {
  font-size: 1rem;
  color: #e0e0e0;
  text-decoration: none;
  line-height: 1.5;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-links li a:hover {
  color: #fff;
}
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #d0d0d0;
}

/* ================= Global Star Overlay ================= */

/* ================= Branches Section ================= */
.branches-section {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 64px 0 40px 0;
  background: none;
  position: relative;
  z-index: 3;
  overflow: hidden;
}

/* Floating particles background for branches */
.branches-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(255,255,255,0.02) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(255,255,255,0.01) 0%, transparent 50%);
  animation: branches-bg-float 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 15002;
}

@keyframes branches-bg-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-20px, -10px) scale(1.05); }
  66% { transform: translate(15px, -20px) scale(0.95); }
}

.branches-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(100deg, #e0e0e0 0%, #bdbdbd 30%, #fff 60%, #bdbdbd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 40px;
  text-align: center;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
  position: relative;
  z-index: 2;
  animation: branches-title-glow 4s ease-in-out infinite;
}

@keyframes branches-title-glow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(255,255,255,0.3)); }
  50% { filter: drop-shadow(0 0 30px rgba(255,255,255,0.5)); }
}

.branches-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255,255,255,0.6) 25%, 
    #fff 50%, 
    rgba(255,255,255,0.6) 75%, 
    transparent 100%);
  border-radius: 2px;
  animation: branches-underline-pulse 3s ease-in-out infinite;
}

@keyframes branches-underline-pulse {
  0%, 100% { opacity: 0.7; width: 80%; }
  50% { opacity: 1; width: 90%; }
}

.branches-cards {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  width: 92vw;
  position: relative;
  z-index: 2;
  perspective: 1200px;
}

/* Enhanced Branch Cards - Ultra Fast Fake Glass */
.branch-card {
  position: relative;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  box-shadow: 
    0 8px 32px rgba(128, 128, 128, 0.25), 
    0 0 0 1px rgba(255,255,255,0.15) inset,
    0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  cursor: pointer;
}

/* Animated gradient border */
.branch-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    rgba(255,255,255,0.6) 0%, 
    transparent 25%, 
    transparent 75%, 
    rgba(255,255,255,0.6) 100%);
  border-radius: 12px;
  z-index: -1;
  animation: branch-border-rotate 4s linear infinite;
  pointer-events: none;
}

@keyframes branch-border-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Shine effect on hover */
.branch-card{
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* 1) HALO (geniş, yumuşak parıltı) */
.branch-card::before{
  content:"";
  position:absolute; inset:-20% -40%;
  pointer-events:none; z-index:3;
  transform: translateX(-120%) rotate(8deg) skewX(-10deg);
  background: radial-gradient(ellipse at center,
              rgba(255,255,255,0.22) 0%,
              rgba(255,255,255,0.12) 30%,
              rgba(255,255,255,0.00) 70%);
  filter: blur(18px);
  mix-blend-mode: screen;         /* koyu arkaplanda çok hoş */
  opacity: 0;
  will-change: transform, opacity;
}

/* 2) CORE (ince, parlak çizgi) */
.branch-card::after{
  content:"";
  position:absolute; inset:-10% -30%;
  pointer-events:none; z-index:4;
  transform: translateX(-120%) rotate(8deg) skewX(-10deg);
  background: linear-gradient(90deg,
              rgba(255,255,255,0) 0%,
              rgba(255,255,255,0.75) 50%,
              rgba(255,255,255,0) 100%);
  filter: blur(6px);
  mix-blend-mode: screen;
  opacity: 0;
  will-change: transform, opacity;
}

/* Hover tetikleme: doğal bir süpürme animasyonu */
.branch-card:hover::before,
.branch-card:hover::after{
  animation: shineSweep 1100ms cubic-bezier(.22,.61,.36,1) forwards;
}

/* İstersen otomatik (tekrar etmeyen) ilk girişte de çalışsın:
.branch-card::before,
.branch-card::after{
  animation: shineSweep 1100ms cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay: .2s;
}
*/

/* Hareketi ve opaklık eğrisini birlikte verelim */
@keyframes shineSweep{
  0%   { transform: translateX(-120%) rotate(8deg) skewX(-10deg); opacity: 0; }
  10%  { opacity: .35; }
  45%  { opacity: .9;  }
  70%  { opacity: .35; }
  100% { transform: translateX(120%)  rotate(8deg) skewX(-10deg); opacity: 0; }
}

/* Hareket hassasiyeti olan kullanıcılar için kapat */
@media (prefers-reduced-motion: reduce){
  .branch-card::before,
  .branch-card::after{
    animation: none !important;
    opacity: 0 !important;
  }
}


.branch-card:hover {
  transform: translateY(-12px) rotateX(8deg) scale(1.02);
  /* Enhanced Fake Glass on Hover */
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255,255,255,0.3);
  box-shadow: 
    0 20px 60px rgba(128, 128, 128, 0.2), 
    0 0 0 2px rgba(255,255,255,0.2) inset,
    0 8px 24px rgba(0, 0, 0, 0.1);
}

.branch-card.hidden {
  opacity: 0;
  transform: translateY(40px) rotateX(15deg);
}

.branch-card.show {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
  animation: branch-float-entrance 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards,
             branch-gentle-float 8s ease-in-out 0.8s infinite;
}

@keyframes branch-float-entrance {
  0% { 
    opacity: 0;
    transform: translateY(60px) rotateX(25deg) scale(0.8);
  }
  100% { 
    opacity: 1;
    transform: translateY(0) rotateX(0deg) scale(1);
  }
}

@keyframes branch-gentle-float {
  0%, 100% { transform: translateY(0) rotateX(0deg); }
  25% { transform: translateY(-5px) rotateX(2deg); }
  50% { transform: translateY(-8px) rotateX(0deg); }
  75% { transform: translateY(-3px) rotateX(-2deg); }
}

/* Pulsing glow for branch cards */
.branch-card {
  animation: branch-glow-pulse 6s ease-in-out infinite;
}


.branch-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  position: relative;
  z-index: 15002;
}

.branch-card:hover .branch-image {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.1);
}

/* Branch kartı arkasında bulanacak görsel/gradient olmalı */
.branch-card{
  position: relative;
  overflow: hidden; /* taşmaları kes */
  isolation: isolate; /* blend/blur güvenli */
}

/* Glassmorphism katmanı */
.branch-info{
  padding: 28px 32px 36px 32px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative; z-index: 2;

  /* GLASS */
  background: linear-gradient(180deg,
              rgba(255,255,255,0.14) 0%,
              rgba(255,255,255,0.08) 100%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid var(--glass-brd);
  box-shadow: var(--glass-shadow);
  border-radius: 16px;          /* yumuşak köşe */
}

/* Üstte hafif parlama çizgisi */
.branch-info::before{
  content:"";
  position:absolute; inset:0;
  border-radius: inherit;
  background: linear-gradient(180deg,
              rgba(255,255,255,0.35) 0%,
              rgba(255,255,255,0.00) 35%);
  pointer-events:none;
  mix-blend-mode: screen; /* daha camımsı parıltı */
  opacity:.6;
}

/* Hover’da camı biraz “parlat” */
.branch-card:hover .branch-info{
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border-color: rgba(255,255,255,0.32);
}

/* Metin ve vurgu renkleri cam üzerinde net kalsın */
.branch-name{ color:#fff; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.branch-address{ color:#f2f2f2; text-shadow: 0 1px 8px rgba(0,0,0,0.35); }

/* Transparanlık sevmeyenler için erişilebilirlik fallback’i */
@media (prefers-reduced-transparency: reduce){
  .branch-info{
    background: rgba(32,32,32,0.85);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}


.branch-map-btn {
  align-self: flex-start;
  background: #fff;
  color: #000;
  font-weight: 800;
  padding: 10px 34px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
}

.branch-map-btn:hover {
  background: #222;
  color: #fff;
}

.pricing-cta,
.branch-map-btn {
  background: #ffffff !important;
  color: #000000 !important;
}
.pricing-cta:hover,
.branch-map-btn:hover {
  background: #e0e0e0 !important;
}

/* Enhanced responsive design */
@media (max-width: 900px) {
  .branch-card {
    width: 95vw;
    max-width: 95vw;
    margin: 0 auto;
  }
  .branch-image {
    height: 200px;
  }
  .branch-name {
    font-size: 1.6rem;
  }
  .branch-address {
    font-size: 1rem;
  }
  .branch-map-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}

/* Features cards ordering */
.features-cards {
  display: flex;
}
.features-card-left { order: 1; }
.features-card-center { order: 2; }
.features-card-right { order: 3; }

/* Features cards backdrop blur override */
.features-card {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}


/* Contact card blur */
.contact-card {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.1);
}

/* Shooting stars overlay */
.shooting-stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 2500;
  overflow: hidden;
}
.shooting-star {
  position: absolute;
  background: transparent;
  box-shadow: 0 0 6px 2px rgba(255,255,255,0.9);
  border-radius: 50%;
  animation: shoot var(--dur,1.2s) linear forwards;
  opacity: 0;
}
@keyframes shoot {
  0% { opacity: 1; transform: translate(0,0) scale(1); }
  80% { opacity: .8; }
  100% { opacity: 0; transform: translate(var(--tx,300px), var(--ty,-300px)) scale(0.3); }
}
.page-stars {
  z-index: 3000;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.page-stars .sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  filter: blur(1.5px);
  animation: sparkle 4.5s infinite ease-in-out;
}
/* positions */
.ps1 { top: 8%;  left: 12%; animation-delay: 0s; }
.ps2 { top: 24%; left: 48%; animation-delay: .7s; }
.ps3 { top: 62%; left: 78%; animation-delay: 1.4s; }
.ps4 { top: 32%; left: 82%; animation-delay: 2.1s; }
.ps5 { top: 70%; left: 22%; animation-delay: 2.8s; }
.ps6 { top: 18%; left: 72%; animation-delay: 3.5s; }
.ps7 { top: 55%; left: 38%; animation-delay: 4.2s; }
.ps8 { top: 45%; left: 15%; animation-delay: 1.9s; }
.ps9 { top: 80%; left: 50%; animation-delay: 3.0s; }
.ps10{ top: 5%;  left: 60%; animation-delay: .3s; }
.ps11{ top: 12%; left: 30%; animation-delay: .6s; }
.ps12{ top: 28%; left: 70%; animation-delay: .9s; }
.ps13{ top: 40%; left: 20%; animation-delay: 1.2s; }
.ps14{ top: 52%; left: 60%; animation-delay: 1.5s; }
.ps15{ top: 65%; left: 35%; animation-delay: 1.8s; }
.ps16{ top: 75%; left: 80%; animation-delay: 2.1s; }
.ps17{ top: 85%; left: 25%; animation-delay: 2.4s; }
.ps18{ top: 90%; left: 50%; animation-delay: 2.7s; }
.ps19{ top: 95%; left: 70%; animation-delay: 3.0s; }
.ps20{ top: 98%; left: 10%; animation-delay: 3.3s; }

/* ================= Buffwear Red Strips ================= */
.buffwear-strips-container {
  position: relative;
  width: 100vw;
  height: 120px;
  margin-bottom: 60px;
  z-index: 10;
  pointer-events: none;
}
.buffwear-strip {
  position: absolute;
  left: 0;
  width: 100%;
  height: 48px;
  background: url('../images/kirmizi-serit-01.png') repeat-x;
  background-size: auto 100%;
  opacity: 1;
  pointer-events: none;
}
.buffwear-strip.one {
  width: 140vw;
  left: -20vw;
  top: 120px;
  transform: rotate(-7deg);
  background: none; /* remove direct background to avoid flicker */
  animation: none !important; /* disable background-position animation */
  z-index: 107; /* lowered to allow second strip above */
  will-change: transform;
}

/* Use ::before for seamless looping slide like .two */
.buffwear-strip.one::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0; /* start from 0 for smoother infinite loop */
  width: 200%; /* seamless loop */
  height: 100%;
  background: url('../images/kirmizi-serit-01.png') repeat-x;
  background-size: auto 100%;
  animation: strip-slide-alt 18s linear infinite;
}
.buffwear-strip.two {
  width: 140vw;
  left: -20vw;
  top: 100px;
  height: 48px;
  transform: rotate(2deg);
  animation: none !important; /* disable old background animation */
  background: none; /* remove static background to rely only on pseudo-element */
  z-index: 110; /* raise to appear above first strip */
  will-change: transform;
}
.buffwear-strip.two::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0; /* start from 0 for smoother infinite loop */
  width: 200%; /* seamless loop */
  height: 100%;
  background: url('../images/kirmizi-serit-01.png') repeat-x;
  background-size: auto 100%;
  animation: strip-slide-alt 22.5s linear infinite;
}
@keyframes strip-slide-alt {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes strip-move-one {
  0% { background-position-x: 0; }
  100% { background-position-x: -1024px; }
}
@keyframes strip-move-two {
  0% { background-position-x: 0; }
  100% { background-position-x: -1024px; }
}

/* Red tape styles matching the image angles */
.tape-top {
  position: absolute;
  top: 20px;
  left: -100px;
  width: 120%;
  transform: rotate(-6deg);
  z-index: 10;
}

.tape-bottom {
  position: absolute;
  top: 120px;
  left: -100px;
  width: 120%;
  transform: rotate(6deg);
  z-index: 10;
}

/* Mobile strip optimizations */
@media (max-width: 768px) {
  .buffwear-strip {
    height: 25px; /* Büyütüldü */
  }
  .buffwear-strip.two {
    height: 25px; /* Büyütüldü */
  }
  
  
  .buffwear-strips-container {
    height: 20px; /* Container da büyütüldü */
    margin-bottom: 90px;
  }
}

@media (max-width: 480px) {
  .buffwear-strip {
    height: 40px; /* Daha da büyütüldü */
  }
  
  .buffwear-strips-container {
    height: 40px;
    margin-bottom: 40px;
  }
}

/* Mobil uyumluluk düzeltmeleri */

@media (max-width: 600px) {
  .hero__title {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .hero__subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }

  .navbar__logo img {
    width: 100px;
  }

  .navbar__links {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .features-cards {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .features-card {
    width: 90vw;
    max-width: 95vw;
  }

  .uyelik-plans {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .uyelik-plan {
    max-width: 90vw;
  }

  .buffwear-slider {
    aspect-ratio: 16/12;
  }

  .contact-card-inner {
    padding: 32px 20px;
  }

  .contact-title {
    font-size: 1.5rem;
  }

  .contact-btn {
    padding: 10px 32px;
  }

  .google-review-title {
    font-size: 1.6rem;
  }

  .google-review-iframe {
    height: 280px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-column h3 {
    font-size: 1.2rem;
  }

  .footer-column p,
  .footer-column a {
    font-size: 0.9rem;
  }
}

/* ================= Preloader Overlay ================= */
#preloader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #1a1a1a 0%, #000 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5000;
  transition: opacity 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

.preloader-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-circle {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  /* Ultra Fast Fake Glass - No Blur */
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 8px 32px rgba(128, 128, 128, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* İsteğe bağlı: tonları değiştirilebilir değişkenler */
:root{
  --glass-gray-bg1: rgba(24,28,34,0.42);  /* üst ton */
  --glass-gray-bg2: rgba(24,28,34,0.28);  /* alt ton */
  --glass-gray-brd: rgba(255,255,255,0.18);
  --glass-gray-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

/* Kart konteyneri taşmaları kessin, etkiler izole olsun */
.features-card-inner{
  position: relative;
  isolation: isolate;
  overflow: hidden;

  /* GLASSMORPHISM */
  background: linear-gradient(180deg,
              var(--glass-gray-bg1) 0%,
              var(--glass-gray-bg2) 100%);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
  backdrop-filter: blur(14px) saturate(135%);
  border: 1px solid var(--glass-gray-brd);
  box-shadow: var(--glass-gray-shadow);
  border-radius: 16px;

  /* iç boşluk & tipografi */
  padding: 20px 24px;
  color: #eef1f5;
  line-height: 1.55;
}

/* Cam üstü ince highlight çizgisi */
.features-card-inner::before{
  content:"";
  position:absolute; inset:0;
  border-radius: inherit;
  pointer-events:none;
  background: linear-gradient(180deg,
              rgba(255,255,255,0.28) 0%,
              rgba(255,255,255,0.00) 32%);
  mix-blend-mode: screen;
  opacity:.55;
}

/* Başlık kalınları daha okunaklı */
.features-card-inner b{
  color:#ffffff;
  text-shadow: 0 1px 10px rgba(0,0,0,0.35);
}

/* Hover’da hafif parlatma */
.features-card-inner:hover{
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  border-color: rgba(255,255,255,0.26);
}

/* Şeffaflık sevmeyen kullanıcılar için fallback */
@media (prefers-reduced-transparency: reduce){
  .features-card-inner{
    background: #2b2f36;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

.preloader-circle::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(45deg, 
    rgba(255, 255, 255, 0.3) 0%, 
    transparent 30%, 
    transparent 70%, 
    rgba(255, 255, 255, 0.3) 100%);
  animation: preloader-shimmer 2s linear infinite;
  z-index: 15002;
}

.preloader-progress {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(255, 255, 255, 0.8) 0deg,
    rgba(255, 255, 255, 0.4) 90deg,
    transparent 180deg,
    transparent 360deg
  );
  animation: preloader-spin 1.5s linear infinite;
  z-index: 2;
}

.preloader-logo {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
}

.preloader-logo img {
  width: 70%;
  height: auto;
  object-fit: contain;
  filter: brightness(1.1) drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
  animation: preloader-pulse 2s ease-in-out infinite;
}

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

@keyframes preloader-shimmer {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes preloader-pulse {
  0%, 100% { 
    transform: scale(1);
    filter: brightness(1.1) drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
  }
  50% { 
    transform: scale(1.05);
    filter: brightness(1.3) drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
  }
}

/* Responsive preloader */
@media (max-width: 600px) {
  .preloader-circle {
    width: 120px;
    height: 120px;
  }
  
  .preloader-logo img {
    width: 75%;
  }
}

/* ================= Program Video Section & Modal ================= */

/* Wrapper positions the whole block centrally */
.program-video-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

/* Max width scales with viewport but never exceeds 960px */
.program-video-outer {
  width: clamp(280px, 80vw, 960px);
}

/* Keeps a perfect 16:9 area while accepting ANY border-radius shape */
.program-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* modern browsers */
  background: #000 url('../images/BuffGymXBahadirElmas-thumb.jpg') center/cover no-repeat;
  border-radius: 16px;
  overflow: hidden;
}

/* Kapak thumbnail tam dolu */
.program-video-thumb{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  pointer-events:none;
  border-radius:inherit;
  z-index:1;
}

/* Play button dead-center, scale up on hover */
.program-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  padding: 0;
  transition: filter 0.2s;
}
.program-video-play:hover {
  filter: brightness(1.2) drop-shadow(0 0 8px #fff8);
}
.program-video-play svg { pointer-events: none; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4)); }

/* Fallback for browsers without aspect-ratio */
@supports not (aspect-ratio: 16 / 9) {
  .program-video-frame::before{
    content:"";
    display:block;
    padding-top:56.25%;
  }
  .program-video-frame > *{
    position:absolute;
    inset:0;
  }
}

/* Ensure play button always visible and topmost */
.program-video-play{
  z-index:3;
  opacity:1;
}

/* ---------- FULL-SCREEN MODAL ---------- */
.video-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 20000;
}
.video-modal.show { opacity: 1; visibility: visible; }

.video-modal-content { position: relative; max-width: 90vw; max-height: 90vh; }

.video-modal-content video { width: 100%; height: auto; border-radius: 12px; display: block; }

.video-close {
  position: absolute;
  top: -32px;
  right: -32px;
  font-size: 48px;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
}
@media (max-width:600px){ .video-close{ font-size:36px; top:-20px; right:-20px; } }

/* Features Cards - Black Background */
.features-card {
  background: #000000 !important;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 20px;
  margin: 10px;
}

.features-card-inner {
  background: #000000 !important;
  color: #ffffff;
  padding: 20px;
  border-radius: 8px;
}

.features-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
}

/* Hero Tagline */
.hero__tagline, .pricing-tagline{
  margin-bottom:10px;
  text-align:center;
  margin-top:20px;
  font-size:clamp(1rem,3vw,1.6rem);
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#ffffff;
  position:relative;
  z-index:2;
}
.hero__tagline::before, .pricing-tagline::before{
  content:"";
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:140%; height:140%;
  background:radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 60%);
  filter:blur(30px);
  pointer-events:none;
  z-index:-1;
}

/* ===== Layer & Icon Overrides ===== */
.hero__content,
.hero__logo-wrapper,
.hero__logo{
  z-index: 2 !important;
}

@media (max-width: 768px){
  .hamburger{
    width:24px;
    height:18px;
  }
  .hamburger span{
    height:2px;
  }
  .hamburger span:nth-child(1){
    top:0;
  }
  .hamburger span:nth-child(2){
    top:8px;
  }
  .hamburger span:nth-child(3){
    top:16px;
  }
}

/* Contact Section Styles */
.contact-section {
  padding: 80px 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/Background-v2.png') center/cover;
  opacity: 0.1;
  z-index: 0;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,0,0,0.3);
  transform: translateY(-2px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff0000, #cc0000);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.contact-info-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.contact-info-text p {
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  font-size: 1rem;
}

.contact-info-text a {
  color: #ff4444;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-text a:hover {
  color: #ff0000;
}

.contact-form-container {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(15px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: #ffffff;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: #ffffff;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff0000;
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(255,0,0,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.5);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: #1a1a1a;
  color: #ffffff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit-btn {
  background: linear-gradient(135deg, #ff0000, #cc0000);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  min-height: 56px;
}

.contact-submit-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #cc0000, #990000);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,0,0,0.3);
}

.contact-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-loading {
  display: none;
  align-items: center;
  gap: 10px;
}

.spinner {
  animation: spin 1s linear infinite;
}

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

.contact-message {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
}

.contact-message.success {
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #22c55e;
}

.contact-message.error {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #ef4444;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-container {
    padding: 0 16px;
  }
  
  .contact-title {
    font-size: 2.5rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form-container {
    padding: 30px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .contact-info {
    gap: 20px;
  }
  
  .contact-info-item {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 2rem;
  }
  
  .contact-subtitle {
    font-size: 1rem;
  }
  
  .contact-form-container {
    padding: 20px 16px;
  }
  
  .contact-info-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .contact-icon {
    align-self: center;
  }
}

/* AltaySoft Highlight Styles */
.altaysoft-highlight {
  color: #ffffff !important;
  font-weight: 600;
  font-size: 1.1em;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 2px solid #4a90e2;
  padding-bottom: 1px;
}

.altaysoft-highlight:hover {
  color: #4a90e2 !important;
  text-decoration: none;
  border-bottom-color: #ffffff;
}

.credit-link:not(.altaysoft-highlight) {
  color: #cccccc;
  font-weight: 400;
  transition: color 0.3s ease;
}

.credit-link:not(.altaysoft-highlight):hover {
  color: #ffffff;
}

/* Kategori başlıkları */
.category-header {
  width: 100%;
  text-align: center;
  margin: 40px 0 20px 0;
  padding: 0;
}

.category-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  padding: 15px 30px;
  background: linear-gradient(135deg, rgba(230, 230, 230, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}


/* INSTAGRAM SECTION STYLES */
.instagram-section {
    position: relative;
    padding: 80px 20px;
    background-color: #000;
    overflow: hidden;
}

/* Arkadaki hafif turuncu ışıltı efekti */
.instagram-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.instagram-title-group {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.instagram-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.instagram-title-underline {
    width: 60px;
    height: 4px;
    background: #ff6b35; /* Sitenizin turuncu rengi */
    margin: 0 auto 20px;
    border-radius: 2px;
}

.instagram-subtitle {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 300;
}

/* Takip Et Butonu */
.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.instagram-follow-btn:hover {
    background: #ff6b35;
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.instagram-feed-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 300px; /* Widget yüklenene kadar alan tutması için */
}

.instagram-placeholder {
    text-align: center;
    color: #555;
    padding: 40px;
    border: 1px dashed #333;
    border-radius: 12px;
}

/* Mobilde başlık ayarı */
@media (max-width: 768px) {
    .instagram-title {
        font-size: 1.8rem;
    }
}