/* ═══════════════════════════════════════════════════════════════
   OtoTamircileri.com / Logy – Premium Light Design System
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Color Palette - Soft Light Theme matching the uploaded UI */
  --bg-0: #f4f6fa;
  --bg-1: #ffffff;
  --bg-2: #f0f4f9;
  --bg-3: #e2e8f0;
  --bg-card: #ffffff;
  --surface: #f8fafc;

  --accent: #1e6091; /* Safe blue from the UI image buttons */
  --accent-hover: #1a4f7a;
  --accent-light: #e8f1f5;
  --accent-glow: 0 4px 14px rgba(30, 96, 145, 0.25);

  --blue: #1d4ed8;
  --blue-light: #eff6ff;
  --green: #10b981;
  --green-light: #ecfdf5;
  --red: #ef4444;
  --red-light: #fef2f2;
  --yellow: #f59e0b;
  --yellow-light: #fef3c7;

  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #94a3b8;

  --border: #e2e8f0;
  --border-hover: #1e6091;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 20px;
  --radius-xl: 26px;

  --shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.06);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body.oto-body {
  font-family: var(--font);
  background: var(--bg-0);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 3px; }

/* ══════════════════ NAV ══════════════════ */
.oto-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 1.5rem;
  background: var(--bg-1);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.nav-container {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; font-size: 1.5rem; font-weight: 800;
  color: var(--accent);
}
.logo-icon { font-size: 1.6rem; }
.logo-accent { color: var(--text-primary); }
.nav-links { display: flex; align-items: center; gap: 0.5rem; }
.nav-link {
  padding: 0.5rem 0.9rem; border-radius: var(--radius-sm);
  text-decoration: none; color: var(--text-secondary);
  font-weight: 600; font-size: 0.925rem; transition: var(--transition);
  background: none; border: none; cursor: pointer;
}
.nav-link:hover { color: var(--accent); background: var(--bg-2); }

.nav-btn-outline {
  padding: 0.5rem 1rem; border-radius: var(--radius-sm);
  border: 1px solid var(--border); color: var(--text-secondary);
  text-decoration: none; font-weight: 600; font-size: 0.9rem;
  background: none; cursor: pointer; transition: var(--transition);
}
.nav-btn-outline:hover { border-color: var(--accent); color: var(--accent); background: var(--bg-2); }

.nav-btn-primary {
  padding: 0.55rem 1.2rem; border-radius: var(--radius-sm);
  background: var(--accent); color: white;
  text-decoration: none; font-weight: 600; font-size: 0.9rem;
  transition: var(--transition); border: none; cursor: pointer;
}
.nav-btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: var(--accent-glow);
  transform: translateY(-1px);
}

.nav-mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-mobile-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text-secondary); border-radius: 2px;
  transition: var(--transition);
}

/* ══════════════════ HERO ══════════════════ */
.hero {
  min-height: 85vh;
  display: flex; align-items: center;
  background: radial-gradient(ellipse 100% 70% at 60% 40%, rgba(30, 96, 145, 0.05) 0%, transparent 65%),
              var(--bg-1);
  padding: 100px 1.5rem 4rem;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-container {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 3rem; position: relative; z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-light); border: 1px solid rgba(30, 96, 145, 0.2);
  color: var(--accent); padding: 6px 16px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase; margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800; line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.02em; margin-bottom: 1.5rem;
}

.hero-title .gradient-text {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.1rem; color: var(--text-secondary);
  max-width: 520px; margin-bottom: 2rem; line-height: 1.7;
}

.hero-stats {
  display: flex; gap: 2rem; margin-bottom: 2.5rem; flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; }
.stat-number { font-size: 1.8rem; font-weight: 800; color: var(--accent); }
.stat-label { font-size: 0.8rem; color: var(--text-secondary); font-weight: 500; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.85rem 1.8rem; border-radius: var(--radius-sm);
  background: var(--accent); color: white;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  transition: var(--transition); border: none; cursor: pointer;
}
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: var(--accent-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.85rem 1.8rem; border-radius: var(--radius-sm);
  background: var(--bg-1); color: var(--text-primary);
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  border: 1px solid var(--border); transition: var(--transition); cursor: pointer;
}
.btn-secondary:hover {
  border-color: var(--accent); color: var(--accent);
  background: var(--bg-2);
  transform: translateY(-2px);
}

/* Hero search card */
.hero-visual {
  display: flex; flex-direction: column; gap: 1rem;
}

.search-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.search-card h3 {
  font-size: 1.1rem; font-weight: 700; margin-bottom: 1.2rem;
  color: var(--text-primary);
}

