/* ===============================
   MOBILE OVERRIDES
================================ */

/* -----------------------------
   HEADINGS ON MOBILE
----------------------------- */
@media (max-width: 768px) {
    h1 {
      text-align: left;
    }
  
    h1::after {
      margin-left: 0;
    }
  
    h2::before {
      display: none; /* remove left accent on small screens */
    }
  }
  
  /* -----------------------------
     HEADER / TOOLBAR ADJUSTMENTS
  ----------------------------- */
  
  /* Ensure header-container flex alignment */
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /* wrap for very small screens */
  }
  
  /* Menu toggle spacing */
  .menu-toggle {
    margin-right: 10px;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
  }
  
  /* -----------------------------
     MOBILE CALL ICON
  ----------------------------- */
  
  /* Hidden by default on desktop */
  .mobile-call-icon {
    display: none;
  }
  
  /* Show only on mobile */
  @media (max-width: 768px) {
    .mobile-call-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      margin-left: auto;
      margin-right: 10px;
      background: #0066cc;
      color: #ffffff;
      border-radius: 50%;
      font-size: 18px;
      text-decoration: none;
    }
  }
  
  /* Optional pulse animation to attract attention */
  @media (max-width: 768px) {
    .mobile-call-icon {
      animation: pulse 1.8s infinite;
    }
  }
  
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0,102,204,0.6); }
    70% { box-shadow: 0 0 0 10px rgba(0,102,204,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,102,204,0); }
  }
  
  /* -----------------------------
     MOBILE MENU / CALL BUTTON INLINE (Optional CTA inside nav)
  ----------------------------- */
  .mobile-call {
    display: none;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    background: #0066cc;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.95rem;
  }
  
  @media (max-width: 768px) {
    .mobile-call {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
  }