/* Modern Custom Styles for YUO Oto Yıkama */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --surface: #ffffff;
  --bg-main: #f8fafc;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-main);
  color: #1e293b;
}

/* Plaka Stili (TR Standart Plaka Görünümü) */
.license-plate {
  display: inline-flex;
  align-items: center;
  border: 2px solid #0f172a;
  border-radius: 6px;
  background-color: #ffffff;
  font-family: 'JetBrains Mono', 'Segoe UI Black', sans-serif;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  user-select: all;
}

.license-plate .plate-flag {
  background-color: #003399;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3px 6px;
  min-height: 100%;
}

.license-plate .plate-number {
  padding: 4px 10px;
  font-size: 15px;
  color: #0f172a;
  text-transform: uppercase;
}

.license-plate-lg {
  border-width: 3px;
  border-radius: 8px;
}
.license-plate-lg .plate-flag {
  font-size: 12px;
  padding: 6px 9px;
}
.license-plate-lg .plate-number {
  padding: 6px 14px;
  font-size: 20px;
  letter-spacing: 2.5px;
}

/* Status Badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
}

.status-BEKLIYOR {
  background-color: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}
.status-YIKAMADA {
  background-color: #e0f2fe;
  color: #0369a1;
  border: 1px solid #bae6fd;
}
.status-DETAYDA {
  background-color: #f3e8ff;
  color: #7e22ce;
  border: 1px solid #e9d5ff;
}
.status-HAZIR {
  background-color: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
}
.status-TESLIM_EDILDI {
  background-color: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
}
.status-IPTAL {
  background-color: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

/* Custom scrollbars */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Animations */
@keyframes pulse-dot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.animate-pulse-dot {
  animation: pulse-dot 1.5s infinite ease-in-out;
}

/* Ekspertiz Check-Chip Butonları */
.check-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  border: 1.5px solid #cbd5e1;
  background-color: #ffffff;
  color: #475569;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.check-chip:hover {
  border-color: #94a3b8;
  background-color: #f8fafc;
}

.check-chip.active {
  background-color: #0f172a;
  border-color: #f59e0b;
  color: #fef08a;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.25);
  transform: translateY(-1px);
}

.check-chip.active i {
  color: #f59e0b;
}

/* Detailing Altın & Sarı Aksan Butonları */
.btn-gold-action {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #000000;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
  transition: all 0.2s;
}
.btn-gold-action:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
  transform: translateY(-1px);
}

/* Kart Vurguları */
.detailing-border-gold {
  border-left: 4px solid #f59e0b;
}

/* Genel Görünürlük & Yardımcı Kurallar (CDN bağımsız) */
.hidden {
  display: none !important;
}

.wizard-step {
  display: none;
}
.wizard-step.active-step {
  display: block !important;
}

/* Mascot & Showcase Animations */
@keyframes float-mascot {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(0.5deg);
  }
}

.mascot-floating {
  animation: float-mascot 4s ease-in-out infinite;
}

.mascot-glow {
  filter: drop-shadow(0 10px 25px rgba(237, 216, 21, 0.28)) drop-shadow(0 0 50px rgba(245, 158, 11, 0.15));
  transition: filter 0.3s ease;
}
.mascot-glow:hover {
  filter: drop-shadow(0 15px 35px rgba(237, 216, 21, 0.45)) drop-shadow(0 0 65px rgba(245, 158, 11, 0.25));
}

.gold-circle-icon {
  width: 58px;
  height: 58px;
  border-radius: 9999px;
  border: 2.5px solid #edd815;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #edd815;
  font-size: 24px;
  background: radial-gradient(circle, rgba(237, 216, 21, 0.12) 0%, rgba(11, 15, 25, 0.8) 100%);
  box-shadow: 0 0 20px rgba(237, 216, 21, 0.25);
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gold-circle-icon:hover {
  transform: scale(1.08);
  box-shadow: 0 0 28px rgba(237, 216, 21, 0.45);
  border-color: #fbbf24;
  color: #ffffff;
}

.glass-card-dark {
  background: rgba(17, 24, 39, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card-light {
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* FAQ Accordion */
.faq-item {
  transition: all 0.2s ease;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}
.faq-item.open .faq-answer {
  max-height: 500px;
  transition: max-height 0.35s ease-in-out;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

/* Calculator Chips */
.calc-service-item {
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}
.calc-service-item:hover {
  transform: translateY(-2px);
}
.calc-service-item.selected {
  border-color: #f59e0b !important;
  background-color: rgba(245, 158, 11, 0.08) !important;
}

/* ======================================================== */
/* ADMIN EXECUTIVE STUDIO STYLES */
/* ======================================================== */
.admin-dark {
  background-color: #0b0f19;
  color: #f1f5f9;
}

.admin-dark .status-BEKLIYOR {
  background-color: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.35);
}
.admin-dark .status-YIKAMADA {
  background-color: rgba(14, 165, 233, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(14, 165, 233, 0.35);
}
.admin-dark .status-DETAYDA {
  background-color: rgba(168, 85, 247, 0.15);
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.35);
}
.admin-dark .status-HAZIR {
  background-color: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.35);
}
.admin-dark .status-TESLIM_EDILDI {
  background-color: rgba(100, 116, 139, 0.15);
  color: #94a3b8;
  border: 1px solid rgba(100, 116, 139, 0.3);
}
.admin-dark .status-IPTAL {
  background-color: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.admin-dark .check-chip {
  border-color: #334155;
  background-color: #0f172a;
  color: #94a3b8;
}
.admin-dark .check-chip:hover {
  border-color: #475569;
  background-color: #1e293b;
  color: #f8fafc;
}
.admin-dark .check-chip.active {
  background-color: rgba(245, 158, 11, 0.18);
  border-color: #f59e0b;
  color: #fbbf24;
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.35);
}

.admin-glass-card {
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid #1e293b;
}

.admin-tab-active {
  background: rgba(245, 158, 11, 0.15) !important;
  color: #fbbf24 !important;
  border-color: rgba(245, 158, 11, 0.4) !important;
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.2) !important;
}


