/*
 * Road Life Transport — Extra Styles
 * All brand-specific additions beyond style.css
 */

/* Nav logo */
.nav-logo-img { max-height: 46px; width: auto; display: block; }
.site-logo-svg { display: flex; align-items: center; }

/* Hero car illustration — white SVG lines on blue */
.hero-illustration path, .hero-illustration circle,
.hero-illustration line, .hero-illustration rect { }

/* Scroll reveal */
.reveal-ready { opacity: 0; transform: translateY(16px); transition: opacity .45s ease, transform .45s ease; }
.reveal-ready.revealed { opacity: 1; transform: translateY(0); }

/* Vehicle thumbnail hover */
.vehicle-thumbnail img { transition: transform 0.4s ease, filter 0.3s ease; }
.vehicle-card:hover .vehicle-thumbnail img { filter: brightness(1.06); }

/* Form error */
.form-error { color: #dc2626; font-size: 13px; margin-top: 8px; }

/* No results */
.no-results { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.no-results a { color: var(--blue); }

/* WhatsApp float button */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); color: #fff; }
