/* Custom Footer Styles */
.custom-footer {
  background-image: url('../../assets/images/img_rectangle_33.png');
  background-size: cover;
  background-position: center;
  padding: 40px 16px;
}
.custom-footer-content {
  max-width: 1204px;
  margin: 0 auto;
}
.custom-footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: stretch;
}
.custom-footer-logo-block,
.custom-footer-section.custom-footer-contact,
.custom-footer-links {
  background: none;
  flex: 1 1 0;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  padding: 0 12px;
}
.custom-footer-logo-block {
  gap: 24px;
}
.custom-footer-logo-img {
  width: 120px;
  height: auto;
}
.custom-footer-social-block {
  display: flex;
  gap: 18px;
}
.custom-footer-social-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.2s;
}
.custom-footer-social-icon:hover {
  transform: scale(1.1);
}
.custom-footer-section-title {
  font-size: 22px;
  color: #ececec;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  text-align: center;
}
.custom-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: left;
}
.custom-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.custom-footer-contact-icon {
  width: 20px;
  height: 20px;
}
.custom-footer-contact-text {
  font-size: 18px;
  text-decoration: none;
  color: #ececec;
  line-height: 1.4;
}
.custom-footer-contact-text:hover {
  text-decoration: underline;
}
.custom-footer-links {
  gap: 18px;
  margin-top: 8px;
  align-items: center;
  justify-content: flex-start;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.custom-footer-link {
  font-size: 18px;
  color: #ececec;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  text-align: center;
  text-decoration: none;
}
.custom-footer-link:hover {
  color: #fff;
  text-decoration: underline;
}
@media (max-width: 900px) {
  .custom-footer-top {
    flex-wrap: nowrap;
    gap: 32px;
    justify-content: space-between;
    align-items: center;
  }
  .custom-footer-logo-block,
  .custom-footer-section.custom-footer-contact,
  .custom-footer-links {
    min-width: 0;
    max-width: none;
    flex: 1 1 0;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  .custom-footer-top {
    flex-direction: column !important;
    align-items: center !important;
  }
  .custom-footer {
    padding-bottom: 60px; /* 40px + 10px for mobile */
  }
}
