/* Rezervasyon — araç listesi görselleri */
.aht-rv-veh { display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg,#f5f5f5 0%,#e9e9e9 100%); }
.aht-rv-veh-img { width: 100%; height: 160px; object-fit: contain; padding: 10px 14px; transition: transform .5s ease; }
.group:hover .aht-rv-veh-img { transform: scale(1.05); }
@media (min-width: 640px) { .aht-rv-veh-img { height: 100%; min-height: 150px; } }

/* Teklif İste popup */
#tkfModal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; }
#tkfModal.open { display: flex; }
#tkfBackdrop { position: absolute; inset: 0; background: rgba(10,10,12,.65); backdrop-filter: blur(3px); }
.aht-tkf-box { position: relative; width: 100%; max-width: 620px; max-height: 90vh; overflow-y: auto;
  background: #fff; border-radius: 3px; box-shadow: 0 30px 80px rgba(0,0,0,.35); animation: tkfIn .25s ease; }
@keyframes tkfIn { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
.aht-tkf-head { display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 24px 32px; border-bottom: 1px solid #e0d6c0; }
.aht-tkf-head h3 { margin: 0; font-size: 19px; font-weight: 700; color: #2f2f2f; }
.aht-tkf-head small { display: block; margin-top: 3px; color: #8a8b91; font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; }
.aht-tkf-close { border: 0; background: #f5f5f5; width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer; color: #45464d; flex-shrink: 0;
  transition: background .15s, color .15s; }
.aht-tkf-close:hover { background: #111; color: #fff; }
.aht-tkf-body { padding: 28px 32px 32px; }
.aht-tkf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 14px; }
.aht-tkf-grid .full { grid-column: 1 / -1; }
@media (max-width: 560px) { .aht-tkf-grid { grid-template-columns: 1fr; } .aht-tkf-grid .full { grid-column: auto; } }
.aht-tkf-field label { display: block; font-size: 12.5px; font-weight: 600; letter-spacing: .03em; color: #45464d; margin-bottom: 6px; }
.aht-tkf-field input, .aht-tkf-field textarea {
  width: 100%; background: #fbf8f0; border: 1px solid #e0d6c0; border-radius: 3px;
  padding: 12px 14px; font-size: 14.5px; color: #2f2f2f; outline: none;
  transition: border-color .15s, box-shadow .15s, background .15s; }
.aht-tkf-field input:focus, .aht-tkf-field textarea:focus {
  border-color: #990000; background: #fff; box-shadow: 0 0 0 3px rgba(153,0,0,.18); }
.aht-tkf-field textarea { resize: vertical; min-height: 92px; }
.aht-tkf-submit { width: 100%; margin-top: 22px; background: #990000; color: #fff; border: 0;
  padding: 15px; border-radius: 3px; font-size: 15px; font-weight: 700; letter-spacing: .02em;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  cursor: pointer; transition: filter .15s, transform .15s; }
.aht-tkf-submit:hover { filter: brightness(1.06); }
.aht-tkf-submit:active { transform: scale(.985); }
.aht-tkf-foot { margin-top: 16px; text-align: center; font-size: 13.5px; color: #8a8b91; }
.aht-tkf-foot a { color: #45464d; font-weight: 600; }
.aht-tkf-foot a:hover { color: #990000; }