.search-form { display: flex; flex-direction: column; gap: 0.8rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); }

.form-input {
  padding: 0.75rem 1rem; border-radius: var(--radius-sm);
  background: var(--bg-2); border: 1px solid var(--border);
  color: var(--text-primary); font-size: 0.95rem; font-family: var(--font);
  transition: var(--transition); width: 100%;
}
.form-input:focus {
  outline: none; border-color: var(--accent);
  background: var(--bg-1);
  box-shadow: 0 0 0 3px rgba(30, 96, 145, 0.15);
}
.form-input::placeholder { color: var(--text-muted); }

select.form-input { cursor: pointer; }

.btn-search {
  padding: 0.85rem; border-radius: var(--radius-sm);
  background: var(--accent); color: white;
  font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer; transition: var(--transition);
  margin-top: 0.4rem;
}
.btn-search:hover { background: var(--accent-hover); box-shadow: var(--accent-glow); }

/* ══════════════════ SECTIONS ══════════════════ */
.section {
  padding: 5rem 1.5rem;
}

.section-header {
  text-align: center; margin-bottom: 3.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.8rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800; letter-spacing: -0.02em;
  color: var(--text-primary); margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem; color: var(--text-secondary);
  max-width: 580px; margin: 0 auto;
}

.container { max-width: 1280px; margin: 0 auto; }

/* ══════════════════ CARDS ══════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.garage-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow);
}

.garage-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.garage-card-image {
  height: 180px; background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; overflow: hidden;
}

.garage-card-image img {
  width: 100%; height: 100%; object-fit: cover;
}

.garage-featured-badge {
  position: absolute; top: 12px; left: 12px;
  background: linear-gradient(135deg, var(--accent), #3a86c8);
  color: white; padding: 4px 10px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px;
}

.garage-card-body { padding: 1.2rem; flex: 1; }
.garage-card-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--text-primary); }
.garage-card-city { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.8rem; }

.garage-card-cats {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 0.8rem;
}

.cat-tag {
  padding: 3px 10px; border-radius: 100px;
  background: var(--bg-2); border: 1px solid var(--border);
  font-size: 0.72rem; color: var(--text-secondary); font-weight: 600;
}

.garage-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 1.2rem;
  border-top: 1px solid var(--border);
}

.rating-stars { display: flex; align-items: center; gap: 4px; }
.star { color: var(--yellow); font-size: 0.9rem; }
.rating-val { font-size: 0.85rem; font-weight: 700; }
.rating-count { font-size: 0.78rem; color: var(--text-muted); }

.status-badge {
  padding: 4px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 600;
}
.status-active { background: var(--green-light); color: var(--green); }
.status-pending { background: var(--yellow-light); color: var(--yellow); }
.status-suspended { background: var(--red-light); color: var(--red); }

/* ══════════════════ CATEGORY GRID ══════════════════ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.cat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.4rem; text-align: center;
  text-decoration: none; color: inherit; transition: var(--transition);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  box-shadow: var(--shadow);
}
.cat-card:hover {
  border-color: var(--accent); background: var(--accent-light);
  transform: translateY(-3px);
}
.cat-icon { font-size: 2rem; }
.cat-name { font-size: 0.9rem; font-weight: 600; }

/* ══════════════════ FLASH ══════════════════ */
.flash-area {
  position: fixed; top: 80px; right: 1.5rem; z-index: 999;
  display: flex; flex-direction: column; gap: 0.5rem; max-width: 380px;
}

.flash {
  display: flex; align-items: center; gap: 10px;
  padding: 1rem 1.2rem; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 600;
  box-shadow: var(--shadow-lg); animation: slideIn 0.3s ease;
  backdrop-filter: blur(10px);
}

.flash-success { background: rgba(16, 185, 129, 0.15); border: 1px solid rgba(16, 185, 129, 0.3); color: var(--green); }
.flash-error { background: rgba(239, 68, 68, 0.15); border: 1px solid rgba(239, 68, 68, 0.3); color: var(--red); }
.flash-info { background: rgba(30, 96, 145, 0.15); border: 1px solid rgba(30, 96, 145, 0.3); color: var(--accent); }
.flash-close { margin-left: auto; background: none; border: none; cursor: pointer; color: inherit; font-size: 1.1rem; opacity: 0.7; }
.flash-close:hover { opacity: 1; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(100%); }
  to   { opacity: 1; transform: translateX(0); }
}

.dash-layout {
  display: grid; grid-template-columns: 280px 1fr;
  min-height: 100vh; padding-top: 0;
}

