/* Ana Sayfa Stilleri */

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Slider JavaScript için gerekli stiller */
.hero-slider__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.hero-slider__slide.active {
  opacity: 1;
}

.hero-slider__slide:not(.active) {
  pointer-events: none;
}

.hero-slider__container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider__slide.active {
  opacity: 1;
}

.hero-slider__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7) 0%, rgba(255, 0, 0, 0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider__content {
  text-align: center;
  color: rgba(255, 255, 255, 1);
  max-width: 800px;
  padding: 2rem;
}

.hero-slider__title {
  font-size: 4rem;
  font-weight: 900;
  margin: 0 0 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: 4px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 1) 0%, rgba(255, 0, 0, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

.hero-slider__subtitle {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2rem 0;
  line-height: 1.6;
}

.hero-slider__actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Navigation Dots */
.hero-slider__dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.hero-slider__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slider__dot.active,
.hero-slider__dot:hover {
  background: rgba(255, 0, 0, 1);
  transform: scale(1.2);
}

/* Navigation Arrows */
.hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: rgba(255, 255, 255, 1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider__arrow:hover {
  background: rgba(255, 0, 0, 1);
  transform: translateY(-50%) scale(1.1);
}

.hero-slider__arrow--prev {
  left: 2rem;
}

.hero-slider__arrow--next {
  right: 2rem;
}

.hero-slider__arrow svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* Infinite Strip */
.infinite-strip {
  background: linear-gradient(45deg, rgba(255, 0, 0, 1) 0%, rgba(175, 4, 4, 1) 100%);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
}

.infinite-strip__container {
  width: 100%;
  overflow: hidden;
}

.infinite-strip__track {
  display: flex;
  white-space: nowrap;
  animation: scroll 20s linear infinite;
}

.infinite-strip__track .service-text {
  color: rgba(255, 255, 255, 1);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: 4rem;
  flex-shrink: 0;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(25, 25, 25, 0.9) 0%, rgba(35, 35, 35, 0.9) 100%);
  border-radius: 30px;
  border: 2px solid rgba(65, 65, 65, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.hero-section__title {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 1);
  margin: 0 0 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: 4px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 1) 0%, rgba(255, 0, 0, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleGlow 3s ease-in-out infinite alternate;
  position: relative;
  z-index: 2;
}

.hero-section__subtitle {
  font-size: 1.4rem;
  color: rgba(175, 175, 175, 1);
  margin: 0 0 3rem 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.hero-section__actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.hero-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 2.5rem;
  border-radius: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-btn--primary {
  background: linear-gradient(45deg, rgba(255, 0, 0, 1) 0%, rgba(175, 4, 4, 1) 100%);
  color: rgba(255, 255, 255, 1);
  border: 2px solid transparent;
}

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

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

.hero-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 0, 0, 0.4);
}

.hero-btn--secondary {
  background: transparent;
  color: rgba(255, 255, 255, 1);
  border: 2px solid rgba(255, 0, 0, 0.5);
}

.hero-btn--secondary:hover {
  background: rgba(255, 0, 0, 0.1);
  border-color: rgba(255, 0, 0, 1);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 0, 0, 0.2);
}

.hero-btn__arrow {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.3s ease;
}

.hero-btn:hover .hero-btn__arrow {
  transform: translateX(5px);
}

/* Stats Section */
.stats-section {
  margin: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  text-align: center;
  background: linear-gradient(145deg, rgba(45, 45, 45, 1) 0%, rgba(35, 35, 35, 1) 100%);
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  border: 2px solid rgba(65, 65, 65, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 0, 0, 1), rgba(175, 4, 4, 1));
  transition: left 0.5s ease;
}

.stat-card:hover::before {
  left: 0;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 0, 0, 0.5);
  box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
}

