/* ============================================
   Demoseite Hotelshuttles – Zuugle Services GmbH
   Premium Dark Theme with Glassmorphism
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  --bg-primary: #0a0e1a;
  --bg-secondary: #111827;
  --bg-card: rgba(17, 24, 39, 0.7);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-glass-hover: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-active: rgba(255, 255, 255, 0.15);

  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-accent: #38bdf8;

  --accent-blue: #38bdf8;
  --accent-blue-dark: #0284c7;
  --accent-green: #34d399;
  --accent-orange: #fb923c;
  --accent-red: #f87171;
  --accent-purple: #a78bfa;
  --accent-teal: #2dd4bf;
  --accent-yellow: #fbbf24;

  /* Transport mode colors */
  --mode-walk: #94a3b8;
  --mode-bus: #34d399;
  --mode-rail: #f87171;
  --mode-tram: #f87171;
  --mode-flex: #fb923c;
  --mode-subway: #a78bfa;
  --mode-ferry: #38bdf8;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(56, 189, 248, 0.15);

  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background gradient */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(56, 189, 248, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(168, 85, 247, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(34, 211, 153, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 0 24px;
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header-title {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

.header-logo-link {
  display: flex;
  align-items: center;
  transition: opacity var(--transition-fast);
}

.header-logo-link:hover {
  opacity: 0.8;
}

.header-logo {
  height: 36px;
  width: auto;
}

/* ---------- Layout ---------- */
.app-layout {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 380px 1fr;
  grid-template-rows: auto 1fr;
  gap: 20px;
  height: calc(100vh - 64px);
}

.search-panel {
  grid-row: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  padding-right: 4px;
}

.search-panel::-webkit-scrollbar {
  width: 4px;
}
.search-panel::-webkit-scrollbar-track {
  background: transparent;
}
.search-panel::-webkit-scrollbar-thumb {
  background: var(--border-glass);
  border-radius: 2px;
}

.results-panel {
  overflow-y: auto;
  padding-right: 4px;
}

.results-panel::-webkit-scrollbar {
  width: 4px;
}
.results-panel::-webkit-scrollbar-track {
  background: transparent;
}
.results-panel::-webkit-scrollbar-thumb {
  background: var(--border-glass);
  border-radius: 2px;
}

.map-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-lg);
  min-height: 400px;
}

/* ---------- Glass Card ---------- */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.glass-card:hover {
  border-color: var(--border-glass-active);
}

.card-title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-title .icon {
  font-size: 1rem;
}

/* ---------- Form Elements ---------- */
.form-group {
  margin-bottom: 14px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-input,
.form-select {
  width: 100%;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-select:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8.825a.5.5 0 0 1-.354-.146l-4-4a.5.5 0 0 1 .708-.708L6 7.617l3.646-3.646a.5.5 0 0 1 .708.708l-4 4A.5.5 0 0 1 6 8.825z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ---------- Toggle Switch ---------- */
.toggle-container {
  display: flex;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 3px;
  position: relative;
}

.toggle-option {
  flex: 1;
  padding: 8px 16px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 6px;
  transition: all var(--transition-fast);
  position: relative;
  z-index: 1;
  user-select: none;
}

.toggle-option.active {
  color: var(--text-primary);
}

.toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 6px;
  transition: transform var(--transition-normal);
}

.toggle-slider.right {
  transform: translateX(100%);
}

/* ---------- Search Button ---------- */
.btn-search {
  width: 100%;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--accent-blue-dark), var(--accent-blue));
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.btn-search:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.3);
}

.btn-search:active {
  transform: translateY(0);
}

.btn-search:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-search .spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: none;
}

.btn-search.loading .spinner {
  display: block;
}
.btn-search.loading .btn-text {
  display: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- Autocomplete ---------- */
#address-card {
  position: relative;
  z-index: 10;
}

.autocomplete-wrapper {
  position: relative;
}

.autocomplete-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 200;
  background: #1e2536;
  border: 1px solid #3b4560;
  border-radius: var(--radius-sm);
  margin-top: 4px;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
  display: none;
}

.autocomplete-list.visible {
  display: block;
  animation: fadeSlideDown 200ms ease-out;
}

.autocomplete-item {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 0.85rem;
  color: #94a3b8;
  background: #1e2536;
  transition: all var(--transition-fast);
  border-bottom: 1px solid #2a3348;
}

