/* ==========================================================================
   NEW FOOTER STYLESHEET
   ========================================================================== */

.footer-custom-tbp {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 0 40px 0;
  font-family: var(--font-sans), Arial, sans-serif;
  position: relative;
  z-index: 10;
}

.footer-custom-tbp .container-fluid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer Column Title */
.footer-col-title {
  font-family: var(--font-sans-bold), var(--font-sans), Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 25px;
  letter-spacing: 0.05em;
}

/* Logo and Socials Column */
.footer-logo-wrap {
  margin-bottom: 25px;
}

.footer-logo {
  height: auto;
  max-width: 150px;
}

.footer-social-row {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  align-items: center;
}

.footer-social-link {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-social-link:hover {
  color: var(--yellow);
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Quick Links Column */
.footer-links-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link:hover {
  color: var(--yellow);
  transform: translateX(4px);
}

/* Connect with Us Column */
.footer-contact-sub {
  font-family: var(--font-sans-semibold), var(--font-sans), Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 15px;
  margin-top: 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.75);
}

.contact-item svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--yellow);
  stroke-width: 1.8;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.contact-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--yellow);
}

/* Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-bottom-link {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-link:hover {
  color: var(--yellow);
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .footer-custom-tbp {
    padding: 60px 0 40px 0;
  }
  
  .footer-col-title {
    margin-top: 35px;
    margin-bottom: 15px;
  }
  
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 15px;
  }
  
  .footer-bottom-links {
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
  }
}
