
.container {
  max-width: 1320px;
  margin: 0 auto;
  /* padding: 0 20px; */
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 30px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-column h3 {
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ffffff80;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #ffffff80;
}

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

.contact-item a {
  color: #ffffff80;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--white);
}

.contact-icon {
  font-size: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.social-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  text-align: center;
  /* padding-top: 20px; */
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  margin: 0 5px;
}

.footer-bottom a:hover {
  color: var(--white);
}

.divider-secondary {
  border: 1.5px solid #ffffff40;
  border-style: solid;
  border-color: #ffffff40;
  margin: 20px auto;
}

/* For the footer logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 20px;
}

footer .logo {
  background-image: url(../images/logo-white.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  /* background-size: 84px 40px; */
  display: block;
  display: inline-block;
  height: 60px;
  /* margin: 0 0 40px; */
  width: 120px;
}

.footer-logo-text span {
  display: block;
  font-size: 12px;
  font-weight: normal;
}

/* For the call to action button in footer */
.footer-cta {
  background-color: var(--secondary-color);
  color: #000000;
  padding: 10px 20px;
  /* border-radius: 4px; */
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 20px;
}

.footer-cta:hover {
  background-color: #d4c5a8;
  transform: translateY(-2px);
}

/* Buttons */
.btn {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  /* border-radius: 4px; */
  min-height: 45px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  align-items: center;
  display: flex;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: #000000;
  align-items: center;
  display: flex;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.view-map {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  margin-left: 10px;
  font-size: 14px;
}

.view-map:hover {
  color: var(--white);
}

/* For the legal disclaimer */
.legal-disclaimer {
  font-size: 14px;
  text-align: center;
  margin: 10px 0;
  color: #00000099;
}

.hide-text {
  background-color: transparent;
  border: 0;
  color: transparent !important;
  display: block;
  font-size: 0 !important;
  height: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  text-decoration: none;
  text-shadow: none;
  top: 0;
  width: 0;
}