/* ===============================
   Footer Base
================================ */
.hw-footer-main {
  background: #0e182a;
  color: #e5e7eb;
  padding: 16px 12px 0;
}
.hw-footer-main a {
  color: #cbd5f5;
  text-decoration: none;
}
.hw-footer-main a:hover {
  color: #ff6a00;
}

.hw-footer-main .container {
  max-width: 1260px;
}

/* ===============================
   Newsletter 区域
================================ */
.hw-footer-newsletter {
  max-width: 960px;
  margin: 28px auto 42px;
  padding: 18px 28px;
  border-radius: 18px;
  background: #2c373f;
}
.hw-footer-newsletter .container {
  max-width: 100%;
  padding: 0;
}
.hw-footer-newsletter .newsletter-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hw-footer-newsletter .newsletter-title {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  white-space: nowrap;
}
.hw-footer-newsletter .newsletter-form {
  flex: 1;
}
.newsletter-form .input-group {
  display: flex;
  align-items: stretch;
}

.newsletter-form .form-control,
.newsletter-btn {
  height: 52px;
  line-height: 52px;
  box-sizing: border-box;
}

.newsletter-form .form-control {
  flex: 1;
  min-width: 0;
  padding: 0 18px;
  font-size: 14px;
  border: 1px solid #101010;
  border-right: 0;
  border-radius: 8px 0 0 8px !important;
  background: #ffffff;
  color: #111827;
}

.newsletter-form .form-control::placeholder {
  color: #6b7280;
}

.newsletter-form .form-control:focus {
  outline: none;
  border-color: #ff6a00;
  box-shadow: 0 0 0 2px rgba(255, 106, 0, .25);
}

.newsletter-btn {
  padding: 0 26px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 0 999px 999px 0;
}
/* ===============================
   Footer Body（三等分）
================================ */
.hw-footer-body {
  padding-bottom: 24px;
}
.hw-footer-col {
  padding: 18px 10px 26px;
}
/* ===============================
   Social Icons
================================ */
.hw-social {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}
.hw-social a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff4f00;
  color: #fff;
  transition: transform .2s ease, background .2s ease;
}
.hw-social a:hover {
  background: #ff6a00;
  transform: translateY(-2px);
}
/* ===============================
   Insurance / Hours
================================ */
.hw-insurance {
  margin: 18px 0;
}
.hw-insurance img {
  max-width: 128px;
}
.hw-hours {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  font-size: 15px;
  color: #cbd5f5;
  align-items: baseline;
}
.hw-hours__label {
  font-weight: 600;
  color: rgba(255, 79, 0, 0.82);
  font-size: 16px;
  white-space: nowrap;
}
.hw-hours__value {
  white-space: nowrap;
}
/* ===============================
   Menu Links（中间那一列）
================================ */
.footer-links-title {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 79, 0, 0.82);
  margin-bottom: 18px;
}
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}
.footer-links-list li + li {
  margin-top: 10px;
}
.footer-links-list a {
  font-size: 15px;
  display: inline-flex;
  gap: 8px;
  color: #cbd5f5;
}
.footer-links-list a::before {
  content: "›";
  opacity: .7;
}
/* ===============================
   Contact（右侧）
================================ */
.hw-footer-main .hwf-title {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 79, 0, 0.82);
  margin-bottom: 18px;
}

.hw-contact {
  display: grid;
  gap: 2px;
}
.hw-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 4px;
  margin-bottom: 2px;
}
.hw-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ff4f00;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hw-contact-text span {
  display: block;
  font-weight: 500;
  color: rgba(255, 79, 0, 0.82);
  font-size: 16px;
}
.hw-contact-text-a {
  color: #f9fafb;
  font-weight: 500;
  text-decoration: none;
  font-size: 15px;
}

.hw-contact-text-a:hover {
  color: #ff6a00;
}
/* ===============================
   Desktop ≥ 992px
================================ */
@media (min-width: 992px) {
  .hw-footer-body .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 60px;
  }
  .hw-footer-body .row > [class*="col-"] {
    width: auto;
    max-width: none;
  }
  .hw-footer-newsletter .newsletter-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    column-gap: 24px;
  }
  .hw-footer-newsletter .newsletter-title {
    white-space: normal;
    text-align: left;
  }
  .hw-footer-newsletter .newsletter-form {
    width: 100%;
  }
  .newsletter-form .input-group {
    width: 100%;
    max-width: none;
  }
}
/* ===============================
   Mobile ≤ 768px
================================ */
@media (max-width: 768px) {
  .hw-footer-newsletter {
    width: calc(100% - 32px);
    margin: 24px auto 32px;
    padding: 16px 18px;
    border-radius: 20px;
  }
  .hw-footer-newsletter .newsletter-row {
    flex-direction: column;
    align-items: stretch;
  }
  .hw-footer-newsletter .newsletter-title {
    white-space: normal;
    text-align: center;
    margin-bottom: 8px;
  }
  .hw-footer-newsletter .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .newsletter-form .input-group {
    flex-direction: column;
    width: 88%;
    margin: 0 auto;
  }
  #footer-email {
    width: 100%;
    flex: 0 0 auto;
    margin-bottom: 8px;
    border-radius: 12px !important;
    border-right: 1px solid #101010;
    text-align: center;
  }
  .newsletter-row .newsletter-btn {
    width: 100%;
    justify-content: center;
    border-radius: 12px !important;
  }
}
/* ===============================
   Copyright
================================ */
.hw-copyright {
  padding: 6px 0 10px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
  font-size: 14px;
}
.hw-copyright p {
  margin: 0;
  color:#595a5c;
  line-height: 1.5;
}
.hw-copyright a {
  color: #595a5c;
  text-decoration: none;
}
.footer-privacy-text p {
  font-size: 14px;
  line-height: 1.5;
  color: #595a5c;
}