/* --- Global Box Sizing & Typography --- */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  /* NO global background or color here - your page sections control their own theme */
}

/* --- Header / Navigation (Keeps Dark Styling) --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #0a0e17 !important; /* Header dark background */
  backdrop-filter: blur(12px);
  border-bottom: 2px solid #0693E3 !important; /* Brand Blue Line */
  width: 100%;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Image Container */
.logo-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-brand img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #9ca3af !important;
  text-decoration: none !important;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

.nav-link:hover, 
.nav-link.active {
  color: #0693E3 !important; /* Brand Blue Hover */
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Login Button - Brand Blue Border */
.btn-secondary {
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  border: 1.5px solid #0693E3 !important;
  background: transparent;
  transition: all 0.2s ease-in-out;
}

.btn-secondary:hover {
  background-color: #0693E3 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(6, 147, 227, 0.3);
}

/* Request Quote Button - Brand Orange Accent */
.btn-primary {
  background-color: #ED6823 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 14px rgba(237, 104, 35, 0.4);
  transition: all 0.2s ease-in-out;
}

.btn-primary:hover {
  background-color: #d85715 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(237, 104, 35, 0.6);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #0693E3 !important;
  font-size: 1.8rem;
  cursor: pointer;
}

/* --- Footer (Keeps Dark Styling) --- */
.site-footer {
  background-color: #111827 !important; /* Footer dark background */
  color: #ffffff !important;
  border-top: 3px solid #ED6823 !important; /* Brand Orange Top Line */
  padding: 60px 24px 30px;
  margin-top: 80px;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
}

.footer-brand-info p {
  color: #9ca3af !important;
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-column h4 {
  color: #ffffff !important;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  border-left: 4px solid #ED6823 !important;
  padding-left: 10px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: #9ca3af !important;
  text-decoration: none !important;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #0693E3 !important; /* Brand Blue Hover */
}

.footer-bottom {
  max-width: 1280px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9ca3af !important;
  font-size: 0.85rem;
}

.footer-bottom strong {
  color: #0693E3;
}

/* --- Mobile Menu Overlay --- */
@media (max-width: 992px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #111827 !important;
    flex-direction: column;
    padding: 24px;
    border-bottom: 2px solid #0693E3 !important;
  }

  .nav-menu.is-active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}