/* ================= RESET ================= */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Segoe UI", system-ui, sans-serif;
    }

    /* ================= FOOTER BASE ================= */
    .site-footer {
      background: #4f7cff;
      color: #ffffff;
      padding: 60px 0 30px;
    }

    /* ================= FOOTER CONTAINER ================= */
    .footer-container {
      max-width: 1300px;
      margin: auto;
      padding: 0 6%;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
    }

    /* ================= LOGO ================= */
    .footer-logo img {
      max-width: 240px;
    }

    /* ================= FOOTER HEADINGS ================= */
    .footer-col h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 18px;
      text-transform: uppercase;
    }


    
    /* ================= FOOTER LINKS ================= */
    .footer-col ul {
      list-style: none;
    }

    .footer-col ul li {
      margin-bottom: 12px;
    }

    .footer-col ul li a {
      color: #ffffff;
      text-decoration: none;
      font-size: 16px;
      opacity: 0.9;
    }

    .footer-col ul li a:hover {
      text-decoration: underline;
    }

    /* ================= CONTACT TEXT ================= */
    .footer-col p {
      font-size: 16px;
      line-height: 1.6;
      opacity: 0.95;
    }

    .footer-col .phone a {
      color: #ffffff;
      text-decoration: none;
    }

    /* ================= SOCIAL MEDIA (IMAGE STYLE) ================= */
.footer-social {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 14px;
}




.footer-social a {
  width: 46px;
  border: 0.1px solid #ffffff;
  height: 46px;
  border-radius: 8px; /* square with slight round */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  text-decoration: none;
  transition: transform 0.25s ease;
}

/* EXACT BRAND COLORS */
.footer-social a.linkedin { background:#0077b5; }
.footer-social a.whatsapp { background:#25D366; }
.footer-social a.call     { background:#2f3e46; }
.footer-social a.telegram { background:#2AABEE; }
.footer-social a.facebook { background:#3b5998; }

/* Hover – same feel as image */
.footer-social a:hover {
  transform: translateY(-3px);
}





    /* ================= TABLET ================= */
    @media (max-width:900px) {
      .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }
    }

    /* ================= MOBILE ================= */
    @media (max-width:500px) {
      .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
      }

      .footer-logo {
        display: flex;
        justify-content: center;
      }

      .footer-logo img {
        max-width: 200px;
      }

      .footer-col h3 {
        font-size: 17px;
      }

      .footer-col p,
      .footer-col ul li a {
        font-size: 15px;
      }

      .footer-social {
        margin-top: 30px;
      }
    }