/* Arlift Warranty Plus - Ana CSS Dosyası */

/* Temel ayarlar */
:root {
  --primary-color: #e53e3e;
  --primary-dark: #c53030;
  --secondary-color: #f56565;
  --text-color: #1f2937;
  --text-light: #4b5563;
  --bg-light: #f9fafb;
  --bg-dark: #1f2937;
  --accent-color: #ff4c4c;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Özel scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Animasyonlar */
.transition {
  transition: all 0.3s ease;
}

/* Görsel Geliştirmeler */
.shadow-custom {
  box-shadow: 0 10px 25px -5px rgba(229, 62, 62, 0.1), 0 10px 10px -5px rgba(229, 62, 62, 0.04);
}

/* Butonlar */
.btn-primary {
  background-color: var(--primary-color);
  color: white;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(229, 62, 62, 0.12);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(229, 62, 62, 0.2), 0 4px 6px -2px rgba(229, 62, 62, 0.1);
}

/* Form Elementleri */
input:focus, textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.3);
  border-color: var(--primary-color) !important;
}

/* Responsive Özellikler */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  h1 {
    font-size: 2.25rem !important;
  }
  
  h2 {
    font-size: 1.75rem !important;
  }
}

/* Özel Animasyonlar */
.hover-scale:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(229, 62, 62, 0.15);
}

/* Arka plan dalgası */
.wave-bg {
  position: relative;
  overflow: hidden;
}

.wave-bg::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23f9fafb" fill-opacity="1" d="M0,64L60,80C120,96,240,128,360,128C480,128,600,96,720,106.7C840,117,960,171,1080,186.7C1200,203,1320,181,1380,170.7L1440,160L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z"></path></svg>');
  background-repeat: no-repeat;
  background-size: cover;
}

/* Garanti sorgulama formu iyileştirmesi */
.warranty-form {
  position: relative;
  z-index: 5;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.warranty-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(229, 62, 62, 0.15), 0 10px 10px -5px rgba(229, 62, 62, 0.08);
}

/* İletişim form stili */
.contact-form-wrapper {
  position: relative;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: var(--primary-color);
  opacity: 0.1;
  border-radius: 50%;
  transform: translate(40%, -40%);
  z-index: -1;
}

/* Kırmızı vurgular */
.text-accent {
  color: var(--accent-color);
}

.bg-accent {
  background-color: var(--accent-color);
}

/* Modern Card Tasarımı */
.modern-card {
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.modern-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(229, 62, 62, 0.1), 0 10px 10px -5px rgba(229, 62, 62, 0.05);
}

.modern-card .card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  margin-bottom: 20px;
  font-size: 24px;
}

/* Gradient Arka Planlar */
.red-gradient {
  background: linear-gradient(135deg, #e53e3e, #f56565);
}

.red-gradient-light {
  background: linear-gradient(135deg, #fed7d7, #feebc8);
}

/* Yeni stil: Saydam butonlar */
.btn-outline-red {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-red:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
} 