/* Teklif Sayfası Stilleri */

.container {
  padding: 0;
}

/* Ana başlık stili */
.page-title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin: var(--spacing-xl) 0;
  letter-spacing: var(--letter-spacing-md);
  color: var(--text-color);
  position: relative;
}

.page-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--primary-red);
  margin: 15px auto 0;
  border-radius: 2px;
}

.quote-page {
  padding: 40px 0 80px;
}

/* Form Bölümü */
.quote-form-section {
  padding: 2rem 0 4rem;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Adım Göstergeleri */
.step-indicators {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  position: relative;
}

.step-indicators::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #e2e8f0;
  z-index: 1;
}

/* İlerleme çizgisi için stil */
.step-indicators::after {
  content: "";
  position: absolute;
  top: 25px;
  left: 0;
  height: 2px;
  background-color: #48bb78;
  z-index: 1;
  width: 0;
  transition: width 0.5s ease;
}

/* Her adım için çizgi genişliği */
.step-indicators.progress-1::after {
  width: 0%; /* İlk adımda çizgi yok */
}

.step-indicators.progress-2::after {
  width: 20%; /* İkinci adımda 1/3 çizgi */
}

.step-indicators.progress-3::after {
  width: 50%; /* Üçüncü adımda 2/3 çizgi */
}

.step-indicators.progress-4::after {
  width: 100%; /* Form tamamlandığında tam çizgi */
}

