/* ===== NAVBAR ===== */
.navbar {
  background: #0d1526;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

/* ===== LOGO ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.logo-text h2 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.logo-text h2 span {
  color: #1fc8a0;
  /* teal accent */
}

.logo-text p {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.06em;
}

/* ===== HAMBURGER BUTTON ===== */
.menu-toggle {
  display: none;
  /* hidden on desktop */
  background: none;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: white;
  width: 40px;
  height: 36px;
  cursor: pointer;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ===== NAV MENU (desktop) ===== */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.07);
}

.nav-links a.active {
  color: #1fc8a0;
  background: rgba(31, 200, 160, 0.12);
  border: 1px solid rgba(31, 200, 160, 0.25);
}

/* ===== NAV RIGHT (phone + CTA) ===== */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-left: 90px;
}

.phone {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Replace the emoji with a pink icon — add this span inside .phone */
/* <span class="phone-icon">📞</span> */
.phone-icon {
  color: #e94fad;
  font-size: 14px;
}

.quote-btn {
  background: #1fc8a0;
  color: #0d1526;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}

.quote-btn:hover {
  background: #17b38e;
  transform: translateY(-1px);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    /* show hamburger */
  }

  .nav-menu {
    position: absolute;
    top: 68px;
    /* same as nav height */
    left: 0;
    right: 0;
    background: #0d1526;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
  }

  .nav-menu.open {
    max-height: 400px;
    padding: 0.75rem 0 1.25rem;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    padding: 0 1.25rem;
    gap: 0.25rem;
  }

  .nav-links a {
    padding: 0.3rem 0.5rem;
    font-size: 0.95rem;
  }

  .nav-right {
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 0;
    gap: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: 0.5rem;
  }

  .quote-btn {
    text-align: center;
    padding: 0.65rem;
  }
}