/* Footer main — mobile-first */
.footer-main {
  padding: 36px 15px 28px;
}

.footer-main__grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer-main__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-main .footer-social {
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .footer-nav-col,
  .footer-contact-col {
    min-width: 0;
  }
}

@media (min-width: 992px) {
  .footer-main {
    padding: 48px 15px 36px;
  }

  .footer-main__grid {
    grid-template-columns: 1.1fr 0.9fr 1.2fr;
    gap: 32px;
  }
}

/* Brand column */
.footer-brand {
  text-align: center;
}

@media (min-width: 992px) {
  .footer-brand {
    text-align: left;
  }
}

.footer-brand .footer-logo {
  display: inline-block;
  max-width: 200px;
  margin-bottom: 16px;
}

.footer-brand .footer-logo img {
  width: 100%;
  height: auto;
}

.footer-brand__text {
  margin: 0 0 18px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: inherit;
  opacity: 0.9;
}

.footer-main .footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
}

@media (min-width: 992px) {
  .footer-main .footer-social {
    justify-content: flex-start;
  }
}

.footer-main .footer-social .hovicon {
  margin: 0;
}

/* Headings */
.footer-heading {
  margin: 0 0 12px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: inherit;
}

.footer-main .h-decor {
  margin-bottom: 16px;
}

/* Quick links */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  display: inline-block;
  font-size: 0.95rem;
  line-height: 1.4;
  color: inherit;
  text-decoration: none;
  opacity: 0.9;
  transition: color 0.2s, opacity 0.2s;
}

.footer-links a:hover {
  color: #e54282;
  opacity: 1;
}

.footer-links a::before {
  content: "› ";
  color: #e54282;
  font-weight: 700;
}

/* Contact list */
.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-contact-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.footer-contact-item > [class*="icon"] {
  flex-shrink: 0;
  margin-top: 4px;
  font-size: 18px;
  color: #e54282;
}

.footer-contact-body {
  flex: 1;
  min-width: 0;
}

.footer-contact-label {
  margin: 0 0 4px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #e54282;
  font-family: "Poppins", sans-serif;
}

.footer-contact-text {
  margin: 0 0 10px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-contact-item a:not(.footer-directions-btn) {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.footer-contact-item a:not(.footer-directions-btn):hover {
  color: #e54282;
}

.footer-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  padding: 8px 14px !important;
  font-size: 12px !important;
  line-height: 1.3 !important;
  border-radius: 20px !important;
  white-space: normal;
  text-align: left;
}

.footer-directions-btn span {
  flex: 1;
}

/* Copyright bar */
.footer-bottom {
  padding: 16px 0;
}

.footer-bottom__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-bottom__copy,
.footer-bottom__credit {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer-bottom__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 16px;
}

.footer-bottom__legal a {
  font-size: 0.9rem;
  color: #fff;
  text-decoration: none;
  opacity: 0.95;
}

.footer-bottom__legal a:hover {
  opacity: 1;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .footer-bottom__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px 20px;
    text-align: left;
  }

  .footer-bottom__copy {
    justify-self: start;
  }

  .footer-bottom__legal {
    justify-self: center;
  }

  .footer-bottom__credit {
    justify-self: end;
    text-align: right;
  }
}

@media (max-width: 767px) {
  .footer-bottom__legal {
    flex-direction: column;
    gap: 8px;
  }
}

.footer .footer-main h3,
.footer .footer-main h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}
