/* ================= FOOTER ONLY STYLES ================= */

.site_footer {
  background: linear-gradient(135deg, #023436 0%, #012a2b 100%),
              url("images/footer_bg_1.webp") center/cover fixed;
  color: #fff;
  position: relative;
  overflow: hidden;
  font-family: 'SuisseIntl', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* prevent affecting global container */
.site_footer .container {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.site_footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(36,234,124,.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(36,234,124,.06), transparent 40%);
  z-index: 0;
}

/* GRID */
.site_footer .footer_content_wrapper { padding: 50px 0; }

.site_footer .footer_row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
}

/* LOGO */
.site_footer .site_logo img {
  max-width: 160px;
  filter: brightness(1.1) drop-shadow(0 4px 10px rgba(36,234,124,.2));
}

/* CONTACT */
.site_footer .contact_item { margin-bottom: 12px; }
.site_footer .contact_item a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
}
.site_footer .contact_item a:hover { color: #24ea7c; }

/* ADDRESS */
.site_footer .company_info {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,.75);
  line-height: 1.8;
}

/* TITLES */
.site_footer .footer_info_title {
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
}
.site_footer .footer_info_title::after {
  content: '';
  width: 50px;
  height: 3px;
  background: #24ea7c;
  display: block;
  margin-top: 8px;
}

/* LINKS */
.site_footer .footer_links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site_footer .footer_links li { margin-bottom: 10px; }

.site_footer .footer_links a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  transition: .3s;
}

.site_footer .footer_links a:hover {
  color: #24ea7c;
  padding-left: 5px;
}

/* APP BUTTONS */
.site_footer .app_download_text {
  background: #24ea7c;
  color: #000;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
}

.site_footer .app_download_btns {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site_footer .app_download_btns img {
  width: 150px;
  border-radius: 10px;
  transition: .3s;
}

.site_footer .app_download_btns img:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(36,234,124,.3);
}

/* BOTTOM */
.site_footer .footer_bottom {
  border-top: 1px solid rgba(36,234,124,.2);
  padding: 30px 0;
  text-align: center;
}

.site_footer .footer_bottom_row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.site_footer .social_icons_block {
  display: flex;
  gap: 12px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site_footer .social_icons_block a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(36,234,124,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: .3s;
}

.site_footer .social_icons_block a:hover {
  background: #24ea7c;
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .site_footer .footer_row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .site_footer .footer_row {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
