body {
    padding: 0px;
    margin: 0;
    font-family: Arial, sans-serif;
}
body {
    
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.expandable-footer {
  background: #1f1f1f;
  color: #fff;
  padding: 10px 20px;
  font-family: Arial, sans-serif;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid #444;
  padding: 10px 0;
}

.footer-row span,
.footer-row a {
  color: #ccc;
  margin-right: 15px;
  text-decoration: none;
  font-size: clamp(0.8rem, 2vw, 0.95rem);
}

.footer-row a:hover {
  text-decoration: underline;
}

.toggle-footer {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 1.5rem;
  padding: 5px;
  border-radius: 5px;
}

.footer-expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.footer-expanded.active {
  max-height: 1000px;
  padding-top: 20px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-columns div {
  flex: 1 1 200px;
}

.footer-columns h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.1em;
}

.footer-columns a {
  display: block;
  color: #aaa;
  text-decoration: none;
  margin-bottom: 6px;
  font-size: clamp(0.85rem, 2vw, 1rem);
}

.footer-columns a:hover {
  color: #fff;
}

.footer-social {
  margin-top: 20px;
}

.social-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
    
}

.social-icons a {
  font-size: 24px;
  color: #F5F5F5;
  padding: 0px 10px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #999;
}

//* Mobile Responsive */
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-row a,
  .footer-row span {
    margin: 6px 0;
    font-size: 1rem;
  }

  .toggle-footer {
    align-self: flex-end;
    margin-top: 10px;
  }

  .footer-columns {
    display: block;
    padding-top: 10px;
  }

  .footer-columns div {
    width: 100%;
    margin-bottom: 20px;
    border-top: 1px solid #333;
    padding-top: 10px;
  }

  .footer-columns h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #fff;
  }

  .footer-columns a {
    display: block;
    padding: 6px 0;
    font-size: 1rem;
    color: #ccc;
    border-bottom: 1px dashed #444;
  }

  .footer-columns a:last-child {
    border-bottom: none;
  }

  .footer-social {
    margin-top: 20px;
  }

  .social-icons {
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 10px;
  }

  .social-icons a {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .footer-row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .footer-row span,
  .footer-row a {
    font-size: 1rem;
    margin: 5px 10px 5px 0;
  }

  .footer-row-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
  }

  .toggle-footer {
    margin-left: auto;
    font-size: 24px;
    padding: 5px;
  }
}
.footer-links.driving-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-top: 8px;
}

.footer-links.driving-areas a {
  font-size: 0.9em;
  color: #ccc;
  text-decoration: none;
  white-space: nowrap;
}

.footer-links.driving-areas a:hover {
  color: #fff;
  text-decoration: underline;
}