.stat-card__number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 0, 0, 1);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.stat-card__label {
  font-size: 1.1rem;
  color: rgba(200, 200, 200, 1);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-header__subtitle {
  font-size: 1.2rem;
  color: rgba(175, 175, 175, 1);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Home Services */
.home-services {
  margin: 6rem 0;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.home-service-card {
  background: linear-gradient(145deg, rgba(45, 45, 45, 1) 0%, rgba(35, 35, 35, 1) 100%);
  border-radius: 25px;
  border: 2px solid rgba(65, 65, 65, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.home-service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 0, 0, 0.8);
  box-shadow: 0 30px 60px rgba(255, 0, 0, 0.2);
}

.home-service-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.home-service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.home-service-card:hover .home-service-card__image img {
  transform: scale(1.1);
}

.home-service-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7) 0%, rgba(255, 0, 0, 0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.home-service-card:hover .home-service-card__overlay {
  opacity: 1;
}

.home-service-card__link {
  text-decoration: none;
  background: rgba(255, 0, 0, 1);
  color: rgba(255, 255, 255, 1);
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  transform: translateY(20px);
}

.home-service-card:hover .home-service-card__link {
  transform: translateY(0);
}

.home-service-card__link:hover {
  background: rgba(175, 4, 4, 1);
  transform: scale(1.05);
}

.home-service-card__link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.home-service-card__content {
  padding: 2rem;
}

.home-service-card__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.home-service-card__text {
  color: rgba(175, 175, 175, 1);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.home-service-card__features {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.feature-tag {
  background: rgba(25, 25, 25, 0.8);
  color: rgba(255, 0, 0, 1);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(255, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background: rgba(255, 0, 0, 0.1);
  border-color: rgba(255, 0, 0, 0.8);
}

/* Stüdyo Section */
.studio-section {
  margin: 6rem 0;
}

.studio-content {
  margin-top: 4rem;
}

/* Stüdyo Features */
.studio-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.studio-feature-card {
  background: linear-gradient(145deg, rgba(45, 45, 45, 1) 0%, rgba(35, 35, 35, 1) 100%);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 2px solid rgba(65, 65, 65, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.studio-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 0, 0, 1), rgba(175, 4, 4, 1));
  transition: left 0.5s ease;
}

.studio-feature-card:hover::before {
  left: 0;
}

.studio-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 0, 0, 0.5);
  box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
}

.studio-feature-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem auto;
  background: linear-gradient(45deg, rgba(255, 0, 0, 1) 0%, rgba(175, 4, 4, 1) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.studio-feature-card:hover .studio-feature-card__icon {
  transform: scale(1.1) rotate(5deg);
}

.studio-feature-card__icon svg {
  width: 30px;
  height: 30px;
  stroke: rgba(255, 255, 255, 1);
  stroke-width: 2;
  fill: none;
}

.studio-feature-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.studio-feature-card__text {
  color: rgba(175, 175, 175, 1);
  line-height: 1.6;
  margin: 0;
}

/* Stüdyo Gallery - Düzenli Estetik Layout */
.studio-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 1.5rem;
  margin-bottom: 4rem;
  position: relative;
}

.studio-gallery-main {
  /* Ana kart artık kullanılmıyor */
  display: none;
}

.studio-gallery-side {
  /* Side kart artık kullanılmıyor */
  display: none;
}

.studio-gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(65, 65, 65, 0.3);
  transition: all 0.4s ease;
  height: 100%;
}

/* Düzenli Estetik Layout için Kart Pozisyonları */
.studio-gallery-item--large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  z-index: 2;
}

.studio-gallery-item--medium {
  grid-column: 3 / 5;
  grid-row: 1 / 2;
  z-index: 1;
}

.studio-gallery-item--small:nth-of-type(3) {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
  z-index: 1;
}

.studio-gallery-item--small:nth-of-type(4) {
  grid-column: 4 / 5;
  grid-row: 2 / 3;
  z-index: 1;
}

.studio-gallery-item:hover {
  border-color: rgba(255, 0, 0, 0.8);
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
}

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

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

.studio-gallery-item__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 2.5rem 2rem 2rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.studio-gallery-item:hover .studio-gallery-item__overlay {
  transform: translateY(0);
}

.studio-gallery-item__content h3 {
  color: rgba(255, 255, 255, 1);
  font-size: 1.5rem;
  margin: 0 0 0.5rem 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.studio-gallery-item__content h4 {
  color: rgba(255, 255, 255, 1);
  font-size: 1.2rem;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.studio-gallery-item__content p {
  color: rgba(200, 200, 200, 1);
  margin: 0;
  line-height: 1.5;
}

/* Stüdyo CTA */
.studio-cta {
  background: linear-gradient(135deg, rgba(25, 25, 25, 0.9) 0%, rgba(35, 35, 35, 0.9) 100%);
  border-radius: 25px;
  padding: 3rem;
  text-align: center;
  border: 2px solid rgba(65, 65, 65, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

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

.studio-cta:hover::before {
  left: 100%;
}

.studio-cta__title {
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.studio-cta__subtitle {
  font-size: 1.1rem;
  color: rgba(175, 175, 175, 1);
  margin: 0 0 2rem 0;
  line-height: 1.6;
}

.studio-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(45deg, rgba(255, 0, 0, 1) 0%, rgba(175, 4, 4, 1) 100%);
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  padding: 1.2rem 2.5rem;
  border-radius: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.studio-cta__btn:hover::before {
  left: 100%;
}

.studio-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 0, 0, 0.4);
}

.studio-cta__btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.3s ease;
}

.studio-cta__btn:hover svg {
  transform: translateX(5px);
}

/* CTA Section */
.cta-section {
  margin: 6rem 0;
  background: linear-gradient(135deg, rgba(25, 25, 25, 0.9) 0%, rgba(35, 35, 35, 0.9) 100%);
  border-radius: 30px;
  padding: 4rem 3rem;
  text-align: center;
  border: 2px solid rgba(65, 65, 65, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

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

.cta-section:hover::before {
  left: 100%;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  margin: 0 0 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: rgba(175, 175, 175, 1);
  margin: 0 0 3rem 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 2.5rem;
  border-radius: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn--primary {
  background: linear-gradient(45deg, rgba(255, 0, 0, 1) 0%, rgba(175, 4, 4, 1) 100%);
  color: rgba(255, 255, 255, 1);
  border: 2px solid transparent;
}

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

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

.cta-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 0, 0, 0.4);
}

.cta-btn--outline {
  background: transparent;
  color: rgba(255, 255, 255, 1);
  border: 2px solid rgba(255, 0, 0, 0.5);
}

.cta-btn--outline:hover {
  background: rgba(255, 0, 0, 0.1);
  border-color: rgba(255, 0, 0, 1);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 0, 0, 0.2);
}

.cta-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.3s ease;
}

.cta-btn:hover svg {
  transform: translateX(5px);
}

/* Animasyonlar */
@keyframes titleGlow {
  0% { filter: brightness(1); }
  100% { filter: brightness(1.2); }
}

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

/* Responsive Tasarım */
@media (max-width: 1024px) {
  .hero-slider {
    height: 80vh;
  }
  
  .hero-slider__title {
    font-size: 3.5rem;
  }
  
  .hero-slider__arrow {
    width: 45px;
    height: 45px;
  }
  
  .hero-slider__arrow--prev {
    left: 1.5rem;
  }
  
  .hero-slider__arrow--next {
    right: 1.5rem;
  }
  
  .studio-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .studio-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 220px);
    gap: 1.5rem;
  }
  
  .studio-gallery-item--large {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
  
  .studio-gallery-item--medium {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  
  .studio-gallery-item--small:nth-of-type(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
  
  .studio-gallery-item--small:nth-of-type(4) {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 70vh;
  }
  
  .hero-slider__title {
    font-size: 3rem;
  }
  
  .hero-slider__subtitle {
    font-size: 1.2rem;
  }
  
  .hero-slider__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-slider__arrow {
    width: 40px;
    height: 40px;
  }
  
  .hero-slider__arrow--prev {
    left: 1rem;
  }
  
  .hero-slider__arrow--next {
    right: 1rem;
  }
  
  .hero-slider__arrow svg {
    width: 20px;
    height: 20px;
  }
  
  .infinite-strip__track .service-text {
    font-size: 1.3rem;
    margin-right: 3rem;
  }
  
  .studio-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .studio-feature-card {
    padding: 2rem 1.5rem;
  }
  
  .studio-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 220px);
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .studio-gallery-item--large,
  .studio-gallery-item--medium,
  .studio-gallery-item--small:nth-of-type(3),
  .studio-gallery-item--small:nth-of-type(4) {
    grid-column: 1;
    grid-row: auto;
  }
  
  .studio-cta {
    padding: 2.5rem 2rem;
  }
  
  .studio-cta__title {
    font-size: 1.8rem;
  }
  
  .hero-section {
    padding: 4rem 0;
  }
  
  .hero-section__title {
    font-size: 3rem;
  }
  
  .hero-section__subtitle {
    font-size: 1.2rem;
  }
  
  .hero-section__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .home-services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 250px);
  }
  
  .cta-section {
    padding: 3rem 2rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 60vh;
  }
  
  .hero-slider__title {
    font-size: 2.2rem;
  }
  
  .hero-slider__subtitle {
    font-size: 1rem;
  }
  
  .hero-slider__content {
    padding: 1rem;
  }
  
  .hero-slider__arrow {
    width: 35px;
    height: 35px;
  }
  
  .hero-slider__arrow--prev {
    left: 0.5rem;
  }
  
  .hero-slider__arrow--next {
    right: 0.5rem;
  }
  
  .hero-slider__arrow svg {
    width: 18px;
    height: 18px;
  }
  
  .hero-slider__dots {
    bottom: 1rem;
  }
  
  .hero-slider__dot {
    width: 10px;
    height: 10px;
  }
  
  .infinite-strip__track .service-text {
    font-size: 1.1rem;
    margin-right: 2rem;
  }
  
  .studio-features {
    margin-bottom: 2.5rem;
  }
  
  .studio-feature-card {
    padding: 1.5rem 1rem;
  }
  
  .studio-feature-card__icon {
    width: 50px;
    height: 50px;
  }
  
  .studio-feature-card__icon svg {
    width: 25px;
    height: 25px;
  }
  
  .studio-feature-card__title {
    font-size: 1.1rem;
  }
  
  .studio-gallery {
    margin-bottom: 2.5rem;
  }
  
  .studio-gallery-main {
    height: 200px;
  }
  
  .studio-gallery-side .studio-gallery-item {
    height: 150px;
  }
  
  .studio-gallery-item__overlay {
    padding: 1.5rem 1rem 1rem;
  }
  
  .studio-gallery-item__content h3 {
    font-size: 1.2rem;
  }
  
  .studio-gallery-item__content h4 {
    font-size: 1rem;
  }
  
  .studio-cta {
    padding: 2rem 1.5rem;
  }
  
  .studio-cta__title {
    font-size: 1.5rem;
  }
  
  .studio-cta__subtitle {
    font-size: 1rem;
  }
  
  .studio-cta__btn {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }
  
  .hero-section {
    padding: 3rem 0;
  }
  
  .hero-section__title {
    font-size: 2.2rem;
  }
  
  .hero-section__subtitle {
    font-size: 1rem;
  }
  
  .hero-btn, .cta-btn {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-card {
    padding: 2rem 1rem;
  }
  
  .stat-card__number {
    font-size: 2.5rem;
  }
  
  .home-service-card__image {
    height: 180px;
  }
  
  .home-service-card__content {
    padding: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-rows: repeat(3, 200px);
  }
  
  .cta-section {
    padding: 2rem 1.5rem;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .cta-subtitle {
    font-size: 1rem;
  }
}

/* Reviews Section */
.reviews-section {
  padding: 4rem 0;
  margin: 4rem 0;
}

.reviews-slider {
  position: relative;
  margin: 3rem 0;
}

.reviews-slider__container {
  overflow: hidden;
  border-radius: 12px;
}

.reviews-slider__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.reviews-slider__track:active {
  cursor: grabbing;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 45vw; /* Ekran genişliğinin %45'i */
  max-width: 500px; /* Çok büyümesini engelle */
  flex-shrink: 0;
  pointer-events: auto;
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 0, 0, 0.8), rgba(175, 4, 4, 0.8));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.review-card:hover::before {
  opacity: 1;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 0, 0, 0.1);
  border-color: rgba(255, 0, 0, 0.2);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.review-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 0, 0, 0.3);
  flex-shrink: 0;
}

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

