/* ============================================================
   FLEETPRO MOBILITY & HAULAGE LIMITED
   Navigation Styles
   ============================================================ */

/* ============================================================
   SITE HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  height: var(--nav-height);
  background-color: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid transparent;
  transition:
    background-color var(--transition-smooth),
    border-color var(--transition-smooth),
    box-shadow var(--transition-smooth);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  border-color: var(--color-grey-150);
  box-shadow: 0 1px 16px rgba(10, 22, 40, 0.08);
}

/* ============================================================
   NAV INNER
   ============================================================ */

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

/* ============================================================
   LOGO
   ============================================================ */


  .nav-logo-img {
  display: block;
  height: 46px;
  width: auto;
  object-fit: contain;
}

.nav-logo-img:hover {
  transform: scale(1.04);
} 

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  gap: var(--space-3);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  
  
}

.nav-logo-name {
  font-size: var(--fs-lg);
  font-weight: var(--fw-extrabold);
  letter-spacing: var(--ls-snug);
  color: var(--color-navy-900);
  line-height: 1.1;
}

.nav-logo-name span {
  color: var(--color-blue-500);
}

.nav-logo-tagline {
  font-size: 8px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-grey-400);
  margin-top: 2px;
}



/* ============================================================
   RESPONSIVE LOGO
   ============================================================ */

.nav-logo {
  min-width: 0;
}

.nav-logo-img {
  display: block;
  width: auto;
  height: 46px;
  max-width: 70px;
  object-fit: contain;
}

.nav-logo-text {
  min-width: 0;
}

/* Tablet / mobile */
@media (max-width: 1024px) {

  .nav-logo {
    gap: var(--space-2);
    flex-shrink: 1;
  }

  .nav-logo-img {
    height: 40px;
    max-width: 58px;
  }

  .nav-logo-name {
    font-size: var(--fs-base);
  }

  .nav-logo-tagline {
    font-size: 7px;
    letter-spacing: 0.10em;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-toggle {
    display: flex;
    flex-shrink: 0;
  }
}


/* Small phones */
@media (max-width: 600px) {

  /* Hide Request a Quote in header.
     It remains available inside mobile menu. */
  .nav-actions > .btn {
    display: none;
  }

  .nav-logo-img {
    height: 36px;
    max-width: 52px;
  }

  .nav-logo-name {
    font-size: 15px;
  }

  .nav-logo-tagline {
  display: block;
  font-size: 6px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

}


/* Very narrow phones */
@media (max-width: 380px) {

  .nav-logo-img {
    height: 34px;
    max-width: 48px;
  }

  .nav-logo-name {
    font-size: 14px;
  }

  .nav-logo-tagline {
    display: block;
    font-size: 5.5px;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

}

/* ============================================================
   DESKTOP NAVIGATION
   ============================================================ */

.nav-desktop {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-4);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-grey-700);
  text-decoration: none;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--transition-base);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: var(--space-4);
  right: var(--space-4);
  height: 2px;
  background: var(--color-blue-500);
  border-radius: var(--radius-full);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-base);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--color-navy-900);
  font-weight: var(--fw-semibold);
}

/* ============================================================
   NAV ACTIONS
   ============================================================ */

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-navy-900);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color var(--transition-base);
}

.nav-phone:hover {
  color: var(--color-blue-500);
}

.nav-phone i {
  font-size: var(--fs-sm);
  color: var(--color-blue-500);
}

.nav-divider {
  width: 1px;
  height: 20px;
  background: var(--color-grey-200);
}

/* ============================================================
   MOBILE TOGGLE
   ============================================================ */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: none;
  border-radius: var(--radius-md);
  padding: var(--space-2);
  transition: background-color var(--transition-base);
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle:hover {
  background-color: var(--color-grey-100);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-navy-900);
  border-radius: var(--radius-full);
  transform-origin: center;
  transition:
    transform var(--transition-base),
    opacity var(--transition-base),
    width var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   MOBILE OVERLAY
   ============================================================ */

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-sticky) - 1);
  background: rgba(10, 22, 40, 0.5);
  backdrop-filter: blur(2px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity var(--transition-smooth),
    visibility var(--transition-smooth);
}

