/**
 * Base styles – variables, reset, typography
 * Drop Cars – Premium intercity taxi
 */

:root {
  /* Core Palette */
  --blue: #0f1c2e;
  --blue-dark: #070d18;
  --blue-light: #1a2b45;
  --blue-subtle: #f8fafc;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  
  /* Accent Colors */
  --accent: #38bdf8;
  --accent-glow: rgba(56, 189, 248, 0.4);
  --accent-gradient: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
  
  /* Glassmorphism Tokens */
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.48);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
  --glass-blur: blur(12px);
  
  /* Elevation Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.08);
  --shadow-quote: 0 20px 50px -12px rgba(0, 0, 0, 0.15);
}

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

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  margin: 0;
  color: var(--blue);
  background: var(--gray-100);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 0.75rem;
  color: var(--blue-dark);
}

p {
  margin: 0 0 0.8rem;
}

.hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.top-banner {
  z-index: 200;
  position: relative;
}
.text-banner {
  box-shadow: 0 4px 15px rgba(247, 183, 51, 0.3);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-bottom: 2px solid #e1a31f;
}
.image-banner img {
  border-bottom: 1px solid var(--gray-200);
}
