
/* CUSTOM SCROLLBAR */
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #14b8a6;
  border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #0d9488;
}

/* SMOOTH SCROLL */
html {
  scroll-behavior: smooth;
}

/* FONT SMOOTHING */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* BUTTON PRIMARY */
.btn-primary {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  transform: translateY(-2px);
}

/* FADE IN ANIMATION */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(-10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}
.animate-fadeIn {
    animation: fadeIn 0.3s ease-out forwards;
}

/* BOUNCE SLOW */
@keyframes bounce-slow {
  0%, 100% { 
      transform: translateY(0); 
  }
  50% { 
      transform: translateY(-10px); 
  }
}
.animate-bounce-slow {
  animation: bounce-slow 3s infinite ease-in-out;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.025em;
}

/* INPUTS */
input, textarea, select {
    outline: none !important;
}
input:focus, textarea:focus {
    border-color: #14b8a6 !important;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.2) !important;
}

/* TEXT SHADOW */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* PROSE STYLING */
.prose h3 {
    color: #0f766e;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.prose p {
    margin-bottom: 1rem;
    line-height: 1.8;
}
.prose ul {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.prose a {
    color: #14b8a6;
    text-decoration: none;
    font-weight: 500;
}
.prose a:hover {
    color: #0d9488;
    text-decoration: underline;
}

/* SLIDER CONTAINER (HERO) */
.slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.slider-image {
    min-width: 100%;
    flex-shrink: 0;
}

/* TESTIMONIAL SLIDER (MASAÜSTÜ OTOMATİK KAYAN) */
.testimonial-slider-track {
    display: flex;
    animation: none; /* JavaScript ile kontrol ediliyor */
}

.testimonial-slide {
    flex-shrink: 0;
}

/* MOBILE BOTTOM PADDING (STICKY BOTTOM İÇİN) */
@media (max-width: 1024px) {
    body {
        padding-bottom: 70px;
    }
}
