/* ============================================================
   Footer (extracted from main.css)
   ============================================================ */

.footer {
  background-color: var(--secondary-color);
  padding: 70px 0 0;
  position: relative;
  width: 100%;
  bottom: 0;
}

.container {
  max-width: 1170px;
  margin: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.footer-col {
  width: 25%;
  padding: 0 15px;
}

.footer-col h4,
.footer-bottom h4 {
  font-size: var(--fs-md);
  color: var(--text-inverse);
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: var(--primary-color);
  height: 2px;
  box-sizing: border-box;
  width: 70px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: var(--fs-base);
  text-transform: capitalize;
  color: var(--text-inverse);
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.5s ease;
}

.footer-col ul li a:hover {
  color: var(--text-inverse);
  padding-left: 8px;
}

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 28px;
  color: var(--text-inverse);
  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: var(--text-inverse);
  background-color: var(--primary-color);
}

.footer-bottom {
  padding: 20px;
  text-align: center;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-privacy-controls {
  display: flex;
  gap: 10px;
}

.cookie-settings-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-inverse);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cookie-settings-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .footer-bottom {
    text-align: left;
    padding-left: 15px;
  }

  .footer-bottom-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .footer-privacy-controls {
    align-self: stretch;
    justify-content: center;
  }

  .cookie-settings-btn {
    flex: 1;
    justify-content: center;
    max-width: 200px;
  }

  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}

@media (max-width: 574px) {
  .footer-col {
    width: 100%;
  }
}
