/* ═══════════════════════════════════════
   footer.css — Clawer static footer
   Matches source: elitehplc-en.com
   Background: #35505d (dark blue-slate)
   ═══════════════════════════════════════ */

/* === Footer wrapper === */
.clawer-footer {
  background: #35505d;
  color: #ccc;
  font-family: Arial, sans-serif;
  margin-top: 40px;
}

/* === Grid layout === */
.clawer-footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 4fr 3fr 5fr;
  gap: 30px;
  padding: 40px 40px 30px;
}

/* === Footer columns === */
.clawer-footer-col-img {
  max-width: 140px;
  margin-bottom: 12px;
  display: block;
}
.clawer-footer-col h4 {
  color: #fff;
  font-size: 24px;
  font-family: Arial;
  font-weight: bold;
  margin-bottom: 12px;
}
.clawer-footer-col p,
.clawer-footer-col a {
  font-size: 14px;
}
.clawer-footer-text {
  font-size: 16px;
  color: #fff;
  font-family: Arial;
  line-height: 3.6;
  margin: 0 0 4px;
}
.clawer-footer-link {
  color: #fff;
  text-decoration: none;
  line-height: 2.8;
}
.clawer-footer-link:hover {
  text-decoration: underline;
}
.clawer-footer-qr {
  max-width: 110px;
  margin-top: 8px;
  display: block;
}
.clawer-footer-wechat-text {
  color: #fff;
  font-size: 14px;
  line-height: 2;
  margin: 4px 0 0;
}

/* === NAVIGATION list — matches newclassifyv224 from source === */
.clawer-footer-nav-item {
  padding: 8px 0;
}
.clawer-footer-nav-item a {
  color: rgba(255,255,255, 0.7);
  text-decoration: none;
  font-size: 16px;
  font-family: Arial;
  line-height: 25px;
}
.clawer-footer-nav-item a:hover {
  color: #fff;
}

/* === Social icons — match source: rgba(255,255,255,0.87), 20px === */
.clawer-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.clawer-footer-social a {
  color: rgba(255,255,255, 0.87);
}
.clawer-footer-social a:hover {
  color: #fff;
}
.clawer-footer-social svg {
  width: 20px;
  height: 20px;
}

/* === CONTACT US section === */
.clawer-footer-col.clawer-footer-contact{max-width:400px}
.clawer-footer-contact h4 {
  color: #fff;
  font-size: 24px;
  font-family: Arial;
  font-weight: bold;
  margin-bottom: 8px;
}
.clawer-footer-contact-subtitle {
  font-size: 16px;
  color: #fff;
  font-family: Arial;
  margin-bottom: 12px;
}
.clawer-footer-contact-links {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.clawer-footer-contact-links a {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #bbb;
  text-decoration: none;
  font-size: 13px;
}
.clawer-footer-contact-links svg {
  width: 18px;
  height: 18px;
}

/* === Subscription form === */
.clawer-footer-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.clawer-form-field label {
  font-size: 13px;
  color: #fff;
  display: block;
  margin-bottom: 3px;
}
.clawer-form-field label i {
  color: #f44;
  font-style: normal;
}
.clawer-form-field input,
.clawer-form-field textarea {
  width: 100%;
  padding: 6px 10px;
  border: 1px solid #555;
  border-radius: 4px;
  background: rgba(238,238,238, 0.41);
  color: #ddd;
  font-size: 13px;
  box-sizing: border-box;
}
.clawer-form-field textarea {
  min-height: 60px;
  resize: vertical;
}
.clawer-form-btn {
  padding: 6px 20px;
  background: #1890ff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  align-self: flex-start;
}
.clawer-form-btn:hover {
  background: #1476cc;
}

/* === Bottom bar — matches #233036 from source === */
.clawer-footer-bottom {
  background: #233036;
  padding: 14px 40px;
}
.clawer-footer-bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-family: Arial;
  color: #999;
  flex-wrap: wrap;
  gap: 10px;
}
.clawer-footer-bottom-links {
  display: flex;
  gap: 16px;
}
.clawer-footer-bottom-links a {
  color: #999;
  text-decoration: none;
}
.clawer-footer-bottom-links a:hover {
  color: #fff;
}

/* === Mobile footer bar === */
.clawer-footer-mobile {
  display: none;
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 1000;
  background: #333;
  justify-content: space-around;
  color: #fff;
  line-height: 49px;
}
.clawer-footer-mobile a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}
.clawer-footer-mobile svg {
  width: 20px;
  height: 20px;
}

/* === Responsive === */
@media (max-width: 768px) {
  .clawer-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-bottom: 70px;
  }
  .clawer-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .clawer-footer-mobile {
    display: flex;
  }
}
@media (max-width: 480px) {
  .clawer-footer-grid {
    grid-template-columns: 1fr;
  }
}
