  .modern-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  }

  .modern-navbar.scrolled {
    padding: 0.75rem 1.5rem;
    backdrop-filter: blur(20px);
  }

  .navbar-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
  }

  .navbar-blur {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 15, 25, 0.9);
    backdrop-filter: blur(20px);
    transition: opacity 0.3s ease;
  }

  .navbar-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
        rgba(66, 153, 225, 0.1) 0%,
        rgba(56, 178, 172, 0.05) 25%,
        rgba(237, 137, 54, 0.05) 50%,
        rgba(159, 122, 234, 0.05) 75%,
        rgba(72, 187, 120, 0.1) 100%);
    opacity: 0.5;
  }

  .navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
  }

  /* Logo */
  .navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }

  .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4299e1, #2c5282);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(66, 153, 225, 0.3);
  }

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

  .logo-name {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #4299e1, #63b3ed);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
  }

  .logo-tagline {
    font-size: 0.75rem;
    color: rgba(200, 220, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.3px;
  }

  /* Desktop Navigation */
  .navbar-desktop {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    max-width: 800px;
  }

  .nav-items {
    display: flex;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0.25rem;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }

  .nav-item {
    position: relative;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    min-width: 100px;
    text-align: center;
    z-index: 1;
  }

  .nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }

  .nav-item.hovered {
    transform: translateY(-2px) scale(1.05);
  }

  .nav-item.active {
    background: rgba(255, 255, 255, 0.15);
  }

  .item-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
  }

  .item-icon {
    width: 20px;
    height: 20px;
    color: rgba(200, 220, 255, 0.9);
    transition: all 0.3s ease;
  }

  .nav-item:hover .item-icon,
  .nav-item.active .item-icon {
    color: var(--item-color, #4299e1);
    transform: scale(1.1);
  }

  .item-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(200, 220, 255, 0.9);
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .nav-item:hover .item-name,
  .nav-item.active .item-name {
    color: white;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
  }

  .item-badge {
    position: absolute;
    top: -5px;
    right: -5px;
  }

  .badge-count {
    background: linear-gradient(135deg, #f56565, #e53e3e);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.15rem 0.4rem;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(245, 101, 101, 0.4);
    animation: badgePulse 2s infinite;
  }

  .item-active-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    overflow: hidden;
    z-index: 0;
  }


  .item-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--item-color, #4299e1);
    opacity: 0;
    border-radius: 12px;
    transition: opacity 0.3s ease;
    z-index: 0;
  }

  .nav-item.hovered .item-hover-effect {
    opacity: 0.1;
  }


  /* Contact button */
  .contact-button {
    position: relative;
    background: linear-gradient(90deg, #4299e1, #63b3ed);
    border: none;
    border-radius: 14px;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    min-width: 120px;
    box-shadow: 0 8px 25px rgba(66, 153, 225, 0.3);
  }

  .contact-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(66, 153, 225, 0.5);
  }

  .contact-button:active {
    transform: translateY(-1px);
  }

  .button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
  }

  .button-icon {
    color: white;
  }

  .button-text {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    white-space: nowrap;
  }

  .button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent);
    animation: buttonGlow 3s infinite;
  }


  /* Mobile menu button */
  .mobile-menu-button {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1002;
    transition: all 0.3s ease;
  }

  .mobile-menu-button:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
  }

  .mobile-menu-button.open {
    transform: rotate(180deg);
  }

  .menu-icon {
    width: 24px;
    height: 24px;
    position: relative;
    margin: 0 auto;
  }

  .line {
    position: absolute;
    height: 2px;
    width: 100%;
    background: white;
    border-radius: 1px;
    transition: all 0.3s ease;
    left: 0;
  }

  .line1 {
    top: 6px;
  }

  .line2 {
    top: 12px;
  }

  .line3 {
    top: 18px;
  }

  .mobile-menu-button.open .line1 {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-button.open .line2 {
    opacity: 0;
  }

  .mobile-menu-button.open .line3 {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Mobile Navigation */
  .navbar-mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    pointer-events: none;
  }

  .navbar-mobile.open {
    pointer-events: all;
  }

  .mobile-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .navbar-mobile.open .mobile-backdrop {
    opacity: 1;
  }

  .mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    background: rgba(10, 15, 25, 0.98);
    backdrop-filter: blur(30px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }

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

  .mobile-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #4299e1, #63b3ed);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .mobile-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.2s ease;
  }

  .mobile-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
  }

  .mobile-items {
    padding: 1rem;
    flex: 1;
  }

  .mobile-item {
    position: relative;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .mobile-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
  }

  .mobile-item.active {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--item-color, #4299e1);
  }

  .mobile-item-content {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .mobile-item-icon {
    width: 24px;
    height: 24px;
    color: rgba(200, 220, 255, 0.9);
    transition: all 0.3s ease;
  }

  .mobile-item.active .mobile-item-icon,
  .mobile-item:hover .mobile-item-icon {
    color: var(--item-color, #4299e1);
  }

  .mobile-item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(200, 220, 255, 0.9);
    flex: 1;
  }

  .mobile-item.active .mobile-item-name,
  .mobile-item:hover .mobile-item-name {
    color: white;
  }

  .mobile-item-badge {
    margin-left: auto;
  }

  .mobile-active-indicator {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
  }

  .active-dot {
    width: 8px;
    height: 8px;
    background: var(--item-color, #4299e1);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--item-color, #4299e1);
    animation: dotPulse 2s infinite;
  }


  .mobile-contact {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
  }

  .contact-info {
    margin-bottom: 1.5rem;
  }

  .contact-title {
    font-size: 1rem;
    color: rgba(200, 220, 255, 0.8);
    margin-bottom: 0.5rem;
    font-weight: 500;
  }

  .contact-phone {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
  }

  .contact-hours {
    font-size: 0.9rem;
    color: rgba(200, 220, 255, 0.7);
  }

  .mobile-contact-button {
    width: 100%;
    background: linear-gradient(90deg, #4299e1, #63b3ed);
    border: none;
    border-radius: 12px;
    padding: 1rem;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(66, 153, 225, 0.3);
  }

  .mobile-contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(66, 153, 225, 0.5);
  }

  /* Main content adjustment */
  .main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .navbar-desktop {
      display: none;
    }

    .mobile-menu-button {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .contact-button {
      min-width: auto;
      padding: 0.75rem 1rem;
    }

    .button-text {
      display: none;
    }

    .contact-button .button-icon {
      margin: 0;
    }
  }

  @media (max-width: 768px) {
    .modern-navbar {
      padding: 0.75rem 1rem;
    }

    .navbar-logo {
      padding: 0.4rem;
    }

    .logo-name {
      font-size: 1.2rem;
    }

    .logo-tagline {
      display: none;
    }

    .mobile-menu {
      width: 100%;
    }
  }

  @media (max-width: 480px) {
    .modern-navbar {
      padding: 0.5rem 0.75rem;
    }

    .navbar-container {
      gap: 1rem;
    }

    .logo-icon {
      width: 32px;
      height: 32px;
    }

    .logo-name {
      font-size: 1.1rem;
    }
  }
  @keyframes buttonGlow {
    0% {
      left: -100%;
    }

    50%,
    100% {
      left: 100%;
    }
  }
  @keyframes dotPulse {

    0%,
    100% {
      transform: scale(1);
      opacity: 1;
    }

    50% {
      transform: scale(1.3);
      opacity: 0.8;
    }
  }
