
/* Mobile Menu Dropdown Fix */
@media only screen and (max-width: 1024px) {
  .c-drop-down {
    position: static !important;
    width: 100% !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 15px 15px !important;
    transition: none !important;
    background: transparent !important;
    border-top: 1px solid rgba(0,0,0,0.05);
  }

  /* Override hover effect from desktop */
  .drop-show:hover .c-drop-down {
     transform: none !important;
     display: none; /* Keep hidden on hover, rely on click */
  }
  
  /* When active class is added via JS */
  .drop-show.active .c-drop-down {
    display: block !important;
    animation: fadeIn 0.3s ease-in-out;
  }

  .drop-show.active:hover .c-drop-down {
      display: block !important; /* Ensure it stays visible if hovered while active */
  }

  .c-drop-down .container {
      padding: 0;
      width: 100%;
      max-width: 100%;
  }

  .c-drop-down .row {
      margin: 0;
  }

  .c-drop-down .col-sm-4 {
      padding: 0;
  }

  .list-tabs ul li {
      padding-left: 10px;
  }
  
  .list-tabs ul li a {
      font-size: 14px;
  }

  /* Hide footer arrows on mobile/tablet */
  .services-links li i {
      display: none !important;
  }
  
  /* Ensure footer lists take full width if needed to prevent squishing */
  .services-links li {
      width: 100% !important; /* Stack services on mobile/tablet for better readability */
      max-width: 100%;
  }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
