/* taksit.css — taksitli araç al sayfası */

.taksit-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 62, 128, 0.96), rgba(0, 122, 255, 0.88)),
    radial-gradient(circle at 85% 15%, rgba(255, 224, 130, 0.45), transparent 32%),
    radial-gradient(circle at 10% 90%, rgba(91, 155, 213, 0.5), transparent 38%);
  color: var(--white);
  padding: 72px 32px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 56px;
  box-shadow: 0 18px 42px rgba(0, 62, 128, 0.2);
}
.taksit-hero__inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.taksit-hero__eyebrow {
  display: inline-block;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 600;
}
.taksit-hero__title { margin: 18px 0 14px; color: var(--white); font-size: 42px; line-height: 1.15; }
.taksit-hero__accent { color: #ffe082; }
.taksit-hero__sub { max-width: 650px; margin: 0 auto; color: rgba(255, 255, 255, 0.9); line-height: 1.65; }
.taksit-hero__actions { display: flex; gap: 12px; justify-content: center; margin-top: 26px; flex-wrap: wrap; }
.taksit-hero__badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 22px;
  flex-wrap: wrap;
}
.taksit-hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  backdrop-filter: blur(6px);
}

.taksit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.taksit-btn--primary { background: var(--white); color: var(--sky); }
.taksit-btn--primary:hover { background: #f0f7ff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16); }
.taksit-btn--ghost { background: rgba(255, 255, 255, 0.08); color: var(--white); border: 1.5px solid rgba(255, 255, 255, 0.55); }
.taksit-btn--ghost:hover { background: rgba(255, 255, 255, 0.16); border-color: var(--white); }
.taksit-btn--lg { padding: 16px 32px; font-size: 17px; }

.taksit-section-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin: 0 0 12px;
  position: relative;
}
.taksit-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #5B9BD5, #007AFF);
  margin: 14px auto 0;
  border-radius: 2px;
}
.taksit-section-sub {
  text-align: center;
  color: var(--ink-soft);
  margin: 0 auto 32px;
  max-width: 640px;
  line-height: 1.6;
}

.taksit-advantages { margin: 0 0 56px; }
.taksit-adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.taksit-adv-card {
  background: var(--white);
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--sky-pale);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
}
.taksit-adv-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(91, 155, 213, 0.14);
  border-color: var(--sky);
}
.taksit-adv-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #f0f7ff, #dbeafe);
  color: var(--sky);
  box-shadow: 0 6px 14px rgba(91, 155, 213, 0.18);
}
.taksit-adv-card h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin: 0 0 8px; }
.taksit-adv-card p { font-size: 14px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

.taksit-how { margin: 0 0 56px; }
.taksit-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: stretch;
  justify-content: center;
}
.taksit-step {
  background: var(--white);
  padding: 24px 18px;
  border-radius: 14px;
  border: 1px solid var(--sky-pale);
  text-align: center;
  flex: 1 1 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
}
.taksit-step:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(91, 155, 213, 0.14); }
.taksit-step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #007AFF, #003E80);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin: 0 auto 12px;
  box-shadow: 0 6px 14px rgba(0, 122, 255, 0.25);
}
.taksit-step h3 { font-size: 16px; font-weight: 700; color: var(--ink); margin: 0 0 6px; }
.taksit-step p { font-size: 13px; line-height: 1.55; color: var(--ink-soft); margin: 0; }
.taksit-step-arrow {
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--sky);
  font-weight: 700;
}

