/* Navbar Component Styles - Light Theme */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-icon-img {
  height: 48px;
  width: auto;
  max-width: 50px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.logo-icon-wrapper {
  width: 46px;
  height: 46px;
  background: var(--bg-subtle);
  border: 1px solid rgba(0, 102, 204, 0.25);
  border-radius: 12px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.logo-svg {
  width: 100%;
  height: 100%;
}

.logo-text-signage {
  display: flex;
  flex-direction: column;
}

.brand-signage-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  color: #0066CC;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 1px 1px 0px rgba(0, 51, 102, 0.3);
}

.brand-signage-sub {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.5px;
  color: #005229;
  text-transform: uppercase;
  margin-top: 1px;
  line-height: 1.15;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 26px;
  align-items: center;
  height: 100%;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-body);
  text-decoration: none;
  position: relative;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
  height: 40px;
  box-sizing: border-box;
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: #0066CC;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0066CC, #005229);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Navbar Dropdown Menu Styles */
.dropdown-item {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}

.dropdown-arrow {
  width: 12px;
  height: 12px;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.25s ease;
  margin-top: 1px;
}

.dropdown-item:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 1050;
}

.dropdown-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-body);
  text-decoration: none;
  transition: var(--transition-fast);
}

.dropdown-icon {
  width: 16px;
  height: 16px;
  color: #0066CC;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.dropdown-link:hover {
  background: var(--bg-subtle);
  color: #0066CC;
  padding-left: 22px;
}

.dropdown-link:hover .dropdown-icon {
  color: #005229;
  transform: scale(1.15);
}

.navbar-cta-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-cta-wrapper .btn {
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  gap: 6px;
  box-shadow: 0 3px 12px var(--secondary-green-glow);
}

.navbar-cta-wrapper .btn .btn-icon {
  width: 15px;
  height: 15px;
}

/* Mobile Hamburger Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-bar {
  width: 100%;
  height: 3px;
  background-color: var(--text-heading);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* Mobile Drawer Sidebar */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85%;
  height: 100vh;
  background-color: var(--bg-surface);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-subtle);
}

.close-drawer-btn {
  background: rgba(0, 102, 204, 0.08);
  border: 1px solid rgba(0, 102, 204, 0.2);
  color: var(--text-heading);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
}

.mobile-nav-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-body);
  text-decoration: none;
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: #0066CC;
  background: var(--bg-subtle);
}

.mobile-sub-menu {
  list-style: none;
  padding-left: 16px;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-sub-link {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 10px;
  display: block;
  transition: var(--transition-fast);
}

.mobile-sub-link:hover {
  color: #0066CC;
}

.mobile-drawer-cta {
  margin-top: auto;
  padding-top: 20px;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2500;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 992px) {
  .desktop-nav { display: none !important; }
  .mobile-menu-btn { display: flex !important; }
}

@media (max-width: 768px) {
  .main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }
  .navbar-container { height: 72px; }
  .brand-logo { gap: 8px; }
  .brand-logo-icon-img { height: 38px; }
  .brand-signage-title { font-size: 1.15rem; }
  .brand-signage-sub { font-size: 0.5rem; }
}

@media (max-width: 480px) {
  .navbar-container { height: 68px; }
  .brand-logo-icon-img { height: 34px; }
  .brand-signage-title { font-size: 1.05rem; }
  .brand-signage-sub { font-size: 0.46rem; }
  .navbar-cta-wrapper .btn span { display: none; }
  .navbar-cta-wrapper .btn { padding: 8px 10px; }
  .mobile-drawer { width: 88%; }
}
