/* Forklift Hire Solutions global theme */
:root {
  --primary: #0ea5e9;
  --secondary: #f97316;
  --dark: #0f172a;
  --light: #f8fafc;
  --text: #1e293b;
  --muted: #64748b;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  color: var(--dark);
  font-weight: 700;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

header, footer {
  font-size: 15px;
  background: #fff;
}

button, .cta, .btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
button:hover, .cta:hover, .btn:hover {
  background: #0284c7;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.footer-dark {
  background: #0b1220;
  color: #cbd5e1;
}

.footer-dark a { color: #93c5fd; }
.footer-dark a:hover { color: #fff; text-decoration: none; }
