/* Argentum Prestige — Design System */

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

:root {
  --surface: #0a0a0a;
  --surface-dim: #050505;
  --surface-bright: #141414;
  --surface-container-lowest: #000000;
  --surface-container-low: #111111;
  --surface-container: #1a1a1a;
  --surface-container-high: #222222;
  --surface-container-highest: #2b2b2b;
  --on-surface: #ffffff;
  --on-surface-variant: #a3a3a3;
  --inverse-surface: #ffffff;
  --inverse-on-surface: #000000;
  --outline: #555555;
  --outline-variant: rgba(255, 255, 255, 0.1);
  --surface-tint: #ffffff;
  --primary: #ffffff;
  --on-primary: #000000;
  --primary-container: #ffffff;
  --on-primary-container: #000000;
  --inverse-primary: #333333;
  --secondary: #a3a3a3;
  --on-secondary: #000000;
  --secondary-container: #333333;
  --on-secondary-container: #ffffff;
  --tertiary: #ffffff;
  --on-tertiary: #000000;
  --tertiary-container: #ffffff;
  --on-tertiary-container: #000000;
  --error: #ffb4ab;
  --on-error: #690005;
  --error-container: #93000a;
  --on-error-container: #ffdad6;
  --success: #4ade80;
  --on-success: #003914;
  --success-container: #005320;
  --on-success-container: #b3ffb9;
  --success-border: rgba(74, 222, 128, 0.2);
  --background: #000000;
  --on-background: #ffffff;
  --surface-variant: #2b2b2b;
  --radius-sm: 0.125rem;
  --radius: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-full: 9999px;
  --logo-gradient-start: #ffffff;
  --logo-gradient-end: #cccccc;
  --logo-text: #000000;
}

[data-theme="light"] {
  --surface: #f9f9f9;
  --surface-dim: #f9f9f9;
  --surface-bright: #ffffff;
  --surface-container-lowest: #ffffff;
  --surface-container-low: #f3f3f3;
  --surface-container: #eeeeee;
  --surface-container-high: #e8e8e8;
  --surface-container-highest: #e2e2e2;
  --on-surface: #1b1b1b;
  --on-surface-variant: #4c4546;
  --inverse-surface: #303030;
  --inverse-on-surface: #f1f1f1;
  --outline: #7e7576;
  --outline-variant: #cfc4c5;
  --surface-tint: #5e5e5e;
  --primary: #000000;
  --on-primary: #ffffff;
  --primary-container: #1b1b1b;
  --on-primary-container: #ffffff;
  --inverse-primary: #c6c6c6;
  --secondary: #5e5e5e;
  --on-secondary: #ffffff;
  --secondary-container: #e2e2e2;
  --on-secondary-container: #1b1b1b;
  --tertiary: #000000;
  --on-tertiary: #ffffff;
  --tertiary-container: #1b1b1b;
  --on-tertiary-container: #ffffff;
  --error: #ba1a1a;
  --on-error: #ffffff;
  --error-container: #ffdad6;
  --on-error-container: #93000a;
  --success: #006e2e;
  --on-success: #ffffff;
  --success-container: #b3ffb9;
  --on-success-container: #002209;
  --success-border: rgba(0, 110, 46, 0.2);
  --background: #f9f9f9;
  --on-background: #1b1b1b;
  --surface-variant: #e2e2e2;
  --logo-gradient-start: #000000;
  --logo-gradient-end: #555555;
  --logo-text: #ffffff;
}