.step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.step-icon {
  width: 50px;
  height: 50px;
  background-color: white;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.step-icon svg {
  width: 24px;
  height: 24px;
  color: #a0aec0;
  transition: all 0.3s ease;
}

.step-icon svg path {
  fill: #a0aec0;
}

.step span {
  font-size: 14px;
  color: #718096;
  transition: all 0.3s ease;
}

/* Aktif adım */
.step.active .step-icon {
  border-color: #ff3b30;
  background-color: var(--primary-red);
}

.step.active .step-icon svg {
  color: white;
}

.step.active .step-icon svg path {
  fill: white;
}

.step.active span {
  color: #ff3b30;
  font-weight: 600;
}

/* Tamamlanmış adım */
.step.completed .step-icon {
  border-color: #48bb78;
  background-color: #48bb78;
}

.step.completed .step-icon svg {
  color: white;
}

.step.completed .step-icon svg path {
  fill: white;
}

.step.completed span {
  color: #48bb78;
  font-weight: 600;
}

/* Form Adımları */
.form-step {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.form-step.active {
  display: block;
}

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

.step-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.step-description {
  font-size: var(--font-size-md);
  color: var(--secondary-text-color);
  margin-bottom: 2rem;
}

/* Form Grupları */
.form-group {
  margin-bottom: 1.5rem;
}

.form-floating {
  position: relative;
}

.form-control {
  width: 100%;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: var(--font-size-md);
  background-color: white;
  transition: all var(--transition-normal);
  height: 56px;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 2px rgba(var(--primary-red-rgb), 0.1);
}

.form-floating label {
  position: absolute;
  top: 16px;
  left: 16px;
  color: #777;
  font-size: var(--font-size-md);
  pointer-events: none;
  transition: all var(--transition-normal);
  z-index: 1;
}

.form-floating .form-control:focus ~ label,
.form-floating .form-control:not(:placeholder-shown) ~ label {
  top: -10px;
  left: 10px;
  font-size: 12px;
  background-color: white;
  padding: 0 5px;
  color: var(--primary-red);
}

/* Textarea */
textarea.form-control {
  height: auto;
  min-height: 120px;
  resize: vertical;
}

/* Özel Dropdown Stilleri */
.custom-dropdown-input {
  position: relative;
  width: 100%;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: var(--font-size-md);
  background-color: white;
  transition: all var(--transition-normal);
  height: 56px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-dropdown-input span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  max-width: 90%;
  color: #777; /* varsayılan placeholder rengi */
  line-height: 1.2;
  font-weight: normal;
}

.custom-dropdown-input.selected span {
  color: var(--text-color); /* seçim yapıldığında metin rengi */
}

.custom-dropdown-input.active,
.custom-dropdown-input:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 2px rgba(var(--primary-red-rgb), 0.1);
  outline: none;
}

.custom-dropdown-input.selected {
  color: var(--text-color);
}

.form-floating .custom-dropdown-input ~ label {
  position: absolute;
  top: 16px;
  left: 16px;
  color: #777;
  font-size: var(--font-size-md);
  pointer-events: none;
  transition: all var(--transition-normal);
  z-index: 1;
}

.form-floating .custom-dropdown-input.active ~ label,
.form-floating .custom-dropdown-input.selected ~ label,
.form-floating .custom-dropdown-input:focus ~ label {
  top: -10px;
  left: 10px;
  font-size: 12px;
  background-color: white;
  padding: 0 5px;
  color: var(--primary-red);
}

.custom-dropdown-input svg {
  transition: transform var(--transition-normal);
}

.custom-dropdown-input.active svg {
  transform: rotate(180deg);
  stroke: var(--primary-red);
}

.dropdown-options {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  max-height: 0; /* Başlangıçta gizli olması için */
  overflow: hidden; /* Başlangıçta gizli */
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
  opacity: 0;
  transition: all var(--transition-normal);
  pointer-events: none;
  scrollbar-width: thin; /* Firefox için ince kaydırma çubuğu */
}

/* Chrome, Edge ve Safari için özel kaydırma çubuğu stili */
.dropdown-options::-webkit-scrollbar {
  width: 6px;
}

.dropdown-options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.dropdown-options::-webkit-scrollbar-thumb {
  background: #c5c5c5;
  border-radius: 10px;
}

.dropdown-options::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.dropdown-options.show {
  max-height: 250px; /* Yüksekliği artırarak tüm seçeneklerin görülebilmesini sağla */
  opacity: 1;
  pointer-events: all;
  overflow-y: auto; /* Gösterilen durumda scroll'u aktifleştir */
}

.dropdown-options li {
  padding: 14px 16px;
  font-size: var(--font-size-md);
  color: var(--text-color);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.dropdown-options li:hover {
  background-color: rgba(var(--primary-red-rgb), 0.05);
  color: var(--primary-red);
}

.dropdown-options li.selected {
  background-color: rgba(var(--primary-red-rgb), 0.1);
  color: var(--primary-red);
  font-weight: var(--font-weight-semibold);
}

.dropdown-options li.dropdown-category {
  font-weight: var(--font-weight-bold);
  color: var(--primary-red);
  background-color: rgba(var(--primary-red-rgb), 0.05);
  cursor: default;
  font-size: var(--font-size-sm);
  padding: 10px 16px;
  margin-top: 8px;
  border-bottom: 1px solid rgba(var(--primary-red-rgb), 0.1);
  pointer-events: none;
}

.dropdown-options li.dropdown-category:first-child {
  margin-top: 0;
}

.dropdown-options li.dropdown-category:hover {
  background-color: rgba(var(--primary-red-rgb), 0.05);
  color: var(--primary-red);
}

/* Checkbox Stilleri */
.checkbox-group {
  margin-top: 2rem;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.form-check-input {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-top: 3px;
  border: 2px solid #ddd;
  border-radius: 4px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.form-check-input:checked {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px;
}

.form-check-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(var(--primary-red-rgb), 0.1);
}

.form-check-label {
  font-size: var(--font-size-md);
  color: var(--text-color);
  cursor: pointer;
}

.text-primary {
  color: var(--primary-red);
  text-decoration: underline;
}

/* Form Navigasyon Butonları */
.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #edf2f7;
}

.form-navigation .btn,
#quoteForm .btn,
.confirmation-message .btn {
  padding: 12px 24px;
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-semibold);
  border-radius: 50px !important;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
}

.form-navigation .btn-secondary,
#quoteForm .btn-secondary {
  background-color: #edf2f7;
  color: #4a5568;
}

.form-navigation .btn-secondary:hover,
#quoteForm .btn-secondary:hover {
  background-color: #e2e8f0;
}

.form-navigation .btn-secondary:disabled,
#quoteForm .btn-secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-navigation .btn-primary,
#quoteForm .btn-primary,
.confirmation-message .btn-primary {
  background-color: var(--primary-red);
  color: white;
}

.form-navigation .btn-primary:hover,
#quoteForm .btn-primary:hover,
.confirmation-message .btn-primary:hover {
  background-color: #c62828;
}

.form-navigation .btn-success,
#quoteForm .btn-success {
  background-color: var(--primary-green);
  color: white;
}

.form-navigation .btn-success:hover,
#quoteForm .btn-success:hover {
  background-color: #2f855a;
}

/* Açılıp Kapanabilir Teklif Özeti */
.collapsible-summary {
  background-color: #f8fafc;
  border-radius: 12px;
  margin-bottom: 2rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.collapsible-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  cursor: pointer;
  background-color: #f8fafc;
  border-bottom: 1px solid transparent; /* Kapalıyken alt çizgi görünmez */
}

.collapsible-header .step-title,
.collapsible-summary .collapsible-header .step-title {
  font-weight: var(--font-weight-bold);
}

