.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-7286c59:#3B82F6;--e-global-color-52f3770:#FCB603;--e-global-color-380f943:#F8FAFC;--e-global-color-92942ff:#64748B;--e-global-color-b00a0e3:#292929;--e-global-typography-primary-font-family:"Poppins";--e-global-typography-primary-font-size:23px;--e-global-typography-primary-font-weight:600;--e-global-typography-primary-line-height:22px;--e-global-typography-primary-letter-spacing:0.2px;--e-global-typography-secondary-font-family:"Poppins";--e-global-typography-secondary-font-size:18px;--e-global-typography-secondary-font-weight:500;--e-global-typography-secondary-line-height:18px;--e-global-typography-text-font-family:"Poppins";--e-global-typography-text-font-size:15px;--e-global-typography-text-font-weight:400;--e-global-typography-text-line-height:15px;--e-global-typography-text-letter-spacing:0.2px;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;color:#333333;font-family:"Poppins", Sans-serif;font-size:15px;font-weight:400;letter-spacing:0.2px;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-kit-6 a{color:var( --e-global-color-b00a0e3 );font-family:"Poppins", Sans-serif;font-weight:600;}.elementor-kit-6 h1{color:var( --e-global-color-b00a0e3 );font-family:"Poppins", Sans-serif;font-weight:600;}.elementor-kit-6 h2{color:var( --e-global-color-b00a0e3 );font-family:"Poppins", Sans-serif;font-weight:600;}.elementor-kit-6 h3{color:var( --e-global-color-b00a0e3 );}.elementor-kit-6 h4{color:var( --e-global-color-b00a0e3 );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-6{--e-global-typography-primary-font-size:18px;--e-global-typography-secondary-font-size:15px;--e-global-typography-secondary-letter-spacing:0.2px;--e-global-typography-text-font-size:14px;font-size:14px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */* Genel font ve renk */
body {
  font-family: 'Poppins', sans-serif;
  color: #292929;
}

/* Ortak form yapısı */
.vehicle-form,
.vehicle_privacy_form,
.arac-satis-form,
.acil-durum-form {
  max-width: 600px;
  margin: 30px auto;
  background: #fdfdfd;
  padding: 1px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

/* Label */
.acf-field label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  color: #292929;
}

/* Input / textarea / select */
.acf-input input[type="text"],
.acf-input input[type="tel"],
.acf-input input[type="url"],
.acf-input textarea,
.acf-input select {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 20px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  box-sizing: border-box;
}

.acf-form input[type="submit"] {
  background-color: #2c57f0; /* Canlı mavi */
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(44, 87, 240, 0.3);
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.acf-form input[type="submit"]:hover {
  background-color: #194adb;
  box-shadow: 0 6px 16px rgba(25, 74, 219, 0.4);
}



/* ✅ ACF Extended Toggle Switch */
.vehicle_privacy_form .acf-switch {
  position: relative;
  width: 48px;
  height: 28px;
  background: #f44336;
  border-radius: 30px;
  transition: background-color 0.3s ease;
  display: inline-block;
  vertical-align: middle;
}

/* İçindeki daire */
.vehicle_privacy_form .acf-switch:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  transition: 0.3s ease;
}

/* Aktifse yeşil yap */
.vehicle_privacy_form input[type="checkbox"]:checked + .acf-switch {
  background-color: #4CAF50;
}
.vehicle_privacy_form input[type="checkbox"]:checked + .acf-switch:before {
  transform: translateX(20px);
}


/* Switch kapalıyken (varsayılan): Arka plan kırmızı */
.acf-field-true-false .acf-switch {
  background-color: #f44336 !important; /* kırmızı */
  border: none;
}

/* Switch açıkken (aktif): Arka plan yeşil */
.acf-field-true-false input[type="checkbox"]:checked + .acf-switch {
  background-color: #4CAF50 !important; /* yeşil */
}

/* Tüm ACF True/False alanlarını yatay hizala */
.acf-field-true-false {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Etiket (metin) solda */
.acf-field-true-false label {
  font-weight: 600;
  margin: 0;
  flex: 1;
  font-size: 16px;
  color: #292929;
}

/* Switch’in kendisi sağda */
.acf-field-true-false .acf-input {
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
}

/* Switch içi ON/OFF yazısını gizle */
.acf-field-true-false .acf-switch span {
  display: none !important;
}

/* Switch stilini daha yuvarlak yap */
.acf-field-true-false .acf-switch {
  width: 52px;
  height: 30px;
  border-radius: 3px;
}

/* Düğmeyi de tam ortalayarak daha şık hale getir */
.acf-field-true-false .acf-switch:before {
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transform: none;
}

/* Aktifken düğmeyi sağa kaydır */
.acf-field-true-false input[type="checkbox"]:checked + .acf-switch:before {
  transform: translateX(22px);
}

/* ACF Submit butonu için güçlü seçim */
.acf-form input[type="submit"],
.acf-button.button.button-primary,
.acf-button.button {
  background-color: #2c57f0 !important;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(44, 87, 240, 0.3);
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.acf-form input[type="submit"]:hover,
.acf-button.button.button-primary:hover {
  background-color: #194adb !important;
  box-shadow: 0 6px 16px rgba(25, 74, 219, 0.4);
}

.acf-field .description {
  font-size: 13px;
  color: #666;
  font-style: italic;
  margin-top: 4px;
}/* End custom CSS */