.dash-sidebar {
  background: var(--bg-1); border-right: 1px solid var(--border);
  padding: 2rem 1.2rem; position: sticky; top: 80px;
  height: calc(100vh - 80px); overflow-y: auto;
  display: flex; flex-direction: column; gap: 0.3rem;
}

.sidebar-section-title {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-muted);
  padding: 0.8rem 0.8rem 0.4rem;
}

.sidebar-link {
  display: flex; align-items: center; gap: 12px;
  padding: 0.75rem 1rem; border-radius: var(--radius-sm);
  text-decoration: none; color: var(--text-secondary);
  font-weight: 600; font-size: 0.92rem; transition: var(--transition);
}
.sidebar-link:hover { background: var(--bg-2); color: var(--accent); }
.sidebar-link.active { background: var(--accent-light); color: var(--accent); font-weight: 700; }

.dash-main { padding: 2rem 2.5rem; overflow-y: auto; background: var(--bg-0); }
.dash-header { margin-bottom: 2rem; }
.dash-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 0.3rem; color: var(--text-primary); }
.dash-subtitle { color: var(--text-secondary); font-size: 0.95rem; }

/* Sidebar Support Card (Matches the illustration box at bottom left) */
.sidebar-support-card {
  margin-top: auto;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
}
.support-icon { font-size: 2.2rem; color: var(--accent); margin-bottom: 0.6rem; }
.support-title { font-size: 0.88rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.4rem; }
.support-desc { font-size: 0.78rem; color: var(--text-secondary); margin-bottom: 0.8rem; line-height: 1.5; }

/* Stat cards */
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem; margin-bottom: 2rem;
}

.stat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.6rem;
  box-shadow: var(--shadow);
}

.stat-card-icon { font-size: 1.6rem; }
.stat-card-value { font-size: 2.2rem; font-weight: 800; color: var(--text-primary); }
.stat-card-label { font-size: 0.85rem; color: var(--text-secondary); font-weight: 600; }

.stat-card.accent { border-color: rgba(30, 96, 145, 0.2); background: var(--accent-light); }
.stat-card.accent .stat-card-value { color: var(--accent); }

/* ══════════════════ FORMS ══════════════════ */
.form-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}

.form-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--text-primary); }

.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem;
}
.form-col { display: flex; flex-direction: column; gap: 6px; }
.form-col.full { grid-column: 1/-1; }

.form-label { font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); }

.form-error { font-size: 0.78rem; color: var(--red); margin-top: 4px; }

textarea.form-input { resize: vertical; min-height: 100px; }

.checkbox-group { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.checkbox-group input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--accent); }

.form-actions { display: flex; gap: 1rem; margin-top: 1.5rem; }

/* ══════════════════ PRICING CARDS ══════════════════ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2rem;
  display: flex; flex-direction: column;
  transition: var(--transition); position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}

.pricing-card.popular {
  border-color: var(--accent);
  background: linear-gradient(160deg, var(--accent-light) 0%, var(--bg-card) 100%);
}

.pricing-card.popular::before {
  content: 'EN POPÜLER';
  position: absolute; top: 20px; right: -28px;
  background: var(--accent); color: white;
  padding: 4px 40px; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 1px; transform: rotate(45deg);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-name { font-size: 0.8rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.pricing-price { font-size: 2.8rem; font-weight: 900; margin-bottom: 0.2rem; line-height: 1; color: var(--text-primary); }
.pricing-price span { font-size: 1rem; color: var(--text-secondary); font-weight: 400; }
.pricing-desc { color: var(--text-secondary); font-size: 0.88rem; margin-bottom: 1.5rem; }

.pricing-features { list-style: none; flex: 1; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.8rem; }
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--text-secondary);
}
.pricing-features li::before { content: '✓'; color: var(--green); font-weight: 700; }

.pricing-credits {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-2); border-radius: var(--radius-sm); padding: 0.8rem 1rem;
  margin-bottom: 1.2rem; font-size: 0.88rem; font-weight: 600; color: var(--accent);
}

/* ══════════════════ TABLE ══════════════════ */
.data-table {
  width: 100%; border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
}

.data-table th {
  padding: 0.9rem 1.2rem; text-align: left;
  font-size: 0.78rem; font-weight: 700; color: var(--text-secondary);
  text-transform: uppercase; letter-spacing: 0.8px;
  background: var(--bg-2); border-bottom: 1px solid var(--border);
}

.data-table td {
  padding: 0.9rem 1.2rem; font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--bg-2); }

