/* Kahramanbenim.com Ana Stil Dosyası - Geliştirilmiş UI */

:root {
  --primary-color: #6A0DAD;
  --secondary-color: #9370DB;
  --accent-color: #5b9ce3;
  --dark-color: #2C1810;
  --light-color: #FFFFFF;
  --background-light: #F8F9FA;
  --background-warm: #F5F9FF;
  --text-primary: #2C1810;
  --text-secondary: #4A5568;
  --gradient-primary: linear-gradient(135deg, #6A0DAD 0%, #9370DB 100%);
  --gradient-accent: linear-gradient(135deg, #7FB5F3 0%, #5B9CE3 100%);
  --box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1);
  --box-shadow-hover: 0 15px 40px rgba(44, 24, 16, 0.15);
  --font-primary: 'Nunito', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;
  --font-display: 'Quicksand', sans-serif;
  --border-radius: 20px;
  --spacing-unit: 1rem;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-primary);
  background-color: var(--background-light);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-unit);
}

section {
  overflow-x: hidden;
  width: 100%;
}

/* Header Styles - Çılgın & Modern */
header {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.95) 0%, rgba(99, 102, 241, 0.95) 100%);
  backdrop-filter: blur(20px);
  padding: 0.5rem 0;
  box-shadow: 0 4px 30px rgba(124, 58, 237, 0.4), 0 0 60px rgba(124, 58, 237, 0.2);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 3px solid rgba(255, 255, 255, 0.3);
  animation: headerGlow 3s ease-in-out infinite;
}

@keyframes headerGlow {
  0%, 100% {
    box-shadow: 0 4px 30px rgba(124, 58, 237, 0.4), 0 0 60px rgba(124, 58, 237, 0.2);
  }
  50% {
    box-shadow: 0 4px 40px rgba(124, 58, 237, 0.6), 0 0 80px rgba(124, 58, 237, 0.4);
  }
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: bold;
  color: white;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.logo:hover {
  transform: scale(1.1) rotate(-3deg);
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
}

.logo-image {
  height: 60px;
  width: auto;
  object-fit: contain;
  animation: logoPulse 2s ease-in-out infinite;
}

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

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.6rem 1.3rem;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 2px;
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.5));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nav-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.nav-link:hover::before {
  opacity: 1;
}

/* Hero Section - Görseldeki Tasarım */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  padding: 5rem 0 3rem;
  background: linear-gradient(180deg, #e8ecf5 0%, #f5f7fa 50%, #ffffff 100%);
  z-index: 10;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-left {
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1a202c;
}

.gradient-text {
  background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.gradient-text::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #7c3aed 0%, #6366f1 100%);
  border-radius: 2px;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 2rem;
}

.hero-description strong {
  color: #7c3aed;
  font-weight: 700;
}

.hero-features {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #2d3748;
  font-weight: 600;
}

.hero-feature i {
  color: #10b981;
  font-size: 1.1rem;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 2.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
  color: white;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.6);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  background: transparent;
  color: #7c3aed;
  border: 2px solid #7c3aed;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-hero-secondary:hover {
  background: rgba(124, 58, 237, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.2);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #4a5568;
  margin-top: 1rem;
}

.hero-trust i {
  color: #7c3aed;
  font-size: 1.1rem;
}

.hero-right {
  position: relative;
  z-index: 1;
}

.hero-image-wrapper {
  position: relative;
  max-width: 600px;
  margin-left: auto;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: scale(1.02);
}

.hero-badge-special {
  position: absolute;
  top: -15px;
  right: -15px;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}

.hero-badge-special i {
  font-size: 1.8rem;
  color: #fbbf24;
}

.hero-badge-special > div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.hero-badge-special strong {
  font-size: 0.95rem;
  color: #7c3aed;
  line-height: 1;
}

.hero-badge-special span {
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1;
}

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-down a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: #7c3aed;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.scroll-down a:hover {
  transform: translateY(5px);
}

.scroll-down i {
  font-size: 1.3rem;
  animation: bounce 2s infinite;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

#hero-form {
  scroll-margin-top: 8rem;
}