[data-theme="light"] .glass {
  background: rgba(249, 249, 249, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .glass-card {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
[data-theme="light"] .glass-card:hover {
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .nav-container {
  background: rgba(249, 249, 249, 0.8);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .btn-primary {
  background: #000000;
  color: #ffffff;
  border: 1px solid rgba(0,0,0,0.15);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 1px 2px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
[data-theme="light"] .btn-primary::before {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}
[data-theme="light"] .btn-primary:hover {
  background: #333333;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.12),
    0 2px 4px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

[data-theme="light"] .btn-secondary {
  background: transparent;
  color: var(--on-surface);
  border: 1px solid rgba(0, 0, 0, 0.15);
}
[data-theme="light"] .btn-secondary:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.02);
}

.logo-bg {
  background: linear-gradient(to bottom right, var(--logo-gradient-start), var(--logo-gradient-end));
}
.logo-icon {
  color: var(--logo-text);
}

html, body {
  font-family: 'Product Sans', 'Inter', sans-serif;
  background-color: var(--surface);
  color: var(--on-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar styling */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--surface-container-lowest); }
::-webkit-scrollbar-thumb { background: var(--surface-container-highest); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--outline-variant); }

/* Selection */
::selection {
  background: rgba(0, 0, 0, 0.08);
  color: var(--on-surface);
}

/* ============================================
   GLASS & SURFACES
   ============================================ */

.glass {
  background: rgba(17, 17, 17, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.glass-strong {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(0, 0, 0, 0.03);
}

.glass-card {
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.50),
    0 8px 32px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.60),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* ============================================
   UBER-STYLE CARD (Dark default, Light aware)
   ============================================ */

.uber-card {
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.50),
    0 8px 32px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.uber-title {
  color: #ffffff;
}

.uber-error {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fecaca;
}

.uber-timeline-line {
  background: rgba(255, 255, 255, 0.2);
}

.uber-input {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  outline: none;
  transition: all 0.2s ease;
}
.uber-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.uber-input:hover {
  background: rgba(255, 255, 255, 0.10);
}
.uber-input:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.uber-suggestions {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.uber-btn {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 10px 15px -3px rgba(255, 255, 255, 0.1);
}
.uber-btn:hover {
  background: #f3f4f6;
}

/* Dark suggestion dropdown items */
.uber-suggestions > div {
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.15s ease;
}
.uber-suggestions > div:hover {
  background: rgba(255, 255, 255, 0.08);
}
.uber-suggestions > div:last-child {
  border-bottom: none;
}

/* Light mode overrides */
[data-theme="light"] .uber-card {
  background: #f9f9f9;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.08),
    0 8px 32px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .uber-title {
  color: #1b1b1b;
}

[data-theme="light"] .uber-error {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.2);
  color: #dc2626;
}

[data-theme="light"] .uber-timeline-line {
  background: rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .uber-input {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
  color: #1b1b1b;
}
[data-theme="light"] .uber-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
[data-theme="light"] .uber-input:hover {
  background: rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .uber-input:focus {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .uber-suggestions {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .uber-suggestions > div {
  color: rgba(0, 0, 0, 0.85);
  border-bottom-color: rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .uber-suggestions > div:hover {
  background: rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .uber-btn {
  background: #000000;
  color: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .uber-btn:hover {
  background: #333333;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav-container {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.nav-brand {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--on-surface);
  position: relative;
}

.nav-link {
  position: relative;
  color: var(--on-surface-variant);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s ease;
  padding: 0.5rem 0;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--on-surface);
}

.nav-link:hover::before {
  width: 100%;
  opacity: 0.6;
}

.nav-link.active {
  color: var(--on-surface);
}

.nav-link.active::before {
  width: 100%;
  opacity: 1;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

/* Pulse indicator */
.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  position: relative;
}

.pulse-dot::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  opacity: 0.4;
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 0.2; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
  background: #ffffff;
  color: #000000;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow:
    0 4px 12px rgba(255, 255, 255, 0.08),
    0 1px 2px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.15), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #f1f1f1;
  box-shadow:
    0 8px 24px rgba(255, 255, 255, 0.12),
    0 2px 4px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--on-surface);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 16px;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.02);
}

/* ============================================
   INPUTS
   ============================================ */

.input-silver {
  background: var(--surface-container);
  border: 1px solid var(--outline-variant);
  border-radius: 8px;
  color: var(--on-surface);
  font-size: 0.875rem;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.input-silver:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.02),
    0 0 0 3px var(--outline-variant),
    0 0 20px rgba(0, 0, 0, 0.02);
}

.input-silver::placeholder {
  color: var(--on-surface-variant);
}

/* ============================================
   SHIMMER ANIMATION
   ============================================ */

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

.shimmer {
  background: linear-gradient(
    90deg,
    rgba(220, 220, 220, 0) 0%,
    rgba(220, 220, 220, 0.15) 50%,
    rgba(220, 220, 220, 0) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 2.5s infinite;
}

/* ============================================
   AMBIENT GLOW EFFECTS
   ============================================ */

.glow-ambient {
  position: relative;
}

.glow-ambient::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at center, rgba(220, 220, 220, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.shadow-ambient {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ============================================
   BADGES / TAGS
   ============================================ */

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid;
}

/* ============================================
AIR DATEPICKER — Custom Theme
   ============================================ */

.air-datepicker {
  --adp-font-family: 'Inter', sans-serif !important;
  --adp-font-size: 14px !important;
  --adp-width: 340px !important;
  --adp-z-index: 1000 !important;
  --adp-padding: 14px !important;
  --adp-background-color: #1e2022 !important;
  --adp-background-color-hover: #282a2c !important;
  --adp-background-color-active: #282a2c !important;
  --adp-background-color-selected: #6a6d6d !important;
  --adp-background-color-selected-hover: #5d6060 !important;
  --adp-cell-background-color-selected: #6a6d6d !important;
  --adp-cell-background-color-selected-hover: #5d6060 !important;
  --adp-background-color-in-range: rgba(142, 145, 146, 0.08) !important;
  --adp-background-color-in-range-focused: rgba(142, 145, 146, 0.12) !important;
  --adp-background-color-disabled: #121416 !important;
  --adp-color: #8e9192 !important;
  --adp-color-secondary: #8e9192 !important;
  --adp-color-other-month: #444748 !important;
  --adp-color-disabled: #333537 !important;
  --adp-color-hover: #c4c7c7 !important;
  --adp-color-selected: #121416 !important;
  --adp-color-current-date: #8e9192 !important;
  --adp-accent-color: #6a6d6d !important;
  --adp-border-color: rgba(255, 255, 255, 0.05) !important;
  --adp-border-color-inner: rgba(255, 255, 255, 0.04) !important;
  --adp-border-radius: 10px !important;
  --adp-nav-height: 36px !important;
  --adp-nav-arrow-color: #8e9192 !important;
  --adp-nav-action-size: 32px !important;
  --adp-nav-color-secondary: #8e9192 !important;
  --adp-day-name-color: #8e9192 !important;
  --adp-day-name-color-hover: #c4c7c7 !important;
  --adp-day-cell-width: 38px !important;
  --adp-day-cell-height: 38px !important;
  --adp-cell-border-radius: 6px !important;
  --adp-cell-background-color-hover: rgba(255, 255, 255, 0.06) !important;
  --adp-cell-background-color-in-range: rgba(142, 145, 146, 0.08) !important;
  --adp-cell-background-color-in-range-hover: rgba(142, 145, 146, 0.12) !important;
  --adp-cell-border-color-in-range: #6a6d6d !important;
  --adp-btn-height: 30px !important;
  --adp-btn-color: #8e9192 !important;
  --adp-btn-color-hover: #c4c7c7 !important;
  --adp-btn-background-color-hover: rgba(255, 255, 255, 0.06) !important;
  --adp-btn-background-color-active: rgba(255, 255, 255, 0.08) !important;
  --adp-time-track-height: 1px !important;
  --adp-time-track-color: #444748 !important;
  --adp-time-track-color-hover: #6a6d6d !important;
  --adp-time-thumb-size: 12px !important;
  --adp-time-padding-inner: 10px !important;

  background: rgba(18, 20, 22, 0.96) !important;
  backdrop-filter: blur(20px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(160%) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 14px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 8px 20px rgba(0, 0, 0, 0.3) !important;
  font-family: 'Inter', sans-serif !important;
  color: #8e9192 !important;
  width: 340px !important;
}

.air-datepicker-global-container {
  z-index: 9999;
}

.air-datepicker-overlay {
  background: rgba(12, 14, 16, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Navigation */
.air-datepicker-nav {
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
  padding-bottom: 10px !important;
  margin-bottom: 10px !important;
}

.air-datepicker-nav--action {
  background: transparent !important;
  color: #8e9192 !important;
}

.air-datepicker-nav--action:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #c4c7c7 !important;
}

.air-datepicker-nav--action path {
  stroke: #8e9192 !important;
}

.air-datepicker-nav--action:hover path {
  stroke: #c4c7c7 !important;
}

.air-datepicker-nav-title {
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: #c4c7c7 !important;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
  background: transparent !important;
}

.air-datepicker-nav-title:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  color: #e2e2e5 !important;
}

.air-datepicker-nav-title > i {
  color: #6a6d6d !important;
  font-style: normal;
  font-weight: 400;
}

/* Day names */
.air-datepicker-body--day-name {
  color: #8e9192 !important;
  font-size: 0.6rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase;
  height: 28px !important;
}

.air-datepicker-body--day-name:hover {
  color: #c4c7c7 !important;
}

/* Cells base */
.air-datepicker-body--cells {
  --adp-day-cell-width: 38px !important;
  --adp-day-cell-height: 38px !important;
}

.air-datepicker-cell {
  border-radius: 6px !important;
  transition: all 0.2s ease;
  color: #8e9192 !important;
  font-weight: 500 !important;
  font-size: 0.8rem !important;
}

.air-datepicker-cell:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #c4c7c7 !important;
}

.air-datepicker-cell.-focus- {
  background: rgba(255, 255, 255, 0.06) !important;
}

.air-datepicker-cell.-selected- {
  background: #6a6d6d !important;
  color: #121416 !important;
  font-weight: 700 !important;
}

.air-datepicker-cell.-selected-.-current- {
  background: #6a6d6d !important;
  color: #121416 !important;
}

.air-datepicker-cell.-selected-.-focus- {
  background: #5d6060 !important;
  color: #121416 !important;
}

.air-datepicker-cell.-in-range- {
  background: rgba(142, 145, 146, 0.08) !important;
  color: #6a6d6d !important;
  border-radius: 0 !important;
}

.air-datepicker-cell.-in-range-:hover {
  background: rgba(142, 145, 146, 0.12) !important;
}

.air-datepicker-cell.-in-range-.-focus- {
  background: rgba(142, 145, 146, 0.12) !important;
}

.air-datepicker-cell.-range-from-,
.air-datepicker-cell.-range-to- {
  background: rgba(142, 145, 146, 0.1) !important;
  border-color: #6a6d6d !important;
  color: #6a6d6d !important;
}

.air-datepicker-cell.-other-decade-,
.air-datepicker-cell.-other-month- {
  color: #444748 !important;
}

.air-datepicker-cell.-other-decade-:hover,
.air-datepicker-cell.-other-month-:hover {
  color: #8e9192 !important;
}

.air-datepicker-cell.-selected-.-other-decade-,
.air-datepicker-cell.-selected-.-other-month- {
  background: #5d6060 !important;
  color: #1a1c1e !important;
}

.air-datepicker-cell.-disabled- {
  color: #333537 !important;
  cursor: default !important;
}

.air-datepicker-cell.-disabled-.-in-range- {
  color: #3a3d3d !important;
}

.air-datepicker-cell.-current- {
  color: #8e9192 !important;
}

.air-datepicker-cell.-current-.-in-range- {
  color: #8e9192 !important;
}

/* Timepicker */
.air-datepicker-time {
  border-top: 1px solid rgba(255, 255, 255, 0.04) !important;
  padding-top: 12px !important;
  margin-top: 8px !important;
}

.air-datepicker-time--current {
  font-size: 14px !important;
  color: #8e9192 !important;
}

.air-datepicker-time--current-hours,
.air-datepicker-time--current-minutes {
  font-size: 18px !important;
  font-family: 'Inter', sans-serif !important;
  color: #c4c7c7 !important;
}

.air-datepicker-time--current-colon {
  color: #6a6d6d !important;
}

.air-datepicker-time--current-ampm {
  color: #8e9192 !important;
  font-size: 11px !important;
}

.air-datepicker-time--row {
  background: linear-gradient(to right, #444748, #444748) left 50%/100% 1px no-repeat !important;
  height: 17px !important;
  font-size: 11px !important;
}

input.air-datepicker-time-input {
  color: #c4c7c7 !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  background: transparent !important;
  font-family: 'Inter', sans-serif !important;
}

input.air-datepicker-time-input:focus {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #e2e2e5 !important;
}

input.air-datepicker-time-input::-webkit-slider-thumb {
  background: #8e9192 !important;
  border-color: #8e9192 !important;
}

input.air-datepicker-time-input::-moz-range-thumb {
  background: #8e9192 !important;
  border-color: #8e9192 !important;
}

/* Buttons */
.air-datepicker-button {
  color: #8e9192 !important;
  font-size: 0.65rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  border-radius: 6px !important;
  transition: all 0.2s ease !important;
  opacity: 0.6 !important;
  background: rgba(255, 255, 255, 0) !important;
}

.air-datepicker-button:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #c4c7c7 !important;
  opacity: 0.9 !important;
}

.air-datepicker-button:focus {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #c4c7c7 !important;
}

.air-datepicker-button:active {
  background: rgba(255, 255, 255, 0.08) !important;
}

/* Pointer */
.air-datepicker--pointer {
  display: none !important;
}

.air-datepicker-global-container {
  position: absolute !important;
}

.air-datepicker-overlay {
  background: rgba(12, 14, 16, 0.7) !important;
}

.air-datepicker-button.-today- {
  background: rgba(220, 220, 220, 0.06);
  color: #c4c7c7;
  opacity: 0.8;
}

.air-datepicker-button.-clear- {
  color: #ffb4ab;
  opacity: 0.7;
}

.air-datepicker-button.-clear-:hover {
  background: rgba(255, 180, 171, 0.08);
  opacity: 1;
}

/* Pointer */
.air-datepicker-pointer {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: var(--adp-pointer-size);
  border-top-color: rgba(255, 255, 255, 0.06);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
}

/* Months / Years view */
.air-datepicker-months, .air-datepicker-years {
  gap: 4px;
}

.air-datepicker-month-cell, .air-datepicker-year-cell {
  border-radius: var(--adp-border-radius-inner);
}

.air-datepicker-month-cell:hover:not(.-disabled-), .air-datepicker-year-cell:hover:not(.-disabled-) {
  background: rgba(220, 220, 220, 0.08);
  color: #e2e2e5;
}

/* Selector dropdown (time hours/minutes) */
.air-datepicker--pointer-hidden {
  display: none;
}

/* ============================================
   FLATPICKR OVERRIDES (legacy, kept for admin)
   ============================================ */

.flatpickr-calendar {
  background: var(--surface-container-high) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--outline-variant) !important;
  border-radius: 16px !important;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.15),
    0 8px 24px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 var(--outline-variant) !important;
  width: 100% !important;
  max-width: 360px;
  padding: 16px !important;
}

.flatpickr-months { margin-bottom: 8px; }
.flatpickr-month { color: var(--on-surface) !important; }
.flatpickr-current-month { color: var(--on-surface) !important; font-size: 1rem; font-weight: 600; }
.flatpickr-weekday { color: var(--outline) !important; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.flatpickr-day {
  color: var(--on-surface-variant) !important;
  border-radius: 8px !important;
  transition: all 0.2s ease;
  font-weight: 500;
}
.flatpickr-day:hover {
  background: var(--surface-container-high) !important;
  border-color: transparent !important;
  color: var(--on-surface) !important;
}
.flatpickr-day.selected {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--on-primary) !important;
  font-weight: 700;
  box-shadow: 0 0 0 2px var(--outline-variant), 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}
.flatpickr-day.in-range {
  background: var(--surface-container-low) !important;
  border-color: transparent !important;
}
.flatpickr-day.disabled { color: var(--outline-variant) !important; opacity: 0.5; }
.flatpickr-time { border-top: 1px solid var(--outline-variant) !important; padding-top: 8px !important; }
.flatpickr-time input { color: var(--on-surface) !important; font-weight: 600; }
.flatpickr-time input:focus { background: var(--surface-container-low) !important; box-shadow: 0 0 0 2px var(--outline-variant) !important; }
.numInputWrapper { border-radius: 6px; }
.flatpickr-current-month .numInputWrapper { background: var(--surface-container-low); padding: 2px 8px; border-radius: 6px; }
.flatpickr-arrow-up, .flatpickr-arrow-down { border-radius: 4px; }

/* ============================================
   FULLCALENDAR OVERRIDES
   ============================================ */

.fc {
  --fc-border-color: var(--outline-variant);
  --fc-page-bg-color: transparent;
  --fc-event-bg-color: var(--surface-container-low);
  --fc-event-border-color: var(--outline-variant);
  --fc-event-text-color: var(--on-surface);
  --fc-today-bg-color: var(--surface-container-high);
  color: var(--on-surface);
  font-size: 0.8rem;
}

.fc-theme-standard .fc-scrollgrid {
  border: none;
  border-radius: 12px;
  overflow: hidden;
}

.fc-theme-standard td,
.fc-theme-standard th {
  border-color: var(--outline-variant);
}

.fc-col-header-cell {
  background: var(--surface-container-low);
  padding: 12px 0;
}

.fc-col-header-cell-cushion {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--outline);
}

.fc-timegrid-slot {
  height: 3rem !important;
  border-bottom: 1px solid var(--outline-variant) !important;
}

.fc-timegrid-slot-label {
  font-size: 0.65rem;
  color: var(--outline);
}

.fc-event {
  border-radius: 8px !important;
  padding: 2px 6px !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fc-event:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.fc-event-main {
  font-weight: 600;
  font-size: 0.75rem;
}

.fc-v-event {
  background-color: var(--surface-container-low);
}

/* Custom styles for FullCalendar events based on approval status */
.fc-event.fc-event-aprobado {
  background-color: var(--success-container) !important;
  border: 1px solid var(--success-border) !important;
  border-left: 4px solid var(--success) !important;
}
.fc-event.fc-event-aprobado .fc-event-main {
  color: var(--on-success-container) !important;
}

.fc-event.fc-event-pendiente {
  background-color: var(--surface-container-low) !important;
  border: 1px solid var(--outline-variant) !important;
  border-left: 4px solid var(--outline) !important;
}
.fc-event.fc-event-pendiente .fc-event-main {
  color: var(--on-surface) !important;
}

.fc-now-indicator {
  border-color: var(--error) !important;
  border-width: 2px !important;
}

.fc-now-indicator::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 10px;
  height: 10px;
  background: var(--error);
  border-radius: 50%;
}

.fc-event-dragging { opacity: 0.7; }

.fc-toolbar-title {
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em;
  color: var(--on-surface) !important;
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu {
  background: rgba(12, 14, 16, 0.98);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.mobile-nav-link {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--on-surface-variant);
  transition: all 0.3s ease;
  position: relative;
}

.mobile-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--on-surface);
}

.mobile-nav-link:hover::after {
  width: 100%;
}

/* ============================================
   HERO / SECTION TYPOGRAPHY
   ============================================ */

.display-lg {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.headline-md {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.body-lg {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
}

.body-md {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.label-sm {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}