/* Final Contact Mobile Fixes */

@media (max-width: 767px) {
  /* Make "Contact Us" title look better */
  .contact-card-header {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
  
  .contact-card-header .title-default-left {
    font-size: 20px;
    font-weight: 600;
    color: #002147;
    margin-bottom: 5px;
  }
  
  /* Fix social icons */
  .social-icon {
    transition: all 0.3s ease;
  }
  
  .social-icon.facebook {
    background-color: #3b5998;
  }
  
  .social-icon.twitter {
    background-color: #1da1f2;
  }
  
  .social-icon.linkedin {
    background-color: #0077b5;
  }
  
  .social-icon.instagram {
    background-color: #e1306c;
  }
  
  /* Make contact items look more like the screenshot */
  .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .contact-icon-wrapper {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #002147;
    margin-right: 15px;
  }
  
  .contact-icon-wrapper i {
    color: #fff;
    font-size: 16px;
  }
  
  .contact-text {
    font-size: 14px;
    line-height: 1.4;
    padding-top: 0;
    display: flex;
    align-items: center;
    min-height: 40px;
  }
}