/* Features Section */
.features {
  padding: 3rem 0;
  background: url('../assets/hero-bg.png') no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 1;
}


.section-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0;
  position: relative;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.95rem;
  color: white;
  background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.8rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.2;
}

.section-title .highlight {
  background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background: url('../assets/uzay_blur/uzay_blur3.png') center/cover,
    linear-gradient(180deg, rgba(248, 249, 251, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
  background-blend-mode: overlay;
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
}

.feature-card-inner {
  background: white;
  padding: 2rem;
  border-radius: 24px;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(124, 58, 237, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 220px;
}

.feature-card:hover .feature-card-inner {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.2);
}

/* Renk Temaları */
.feature-card[data-color="purple"] .feature-icon { background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%); }
.feature-card[data-color="blue"] .feature-icon { background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%); }
.feature-card[data-color="pink"] .feature-icon { background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%); }
.feature-card[data-color="orange"] .feature-icon { background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%); }
.feature-card[data-color="green"] .feature-icon { background: linear-gradient(135deg, #10b981 0%, #34d399 100%); }
.feature-card[data-color="cyan"] .feature-icon { background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%); }

.feature-card[data-color="purple"] .feature-icon-bg { background: rgba(124, 58, 237, 0.1); }
.feature-card[data-color="blue"] .feature-icon-bg { background: rgba(59, 130, 246, 0.1); }
.feature-card[data-color="pink"] .feature-icon-bg { background: rgba(236, 72, 153, 0.1); }
.feature-card[data-color="orange"] .feature-icon-bg { background: rgba(245, 158, 11, 0.1); }
.feature-card[data-color="green"] .feature-icon-bg { background: rgba(16, 185, 129, 0.1); }
.feature-card[data-color="cyan"] .feature-icon-bg { background: rgba(6, 182, 212, 0.1); }

.feature-card[data-color="purple"]:hover .feature-card-inner { border-color: rgba(124, 58, 237, 0.3); }
.feature-card[data-color="blue"]:hover .feature-card-inner { border-color: rgba(59, 130, 246, 0.3); }
.feature-card[data-color="pink"]:hover .feature-card-inner { border-color: rgba(236, 72, 153, 0.3); }
.feature-card[data-color="orange"]:hover .feature-card-inner { border-color: rgba(245, 158, 11, 0.3); }
.feature-card[data-color="green"]:hover .feature-card-inner { border-color: rgba(16, 185, 129, 0.3); }
.feature-card[data-color="cyan"]:hover .feature-card-inner { border-color: rgba(6, 182, 212, 0.3); }

.feature-icon-wrapper {
  position: relative;
  width: fit-content;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon-bg {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

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

.feature-card:hover .feature-icon-bg {
  transform: translate(-50%, -50%) scale(1);
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 1.25rem;
  color: #1a202c;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.feature-text {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

.feature-number {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(124, 58, 237, 0.06);
  font-family: var(--font-display);
  line-height: 1;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-number {
  color: rgba(124, 58, 237, 0.12);
  transform: scale(1.1);
}

/* Product Showcase - HTML'de yorum satırı içinde, kullanılmıyor */

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--light-color);
}

.btn-secondary {
  background: var(--light-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn:hover {
  transform: translateY(-3px);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .container {
    padding: 0 1.2rem;
    max-width: 100%;
  }

  .hero {
    padding: 5.5rem 0 2.5rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-left {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-badge-special {
    top: 10px;
    right: 10px;
    padding: 0.8rem 1.2rem;
  }

  .how-it-works {
    padding: 4rem 0;
  }

  .features {
    padding: 4rem 0;
  }

  .testimonials {
    padding: 4rem 0;
  }

  .form-section {
    padding: 4rem 0;
  }

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

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

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .container {
    padding: 0 0.8rem;
    width: 100%;
    max-width: 100vw;
  }

  .hero {
    padding: 5rem 0 2rem;
    min-height: auto;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 0.8rem;
  }

  .btn-hero {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.5rem;
  }

  .how-it-works {
    padding: 3rem 0;
  }

  .features {
    padding: 3rem 0;
  }

  .testimonials {
    padding: 3rem 0;
  }

  .form-section {
    padding: 3rem 0;
  }

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

  .section-subtitle {
    font-size: 0.8rem;
    padding: 0.4rem 1.2rem;
  }

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

  .footer-links {
    grid-template-columns: 1fr;
  }

  .form-container {
    padding: 2rem 1.2rem;
    margin-top: 2rem;
  }

  .step {
    padding: 2rem 1.2rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
  }

  .cta-buttons {
    justify-content: center;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .btn-hero {
    font-size: 1rem;
    padding: 1rem 2rem;
  }

  .hero-image-badge {
    padding: 0.6rem 1rem;
  }

  .hero-image-badge i {
    font-size: 1.5rem;
  }

  .hero-image-badge strong {
    font-size: 0.85rem;
  }

  .hero-image-badge span {
    font-size: 0.75rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

/* Testimonials Section */
/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background: url('../assets/orman_blur/orman_blur2.png') center/cover,
    linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 251, 0.95) 100%);
  background-blend-mode: overlay;
  position: relative;
  overflow: hidden;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-unit);
  text-align: center;
}

.testimonials h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}

.testimonials-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* Testimonials Slider - Yatay Kaydırmalı */
.testimonials-slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 1400px;
  margin: 2rem auto 0;
  padding: 0 1rem;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  flex: 1;
  max-width: 1200px;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2rem 0;
}

.testimonial-card {
  flex: 0 0 280px;
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  opacity: 0.7;
  transform: scale(0.9);
}

.testimonial-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 1.8rem;
  color: rgba(124, 58, 237, 0.08);
}

.testimonial-card.center {
  opacity: 1;
  transform: scale(1.08);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.2);
  z-index: 10;
}

.testimonial-card:hover {
  opacity: 1;
}

/* Özel Hikaye Yorumları */
.testimonial-card.special-story {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 2px solid rgba(245, 158, 11, 0.3);
}

.testimonial-card.special-story.center {
  border-color: #f59e0b;
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.2);
}

.testimonial-card.special-story::before {
  color: rgba(245, 158, 11, 0.15);
}

/* Hikaye Badge */
.testimonial-story-badge {
  display: inline-block;
  background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
  color: white;
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.testimonial-story-badge.special {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0.8rem 0 1rem;
  font-style: normal;
  position: relative;
  z-index: 1;
  text-align: left;
  min-height: 60px;
}

.testimonial-author {
  text-align: center;
  margin-bottom: 0.5rem;
  border-top: 1px solid rgba(124, 58, 237, 0.1);
  padding-top: 0.8rem;
}

.testimonial-author h4 {
  color: #1a202c;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
  font-weight: 700;
}

.testimonial-author p {
  color: #7c3aed;
  font-size: 0.8rem;
  font-weight: 500;
}

.testimonial-card.special-story .testimonial-author {
  border-top-color: rgba(245, 158, 11, 0.2);
}

.testimonial-card.special-story .testimonial-author p {
  color: #d97706;
}

.testimonial-rating {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-align: center;
}

/* Navigation Buttons */
.testimonial-nav-btn {
  background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
  flex-shrink: 0;
}

.testimonial-nav-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

.testimonial-nav-btn:active {
  transform: scale(0.95);
}

/* Responsive */
@media (max-width: 1200px) {
  .testimonial-card {
    flex: 0 0 260px;
  }
}

@media (max-width: 992px) {
  .testimonial-card {
    flex: 0 0 240px;
  }
  .testimonial-nav-btn {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 768px) {
  .testimonials-slider-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .testimonials-slider {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .testimonials-slider::-webkit-scrollbar {
    display: none;
  }
  
  .testimonials-track {
    padding: 1rem;
  }
  
  .testimonial-card {
    flex: 0 0 280px;
    opacity: 1;
    transform: scale(1);
  }
  
  .testimonial-card.center {
    transform: scale(1);
  }
  
  .testimonial-nav-btn {
    display: none;
  }
}

/* Form Section */
.form-section {
  padding: 5rem 0;
  background: url('../assets/uzay_blur/uzay_blur2.png') center/cover,
    linear-gradient(180deg, rgba(248, 249, 251, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
  background-blend-mode: overlay;
  position: relative;
  z-index: 10;
}

.form-container {
  position: relative;
  z-index: 10;
  max-width: 650px;
  margin: 3rem auto 0;
  padding: 3rem 2.5rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(124, 58, 237, 0.1);
  overflow: visible;
}

.form-group {
  margin-bottom: 1.8rem;
  overflow: visible;
  position: relative;
  z-index: 1;
}

/* Hikaye seçimi dropdown için özel z-index */
.form-group.story-select-group {
  z-index: 100;
}

.form-group.story-select-group .custom-dropdown.open {
  z-index: 9999;
}

.form-group label {
  display: block;
  margin-bottom: 0.7rem;
  font-weight: 700;
  color: #1a202c;
  font-size: 1.05rem;
}

/* Warning Box for Photo Upload */
.photo-warning-box {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  border-left: 4px solid #dc2626;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.warning-icon {
  color: #dc2626;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.warning-content {
  flex: 1;
  color: #991b1b;
  font-size: 0.9rem;
  line-height: 1.6;
}

.warning-content strong {
  display: inline;
  font-size: 1rem;
}

.warning-content ul {
  margin: 0.5rem 0 0 0;
  padding-left: 1.2rem;
  list-style: disc;
}

.warning-content ul li {
  margin-bottom: 0.3rem;
}

@media (max-width: 768px) {
  .photo-warning-box {
    padding: 0.8rem;
    font-size: 0.85rem;
  }
  
  .warning-icon {
    font-size: 1.2rem;
  }
  
  .warning-content {
    font-size: 0.8rem;
  }
  
  .warning-content strong {
    font-size: 0.9rem;
  }
}

/* Özel Hikaye Bilgi Kutusu */
.custom-story-box {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-left: 4px solid #f59e0b;
  border-radius: 12px;
  padding: 1.2rem;
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  animation: slideDown 0.3s ease;
}

.custom-story-icon {
  color: #f59e0b;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.custom-story-content {
  flex: 1;
  color: #92400e;
}

.custom-story-content strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #78350f;
}

.custom-story-content strong i {
  margin-right: 0.5rem;
}

.custom-story-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.custom-story-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.custom-story-content ul li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
}

.custom-story-content ul li i {
  color: #059669;
  margin-right: 0.5rem;
}

.btn-custom-story {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-custom-story:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* Disabled Submit Button */
.btn-block:disabled,
.btn-block.disabled {
  background: #9ca3af !important;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

@media (max-width: 768px) {
  .custom-story-box {
    flex-direction: column;
    padding: 1rem;
  }
  
  .custom-story-icon {
    font-size: 1.5rem;
  }
  
  .custom-story-content strong {
    font-size: 1rem;
  }
  
  .custom-story-content p {
    font-size: 0.85rem;
  }
  
  .custom-story-content ul li {
    font-size: 0.8rem;
  }
  
  .btn-custom-story {
    width: 100%;
    justify-content: center;
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
  }
}

.input-wrapper {
  position: relative;
  overflow: visible;
  width: 100%;
}

/* Tooltip Styles */
.tooltip {
  position: relative;
  display: inline-block;
  z-index: 20;
}

.tooltip .tooltip-text {
  visibility: hidden;
  width: 500px;
  background-color: var(--dark-color);
  color: var(--light-color);
  text-align: center;
  border-radius: 6px;
  padding: 0.8rem;
  position: absolute;
  z-index: 30;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  font-size: 0.9rem !important;
  box-shadow: var(--box-shadow);
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
  z-index: 100;
  transform: translateX(-50%) translateY(-5px);
}

.tooltip .tooltip-text::after {
  content: "";
  position: relative;
  top: 100%;
  left: 50%;
  z-index: 100;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--dark-color) transparent transparent transparent;
}

.form-group input[type="text"],
.form-group input[type="email"] {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fb;
}

/* Custom Select Dropdown */
.form-group select {
  width: 100%;
  padding: 1rem 3rem 1rem 1.2rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%237c3aed' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2rem;
  font-weight: 500;
  color: #1a202c;
}

.form-group select:hover {
  border-color: #7c3aed;
  background-color: #faf5ff;
}

.form-group select option {
  padding: 1rem;
  font-size: 1rem;
  background: white;
  color: #1a202c;
}

.form-group select option:checked {
  background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
  color: white;
}

.form-group select option[value="ozel_hikaye"] {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #92400e;
  font-weight: 600;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.15);
  outline: none;
  background: white;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%237c3aed' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2rem;
}

.form-group input.error,
.form-group select.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

/* ===== CUSTOM DROPDOWN ===== */
.custom-dropdown {
  position: relative;
  width: 100%;
  font-family: inherit;
  z-index: 1000;
}

.custom-dropdown.open {
  z-index: 9999;
}

.dropdown-selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fb 100%);
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 60px;
}

.dropdown-selected:hover {
  border-color: #7c3aed;
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
}

.custom-dropdown.open .dropdown-selected {
  border-color: #7c3aed;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.15);
}

.custom-dropdown.error .dropdown-selected {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.dropdown-placeholder {
  color: #94a3b8;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-placeholder i {
  color: #7c3aed;
}

.dropdown-selected-content {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.dropdown-selected-content .selected-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

.dropdown-selected-content .selected-text {
  font-weight: 600;
  color: #1a202c;
  font-size: 1rem;
}

.dropdown-arrow {
  color: #7c3aed;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.custom-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 2px solid #7c3aed;
  border-top: none;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.2);
  z-index: 9999;
  display: none;
  overflow: hidden;
  animation: dropdownSlide 0.3s ease;
}

@keyframes dropdownSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom-dropdown.open .dropdown-options {
  display: block;
}

.dropdown-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
}

.dropdown-option:last-child {
  border-bottom: none;
}

.dropdown-option:hover {
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}

.dropdown-option.selected {
  background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
}

.option-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(124, 58, 237, 0.3);
}

.option-content {
  flex: 1;
}

.option-title {
  font-weight: 700;
  color: #1a202c;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.option-desc {
  font-size: 0.85rem;
  color: #64748b;
}

/* Special Option (Özel Hikaye) */
.dropdown-option.special {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-bottom: none;
}

.dropdown-option.special:hover {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.dropdown-option.special .option-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.dropdown-option.special .option-title {
  color: #92400e;
}

.option-badge {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

/* Yeni Hikaye (Tatlı Rüyalar) */
.dropdown-option.new-story {
  background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
  border: 2px solid #a78bfa;
  position: relative;
  overflow: visible;
}

.dropdown-option.new-story:hover {
  background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
}

.dropdown-option.new-story .option-icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
}

.dropdown-option.new-story .option-title {
  color: #5b21b6;
}

.option-badges {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}

.option-badge.new-badge {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  animation: pulse-badge 2s infinite;
}

.option-badge.design-badge {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  font-size: 0.6rem;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Tatlı Rüyalar Bilgi Kutusu */
.tatli-ruyalar-box {
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%) !important;
  border-left: 4px solid #8b5cf6 !important;
}

.tatli-ruyalar-box .custom-story-icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%) !important;
}