/* ══════════════════ GARAGE DETAIL ══════════════════ */
.garage-detail { padding-top: 68px; }
.garage-hero {
  background: var(--bg-1); padding: 4rem 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.garage-hero-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; gap: 2rem; align-items: flex-start;
}
.garage-logo-large {
  width: 100px; height: 100px; border-radius: var(--radius);
  background: var(--bg-2); display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; border: 2px solid var(--border); flex-shrink: 0;
}
.garage-logo-large img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }

.garage-detail-content { padding: 3rem 1.5rem; max-width: 1100px; margin: 0 auto; }
.garage-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; }

/* ══════════════════ OFFER CARD ══════════════════ */
.offer-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.4rem; margin-bottom: 1rem;
  box-shadow: var(--shadow);
}
.offer-card.accepted { border-color: rgba(16, 185, 129, 0.4); background: var(--green-light); }
.offer-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.8rem; }
.offer-price { font-size: 1.5rem; font-weight: 800; color: var(--accent); }
.offer-garage-name { font-weight: 700; color: var(--text-primary); }
.offer-meta { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 0.6rem; }
.offer-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
.offer-actions { display: flex; gap: 0.5rem; margin-top: 1rem; }

.btn-sm {
  padding: 0.45rem 1rem; border-radius: var(--radius-sm);
  font-size: 0.82rem; font-weight: 600; cursor: pointer;
  border: none; transition: var(--transition);
}
.btn-sm-success { background: var(--green-light); color: var(--green); border: 1px solid rgba(16, 185, 129, 0.3); }
.btn-sm-success:hover { background: var(--green); color: white; }
.btn-sm-danger { background: var(--red-light); color: var(--red); border: 1px solid rgba(239, 68, 68, 0.3); }
.btn-sm-danger:hover { background: var(--red); color: white; }
.btn-sm-primary { background: var(--accent); color: white; }
.btn-sm-primary:hover { background: var(--accent-hover); }

/* ══════════════════ CREDIT PACKAGES ══════════════════ */
.credit-packages {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem; margin-bottom: 2rem;
}
.credit-pkg {
  background: var(--bg-card); border: 2px solid var(--border);
  border-radius: var(--radius); padding: 1.4rem; text-align: center;
  cursor: pointer; transition: var(--transition);
  box-shadow: var(--shadow);
}
.credit-pkg:hover, .credit-pkg.selected {
  border-color: var(--accent); background: var(--accent-light);
}
.credit-pkg-amount { font-size: 2rem; font-weight: 900; color: var(--accent); }
.credit-pkg-label { font-size: 0.78rem; font-weight: 700; color: var(--text-secondary); text-transform: uppercase; }
.credit-pkg-price { font-size: 1.2rem; font-weight: 700; margin-top: 0.5rem; color: var(--text-primary); }

/* ══════════════════ WORKING HOURS ══════════════════ */
.working-hours { display: flex; flex-direction: column; gap: 0.5rem; }
.wh-row { display: flex; gap: 10px; align-items: center; padding: 0.6rem; border-radius: var(--radius-sm); background: var(--bg-2); }
.wh-day { width: 90px; font-size: 0.85rem; font-weight: 600; }
.wh-open { color: var(--green); font-size: 0.82rem; }
.wh-closed { color: var(--text-muted); font-size: 0.82rem; }

/* ══════════════════ PAGINATION ══════════════════ */
.pagination { display: flex; gap: 0.4rem; justify-content: center; margin-top: 2rem; }
.pagination .page-link {
  padding: 6px 12px; border-radius: var(--radius-sm);
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-secondary); text-decoration: none; font-size: 0.88rem;
  transition: var(--transition);
}
.pagination .page-link:hover, .pagination .active .page-link {
  background: var(--accent); border-color: var(--accent); color: white;
}

/* ══════════════════ MAP PLACEHOLDER ══════════════════ */
.map-container {
  height: 300px; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); flex-direction: column; gap: 0.5rem;
}