/* Teklif Özeti yanındaki svg için margin */
.collapsible-header .menu-arrow {
  margin-left: 20px;
}

.collapsible-header h3 {
  margin: 0;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  text-align: left;
  padding-left: 0;
}

.confirmation-message .collapsible-header h3 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  margin: 0;
  text-align: left;
  padding-left: 0;
}

.toggle-btn {
  background: none;
  border: none;
  color: #4a5568;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s ease;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-btn[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.collapsible-content,
.confirmation-summary-content {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0s 0.3s;
  padding: 0;
  margin: 0;
  border-top: 0;
  height: 0;
}

.collapsible-content.active,
.confirmation-summary-content.active {
  max-height: 1000px;
  visibility: visible;
  opacity: 1;
  transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0s;
  height: auto;
  border-top: 1px solid #edf2f7;
}

.collapsible-content.active {
  padding-top: 0.4rem;
}

.confirmation-summary-content.active {
  padding: 1rem 1.5rem;
}

/* Ortak Teklif Özeti Stilleri */
.summary-item,
.confirmation-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #edf2f7;
  align-items: center;
}

.summary-item:last-child,
.confirmation-item:last-child {
  border-bottom: none;
}

.summary-label,
.confirmation-label {
  font-weight: var(--font-weight-semibold);
  color: #4a5568;
  min-width: 120px;
}

.summary-value,
.confirmation-value {
  color: var(--text-color);
  word-break: break-word;
}

.summary-value {
  text-align: left;
}

.confirmation-value {
  text-align: right;
}

/* Teklif Özeti İçeriği */
.form-summary {
  background-color: #f8fafc;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.summary-content,
.confirmation-details {
  display: grid;
  gap: 1rem;
}

/* Onay Mesajı */
.confirmation-message {
  text-align: center;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 10px;
  margin-top: 2rem;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #48bb78;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.success-icon svg path {
  fill: white;
}

.confirmation-message h3 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-color);
  margin-bottom: 1rem;
}

.confirmation-message p {
  color: #718096;
  margin-bottom: 2rem;
}

/* Onay Sonrası Teklif Özeti Stilleri */
.confirmation-summary {
  background-color: #f8fafc;
  border-radius: 12px;
  margin: 1.5rem auto;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  text-align: left;
}

.confirmation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  cursor: pointer;
  background-color: #f8fafc;
  border-bottom: 1px solid transparent;
}

.confirmation-header .step-title {
  margin: 0;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  text-align: left;
  padding-left: 0;
}

.confirmation-header .menu-arrow {
  margin-left: 20px;
}

.confirmation-summary-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  visibility: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0s 0.3s;
  padding: 0;
  margin: 0;
  border-top: 0;
  height: 0;
}

.confirmation-summary-content.active {
  max-height: 1000px;
  visibility: visible;
  opacity: 1;
  transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0s;
  padding: 1rem 1.5rem;
  border-top: 1px solid #edf2f7;
  height: auto;
}

.confirmation-details {
  display: grid;
  gap: 1rem;
}

/* Eski onay mesajı stillerini kaldır */
.confirmation-message .form-summary {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* Buton Stilleri */
.confirmation-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-secondary {
  background-color: #718096;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #4a5568;
}

.btn-primary {
  background-color: #ff3b30;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #e02e24;
}

/* Responsive Ayarlar */
@media (max-width: 992px) {
  .form-container {
    padding: 1.5rem;
    margin: 0 var(--spacing-md);
  }

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

  .container {
    padding: 0 var(--spacing-md);
  }

  .alternative-contact-info {
    margin: 0 auto 1.5rem;
  }
}

@media (max-width: 768px) {
  .quote-page {
    padding: 30px 0 60px;
  }

  .confirmation-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .summary-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .summary-item strong {
    width: 100%;
    margin-bottom: 0.25rem;
  }

  .page-title {
    font-size: var(--font-size-2xl);
    margin: var(--spacing-lg) 0;
  }

  .page-title:after {
    width: 60px;
    height: 3px;
    margin: 10px auto 0;
  }

  .form-container {
    padding: 1.25rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin: 0 var(--spacing-sm);
  }

  .step span {
    font-size: 12px;
  }

  .step-icon {
    width: 40px;
    height: 40px;
  }

  .step-icon svg {
    width: 20px;
    height: 20px;
  }

  .step-indicators::before,
  .step-indicators::after {
    top: 20px;
  }

  .step-indicators {
    margin-bottom: 2rem;
  }

  .form-navigation {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }

  .form-navigation .btn,
  #quoteForm .btn,
  .confirmation-message .btn {
    width: 100%;
    padding: 12px 15px;
    font-size: var(--font-size-sm);
  }

  .form-navigation #nextBtn,
  .form-navigation #submitBtn {
    order: 1;
  }

  .form-navigation #prevBtn {
    order: 2;
  }

  .alternative-contact-info {
    margin: 0 var(--spacing-sm) 1.5rem;
    padding: 0.75rem 1rem;
  }

  .alternative-contact-info p {
    font-size: 14px;
  }

  .step-title {
    font-size: var(--font-size-xl);
    text-align: center;
  }

  .step-description {
    font-size: var(--font-size-sm);
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .collapsible-header h3 {
    font-size: var(--font-size-lg);
  }

  .confirmation-message h3 {
    font-size: var(--font-size-xl);
  }

  .confirmation-message p {
    font-size: var(--font-size-sm);
    margin-bottom: 1.5rem;
  }

  .success-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .success-icon svg {
    width: 30px;
    height: 30px;
  }

  .form-control {
    padding: 14px;
    height: 50px;
    font-size: var(--font-size-sm);
  }

  .form-floating label {
    top: 14px;
    left: 14px;
    font-size: var(--font-size-sm);
  }

  .custom-dropdown-input {
    padding: 14px;
    height: 50px;
    font-size: var(--font-size-sm);
    display: flex;
    align-items: center;
  }

  .dropdown-options li {
    padding: 12px 14px;
    font-size: var(--font-size-sm);
  }

  textarea.form-control {
    min-height: 100px;
  }
}

