/* ===== Header ===== */
.header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  margin-bottom: 0;
}
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}
.logo img {
  height: 42px;
}
.nav-list {
  list-style: none;
  display: flex;
  gap: 28px;
}
.nav-list li a {
  font-weight: 500;
  font-size: 16px;
  color: #222;
  padding: 7px 18px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  text-decoration: none;
}
.nav-list li a.active,
.nav-list li a:hover {
  background: #e60012;
  color: #fff;
}

/* ===== Banner ===== */
.banner {
  background: linear-gradient(90deg, #e60012 0%, #ff90a6 100%);
  color: #fff;
  padding: 54px 0 38px 0;
}
.banner-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}
.banner-content h1 {
  font-size: 2.15rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.banner-content p {
  font-size: 1.12rem;
  margin-bottom: 6px;
  line-height: 1.7;
}
.banner-img {
  max-width: 340px;
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
  background: #fff;
}

/* ===== Main Content ===== */
body, h1, h2, h3, p, ul, li {
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f7f7f7;
  color: #222;
}
.container {
  width: 92%;
  max-width: 980px;
  margin: 0 auto;
}

.contact-section {
  background: #fff;
  padding: 46px 0;
}
.contact-section h2 {
  color: #e60012;
  font-size: 1.38rem;
  margin-bottom: 28px;
  font-weight: 700;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-info-item {
  font-size: 1.08rem;
  line-height: 1.7;
  background: #f7f7f7;
  border-left: 4px solid #e60012;
  padding: 12px 18px;
  border-radius: 6px;
}
.contact-info-item a {
  color: #e60012;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
  word-break: break-all;
}
.contact-info-item a:hover {
  color: #222;
}

/* ===== Contact Form ===== */
.contact-form {
  margin-top: 26px;
  max-width: 420px;
  background: #f7f7f7;
  padding: 28px 24px 22px 24px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-weight: 500;
  margin-bottom: 1px;
}
.form-group .required {
  color: #e60012;
}
.contact-form input[type="email"],
.contact-form textarea {
  padding: 9px 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: border .2s;
  resize: none;
  font-family: inherit;
}
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #e60012;
}
.contact-form textarea {
  min-height: 80px;
}
.submit-btn {
  background: #e60012;
  color: #fff;
  border: none;
  padding: 11px 0;
  border-radius: 30px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  margin-top: 8px;
}
.submit-btn:hover {
  background: #b8000e;
}

/* ===== Footer ===== */
footer {
  background: #222;
  color: #fff;
  padding: 32px 0;
}
.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-logo img {
  margin-bottom: 8px;
}
.footer-logo p {
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.footer-contact p {
  font-size: 0.98rem;
}
.footer-contact a {
  color: #fff;
  margin-right: 8px;
  font-weight: 500;
  transition: color .2s;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #e60012;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .banner-flex {
    flex-direction: column;
    align-items: center;
    gap: 26px;
  }
  .banner-img {
    max-width: 96vw;
  }
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .header-flex {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    gap: 12px;
  }
  .container {
    width: 99%;
  }
  .banner-content h1 {
    font-size: 1.25rem;
  }
  .contact-info-item {
    font-size: 1rem;
    padding: 10px 12px;
  }
  .contact-form {
    padding: 18px 6px 14px 6px;
  }
}
/* Nút zalo fb cạnh phải*/
.fixed-social-buttons {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 9999;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  width: 54px;
  height: 54px;
  transition: box-shadow 0.18s, transform 0.15s;
  border: 2px solid #e7e7e7;
}
.social-btn img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.social-btn:hover {
  box-shadow: 0 6px 20px rgba(230,0,18,0.18);
  transform: translateY(-2px) scale(1.08);
  border-color: #e60012;
}

.zalo-btn {
  border-color: #0084ff;
}
.zalo-btn:hover {
  border-color: #005b99;
}

.messenger-btn {
  border-color: #00b2ff;
}
.messenger-btn:hover {
  border-color: #0077b5;
}

@media (max-width: 600px) {
  .fixed-social-buttons {
    right: 12px;
    bottom: 12px;
    gap: 10px;
  }
  .social-btn {
    width: 46px;
    height: 46px;
  }
  .social-btn img {
    width: 26px;
    height: 26px;
  }
}
/* Nút zalo fb cạnh phải*/