/* ============================================================================
   YORUMLAR & BAŞARI HİKAYELERİ CSS - MAHSUNALTUN PREFIX
   ============================================================================ */

/* Ana Bölüm */
.mahsunaltun-yorumlar-section {
  background: #000;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.mahsunaltun-yorumlar-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 70%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(255, 255, 255, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.mahsunaltun-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Section Title */
.mahsunaltun-section-title {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  animation: mahsunaltun-fadeInUp 0.8s ease forwards 0.2s;
}

.mahsunaltun-section-title h1 {
  font-size: 48px;
  font-weight: 300;
  color: #fff;
  font-style: italic;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.mahsunaltun-section-subtitle {
  font-size: 16px;
  color: #888;
  font-weight: 300;
  letter-spacing: 1px;
}

/* Stats Section */
.mahsunaltun-stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 80px;
  opacity: 0;
  animation: mahsunaltun-fadeInUp 0.8s ease forwards 0.4s;
}

.mahsunaltun-stat-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mahsunaltun-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #fff, #ccc);
  transform: translateX(-100%);
  transition: all 0.4s ease;
}

.mahsunaltun-stat-card:hover::before {
  transform: translateX(0);
}

.mahsunaltun-stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
}

.mahsunaltun-stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1;
}

.mahsunaltun-stat-label {
  font-size: 14px;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Reviews Grid */
.mahsunaltun-reviews-container {
  margin-bottom: 80px;
}

.mahsunaltun-reviews-header {
  text-align: center;
  margin-bottom: 50px;
  opacity: 0;
  animation: mahsunaltun-fadeInUp 0.8s ease forwards 0.6s;
}

.mahsunaltun-reviews-title {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.mahsunaltun-reviews-subtitle {
  font-size: 16px;
  color: #888;
}

.mahsunaltun-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.mahsunaltun-review-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  opacity: 0;
}

.mahsunaltun-review-card:nth-child(1) {
  animation: mahsunaltun-fadeInUp 0.8s ease forwards 0.8s;
}
.mahsunaltun-review-card:nth-child(2) {
  animation: mahsunaltun-fadeInUp 0.8s ease forwards 1s;
}
.mahsunaltun-review-card:nth-child(3) {
  animation: mahsunaltun-fadeInUp 0.8s ease forwards 1.2s;
}
.mahsunaltun-review-card:nth-child(4) {
  animation: mahsunaltun-fadeInUp 0.8s ease forwards 1.4s;
}
.mahsunaltun-review-card:nth-child(5) {
  animation: mahsunaltun-fadeInUp 0.8s ease forwards 1.6s;
}
.mahsunaltun-review-card:nth-child(6) {
  animation: mahsunaltun-fadeInUp 0.8s ease forwards 1.8s;
}

.mahsunaltun-review-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.mahsunaltun-review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.mahsunaltun-review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #ccc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}

.mahsunaltun-review-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.mahsunaltun-review-info .mahsunaltun-review-treatment {
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
}

.mahsunaltun-review-stars {
  display: flex;
  gap: 2px;
}

.mahsunaltun-review-stars i {
  color: #ffc107;
  font-size: 14px;
}

.mahsunaltun-review-text {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
  font-style: italic;
  position: relative;
  padding: 20px 0;
}

.mahsunaltun-review-text::before {
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 60px;
  color: rgba(255, 255, 255, 0.1);
  font-family: serif;
}

.mahsunaltun-review-date {
  font-size: 12px;
  color: #666;
  text-align: right;
  margin-top: 15px;
}

/* Success Stories */
.mahsunaltun-success-stories {
  margin-bottom: 60px;
}

.mahsunaltun-success-header {
  text-align: center;
  margin-bottom: 50px;
  opacity: 0;
  animation: mahsunaltun-fadeInUp 0.8s ease forwards 0.8s;
}

.mahsunaltun-success-title {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.mahsunaltun-success-subtitle {
  font-size: 16px;
  color: #888;
}

.mahsunaltun-success-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.mahsunaltun-success-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 25px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  opacity: 0;
  position: relative;
}

.mahsunaltun-success-card:nth-child(1) {
  animation: mahsunaltun-fadeInUp 0.8s ease forwards 1s;
}
.mahsunaltun-success-card:nth-child(2) {
  animation: mahsunaltun-fadeInUp 0.8s ease forwards 1.2s;
}
.mahsunaltun-success-card:nth-child(3) {
  animation: mahsunaltun-fadeInUp 0.8s ease forwards 1.4s;
}

.mahsunaltun-success-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
}

.mahsunaltun-success-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #ffc107, #e0a800);
}

.mahsunaltun-success-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 250px;
}

.mahsunaltun-success-before,
.mahsunaltun-success-after {
  position: relative;
  overflow: hidden;
}

.mahsunaltun-success-before img,
.mahsunaltun-success-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.mahsunaltun-success-card:hover img {
  transform: scale(1.05);
}