@media (max-width: 576px) {
  .quote-page {
    padding: 20px 0 40px;
  }

  .page-title {
    font-size: var(--font-size-xl);
    margin: var(--spacing-md) 0;
  }

  .page-title:after {
    width: 50px;
    height: 3px;
    margin: 8px auto 0;
  }

  .step-title {
    font-size: var(--font-size-lg);
  }

  .step-description {
    margin-bottom: 1.25rem;
  }

  .step span {
    display: none;
  }

  .step-indicators {
    margin-bottom: 1.5rem;
  }

  .step-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 0.25rem;
  }

  .step-icon svg {
    width: 18px;
    height: 18px;
  }

  .step-indicators::before,
  .step-indicators::after {
    top: 18px;
  }

  .form-check-label {
    font-size: 13px;
  }

  .form-container {
    padding: 1rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-control {
    padding: 12px;
    height: 45px;
    font-size: var(--font-size-xs);
  }

  .form-floating label {
    top: 12px;
    left: 12px;
    font-size: var(--font-size-xs);
    max-width: 85%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  .form-floating .form-control:focus ~ label,
  .form-floating .form-control:not(:placeholder-shown) ~ label,
  .form-floating .custom-dropdown-input.active ~ label,
  .form-floating .custom-dropdown-input.selected ~ label {
    top: -8px;
    left: 8px;
    font-size: 10px;
    padding: 0 4px;
  }

  .custom-dropdown-input {
    padding: 12px;
    height: 45px;
    font-size: var(--font-size-xs);
    display: flex;
    align-items: center;
  }

  .custom-dropdown-input span {
    max-width: 85%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: var(--font-size-xs);
    line-height: 1.2;
  }

  .dropdown-options li {
    padding: 10px 12px;
    font-size: var(--font-size-xs);
  }

  textarea.form-control {
    min-height: 80px;
  }

  .collapsible-header {
    padding: 0.75rem 1rem;
  }

  .confirmation-summary-content.active {
    padding: 0.75rem 1rem;
  }

  .confirmation-message {
    padding: 1.5rem 1rem;
  }

  .success-icon {
    width: 50px;
    height: 50px;
  }

  .success-icon svg {
    width: 25px;
    height: 25px;
  }

  .form-navigation {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }

  .confirmation-buttons {
    margin-top: 1.5rem;
  }

  .alternative-contact-info p {
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .step-icon {
    width: 32px;
    height: 32px;
  }

  .step-icon svg {
    width: 16px;
    height: 16px;
  }

  .step-indicators::before,
  .step-indicators::after {
    top: 16px;
  }

  .form-navigation .btn,
  #quoteForm .btn,
  .confirmation-message .btn {
    padding: 10px 12px;
    font-size: var(--font-size-xs);
  }

  .confirmation-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .confirmation-label {
    margin-bottom: 0.25rem;
  }

  .confirmation-value {
    text-align: left;
  }

  .custom-dropdown-input {
    padding: 10px;
    height: 40px;
    font-size: 12px;
  }

  .custom-dropdown-input span {
    max-width: 80%;
    font-size: 12px;
    line-height: 1.2;
  }

  .form-floating label {
    font-size: 12px;
    max-width: 80%;
  }
}

/* Hover efektlerini sadece mouse olan cihazlarda göster */
@media (hover: hover) {
  .btn-primary:hover {
    background-color: #e02e24;
  }

  .btn-secondary:hover {
    background-color: #4a5568;
  }

  .form-navigation .btn-primary:hover,
  #quoteForm .btn-primary:hover,
  .confirmation-message .btn-primary:hover {
    background-color: #c62828;
  }

  .form-navigation .btn-secondary:hover,
  #quoteForm .btn-secondary:hover {
    background-color: #e2e8f0;
  }

  .form-navigation .btn-success:hover,
  #quoteForm .btn-success:hover {
    background-color: #2f855a;
  }

  .dropdown-options li:hover {
    background-color: rgba(var(--primary-red-rgb), 0.05);
    color: var(--primary-red);
  }

  .alternative-contact-info a:hover {
    text-decoration: underline;
  }
}