.tatli-ruyalar-box strong {
  color: #5b21b6 !important;
}

/* Miyav Orkestrası Bilgi Kutusu */
.miyav-orkestrasi-box {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%) !important;
  border-left: 4px solid #f59e0b !important;
}

.miyav-orkestrasi-box .custom-story-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
}

.miyav-orkestrasi-box strong {
  color: #92400e !important;
}

.miyav-orkestrasi-box .btn-trendyol-story {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
}

.btn-trendyol-story {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%) !important;
  color: white !important;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-trendyol-story:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* Mobil Responsive */
@media (max-width: 768px) {
  .dropdown-selected {
    padding: 0.9rem 1rem;
    min-height: 55px;
  }
  
  .dropdown-selected-content .selected-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .option-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .option-title {
    font-size: 0.95rem;
  }
  
  .option-desc {
    font-size: 0.8rem;
  }
  
  .option-badge {
    font-size: 0.6rem;
    padding: 0.2rem 0.5rem;
  }
}

.error-message {
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  animation: slideDown 0.3s ease;
}

.error-message i {
  font-size: 0.9rem;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobil uyumluluk için error mesajları */
@media (max-width: 768px) {
  .error-message {
    font-size: 0.75rem;
  }
}

.file-upload {
  border: 2px dashed #7c3aed;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(124, 58, 237, 0.03);
}

.file-upload:hover {
  background: rgba(124, 58, 237, 0.08);
  border-color: #6366f1;
  transform: translateY(-2px);
}

.file-upload.error {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
}

.file-upload.error:hover {
  background: rgba(239, 68, 68, 0.08);
  border-color: #dc2626;
}

.file-upload.error {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
  animation: shake 0.5s;
}

.file-upload.error:hover {
  background: rgba(239, 68, 68, 0.08);
  border-color: #dc2626;
}

.file-upload-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.file-upload-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.file-upload-text {
  font-weight: 600;
  color: var(--text-primary);
}

.file-upload-subtext {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.file-upload input[type="file"] {
  display: none;
}

.preview-image {
  max-width: 100%;
  width: auto;
  height: 200px;
  border-radius: 10px;
  margin-top: 1rem;
  display: none;
}

.btn-block {
  width: 100%;
  margin-top: 1rem;
  padding: 1rem;
  font-size: 1.1rem;
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: var(--light-color);
  padding: 3rem 0 2rem;
  border-top: 4px solid #7c3aed;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo .logo {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--light-color);
}

.footer-tagline {
  opacity: 0.9;
  font-size: 1.1rem;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  justify-items: center;
}

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--light-color);
}