/* ══════════════════ ALERT ══════════════════ */
.alert {
  display: flex; align-items: center; gap: 12px; padding: 1rem 1.2rem;
  border-radius: var(--radius-sm); font-size: 0.9rem; margin-bottom: 1.5rem;
}
.alert-warning { background: var(--yellow-light); border: 1px solid rgba(245, 158, 11, 0.3); color: #b45309; }
.alert-info { background: var(--accent-light); border: 1px solid rgba(30, 96, 145, 0.3); color: var(--accent); }
.alert-success { background: var(--green-light); border: 1px solid rgba(16, 185, 129, 0.3); color: var(--green); }

/* ══════════════════ FEATURES SECTION ══════════════════ */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.8rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.feature-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.feature-icon { font-size: 2rem; margin-bottom: 1rem; }
.feature-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* ══════════════════ REGISTER CHOICE ══════════════════ */
.choice-section {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; padding: 100px 1.5rem 3rem;
  background: radial-gradient(ellipse at 50% 40%, rgba(30, 96, 145, 0.05) 0%, transparent 65%), var(--bg-0);
}
.choice-card {
  background: var(--bg-card); border: 2px solid var(--border);
  border-radius: var(--radius-xl); padding: 2.5rem; text-align: center;
  transition: var(--transition); cursor: pointer; text-decoration: none; color: inherit;
  max-width: 320px;
  box-shadow: var(--shadow);
}
.choice-card:hover {
  border-color: var(--accent); transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--accent-glow);
}
.choice-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.choice-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 0.7rem; color: var(--text-primary); }
.choice-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1.5rem; }
.choice-badge { background: var(--accent-light); color: var(--accent); padding: 4px 12px; border-radius: 100px; font-size: 0.78rem; font-weight: 700; }

/* ══════════════════ AUTH FORMS ══════════════════ */
.auth-section {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; padding: 100px 1.5rem 3rem;
  background: var(--bg-0);
}
.auth-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2.5rem;
  width: 100%; max-width: 480px;
  box-shadow: var(--shadow-lg);
}
.auth-logo {
  text-align: center; margin-bottom: 2rem;
  font-size: 1.5rem; font-weight: 800;
  color: var(--accent);
}
.auth-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.4rem; color: var(--text-primary); }
.auth-subtitle { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 2rem; }
.auth-link { color: var(--accent); text-decoration: none; font-weight: 600; }
.auth-link:hover { text-decoration: underline; }
.auth-divider { text-align: center; color: var(--text-muted); font-size: 0.85rem; margin: 1.2rem 0; }

/* ══════════════════ FOOTER ══════════════════ */
.oto-footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 4rem 1.5rem 2rem;
  margin-top: auto;
}

.footer-container { max-width: 1280px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 0.8rem;
  max-width: 280px;
}

.footer-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 1.3rem; font-weight: 800;
  color: var(--accent);
}

.footer-social {
  display: flex; gap: 0.5rem; margin-top: 1.2rem;
}

.social-btn {
  width: 36px; height: 36px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: var(--text-secondary);
  text-decoration: none; transition: var(--transition);
}
.social-btn:hover { border-color: var(--accent); color: var(--accent); }

.footer-col h4 {
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-primary); margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  font-size: 0.88rem; color: var(--text-secondary);
  text-decoration: none; transition: var(--transition);
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid var(--border);
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }
.footer-tagline { color: var(--accent) !important; font-weight: 600; }

/* ══════════════════ RESPONSIVE ══════════════════ */
@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .dash-layout { grid-template-columns: 1fr; }
  .dash-sidebar {
    display: flex !important;
    flex-direction: row !important;
    position: sticky !important;
    top: 80px !important;
    height: auto !important;
    width: 100% !important;
    overflow-x: auto !important;
    padding: 0.6rem 0.8rem !important;
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
    background: var(--bg-1) !important;
    gap: 0.4rem !important;
    z-index: 99 !important;
    scrollbar-width: none !important;
  }
  .dash-sidebar::-webkit-scrollbar {
    display: none !important;
  }
  .dash-sidebar .sidebar-profile,
  .dash-sidebar .sidebar-section-title,
  .dash-sidebar .sidebar-support-card {
    display: none !important;
  }
  .dash-sidebar .sidebar-link {
    padding: 0.5rem 0.9rem !important;
    font-size: 0.82rem !important;
    white-space: nowrap !important;
    border-radius: 20px !important;
    margin-right: 0 !important;
  }
  .dash-main {
    padding: 1.25rem 1rem !important;
  }
  .garage-detail-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--bg-1); border-bottom: 1px solid var(--border);
    padding: 1rem; gap: 0.3rem;
  }
  .pricing-card.popular::before { display: none; }
  .hero-title { font-size: 2.2rem; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ══════════════════ INLINE UTILITY ══════════════════ */
.inline { display: inline; }
.text-center { text-align: center; }

/* Pagination override for Laravel default */
nav[role="navigation"] .relative { display: flex; justify-content: center; margin-top: 2rem; }
nav[role="navigation"] span[aria-current] span,
nav[role="navigation"] a {
  padding: 6px 12px; border-radius: var(--radius-sm);
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-secondary); font-size: 0.88rem;
  text-decoration: none; transition: var(--transition);
}
nav[role="navigation"] span[aria-current] span {
  background: var(--accent); border-color: var(--accent); color: white;
}
nav[role="navigation"] a:hover { border-color: var(--accent); color: var(--accent); }