.taksit-form .form-result { font-weight: 500; padding: 16px; border-radius: 10px; text-align: center; display: none; }
.taksit-form .hasar-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.taksit-form .field input,
.taksit-form .field select,
.taksit-form .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--sky-pale);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: var(--white);
}
.taksit-form .kvkk-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0;
  font-size: 13px;
}
.taksit-form .btn-submit {
  padding: 14px 24px;
  background: var(--sky);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-result--success { background: #d4edda; color: #155724; display: block !important; }
.form-result--error { background: #f8d7da; color: #721c24; display: block !important; }

.taksit-faq { margin: 0 0 56px; }
.taksit-faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.taksit-faq-item {
  background: var(--white);
  border: 1px solid var(--sky-pale);
  border-radius: 12px;
  padding: 14px 18px;
  transition: all 0.2s ease;
}
.taksit-faq-item[open] { border-color: var(--sky); box-shadow: 0 8px 18px rgba(91, 155, 213, 0.12); }
.taksit-faq-item summary {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.taksit-faq-item summary::-webkit-details-marker { display: none; }
.taksit-faq-item summary::after { content: '+'; font-size: 22px; color: var(--sky); font-weight: 700; transition: transform 0.2s ease; }
.taksit-faq-item[open] summary::after { content: '−'; }
.taksit-faq-item p { margin: 12px 0 0; font-size: 14px; line-height: 1.6; color: var(--ink-soft); }

.taksit-cta {
  background: linear-gradient(135deg, var(--sky) 0%, #0056b3 100%);
  color: var(--white);
  padding: 40px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 18px 42px rgba(0, 62, 128, 0.2);
}
.taksit-cta h2 { color: var(--white); margin: 0 0 12px; font-size: 26px; }
.taksit-cta p { color: rgba(255, 255, 255, 0.92); margin: 0 auto 20px; max-width: 580px; line-height: 1.6; }
.taksit-cta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.taksit-plan { margin: 0 0 56px; }
.taksit-plan-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--sky-pale);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(91, 155, 213, 0.1);
}
.taksit-plan-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--sky-pale);
  font-size: 15px;
}
.taksit-plan-card__row:last-of-type { border-bottom: none; }
.taksit-plan-card__row--accent .taksit-plan-card__label,
.taksit-plan-card__row--accent .taksit-plan-card__value { color: var(--sky); font-weight: 700; }
.taksit-plan-card__row--highlight {
  background: linear-gradient(135deg, #f0f7ff, #dbeafe);
  margin: 8px -24px;
  padding: 16px 24px;
  border-bottom: none;
  border-radius: 10px;
}
.taksit-plan-card__row--highlight .taksit-plan-card__label,
.taksit-plan-card__row--highlight .taksit-plan-card__value {
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
}
.taksit-plan-card__label { color: var(--ink-soft); }
.taksit-plan-card__value { font-weight: 700; color: var(--ink); }
.taksit-plan-card__note {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--sky-pale);
  font-size: 12px;
  color: var(--ink-soft);
  font-style: italic;
}

@media (max-width: 600px) {
  .taksit-hero { padding: 56px 22px; }
  .taksit-hero__title { font-size: 32px; }
  .taksit-section-title { font-size: 24px; }
  .taksit-form .hasar-row { grid-template-columns: 1fr; }
  .taksit-step-arrow { display: none; }
}

/* From legacy.css: info-section base */
.info-section { padding: 0 20px; background: var(--white); }
.info-section + .info-section { background: var(--dawn); }
.info-section h2 { font-family: var(--font-display); font-size: 32px; font-weight: 400; color: var(--ink); text-align: center; margin: 0 0 12px; line-height: 1.2; }
.info-section .section-subtitle { font-size: 15px; line-height: 1.6; color: var(--ink-hint); text-align: center; max-width: 720px; margin: 0 auto 40px; }
.info-section footer, .page-footer, body > footer { margin-top: 80px; text-align: center; padding: 32px 16px; font-size: 13px; color: var(--ink-soft); border-top: 1px solid rgba(168,202,236,0.2); background: rgba(255,255,255,0.3); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.info-section footer a, .page-footer a, body > footer a { color: var(--sky-dark); text-decoration: none; font-weight: 500; transition: color var(--transition); }
.info-section footer a:hover, .page-footer a:hover, body > footer a:hover { color: var(--sky-deep); text-decoration: underline; }

/* From legacy.css: phone input wrapper */
.phone-wrap { position: relative; }
.phone-wrap { display: block; position: relative; border: 1.5px solid var(--sky-pale); border-radius: var(--radius-sm); background: var(--white); overflow: hidden; transition: all var(--transition); }
.phone-wrap:hover { border-color: var(--sky-light); }
.phone-wrap:focus-within { border-color: var(--sky); box-shadow: 0 0 0 4px rgba(91,155,213,0.12); background: var(--dawn); }
.phone-wrap__prefix { position: absolute; left: 12px; top: 0; bottom: 0; display: flex; align-items: center; justify-content: center; color: var(--ink-soft); font-size: 13px; font-weight: 600; line-height: 1; pointer-events: none; z-index: 1; }
.phone-wrap__input { width: 100%; padding: 12px 14px 12px 44px !important; border: none; background: transparent; font-size: 14px; font-family: inherit; outline: none; }

/* info-section modifiers */
.info-section__title { position: relative; display: inline-block; padding-bottom: 12px; margin: 0 0 18px; text-align: center; font-family: var(--font-display); font-size: 28px; color: var(--ink); }
.info-section__title:not(:only-child) { display: block; }
.info-section__subtitle { font-size: 15px; line-height: 1.65; color: var(--ink-mid, #4b5563); text-align: center; max-width: 720px; margin: 0 auto 28px; }