.footer-column ul {
  list-style: none;
}

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

.footer-column ul li a,
.footer-column ul li {
  color: var(--light-color);
  text-decoration: none;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  opacity: 1;
  padding-left: 5px;
}

.footer-column ul li i {
  margin-right: 0.5rem;
  width: 20px;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--light-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

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

.footer-bottom p {
  opacity: 0.9;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: var(--light-color);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-legal a:hover {
  opacity: 1;
}

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

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

/* Responsive Footer ve Testimonials */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-quote {
    font-size: 1rem;
  }

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

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

  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .testimonial-avatar {
    width: 80px;
    height: 80px;
  }

  .testimonial-navigation {
    flex-wrap: wrap;
  }

  .footer-column h4 {
    font-size: 1.1rem;
  }
}


/* How It Works Section */
.how-it-works {
  padding: 5rem 0;
  background: url('../assets/orman_blur/orman_blur3.png') center/cover,
    linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 251, 0.95) 100%);
  background-blend-mode: overlay;
  position: relative;
  overflow: visible;
  z-index: 20;
}

.steps-container {
  position: relative;
  max-width: 1100px;
  margin: 3rem auto 0;
  padding: 0;
}

.steps-line {
  display: none;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.step {
  background: white;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 2px solid transparent;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 520px;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.2);
}

