/* Footer Section CSS - Prefix: .footer- */

.footer-section {
  background-color: #0B0F19;
  border-top: 1px solid #1E293B;
  padding: 80px 0 30px 0;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  max-width: 1280px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.8fr;
  gap: 40px;
  margin-bottom: 60px;
}

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

/* Brand column */
.footer-logo-link {
  text-decoration: none;
  line-height: 1.1;
  margin-bottom: 24px;
  display: inline-block;
}

.footer-logo-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.footer-logo-accent {
  color: #A31D24;
}

.footer-logo-sub {
  font-size: 8.5px;
  font-weight: 600;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 2px;
}

.footer-about-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: #94A3B8;
  margin-bottom: 24px;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  border: 1px solid #1E293B;
  background-color: #111827;
  color: #94A3B8;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 14px;
}

.footer-social-link:hover {
  background-color: #A31D24;
  color: #FFFFFF !important;
  border-color: #A31D24;
  transform: translateY(-2px);
}

/* Common column header */
.footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Link Lists */
.footer-links-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-item {
  margin: 0;
}

.footer-link {
  font-size: 13.5px;
  color: #94A3B8;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-link:hover {
  color: #A31D24 !important;
  padding-left: 4px;
}

/* Contact List */
.footer-contact-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact-icon {
  color: #A31D24;
  font-size: 16px;
  line-height: 1;
  margin-top: 2px;
}

.footer-contact-content {
  display: flex;
  flex-direction: column;
}

.footer-contact-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #64748B;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.footer-contact-value {
  font-size: 13px;
  color: #94A3B8;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s ease;
}

a.footer-contact-value:hover {
  color: #A31D24 !important;
}

/* Sub-footer bottom bar */
.footer-bottom-bar {
  border-top: 1px solid #1E293B;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 13px;
  color: #64748B;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  padding: 0;
  list-style: none;
  margin: 0;
}

.footer-bottom-link {
  font-size: 13px;
  color: #64748B;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-link:hover {
  color: #A31D24 !important;
}

/* Responsiveness */
@media (max-width: 991.98px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-section {
    padding: 60px 0 30px 0;
  }
}

@media (max-width: 575.98px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .footer-col {
    align-items: center;
    text-align: center;
  }
  .footer-socials {
    justify-content: center;
  }
  .footer-about-text {
    text-align: center;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-contact-item {
    justify-content: center;
    text-align: center;
    width: 100%;
  }
  .footer-contact-content {
    align-items: center;
  }
  .footer-bottom-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
  }
}
