/* FreezePoint shared professional navigation */

.fp-navbar {
  background: #020b18;
  padding: 18px 34px;
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1000;
}

.fp-brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.fp-brand img {
  height: 86px;
  width: auto;
  display: block;
  object-fit: contain;
}

.fp-nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex: 1;
  min-width: 0;
}

.fp-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
}

.fp-menu a,
.fp-services summary {
  color: white;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
}

.fp-menu a:hover,
.fp-services summary:hover,
.fp-menu .active,
.fp-services.active summary {
  color: #00a8ff;
}

.fp-menu .active,
.fp-services.active summary {
  border-bottom: 3px solid #00a8ff;
  padding-bottom: 8px;
}

.fp-services {
  position: relative;
}

.fp-services summary {
  list-style: none;
}

.fp-services summary::-webkit-details-marker {
  display: none;
}

.fp-services summary::after {
  content: " ▾";
  font-size: 12px;
  color: #00a8ff;
}

.fp-dropdown {
  display: none;
  position: absolute;
  top: 34px;
  left: 0;
  min-width: 260px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(0,0,0,0.28);
  overflow: hidden;
  z-index: 2000;
  border: 1px solid #e2eefb;
}

.fp-services[open] .fp-dropdown {
  display: block;
}

.fp-dropdown a {
  display: block;
  color: #061a33;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 800;
  text-transform: none;
  border-bottom: 1px solid #edf3fa;
}

.fp-dropdown a:hover {
  background: #f4f9ff;
  color: #0078ff;
}

.fp-booking-btn {
  background: #0078ff;
  color: white !important;
  padding: 13px 18px;
  border-radius: 999px;
  font-size: 13px !important;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(0,120,255,0.25);
}

.fp-booking-btn:hover {
  background: #00a8ff;
  color: white !important;
}

.fp-social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.fp-social-icons img {
  width: 34px;
  height: 34px;
  display: block;
  transition: transform 0.2s ease;
}

.fp-social-icons img:hover {
  transform: scale(1.08);
}

@media (max-width: 1100px) {
  .fp-navbar {
    padding: 18px 22px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .fp-brand img {
    height: 82px;
  }

  .fp-nav-right {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }

  .fp-menu {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .fp-dropdown {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 650px) {
  .fp-navbar {
    padding: 16px;
  }

  .fp-brand img {
    height: 76px;
  }

  .fp-menu {
    gap: 12px;
  }

  .fp-menu a,
  .fp-services summary {
    font-size: 13px;
  }

  .fp-booking-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: inline-flex;
  }

  .fp-dropdown {
    position: static;
    transform: none;
    margin-top: 12px;
    width: 100%;
  }
}