/* Mobil cihazlar için hover efektlerini devre dışı bırak */
@media (hover: none) {
  .btn-primary:hover,
  .btn-secondary:hover,
  .form-navigation .btn-primary:hover,
  .form-navigation .btn-secondary:hover,
  .form-navigation .btn-success:hover,
  #quoteForm .btn-primary:hover,
  #quoteForm .btn-secondary:hover,
  #quoteForm .btn-success:hover,
  .confirmation-message .btn-primary:hover,
  .dropdown-options li:hover,
  .alternative-contact-info a:hover {
    background-color: inherit;
    text-decoration: none;
    transform: none;
  }

  /* Mobil için dokunma efekti */
  .btn-primary:active,
  .form-navigation .btn-primary:active,
  #quoteForm .btn-primary:active,
  .confirmation-message .btn-primary:active {
    background-color: #c62828;
  }

  .btn-secondary:active,
  .form-navigation .btn-secondary:active,
  #quoteForm .btn-secondary:active {
    background-color: #4a5568;
  }

  .dropdown-options li:active {
    background-color: rgba(var(--primary-red-rgb), 0.05);
    color: var(--primary-red);
  }

  .alternative-contact-info a:active {
    color: #c62828;
  }
}

/* Hata Mesajları */
.error-message {
  color: #e53e3e;
  font-size: 12px;
  margin-top: 0.5rem;
  display: block;
}

.form-control.error {
  border-color: #e53e3e;
}

/* Teklif özeti içeriğini hizalama */
.confirmation-message .summary-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #edf2f7;
  align-items: center;
}

/* Alternatif İletişim Bilgisi */
.alternative-contact-info {
  max-width: 800px;
  margin: 0 auto 2rem;
  padding: 1rem 1.5rem;
  background-color: #f9f9f9;
  border: 1px solid #eaeaea;
  border-radius: 6px;
  text-align: center;
}

.alternative-contact-info p {
  font-size: 15px;
  line-height: 1.5;
  color: #666;
  margin: 0;
}

.alternative-contact-info a {
  color: #ff3b30;
  font-weight: 500;
  text-decoration: none;
}

.alternative-contact-info a:hover {
  text-decoration: underline;
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
  .alternative-contact-info {
    margin: 0 1rem 1.5rem;
    padding: 0.75rem 1rem;
  }

  .alternative-contact-info p {
    font-size: 14px;
  }
}

/* KVKK Checkbox Stilleri */
.checkbox-group {
  margin-bottom: var(--spacing-lg);
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.checkbox-container:hover {
  border-color: var(--primary-red);
  background: rgba(255, 255, 255, 0.8);
}

.checkbox-container.error {
  border-color: var(--primary-red);
  background: rgba(255, 69, 69, 0.1);
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

#kvkk-consent-quote {
  margin: 0;
  margin-top: 2px;
  width: 18px;
  height: 18px;
  accent-color: var(--primary-red);
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-label {
  font-size: var(--font-size-sm);
  line-height: 1.6;
  color: var(--text-color);
  cursor: pointer;
  margin: 0;
  user-select: none;
}

.kvkk-link {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  transition: color 0.3s ease;
}

.kvkk-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Responsif checkbox */
@media (max-width: 768px) {
  .checkbox-container {
    padding: var(--spacing-sm);
    gap: var(--spacing-xs);
  }

  .checkbox-label {
    font-size: var(--font-size-xs);
    line-height: 1.5;
  }

  #kvkk-consent-quote {
    width: 16px;
    height: 16px;
    margin-top: 1px;
  }
}
