/* Reset và base */
body, h1, h2, h3, p, ul, li {
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f6f6f6;
  color: #222;
}
a {
  color: #1a73e8;
  text-decoration: none;
}
.container {
  width: 92%;
  max-width: 980px;
  margin: 0 auto;
}

/* Header */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}
.logo img {
  height: 42px;
}

.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;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}
nav ul li a {
  font-weight: 500;
  font-size: 16px;
  transition: color 0.2s;
}
nav ul li a:hover {
  color: #e60012;
}

/* Banner */
.banner {
  background: linear-gradient(90deg, #e60012 0%, #ff90a6 100%);
  color: #fff;
  padding: 48px 0 32px 0;
}
.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.banner-content div {
  max-width: 500px;
}
.banner h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}
.banner p {
  font-size: 1.1rem;
  margin-bottom: 24px;
}
.banner-img {
  max-width: 480px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
}
.btn {
  display: inline-block;
  background: #fff;
  color: #e60012;
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  transition: background .2s, color .2s;
}
.btn:hover {
  background: #e60012;
  color: #fff;
}

/* Services */
.services {
  background: #fff;
  padding: 48px 0;
}
.services h2 {
  text-align: center;
  margin-bottom: 36px;
  font-size: 2rem;
}
.services-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.service-card {
  background: #f6f6f6;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 32px 24px;
  text-align: center;
  width: 260px;
  transition: transform .15s;
}
.service-card:hover {
  transform: translateY(-6px) scale(1.04);
}
.service-card img {
  margin-bottom: 16px;
}
.service-card h3 {
  color: #e60012;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

/* About Section */
.about {
  padding: 48px 0;
}
.about-flex {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}
.about-img {
  max-width: 320px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.about ul {
  margin-top: 20px;
  margin-left: 18px;
}
.about ul li {
  margin-bottom: 8px;
  font-size: 1rem;
}

/* 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;
}
.footer-contact a:hover {
  color: #e60012;
}

/* Responsive */
@media (max-width: 900px) {
  .banner-content, .about-flex, .footer-flex, .services-grid {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .banner-img, .about-img {
    max-width: 90vw;
  }
}
@media (max-width: 600px) {
  .header-flex, .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    gap: 18px;
  }
  .container {
    width: 99%;
  }
  .banner h1 {
    font-size: 2rem;
  }
  .services-grid {
    gap: 18px;
  }
}

/* ... (các phần trước giữ nguyên) ... */

/* Products Section */
.products {
  background: #fff;
  padding: 44px 0 40px 0;
}
.products h2 {
  text-align: center;
  margin-bottom: 36px;
  font-size: 2rem;
}
.products-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.product-card {
  background: #f6f6f6;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 26px 18px 28px 18px;
  text-align: center;
  width: 210px;
  transition: transform .15s, box-shadow .15s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 4px 18px rgba(230,0,18,0.14);
}
.product-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 16px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.product-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #e60012;
}
.product-card p {
  font-size: 0.97rem;
  margin-bottom: 18px;
  color: #444;
}
.btn-outline {
  display: inline-block;
  border: 2px solid #e60012;
  color: #e60012;
  background: #fff;
  border-radius: 30px;
  padding: 8px 24px;
  font-weight: 500;
  font-size: 0.99rem;
  transition: background .2s, color .2s;
}
.btn-outline:hover {
  background: #e60012;
  color: #fff;
}

/* Responsive cho products */
@media (max-width: 900px) {
  .products-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .product-card {
    width: 85vw;
    max-width: 320px;
  }
}

/* Reviews Section */
.reviews {
  background: #f6f6f6;
  padding: 48px 0;
}
.reviews h2 {
  text-align: center;
  margin-bottom: 36px;
  font-size: 2rem;
}
.reviews-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.review-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 28px 22px;
  width: 320px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: transform .15s, box-shadow .15s;
}
.review-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 4px 18px rgba(230,0,18,0.10);
}
.review-avatar img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.09);
}
.review-content {
  flex: 1;
}
.review-text {
  font-style: italic;
  color: #444;
  margin-bottom: 12px;
}
.review-author {
  font-weight: 600;
  color: #e60012;
  font-size: 1rem;
}

/* Responsive cho reviews */
@media (max-width: 900px) {
  .reviews-grid {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }
  .review-card {
    width: 92vw;
    max-width: 350px;
  }
}

/* Nút Xem thêm nhận xét khách hàng */
.reviews-actions {
  text-align: center;
  margin-top: 24px;
}
.btn-view-more {
  background: #e60012;
  color: #fff;
  border: none;
  padding: 12px 38px;
  border-radius: 30px;
  font-size: 1.08rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(230,0,18,0.10);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-view-more:hover {
  background: #b8000e;
  box-shadow: 0 4px 18px rgba(230,0,18,0.16);
}

/* 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*/

/* Nút xem tất cả dịch vụ*/
.products-actions {
  margin-top: 32px;
  text-align: center;
}

.btn-view-all-services {
  display: inline-block;
  background: #e60012;
  color: #fff;
  font-weight: 600;
  font-size: 1.09rem;
  border-radius: 30px;
  padding: 12px 36px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(230,0,18,0.11);
  transition: background .2s, transform .18s, box-shadow .2s;
  letter-spacing: 0.5px;
}
.btn-view-all-services:hover {
  background: #b8000e;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 20px rgba(230,0,18,0.16);
}
/* Nút xem tất cả dịch vụ*/