/* Enhanced Mobile Menu Styles - Additional styles for mobile menu */

/* Add a logo/branding section to the mobile menu */
.mobile-menu-header {
  display: none;
}

@media screen and (max-width: 768px) {
  /* Hide the mobile menu header to avoid duplicate logo */
  .mobile-menu-header {
    display: none; /* Changed from flex to none to hide duplicate logo */
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
  }

  .mobile-menu-logo {
    display: none; /* Hide the mobile menu logo */
    max-width: 200px;
    height: auto;
    opacity: 0.9;
  }

  /* Active menu indicator */
  .nav-links a {
    position: relative;
    overflow: hidden;
  }

  .nav-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background-color: #ffffff;
    transition: width 0.3s ease;
    border-radius: 3px;
  }

  .nav-links a:hover::before,
  .nav-links a.active::before {
    width: 100%;
  }

  /* Add a contact button to the mobile menu */
  .mobile-menu-contact {
    margin-top: 40px;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mobile-contact-button {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    display: inline-block;
    width: 100%;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 15px;
  }

  .mobile-contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.5);
  }

  /* Social icons in mobile menu */
  .mobile-menu-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
  }

  .mobile-menu-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
  }

  .mobile-menu-social a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
  }
}