.mahsunaltun-success-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.mahsunaltun-success-before .mahsunaltun-success-label {
  background: rgba(255, 0, 0, 0.8);
}

.mahsunaltun-success-after .mahsunaltun-success-label {
  background: rgba(0, 255, 0, 0.8);
}

.mahsunaltun-success-content {
  padding: 25px;
}

.mahsunaltun-success-treatment {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.mahsunaltun-success-patient {
  font-size: 14px;
  color: #888;
  margin-bottom: 15px;
}

.mahsunaltun-success-description {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 15px;
}

.mahsunaltun-success-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  font-size: 12px;
}

.mahsunaltun-success-detail {
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
}

.mahsunaltun-success-detail strong {
  color: #fff;
  display: block;
  margin-bottom: 2px;
}

/* Video Testimonials */
.mahsunaltun-video-testimonials {
  text-align: center;
  opacity: 0;
  animation: mahsunaltun-fadeInUp 0.8s ease forwards 1.6s;
}

.mahsunaltun-video-title {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 40px;
}

.mahsunaltun-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.mahsunaltun-video-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mahsunaltun-video-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.mahsunaltun-video-thumbnail {
  position: relative;
  height: 200px;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mahsunaltun-video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mahsunaltun-video-play {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 24px;
  transition: all 0.3s ease;
}

.mahsunaltun-video-play:hover {
  transform: scale(1.1);
  background: #fff;
}

.mahsunaltun-video-info {
  padding: 20px;
  text-align: left;
}

.mahsunaltun-video-patient-name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.mahsunaltun-video-treatment-type {
  font-size: 13px;
  color: #888;
}

/* CTA Section */
.mahsunaltun-reviews-cta {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  animation: mahsunaltun-fadeInUp 0.8s ease forwards 1.8s;
}

.mahsunaltun-cta-title {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.mahsunaltun-cta-text {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 30px;
  line-height: 1.6;
}

.mahsunaltun-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
  margin: 0 10px 10px 0;
}

.mahsunaltun-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: #fff;
}

.mahsunaltun-btn-primary {
  background: linear-gradient(135deg, #ffc107, #e0a800);
  border-color: #ffc107;
  color: #000;
}

.mahsunaltun-btn-primary:hover {
  background: linear-gradient(135deg, #e0a800, #d39e00);
  color: #000;
}

/* Floating Elements */
.mahsunaltun-floating-quote {
  position: absolute;
  opacity: 0.05;
  animation: mahsunaltun-float 8s ease-in-out infinite;
  pointer-events: none;
  color: #fff;
}

.mahsunaltun-floating-quote:nth-child(1) {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}

.mahsunaltun-floating-quote:nth-child(2) {
  top: 60%;
  right: 10%;
  animation-delay: 3s;
}

.mahsunaltun-floating-quote:nth-child(3) {
  bottom: 20%;
  left: 15%;
  animation-delay: 6s;
}

/* Animations */
@keyframes mahsunaltun-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mahsunaltun-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(2deg);
  }
  50% {
    transform: translateY(-8px) rotate(-1deg);
  }
  75% {
    transform: translateY(-12px) rotate(1deg);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .mahsunaltun-stats-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .mahsunaltun-section-title h1 {
    font-size: 40px;
  }

  .mahsunaltun-reviews-title,
  .mahsunaltun-success-title,
  .mahsunaltun-video-title {
    font-size: 30px;
  }

  .mahsunaltun-success-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .mahsunaltun-yorumlar-section {
    padding: 60px 0;
  }

  .mahsunaltun-container {
    padding: 0 15px;
  }

  .mahsunaltun-section-title h1 {
    font-size: 36px;
  }

  .mahsunaltun-stats-section {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 50px;
  }

  .mahsunaltun-stat-card {
    padding: 25px 15px;
  }

  .mahsunaltun-stat-number {
    font-size: 36px;
  }

  .mahsunaltun-reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mahsunaltun-review-card {
    padding: 20px;
  }

  .mahsunaltun-review-header {
    gap: 12px;
  }

  .mahsunaltun-review-avatar {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .mahsunaltun-success-images {
    height: 200px;
  }

  .mahsunaltun-success-content {
    padding: 20px;
  }

  .mahsunaltun-video-grid {
    grid-template-columns: 1fr;
  }

  .mahsunaltun-reviews-cta {
    padding: 30px 20px;
  }

  .mahsunaltun-btn {
    display: block;
    margin: 10px 0;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .mahsunaltun-section-title h1 {
    font-size: 32px;
  }

  .mahsunaltun-reviews-title,
  .mahsunaltun-success-title,
  .mahsunaltun-video-title {
    font-size: 26px;
  }

  .mahsunaltun-success-grid {
    grid-template-columns: 1fr;
  }

  .mahsunaltun-success-card {
    margin-bottom: 20px;
  }

  .mahsunaltun-cta-title {
    font-size: 24px;
  }
}