.autocomplete-item:last-child {
  border-bottom: none;
}

.autocomplete-item:hover {
  background: #2a3348;
  color: #f1f5f9;
}

.autocomplete-item .item-name {
  color: #f1f5f9;
  font-weight: 500;
}

.autocomplete-item .item-detail {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 2px;
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Results List ---------- */
.results-header {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.results-count {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: none;
  letter-spacing: normal;
}

.result-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: background var(--transition-normal);
}

.result-card:hover {
  border-color: var(--border-glass-active);
  background: var(--bg-glass-hover);
}

.result-card.selected {
  border-color: rgba(56, 189, 248, 0.3);
  background: rgba(56, 189, 248, 0.05);
  box-shadow: var(--shadow-glow);
}

.result-card.selected::before {
  background: linear-gradient(to bottom, var(--accent-blue), var(--accent-teal));
}

.result-times {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.result-time {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.result-arrow {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.result-duration {
  font-size: 0.75rem;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.05);
  padding: 2px 8px;
  border-radius: 4px;
}

.result-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.result-transfers {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.result-expand-icon {
  margin-left: auto;
  font-size: 0.7rem;
  color: var(--text-muted);
  transition: transform var(--transition-normal);
}

.result-card.expanded .result-expand-icon {
  transform: rotate(180deg);
}

/* ---------- Detail Panel (Accordion) ---------- */
.result-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.result-card.expanded .result-detail {
  max-height: 2000px;
}

.detail-inner {
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid var(--border-glass);
}

.detail-leg {
  display: flex;
  gap: 12px;
  position: relative;
  padding-bottom: 4px;
}

.detail-leg:last-child .detail-timeline::after {
  display: none;
}

.detail-timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20px;
  flex-shrink: 0;
  position: relative;
}

.detail-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  z-index: 1;
  border: 2px solid var(--bg-primary);
}

.detail-timeline::after {
  content: '';
  width: 3px;
  flex: 1;
  border-radius: 2px;
  margin: 2px 0;
}

.detail-leg-content {
  flex: 1;
  min-width: 0;
  padding-bottom: 12px;
}

.detail-leg-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.detail-leg-mode {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.detail-leg-route {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.detail-stop {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 3px;
}

.detail-stop-time {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  min-width: 40px;
  font-variant-numeric: tabular-nums;
}

.detail-stop-name {
  font-size: 0.8rem;
  color: var(--text-secondary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-stop-name.highlight {
  color: var(--text-primary);
  font-weight: 500;
}

.detail-intermediate {
  margin: 6px 0;
  padding: 6px 0 6px 48px;
  position: relative;
}

.detail-intermediate-toggle {
  font-size: 0.7rem;
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-glass);
  transition: all var(--transition-fast);
  user-select: none;
}

.detail-intermediate-toggle:hover {
  background: rgba(255,255,255,0.06);
  color: var(--text-secondary);
}

.detail-intermediate-stops {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}

.detail-intermediate-stops.visible {
  max-height: 1000px;
}

.detail-intermediate-stop {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 2px 0;
  font-size: 0.75rem;
}

.detail-intermediate-stop .detail-stop-time {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

.detail-intermediate-stop .detail-stop-name {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.detail-leg-duration {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ---------- Leg Visualization ---------- */
.legs-bar {
  display: flex;
  align-items: center;
  height: 28px;
  margin-bottom: 10px;
  gap: 2px;
  border-radius: 4px;
  overflow: hidden;
}

.leg-segment {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 600;
  color: white;
  min-width: 20px;
  position: relative;
  transition: opacity var(--transition-fast);
  padding: 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.leg-segment.mode-WALK { background: var(--mode-walk); color: var(--bg-primary); }
.leg-segment.mode-BUS { background: var(--mode-bus); color: var(--bg-primary); }
.leg-segment.mode-RAIL { background: var(--mode-rail); }
.leg-segment.mode-TRAM { background: var(--mode-tram); }
.leg-segment.mode-FLEX { background: var(--mode-flex); color: var(--bg-primary); }
.leg-segment.mode-SUBWAY { background: var(--mode-subway); }
.leg-segment.mode-METRO { background: var(--mode-subway); }
.leg-segment.mode-FERRY { background: var(--mode-ferry); }
.leg-segment.mode-HIGHSPEED_RAIL { background: #ef4444; }
.leg-segment.mode-LONG_DISTANCE { background: #dc2626; }
.leg-segment.mode-NIGHT_RAIL { background: #1e3a5f; }
.leg-segment.mode-REGIONAL_FAST_RAIL { background: #e11d48; }
.leg-segment.mode-REGIONAL_RAIL { background: #be123c; }
.leg-segment.mode-COACH { background: #059669; }

/* ---------- Transport Mode Badges ---------- */
.mode-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
}

.mode-badge.walk { background: rgba(148,163,184,0.2); color: var(--mode-walk); }
.mode-badge.bus { background: rgba(52,211,153,0.15); color: var(--mode-bus); }
.mode-badge.rail { background: rgba(248,113,113,0.15); color: var(--mode-rail); }
.mode-badge.flex { background: rgba(251,146,60,0.15); color: var(--mode-flex); }
.mode-badge.subway { background: rgba(167,139,250,0.15); color: var(--mode-subway); }
.mode-badge.tram { background: rgba(248,113,113,0.15); color: var(--mode-tram); }

/* ---------- Empty / Loading States ---------- */
.state-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
  color: var(--text-muted);
}

.state-message .state-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.5;
}

.state-message .state-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.state-message .state-desc {
  font-size: 0.85rem;
  max-width: 300px;
  line-height: 1.5;
}

.loading-skeleton {
  background: linear-gradient(90deg, var(--bg-glass) 25%, var(--bg-glass-hover) 50%, var(--bg-glass) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
  height: 80px;
  margin-bottom: 10px;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---------- Error State ---------- */
.error-message {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--accent-red);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

/* ---------- Leaflet Customization ---------- */
.leaflet-container {
  background: var(--bg-secondary) !important;
  font-family: 'Inter', sans-serif !important;
}

.leaflet-popup-content-wrapper {
  background: var(--bg-secondary) !important;
  color: var(--text-primary) !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: var(--shadow-md) !important;
  border: 1px solid var(--border-glass) !important;
}

.leaflet-popup-tip {
  background: var(--bg-secondary) !important;
}

.leaflet-popup-content {
  margin: 10px 14px !important;
  font-size: 0.8rem !important;
  line-height: 1.5 !important;
}

.leaflet-popup-content .popup-title {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.leaflet-popup-content .popup-detail {
  color: var(--text-secondary);
  font-size: 0.75rem;
}

.leaflet-control-zoom a {
  background: var(--bg-secondary) !important;
  color: var(--text-primary) !important;
  border-color: var(--border-glass) !important;
}

.leaflet-control-zoom a:hover {
  background: var(--bg-glass-hover) !important;
}

.leaflet-control-attribution {
  background: rgba(10, 14, 26, 0.8) !important;
  color: var(--text-muted) !important;
  font-size: 0.65rem !important;
}

.leaflet-control-attribution a {
  color: var(--text-secondary) !important;
}

/* Custom stop marker tooltip */
.stop-tooltip {
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.75rem;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.stop-tooltip::before {
  border-top-color: var(--bg-secondary) !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .app-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    height: auto;
    padding: 12px 16px;
  }

  .search-panel {
    grid-row: auto;
  }

  .map-panel {
    min-height: 350px;
    order: 2;
  }

  .results-panel {
    order: 3;
  }

  .header-inner {
    height: 56px;
  }

  .header-title {
    font-size: 0.95rem;
  }

  .header-subtitle {
    display: none;
  }
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .result-time {
    font-size: 1.1rem;
  }

  .header-badge {
    display: none;
  }
}

/* ---------- Animations ---------- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.result-card {
  animation: fadeIn 300ms ease-out both;
}

.result-card:nth-child(2) { animation-delay: 50ms; }
.result-card:nth-child(3) { animation-delay: 100ms; }
.result-card:nth-child(4) { animation-delay: 150ms; }
.result-card:nth-child(5) { animation-delay: 200ms; }
.result-card:nth-child(6) { animation-delay: 250ms; }
.result-card:nth-child(7) { animation-delay: 300ms; }
.result-card:nth-child(8) { animation-delay: 350ms; }

/* Motis link button */
.btn-motis-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-glass);
  border-radius: 6px;
  text-decoration: none;
  transition: all var(--transition-fast);
  margin-top: 4px;
}

.btn-motis-link:hover {
  color: var(--accent-blue);
  border-color: rgba(56, 189, 248, 0.3);
  background: rgba(56, 189, 248, 0.05);
}
