:root{
  --primaryColor:#338d78;
  --middleColor:#4cac97f2;
  --helperColor:#48BDA3F2;
  --lightHelper:#DBDBDB;
  --transparentColor:#66d2cf88;
  --shadow:rgba(189, 188, 188, 0.514);
 /* --------------------------------- */
  --whatsappColor:#25D366;
  --white:#ffff;
  --blue: #1877F2;
  --green: #25D366;

  --gray:  #f8f8f8;
}
  /* ================= Navbar Contact ================= */
  .navbar-contact {
    color: var(--primaryColor);
    text-align: center;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
    box-shadow: 0 2px 8px var(--shadow);
    animation: fadeInDown 0.8s ease;
  }
  
  .navbarContact-container {
    width: 98%;
    margin: 8px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* ================= Phone Button ================= */
  .phone-icon1 {
    font-size: large;
    text-decoration: none;
    color: var(--primaryColor);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    border: 2px solid transparent;
    border-image: linear-gradient(190deg, #FFFFFF0D 0%, #04154C 73%) 1;
    border-radius: 10px;
    padding: 6px 20px;
    transition: all 0.4s ease;
    gap: 8px;
    position: relative;
    overflow: hidden;
  }
  
  .phone-icon1:hover {
    transform: scale(1.1);
    background: linear-gradient(190deg, #04154C 0%, #000A5B 100%);
    color: var(--white);
    box-shadow: 0 0 12px var(--helperColor);
  }
  
  /* ================= Social Icons ================= */
  .social-icons a {
    text-decoration: none;
    margin-right: 10px;
    transition: transform 0.3s ease;
  }
  
  .social-icons a:hover {
    transform: translateY(-5px) rotate(-5deg);
  }
  
  /* WhatsApp */
  .whatsapp {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--whatsappColor);
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.5);
    transition: all 0.4s ease;
  }
  .whatsapp:hover {
    background-color: #1ebe5d;
  }
  .whatsapp .fa-whatsapp {
    color: #fff;
    font-size: 20px;
  }
  
  /* Facebook */
  .facebook {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--blue);
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 4px 10px rgba(24, 119, 242, 0.5);
    transition: all 0.4s ease;
  }
  .facebook:hover {
    background-color: #0f64d8;
  }
  .facebook .fa-facebook {
    color: #fff;
    font-size: 20px;
  }
  
  /* Instagram */
  .instagram {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(
      45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%
    );
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 4px 10px rgba(204, 35, 102, 0.5);
    transition: all 0.4s ease;
  }
  .instagram:hover {
    transform: scale(1.2) rotate(5deg);
  }
  .instagram .fa-instagram {
    color: #fff;
    font-size: 20px;
  }
  
  /* ================= Animations ================= */
  @keyframes fadeInDown {
    from {
      transform: translateY(-40px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  /* ================= Responsive ================= */
  @media (max-width: 760px) {
    .navbarContact-container {
      flex-direction: column;
      gap: 10px;
    }
  
    .phone-icon1 {
      width: 80%;
      justify-content: center;
      background-color: var(--primaryColor);
      color: var(--white);
      border: none;
    }
  
    .social-icons {
      display: flex;
      justify-content: center;
      gap: 12px;
    }
  
    .whatsapp,
    .facebook,
    .instagram {
      width: 35px;
      height: 35px;
    }
  }
  