/* Fleetguard Compliance — Shared Stylesheet */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; line-height: 1.6; color: #1e3a5f; background: #f8f9fa; }

/* NAV */
.navbar, nav { background: white; padding: 1rem 0; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: relative; z-index: 1000; border-bottom: 1px solid rgba(108,117,125,0.1); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { width: 240px; height: auto; }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { width: 240px; height: auto; }
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: #1e3a5f; cursor: pointer; padding: 0.5rem; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { color: #1e3a5f; text-decoration: none; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: #4a7c59; }
.nav-cta { background: #4a7c59; color: white !important; padding: 0.5rem 1rem; border-radius: 6px; font-weight: 700 !important; }
.contact-info { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.contact-item { display: flex; align-items: center; gap: 0.5rem; color: #1e3a5f; font-size: 0.95rem; }
.contact-item a { color: #1e3a5f; text-decoration: none; font-weight: 500; }
.client-login-btn { background: linear-gradient(135deg, #1B3A6B, #152d54) !important; color: white !important; padding: 0.5rem 1.25rem !important; border-radius: 6px !important; font-weight: 600 !important; transition: all 0.3s !important; }

/* BUTTONS */
.btn { padding: 1rem 2rem; border-radius: 8px; text-decoration: none; font-weight: 600; transition: all 0.3s; display: inline-block; text-align: center; font-size: 1.1rem; }
.btn-primary { background: linear-gradient(135deg, #4a7c59, #3d6b4a); color: white; box-shadow: 0 4px 15px rgba(74,124,89,0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(74,124,89,0.4); }
.btn-secondary { background: linear-gradient(135deg, #e8b89a, #d9a384); color: white; }
.btn-red { background: linear-gradient(135deg, #dc2626, #b91c1c); color: white; }
.btn-green { background: linear-gradient(135deg, #4a7c59, #3d6b4a); color: white; }
.btn-outline { border: 2px solid white; color: white; background: transparent; }

/* FOOTER */
footer, .footer { background: #0f1e2f; color: #b8c8d8; padding: 4rem 2rem 2rem; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; }
.footer-section h3 { color: white; margin-bottom: 1.5rem; font-size: 1.2rem; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.75rem; }
.footer-section ul a { color: #b8c8d8; text-decoration: none; transition: color 0.3s; }
.footer-section ul a:hover { color: white; }
.footer-bottom { max-width: 1200px; margin: 3rem auto 0; padding-top: 2rem; border-top: 1px solid #2d4a6f; text-align: center; font-size: 0.9rem; }

/* MOBILE */
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column; padding: 1rem 2rem; gap: 1rem; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
  .nav-links.active { display: flex; }
  .contact-info { display: none; }
  .nav-logo img, .logo img { width: 180px; }
}

/* Footer */
footer { background: #0f1e2f; color: #b8c8d8; }
footer a { color: #b8c8d8; text-decoration: none; }
footer a:hover { color: white; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto; padding: 4rem 2rem 2rem; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 1.5rem 2rem; border-top: 1px solid #2d4a6f; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.85rem; color: #b8c8d8; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr !important; gap: 1.5rem; padding: 2rem 1.2rem 1rem; } footer { overflow-x: hidden; width: 100%; } }
