/* ===== VERS Transport – Modern, minimal ===== */
:root {
  --bg-dark: #0d0f12;
  --bg-card: #161a20;
  --bg-section: #111318;
  --bg-stats: #e8eaed;
  --bg-cta: #e8eaed;
  --text: #e8eaed;
  --text-muted: #9ca3af;
  --text-dark: #1a1e24;
  --accent: #c4c8cc;
  --accent-silver: #a1a8b2;
  --border: rgba(255, 255, 255, 0.08);
  --overlay: rgba(13, 15, 18, 0.75);
  --radius: 12px;
  --radius-lg: 20px;
  --font-sans: 'Outfit', 'DM Sans', system-ui, sans-serif;
  --font-display: 'Outfit', system-ui, sans-serif;
  --space: 1.5rem;
  --container: min(90vw, 1100px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space);
}

/* ===== Header (black) ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 15, 18, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header .header-inner {
  max-width: min(95vw, 1200px);
  padding: 0.2rem 0.75rem 0.15rem 0.75rem;
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  margin-top: -0.1rem;
  margin-bottom: -0.1rem;
  flex-shrink: 0;
}

.logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: relative;
}

.lang-switcher {
  position: absolute;
  right: 0;
  display: flex;
  gap: 0.25rem;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.75rem;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

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

.lang-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.35rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
  font-family: inherit;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.lang-btn:hover {
  color: var(--text);
  border-color: var(--accent-silver);
}

.lang-btn.active {
  background: var(--accent-silver);
  color: var(--bg-dark);
  border-color: var(--accent-silver);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--text);
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 6rem var(--space) 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-dark) url('assets/vers-hero-background.jpg') center 50px / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--overlay) 0%, rgba(13, 15, 18, 0.5) 50%, rgba(13, 15, 18, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-left: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  border: none;
}

.btn-primary {
  background: var(--accent-silver);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

/* ===== Sections ===== */
.section {
  padding: 4.5rem 0;
}

.about {
  background: var(--bg-dark);
}

.contact {
  background: var(--bg-dark);
}

.services {
  background: var(--bg-section);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 2rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.about-text p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.about-lead {
  font-size: 1.1rem;
  color: var(--text) !important;
}

.about-list {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.about-list li {
  margin-bottom: 0.35rem;
}

.about-cards-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.about-card-icon {
  color: var(--accent-silver);
  font-size: 0.75rem;
  display: block;
  margin-bottom: 0.5rem;
}

.about-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--text);
}

.about-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== Stats (Europe banner full cover, Europe on right) ===== */
.stats {
  position: relative;
  padding: 4rem 0;
  background: linear-gradient(135deg, #a8adb5 0%, #8b9199 50%, #9ca3af 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/europe-banner-white.jpg') center right / cover no-repeat;
  opacity: 0.42;
  pointer-events: none;
}

.stats::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(95, 100, 110, 0.58);
  pointer-events: none;
}

.stats .container {
  position: relative;
  z-index: 1;
}

.stats-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #fff;
}

.stats-intro {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2.5rem;
  max-width: 560px;
}

.stats-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  background: rgba(42, 48, 56, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
}

.stat-icon {
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
}

.stat-number-wrap {
  margin: 0;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.stat-suffix {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.stat-number-text {
  font-size: 1.5rem;
}

.stat-label {
  margin: 0.25rem 0 0;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

.stat-desc {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Stats: title/intro black on light gray; card content stays light on dark cards */

/* ===== Services (3 cards only) ===== */
.services-intro {
  color: var(--text-muted);
  margin: 0 0 2rem;
  max-width: 640px;
}

.services-highlights {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .services-highlights {
    grid-template-columns: repeat(3, 1fr);
  }
}

.services-highlight {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem;
}

.services-highlight-icon {
  width: 36px;
  height: 36px;
  color: var(--accent-silver);
  margin-bottom: 0.75rem;
}

.services-highlight-icon svg {
  width: 100%;
  height: 100%;
}

.services-highlight h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.services-highlight p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== CTA Section (truck banner bg) ===== */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: url('assets/cta-banner.jpg') center / cover no-repeat;
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.45) 100%);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: right;
  max-width: 640px;
  margin-left: auto;
  margin-right: 150px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.cta-text {
  color: #fff;
  margin: 0 0 2rem;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 700px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-intro {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.contact-hours {
  color: var(--accent-silver);
  font-weight: 600;
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}

.contact-details {
  font-style: normal;
  margin: 0 0 1.5rem;
}

.contact-details p {
  margin: 0 0 0.5rem;
  color: var(--text-muted);
}

.contact-details a {
  color: var(--accent-silver);
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-icon {
  flex-shrink: 0;
  color: var(--accent-silver);
}

.contact-icon svg {
  display: block;
}

.contact-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-silver);
  box-shadow: 0 0 0 3px rgba(161, 168, 178, 0.15);
}

.contact-form button[type="submit"] {
  align-self: flex-start;
  margin-top: 0.25rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 0.35rem 0;
}

.footer .container {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
}

.footer-logo {
  height: 100px;
  width: auto;
  opacity: 0.85;
  display: block;
}

.footer-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(280px, 85vw);
    height: 100vh;
    background: var(--bg-dark);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.5rem 1.5rem;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 99;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-link {
    display: block;
    padding: 0.6rem 0;
    font-size: 1rem;
  }

  .lang-switcher {
    position: static;
    margin-top: auto;
    justify-content: center;
  }

  .menu-toggle {
    display: flex;
    z-index: 101;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .menu-toggle span {
    transition: transform 0.2s, opacity 0.2s;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
    z-index: 98;
  }

  .nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }

  .hero {
    padding-top: 5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .services-highlights {
    grid-template-columns: 1fr;
  }
}

#message {
  resize: vertical;
  min-height: 100px;
}
