/* ==========================================================
   SHK Footer Widget — stylesheet
   Scoped under .shk-site-footer so it cannot collide with
   theme / Elementor styles (same approach as the original
   static footer file).
   ========================================================== */

.shk-site-footer {
  font-family: "Poppins", sans-serif;
  /* Background (color or image) is controlled dynamically from the
     Elementor widget's Style tab → "Footer Background" section. */
  color: #1c1c1c;
  padding: 60px 40px 30px;
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
}

.shk-site-footer * {
  box-sizing: border-box;
}

.shk-site-footer a {
  text-decoration: none;
  color: inherit;
}

.shk-site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.shk-site-footer__inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* ---------- Grid layout : each column is independent ---------- */
.shk-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  column-gap: 15px;
  align-items: start;
}

.shk-footer-col {
  display: flex;
  flex-direction: column;
}

.shk-footer-col--brand {
  padding-right: 20px;
}

.shk-footer-block + .shk-footer-block {
  margin-top: 40px;
}

/* ---------- Brand block ---------- */
.shk-footer-logo img {
  max-width: 220px;
  display: block;
  margin-bottom: 18px;
}

.shk-footer-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #2b2b2b;
  margin: 0 0 22px;
  max-width: 420px;
}

.shk-footer-social {
  display: flex;
  gap: 14px;
}

.shk-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.shk-social-icon svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.shk-social-icon:hover {
  opacity: 0.85;
}

.shk-social-icon--linkedin { background-color: #0a66c2; }
.shk-social-icon--facebook { background-color: #1877f2; }
.shk-social-icon--instagram {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.shk-social-icon--x { background-color: #000; }
.shk-social-icon--youtube { background-color: #ff0000; }
.shk-social-icon--whatsapp { background-color: #25d366; }

.shk-footer-badge {
  max-width: 170px;
  display: block;
}

/* ---------- Headings ---------- */
.shk-footer-heading {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0 0 20px;
  color: #1c1c1c;
}

/* ---------- Link lists ---------- */
.shk-footer-links li {
  margin-bottom: 14px;
}

.shk-footer-links a {
  font-size: 15px;
  font-weight: 400;
  color: #2b2b2b;
  transition: color 0.2s ease;
}

.shk-footer-links a:hover {
  color: #e2231a;
}

/* ---------- Address ---------- */
.shk-footer-address {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #2b2b2b;
  margin: 0;
  max-width: 340px;
}

.shk-footer-address-link {
  display: block;
  transition: color 0.2s ease;
}

.shk-footer-address-link:hover .shk-footer-address {
  color: #e2231a;
}

/* ---------- Contact ---------- */
.shk-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 400;
  color: #2b2b2b;
}

.shk-footer-contact svg {
  width: 18px;
  height: 18px;
  fill: #2b2b2b;
  flex-shrink: 0;
  margin-top: 2px;
}

.shk-footer-contact a {
  word-break: break-word;
}

/* ---------- Bottom copyright strip ---------- */
.shk-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-top: 24px;
  margin-top: 40px;
}

.shk-footer-bottom--divider {
  border-top: 1px solid rgba(28, 28, 28, 0.1);
  justify-content: center;
}

.shk-footer-copyright-text {
  font-size: 13px;
  font-weight: 400;
  color: #5a5a5a;
  margin: 0;
}

.shk-footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.shk-footer-bottom-links a {
  font-size: 13px;
  font-weight: 400;
  color: #5a5a5a;
  transition: color 0.2s ease;
}

.shk-footer-bottom-links a:hover {
  color: #e2231a;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .shk-footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }

  .shk-footer-col--brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .shk-footer-col--brand .shk-footer-block:last-child {
    margin-top: 30px;
  }
}

@media (max-width: 600px) {
  .shk-site-footer {
    padding: 40px 20px 20px;
  }

  .shk-footer-grid {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }

  .shk-footer-block + .shk-footer-block {
    margin-top: 30px;
  }

  .shk-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}