.step:hover::before {
  transform: scaleX(1);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 auto 1.2rem;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
  position: relative;
}

.step-title {
  font-size: 1.2rem;
  color: #1a202c;
  margin-bottom: 0.8rem;
  font-weight: 700;
  text-align: center;
}

.step-icon {
  margin-right: 0.6rem;
  color: #7c3aed;
  font-size: 1.1rem;
}

.step-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  text-align: center;
  flex-grow: 1;
}

/* Responsive How It Works */
@media (max-width: 992px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 500px;
    margin: 0 auto;
  }

  .step {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .how-it-works {
    padding: 4rem 0;
  }

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

  .steps {
    gap: 1.5rem;
  }

  .step {
    padding: 2rem 1.5rem;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .step-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .section-header {
    padding: 1rem;
  }

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

  .section-subtitle {
    font-size: 1rem;
  }

  .step {
    padding: 1rem;
  }
}

/* Product Box Styles */
.product-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.product-item {
  background: var(--light-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
  text-align: left;
}

.product-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.product-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.product-item-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
}

.product-item-text {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.product-item-features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-item-features li {
  margin-bottom: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
}

.product-item-features li:before {
  content: "✓";
  color: var(--accent-color);
  margin-right: 0.8rem;
  font-weight: bold;
}

.product-box-image-container {
  position: relative;
  margin: 4rem auto;
  max-width: 800px;
  text-align: center;
  background: var(--light-color);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  z-index: 1;
}

.product-box-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  margin: 0 auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.product-box-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="%236A0DAD" opacity="0.05"/></svg>') repeat;
  border-radius: var(--border-radius);
  opacity: 0.3;
  z-index: 0;
}

.product-badge {
  position: absolute;
  top: -25px;
  right: -25px;
  background: var(--gradient-primary);
  color: var(--light-color);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 20px rgba(106, 13, 173, 0.3);
  z-index: 9999;
  animation: float 3s ease-in-out infinite;
}

.product-badge::before {
  display: none;
}

.product-badge-text {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 0.3rem;
}

.product-badge-value {
  font-size: 2rem;
  font-weight: bold;
  font-family: var(--font-display);
}

/* Floating Animation */
@keyframes float {
  0% {
    transform: translateY(0);
  }

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

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

/* Product Box Responsive */
@media (max-width: 768px) {
  .product-box-image-container {
    padding: 1.5rem;
    margin: 3rem auto;
  }

  .product-badge {
    width: 100px;
    height: 100px;
    top: -20px;
    right: -20px;
  }

  .product-badge::before {
    font-size: 1.5rem;
  }

  .product-badge-text {
    font-size: 0.8rem;
  }

  .product-badge-value {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .product-box-image-container {
    padding: 1rem;
    margin: 2rem auto;
  }

  .product-badge {
    width: 80px;
    height: 80px;
    top: -15px;
    right: -15px;
  }

  .product-badge::before {
    font-size: 1.2rem;
  }

  .product-badge-text {
    font-size: 0.7rem;
  }

  .product-badge-value {
    font-size: 1.2rem;
  }
}

/* Section arkaplan renkleri her section için özel tanımlandı */


/* Step Preview Containers */
.preview-container {
    margin-top: 1rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
    border-radius: 12px;
    padding: 1rem;
    border: 2px solid rgba(124, 58, 237, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
}

/* Mobilde ilk step preview'ı gizle - JS ile görünür yapılacak */
@media (max-width: 768px) {
  .step:first-child .preview-container {
    display: none;
  }
  
  .step:first-child .preview-container.show-preview {
    display: flex;
  }
}

.name-preview {
    background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 1rem;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

.child-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #7c3aed;
    margin: 0 auto;
    display: block;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.child-photo:hover {
    transform: scale(1.05);
}

.story-preview-image {
    width: 100%;
    max-width: 160px;
    height: auto;
    border-radius: 12px;
    margin: 0 auto 0.8rem;
    display: block;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.2);
    transition: transform 0.3s ease;
}

.story-preview-image:hover {
    transform: scale(1.05);
}

.pdf-preview {
    background: white;
    border-radius: 12px;
    padding: 1.2rem;
    margin: 1rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(124, 58, 237, 0.1);
}

.pdf-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.pdf-icon {
    color: #dc3545;
    font-size: 1.5rem;
}

.pdf-filename {
    font-weight: 600;
}

.download-btn {
    background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
    color: white;
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

.print-partner {
    text-align: center;
    padding: 0.3rem;
}

.print-partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.print-partners-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    max-width: 140px;
    height: auto;
    margin: 0 auto 0.3rem;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
    background: white;
    padding: 0.4rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.partner-logo:hover {
    transform: scale(1.08);
}

.partner-text {
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0;
}

/* Responsive için */
@media (max-width: 768px) {
    .child-photo {
        width: 120px;
        height: 120px;
    }

    .story-preview-image {
        max-width: 140px;
    }

    .partner-logo {
        max-width: 120px;
        padding: 0.4rem;
    }

    .partner-text {
        font-size: 0.7rem;
    }

    .print-partners-vertical {
        gap: 0.5rem;
    }

    .print-partners-grid {
        gap: 0.5rem;
    }

    .step {
        min-height: auto;
    }

    .name-preview {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        margin-top: 0.8rem;
    }
}
  /* Select dropdown stilleri */
select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Nunito', sans-serif;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

select:focus {
    outline: none;
    border-color: #7C3AED;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

/* Mobil cihazlar için overlay düzeltmeleri */
@media (max-width: 768px) {
    .change-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        z-index: 999;
    }
    
    .change-overlay .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: auto;
    }
    
    /* Preview image container için relative position - mobil */
    .input-wrapper {
        position: relative;
        display: block;
        width: 100%;
    }
    
    .preview-image {
        position: relative;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        /* display: none olarak kalacak, JS ile src eklenince görünür olacak */
    }
    
    .preview-image[src]:not([src=""]) {
        display: block;
    }
}

/* Success Message - Form Sonrası Sayfa */
.success-message {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    padding: 1rem;
}

.success-message.visible {
    opacity: 1;
    transform: translateY(0);
}

.success-header {
    text-align: center;
    margin-bottom: 1rem;
}

.success-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 0.75rem;
}

.success-icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    animation: successPulse 2s ease-in-out infinite;
}

.success-icon-circle i {
    font-size: 1.8rem;
    color: white;
}

.success-icon-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    border: 3px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ringExpand 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes ringExpand {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

.success-title {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.success-subtitle {
    font-size: 1rem;
    color: #64748b;
}

.success-content {
    margin-bottom: 1rem;
}

.success-info-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 0.875rem;
    margin-bottom: 0.75rem;
}

.success-info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.success-info-icon i {
    font-size: 1.3rem;
    color: white;
}

.success-info-text {
    font-size: 1rem;
    color: #1e293b;
    line-height: 1.5;
}

.success-warning {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.success-warning i {
    color: #d97706;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.success-warning span {
    color: #92400e;
    font-size: 0.95rem;
}

.success-divider {
    text-align: center;
    position: relative;
    margin: 1rem 0;
}

.success-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.success-divider span {
    background: white;
    padding: 0 1rem;
    position: relative;
    color: #7c3aed;
    font-weight: 700;
    font-size: 0.95rem;
}

.success-promo {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border: 2px solid rgba(124, 58, 237, 0.15);
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
}

.success-promo-header {
    margin-bottom: 1rem;
}

.promo-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    color: white;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    animation: badgePulse 2s ease-in-out infinite;
}

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

.success-promo-header h3 {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.success-promo-header p {
    color: #64748b;
    font-size: 0.9rem;
}

.success-promo-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.promo-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.promo-feature i {
    width: 38px;
    height: 38px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c3aed;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
}

.promo-feature span {
    font-size: 0.75rem;
    color: #4b5563;
    font-weight: 600;
}

.success-promo-text {
    margin-bottom: 1rem;
}

.success-promo-text p {
    color: #374151;
    font-size: 0.9rem;
    line-height: 1.5;
}

.success-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6000 0%, #ff8533 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 96, 0, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

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

.success-cta-btn .trendyol-logo-small {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1);
}

.success-cta-btn i {
    transition: transform 0.3s ease;
}

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

.success-promo-note {
    color: #7c3aed;
    font-size: 0.9rem;
    font-weight: 600;
}

.success-promo-note i {
    color: #fbbf24;
    margin-right: 0.3rem;
}

/* Success Message Responsive */
@media (max-width: 768px) {
    .success-message {
        padding: 1.5rem;
    }
    
    .success-title {
        font-size: 1.5rem;
    }
    
    .success-promo {
        padding: 1.5rem;
    }
    
    .success-promo-header h3 {
        font-size: 1.25rem;
    }
    
    .success-cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .success-promo-features {
        gap: 1rem;
    }
}