.review-card__info {
  flex: 1;
}

.review-card__name {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.review-card__rating {
  display: flex;
  gap: 0.2rem;
}

.star {
  font-size: 1.2rem;
  filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.5));
}

.review-card__text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-card__text::before {
  content: '"';
  color: rgba(255, 0, 0, 0.6);
  font-size: 2rem;
  font-weight: bold;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.review-card__date {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Responsive Reviews */
@media (max-width: 768px) {
  .reviews-section {
    padding: 3rem 0;
    margin: 2rem 0;
  }
  
  .review-card {
    width: 80vw; /* Mobil için daha geniş */
    min-width: 0;
    max-width: 100%;
    padding: 1.5rem;
    border-radius: 12px;
  }
  
  .review-card__header {
    gap: 0.8rem;
    margin-bottom: 1rem;
  }
  
  .review-card__avatar {
    width: 45px;
    height: 45px;
  }
  
  .review-card__name {
    font-size: 1rem;
  }
  
  .review-card__text {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .reviews-section {
    padding: 2rem 0;
    margin: 1.5rem 0;
  }
  
  .review-card {
    padding: 1.2rem;
  }
  
  .review-card__text::before {
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
  }
  
  .star {
    font-size: 1rem;
  }
}

/* Review Modal */
.review-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.review-modal.show {
  display: flex;
}

.review-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.review-modal__content {
  position: relative;
  background: rgba(17, 17, 17, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(50px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.review-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.review-modal__user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-modal__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 0, 0, 0.3);
  flex-shrink: 0;
}

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

.review-modal__name {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.review-modal__rating {
  display: flex;
  gap: 0.3rem;
}

.review-modal__rating .star {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
}

.review-modal__close {
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.review-modal__close:hover {
  background: rgba(255, 0, 0, 0.2);
  color: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.review-modal__close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.review-modal__body {
  padding: 1.5rem 2rem 2rem;
}

.review-modal__text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 1.1rem;
  margin: 0;
  white-space: pre-line;
}

/* Read More Link */
.read-more {
  color: rgba(255, 0, 0, 0.8);
  cursor: pointer;
  font-weight: 600;
  text-decoration: underline;
  margin-left: 0.5rem;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: rgba(255, 0, 0, 1);
}

/* Modal Responsive */
@media (max-width: 768px) {
  .review-modal {
    padding: 1rem;
  }
  
  .review-modal__content {
    max-height: 90vh;
    border-radius: 16px;
  }
  
  .review-modal__header {
    padding: 1.5rem 1.5rem 1rem;
  }
  
  .review-modal__body {
    padding: 1rem 1.5rem 1.5rem;
  }
  
  .review-modal__avatar {
    width: 50px;
    height: 50px;
  }
  
  .review-modal__name {
    font-size: 1.1rem;
  }
  
  .review-modal__text {
    font-size: 1rem;
  }
}