:root {
  --hw-bg:           #0b0f12;
  --hw-bg-soft:      #111827;
  --hw-card-blue:    #455d6e;  /* Newsletter 冷灰蓝 */
  --hw-card:         #111827;
  --hw-orange:       #ff4f00;
  --hw-orange-soft:  #ff6a00;
  --hw-text-main:    #e5e7eb;
  --hw-text-muted:   #9ca3af;
  --hw-border-subtle:#1f2933;
}
/* ===============================
   Footer Base
================================ */
.hw-footer-main {
  background: radial-gradient(circle at top, #1b1f24, var(--hw-bg));
  color: var(--hw-text-main);
  padding: 8px 0 0;
}

.hw-footer-main a {
  color: #b4aeae;
  text-decoration: none;
}

.hw-footer-main a:hover {
  color: var(--hw-orange-soft);
}

/* 主 container 宽度 */
.hw-footer-main .container {
  max-width: 1260px;
}

.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 CTA
================================ */
.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: var(--hw-orange-soft);
  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: var(--hw-orange);
  color: #fff;
  transition: transform .2s ease, background .2s ease;
}

.hw-social a:hover {
  background: var(--hw-orange-soft);
  transform: translateY(-2px);
}

/* ===============================
   Insurance / Hours
================================ */
.hw-insurance {
  margin: 18px 0;
}

.hw-insurance img {
  max-width: 128px;
}

.hw-hours {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  color: #b4aeae;
  font-size: 15px;
}

.hw-hours__label {
  font-weight: 600;
   color: #e74700d1;
  font-size: 16px;
}

/* ===============================
   Menu Links
================================ */
.footer-links-title {
  font-size: 17px;
  font-weight: 600;
   color: #e74700d1;
  margin-bottom: 24px;
}

.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;
}

.footer-links-list a::before {
  content: "›";
  opacity: .7;
}

/* ===============================
   Contact
================================ */
.hwf-title {
  font-size: 18px;
  font-weight: 600;
   color: #e74700d1;
}

.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: var(--hw-orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hw-contact-text span {
  display: block;
  font-weight: 500;
  color: #e74700d1;
  font-size: 15px;
}

/* 联系方式链接 */
.hw-contact-text-a {
  color: var(--hw-text-main);
  font-weight: 500;
  text-decoration: none;
}

.hw-contact-text-a:hover {
  color: var(--hw-orange-soft);
}
/* ===============================
   Desktop ≥ 992px
================================ */
@media (min-width: 992px) {
  /* Footer 三等分 */
  .hw-footer-body .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 40px;
  }

  .hw-footer-body .row > [class*="col-"] {
    width: auto;
    max-width: none;
  }

  /* Newsletter 左右 50% */
  .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) {
  /* 整个蓝色卡片：左右留 16px，四个角都能看到 */
  .hw-footer-newsletter {
    width: calc(100% - 32px);  /* 左右各空 16px */
    margin: 24px auto 32px;
    padding: 16px 18px;
    border-radius: 20px;
  }

  /* newsletter：上下排布 */
  .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;
  }
.newsletter-row .newsletter-btn {
    width: 100%;
    justify-content: center;
    border-radius: 12px !important;
  }
}
/* ===============================
   Copyright
================================ */
.hw-copyright {
  margin-top: 0; 
  padding: 14px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
  font-size: 14px;
  color: var(--hw-text-muted);
}

.hw-copyright p {
  margin: 0;
}

.hw-copyright a {
  color: #b4aeae;
  text-decoration: none;
}

.hw-copyright a:hover {
  color: var(--hw-orange-soft);
}
.footer-privacy-text p {
  font-size: 14px;
  line-height: 1.6;
  color:#b4aeae;
  margin-bottom: 10px;
  padding: 8px 6px 12px;
}