.nav-overlay.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ============================================================
   MOBILE MENU
   ============================================================ */

.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-sticky);
  width: min(320px, 88vw);
  background: var(--color-white);
  box-shadow: -4px 0 30px rgba(10, 22, 40, 0.14);
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

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

.nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--color-grey-100);
  flex-shrink: 0;
}

.nav-mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-grey-200);
  border-radius: var(--radius-full);
  background: none;
  cursor: pointer;
  color: var(--color-grey-600);
  transition:
    background-color var(--transition-base),
    color var(--transition-base);
}

.nav-mobile-close:hover {
  background-color: var(--color-grey-100);
  color: var(--color-navy-900);
}

.nav-mobile-close svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.nav-mobile-body {
  flex: 1;
  padding: var(--space-6) 0;
  overflow-y: auto;
}

.nav-mobile .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--color-grey-700);
  border-radius: 0;
  border-left: 3px solid transparent;
  letter-spacing: 0;
}

.nav-mobile .nav-link::after {
  display: none;
}

.nav-mobile .nav-link:hover,
.nav-mobile .nav-link.active {
  color: var(--color-navy-900);
  background-color: var(--color-grey-50);
  border-left-color: var(--color-blue-500);
}

.nav-mobile .nav-link i {
  font-size: var(--fs-xs);
  color: var(--color-grey-300);
}

.nav-mobile-footer {
  padding: var(--space-6);
  border-top: 1px solid var(--color-grey-100);
  flex-shrink: 0;
}

.nav-mobile-footer .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: var(--space-3);
}

.nav-mobile-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.nav-mobile-contact a {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--color-grey-600);
}

.nav-mobile-contact a i {
  color: var(--color-blue-500);
  width: 16px;
  text-align: center;
}

/* ============================================================
   RESPONSIVE — Show/Hide
   ============================================================ */

@media (max-width: 1024px) {
  .nav-desktop {
    display: none;
  }

  .nav-phone,
  .nav-divider {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-overlay {
    display: block;
  }
}

@media (min-width: 1025px) {
  .nav-mobile {
    display: none !important;
  }

  .nav-overlay {
    display: none !important;
  }
}

/* ============================================================
   PAGE HERO (internal pages)
   ============================================================ */

.page-hero {
  background: linear-gradient(135deg, var(--color-navy-900) 0%, var(--color-navy-700) 60%, var(--color-blue-700) 100%);
  padding-top: calc(var(--nav-height) + var(--space-20));
  padding-bottom: var(--space-20);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(34, 88, 181, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(74, 137, 232, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(34, 88, 181, 0.20);
  border: 1px solid rgba(74, 137, 232, 0.30);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-blue-200);
  margin-bottom: var(--space-6);
}

.page-hero-title {
  font-size: clamp(var(--fs-3xl), 5vw, var(--fs-5xl));
  font-weight: var(--fw-extrabold);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin-bottom: var(--space-6);
}

.page-hero-title em {
  font-style: normal;
  color: var(--color-blue-300);
}

.page-hero-desc {
  font-size: clamp(var(--fs-base), 1.5vw, var(--fs-lg));
  color: rgba(255, 255, 255, 0.70);
  line-height: var(--lh-relaxed);
  max-width: 600px;
  margin-bottom: var(--space-10);
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.50);
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.50);
  text-decoration: none;
  transition: color var(--transition-base);
}

.page-breadcrumb a:hover {
  color: var(--color-white);
}

.page-breadcrumb .sep {
  color: rgba(255, 255, 255, 0.30);
}

.page-breadcrumb .current {
  color: var(--color-blue-200);
  font-weight: var(--fw-medium);
}
