.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--nav-height);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f1f5f9;
  z-index: 1000;
  display: flex;
  align-items: center;
}

/* Grid Logic for Centering */
.nav-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* Left: Logo, Center: Menu, Right: CTA */
  align-items: center;
}

/* --- NEW LOGO STYLING --- */
.logo-group {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-image {
  /* Adjust this height to fit nicely within your navbar (usually 50-60% of nav height) */
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Menu */
.nav-menu {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--brand-red);
}

/* Arrow Animation */
.arrow-icon {
  font-size: 12px;
  opacity: 0;
  transform: translate(-5px, 5px);
  transition: all 0.2s ease-out;
}

.nav-link:hover .arrow-icon {
  opacity: 1;
  transform: translate(0, 0);
}

/* CTA */
.nav-cta {
  display: flex;
  justify-content: flex-end;
}

.mobile-toggle {
  display: none;
  font-size: 24px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--text-main);
}

/* Responsive */
@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }
  .nav-grid {
    display: flex;
    justify-content: space-between;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-cta .btn {
    display: none;
  }

  /* Optional: Adjust logo size for mobile if needed */
  .logo-image {
    height: 40px;
  }
}
