/* =======================================================
   FOOTER SOBIE
======================================================== */
.sobie-footer {
  font-family: 'Montserrat', sans-serif;
  background-color: #2596be;
  color: #fff;
  line-height: 1.6;
  padding: 20px 0;
}
.sf-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.sf-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 20px;
}
.sf-top-left { max-width: 550px; }
.sf-top-left h3 {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 15px 0;
  letter-spacing: -0.5px;
}
.sf-top-left p {
  font-size: 14px;
  color: #f3f4f6;
  margin: 0 0 25px 0;
}
.sf-btn {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}
.sf-btn:hover { background: #e5e5e5; transform: translateY(-2px); }

.sf-socials { display: flex; gap: 12px; }
.social-box {
  width: 44px; height: 44px;
  border: 1px solid #fff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-box:hover { background: #fff; color: #000; }

.sf-top-right { display: flex; flex-direction: column; gap: 30px; }
.sf-contact-item { display: flex; align-items: center; gap: 15px; }
.sf-contact-item i { font-size: 32px; }
.sf-contact-info p.lbl {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #f3f4f6;
  margin: 0 0 2px 0;
}
.sf-contact-info p.val {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
.sf-divider {
  border: 0;
  border-top: 1px solid #334155;
  margin: 20px 0;
}

.sf-middle {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}
.sf-col-address { grid-column: span 2; }

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 16px 0;
  color: #fff;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}
.footer-list li { margin-bottom: 12px; }
.footer-list a {
  color: #f3f4f6;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-list a:hover { color: #facc15; }

.sf-address p {
  font-size: 13px;
  color: #f3f4f6;
  margin: 0 0 15px 0;
  line-height: 1.6;
}
.sf-address span {
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
}

.sf-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}
.sf-copy p {
  font-size: 11px;
  color: #f3f4f6;
  margin: 0 0 5px 0;
  max-width: 800px;
}
.sf-copy p.c-bold {
  font-weight: 700;
  color: #e5e7eb;
}
.sf-badges {
  display: flex;
  align-items: center;
  gap: 15px;
}
.sf-badges img { height: 35px; object-fit: contain; }

#back-to-top {
  position: fixed;
  left: 20px; bottom: 20px;
  width: 44px; height: 44px;
  background-color: #2563eb;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
#back-to-top.show { opacity: 1; visibility: visible; }

@media (max-width: 992px) {
  .sf-middle { grid-template-columns: repeat(2, 1fr); }
  .sf-col-address { grid-column: span 2; }
  .sf-top { align-items: flex-start; }
}
@media (max-width: 768px) {
  .sf-top-right { flex-direction: column; gap: 20px; }
  .sf-top-left h3 { font-size: 22px; }
  .sf-contact-info p.val { font-size: 18px; }
  #back-to-top { bottom: 85px; }
}
