/* Top Bar Styles */
.top-bar {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.9rem;
  }
  
  .top-bar a {
    color: var(--white);
  }
  
  .top-bar a:hover {
    color: var(--primary-color);
  }
  
  .top-bar .social-icons a {
    margin-left: 10px;
    font-size: 1rem;
  }
  
  /* Navbar Styles */
  .navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
  }
  
  .navbar-brand img {
    height: 50px;
    width: auto;
  }
  
  .navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
  }
  
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    color: var(--primary-color);
  }
  
  .dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  
  .dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease;
  }
  
  .dropdown-item:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
  }
  
  /* Footer */
  footer {
    background-color: var(--light-gray);
    padding: 4rem 0 0;
  }
  
  .footer-logo {
    margin-bottom: 1.5rem;
  }
  
  .footer-logo img {
    height: 80px;
    width: auto;
  }
  
  .footer-about p {
    margin-bottom: 1.5rem;
  }
  
  .footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
  }
  
  .footer-contact i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
  }
  
  .footer-links h4 {
    margin-bottom: 1.5rem;
  }
  
  .footer-links ul {
    list-style: none;
    padding-left: 0;
  }
  
  .footer-links li {
    margin-bottom: 0.75rem;
  }
  
  .footer-links a:hover {
    padding-left: 5px;
  }
  
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    margin-right: 0.75rem;
    transition: all 0.3s ease;
  }
  
  .footer-social a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
  }
  
  .footer-bottom {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1.5rem 0;
    margin-top: 4rem;
  }
  
  .footer-bottom p {
    margin-bottom: 0;
  }
  
  /* Chat Widget */
  .chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
  }
  
  .chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .chat-toggle:hover {
    transform: scale(1.1);
  }
  
  .chat-options {
    position: absolute;
    bottom: 75px;
    right: 0;
    display: none;
  }
  
  .chat-options.show {
    display: block;
  }
  
  .chat-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .chat-option:hover {
    transform: scale(1.1);
  }
  
  .chat-option.facebook {
    background-color: #1877f2;
    color: var(--white);
  }
  
  .chat-option.line {
    background-color: #06c755;
    color: var(--white);
  }
  
  /* Typing Animation */
  .typing::after {
    content: '|';
    animation: blink 1s infinite;
  }
  
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }
  
  /* Responsive Styles for Header and Footer */
  @media (max-width: 991.98px) {
    .navbar-nav {
      margin-top: 1rem;
    }
  }
  
  @media (max-width: 767.98px) {
    .top-bar {
      display: none;
    }
  }