    /* Left Social Bar */
    .social {
      position: fixed;
      top: 30%;
      left: 2%;
      z-index: 9999;
    }

    .social ul {
      list-style-type: none;
      padding: 0;
      margin: 0;
      transform: translateX(-240px);
    }

    .social ul li {
      margin: 5px 0;
      background: rgba(0, 0, 0, 0.6);
      width: 270px;
      text-align: right;
      padding: 10px 15px;
      border-radius: 0 30px 30px 0;
      transition: all 0.5s ease;
    }

    .social ul li:hover {
      transform: translateX(0);
    }

    .social ul li a {
      color: #fff;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      font-size: 15px;
      font-weight: 500;
    }

    .social ul li a i {
      margin-left: 15px;
      font-size: 20px;
      background: #fff;
      color: #000;
      padding: 10px;
      border-radius: 50%;
      transition: transform 0.5s ease;
    }

    .social ul li:hover i {
      transform: rotate(360deg);
    }

    /* Brand Colors */
    .facebook:hover { background: #3b5999; }
    .twitter:hover { background: #55acee; }
    .instagram:hover { background: #e4405f; }
    .linkedin:hover { background: #0077b5; }
    .youtube:hover { background: #cd201f; }

    /* Right Contact Bar (Desktop) */
    .contact {
      position: fixed;
      top: 40%;
      right: 2%;
      z-index: 9999;
    }

    .contact ul {
      list-style: none;
      padding: 0;
      margin: 0;
      transform: translateX(240px);
    }

    .contact ul li {
      margin: 5px 0;
      background: rgba(0, 0, 0, 0.6);
      width: 270px;
      text-align: left;
      padding: 10px 15px;
      border-radius: 30px 0 0 30px;
      transition: all 0.5s ease;
    }

    .contact ul li:hover {
      transform: translateX(0);
    }

    .contact ul li a {
      color: #fff;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      font-size: 15px;
      font-weight: 500;
    }

    .contact ul li a i {
      margin-right: 15px;
      font-size: 20px;
      background: #fff;
      color: #000;
      padding: 10px;
      border-radius: 50%;
      transition: transform 0.5s ease;
    }

    .contact ul li:hover i {
      transform: rotate(360deg);
    }

    /* Contact Brand Colors */
    .call:hover { background: #28a745; }
    .whatsapp:hover { background: #25d366; }

/* Hide mobile bar by default (desktop/tablet view) */
.mobile-bar {
  display: none;
}

/* Mobile Bottom Bar */
@media (max-width: 400px) {
  .social, .contact {
    display: none; /* hide side icons */
  }

  .mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0000007a;
    display: flex;   /* show only on mobile */
    justify-content: space-around;
    padding: 10px 0;
    border-top: 2px solid #dddddd00;
    z-index: 9999;
  }

  .mobile-bar a {
    text-decoration: none;
    color: #fff;
    background: #25d366;
    padding: 12px 15px;
    border-radius: 50%;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-bar a.call {
    background: #28a745;
  }
}