<!DOCTYPE html>
<html lang=”vi”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>Spring Time — Homepage Layout</title>
<style>
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  body { font-family: ‘Segoe UI’, Arial, sans-serif; color: #222; background: #fff; }
  a { text-decoration: none; color: inherit; }
  /* ── UTILITY ── */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
  .section { padding: 64px 0; }
  .section-title { font-size: 28px; font-weight: 700; margin-bottom: 32px; color: #1a1a1a; }
  .btn { display: inline-block; padding: 10px 24px; border: 2px solid #333; border-radius: 4px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all .2s; }
  .btn:hover { background: #333; color: #fff; }
  .btn-primary { background: #2c6b4f; color: #fff; border-color: #2c6b4f; }
  .btn-primary:hover { background: #1e4f39; }
  .placeholder-img { background: #e0e0e0; display: flex; align-items: center; justify-content: center; color: #999; font-size: 13px; border-radius: 4px; }
  /* ── HEADER ── */
  .site-header { position: sticky; top: 0; z-index: 100; background: rgba(20,50,35,.92); backdrop-filter: blur(6px); }
  .header-top { background: #111; padding: 6px 0; }
  .header-top .container { display: flex; justify-content: flex-end; gap: 16px; align-items: center; }
  .header-top a { color: #ccc; font-size: 13px; }
  .header-main .container { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; padding-bottom: 12px; }
  .logo { font-size: 22px; font-weight: 800; color: #fff; letter-spacing: 1px; }
  .nav { display: flex; gap: 28px; list-style: none; }
  .nav a { color: #ddd; font-size: 14px; font-weight: 500; transition: color .2s; }
  .nav a:hover { color: #fff; }
  .header-cta .btn { padding: 8px 18px; font-size: 13px; color: #fff; border-color: #fff; }
  .header-cta .btn:hover { background: #fff; color: #222; }
  /* ── SECTION 1: HERO SLIDER ── */
  .hero { position: relative; height: 85vh; min-height: 480px; overflow: hidden; }
  .hero-slide { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 60px; background: linear-gradient(135deg, #0d2b1e 0%, #1a4a30 100%); }
  .hero-slide .placeholder-img { position: absolute; inset: 0; border-radius: 0; font-size: 16px; background: linear-gradient(135deg,#1a3a28,#2d6b4a); color: rgba(255,255,255,.3); }
  .hero-content { position: relative; z-index: 2; max-width: 560px; }
  .hero-content h1 { font-size: 48px; font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 16px; }
  .hero-content p { font-size: 18px; color: rgba(255,255,255,.8); margin-bottom: 28px; }
  .hero-content .btn { border-color: #fff; color: #fff; margin-right: 12px; }
  .hero-content .btn:hover { background: #fff; color: #222; }
  .hero-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
  .hero-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; }
  .hero-dots span.active { background: #fff; }
  /* ── SECTION 2: ABOUT + VIDEO ── */
  .about-section { background: #f9f7f4; }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
  .about-text h2 { font-size: 32px; font-weight: 700; margin-bottom: 16px; color: #1a1a1a; }
  .about-text p { font-size: 15px; line-height: 1.8; color: #555; margin-bottom: 16px; }
  .about-video { aspect-ratio: 16/9; border-radius: 8px; overflow: hidden; position: relative; cursor: pointer; }
  .about-video .placeholder-img { height: 100%; font-size: 14px; background: #c8ddd2; }
  .play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
  .play-btn svg { width: 64px; height: 64px; opacity: .8; }
  /* ── SECTION 3: STATS BAR ── */
  .stats-bar { background: #2c6b4f; }
  .stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
  .stat-item { display: flex; align-items: center; gap: 16px; padding: 32px 24px; border-right: 1px solid rgba(255,255,255,.15); }
  .stat-item:last-child { border-right: none; }
  .stat-icon { width: 48px; height: 48px; flex-shrink: 0; border-radius: 50%; background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: 22px; }
  .stat-item h3 { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
  .stat-item p { font-size: 22px; font-weight: 800; color: #fff; }
  /* ── SECTION 4: FEATURES / USP GRID ── */
  .features-section { background: #fff; }
  .features-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
  .features-header h2 { max-width: 480px; }
  .features-header p { font-size: 14px; color: #777; max-width: 320px; text-align: right; }
  .features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
  .feature-card { padding: 24px; border: 1px solid #e8e8e8; border-radius: 8px; transition: box-shadow .2s; }
  .feature-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
  .feature-icon { width: 48px; height: 48px; margin-bottom: 16px; border-radius: 8px; background: #eaf3ee; display: flex; align-items: center; justify-content: center; font-size: 22px; }
  .feature-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: #1a1a1a; }
  .feature-card p { font-size: 13px; line-height: 1.7; color: #666; }
  /* ── SECTION 5: PRODUCTS ── */
  .products-section { background: #f9f7f4; }
  .products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 32px; }
  .product-card { background: #fff; border: 1px solid #e8e8e8; border-radius: 8px; overflow: hidden; transition: box-shadow .2s; }
  .product-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); }
  .product-img { aspect-ratio: 1/1; }
  .product-img .placeholder-img { height: 100%; background: #ddeee5; font-size: 13px; }
  .product-info { padding: 14px 16px; }
  .product-category { font-size: 11px; color: #2c6b4f; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
  .product-info h3 { font-size: 14px; font-weight: 700; line-height: 1.4; color: #1a1a1a; }
  .products-footer { text-align: center; }
  /* ── SECTION 6: GALLERY ── */
  .gallery-section { background: #fff; }
  .gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
  .gallery-item { aspect-ratio: 3/2; border-radius: 6px; overflow: hidden; cursor: pointer; }
  .gallery-item .placeholder-img { height: 100%; background: #c8ddd2; font-size: 12px; transition: transform .3s; }
  .gallery-item:hover .placeholder-img { transform: scale(1.05); }
  /* ── SECTION 7: CONTACT FORM ── */
  .contact-section { background: #1a3a28; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
  .contact-text h2 { color: #fff; margin-bottom: 16px; }
  .contact-text p { color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.7; }
  .contact-form { background: #fff; padding: 32px; border-radius: 8px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .form-row.full { grid-template-columns: 1fr; }
  .form-row input, .form-row textarea { width: 100%; padding: 12px 14px; border: 1px solid #ddd; border-radius: 6px; font-size: 14px; outline: none; transition: border-color .2s; }
  .form-row input:focus, .form-row textarea:focus { border-color: #2c6b4f; }
  .form-row textarea { min-height: 100px; resize: vertical; }
  .contact-form .btn-primary { width: 100%; text-align: center; padding: 14px; }
  /* ── SECTION 8: PRESS / VIDEO ── */
  .press-section { background: #f9f7f4; }
  .press-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
  .press-embed { aspect-ratio: 9/16; max-height: 500px; border-radius: 8px; overflow: hidden; }
  .press-embed .placeholder-img { height: 100%; background: #dde7e2; font-size: 13px; }
  /* ── SECTION 9: NEWS ── */
  .news-section { background: #fff; }
  .news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 32px; }
  .news-card { border: 1px solid #e8e8e8; border-radius: 8px; overflow: hidden; transition: box-shadow .2s; }
  .news-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
  .news-img { aspect-ratio: 2/1; }
  .news-img .placeholder-img { height: 100%; background: #ddeee5; font-size: 12px; }
  .news-body { padding: 16px; }
  .news-category { font-size: 11px; color: #2c6b4f; font-weight: 600; text-transform: uppercase; margin-bottom: 8px; }
  .news-body h3 { font-size: 15px; font-weight: 700; line-height: 1.5; margin-bottom: 8px; color: #1a1a1a; }
  .news-body p { font-size: 13px; color: #666; line-height: 1.6; }
  .news-footer { text-align: center; }
  /* ── SECTION 10: PARTNERS ── */
  .partners-section { background: #f9f7f4; }
  .partners-track { display: flex; gap: 48px; align-items: center; overflow: hidden; padding: 16px 0; }
  .partner-logo { width: 100px; height: 50px; flex-shrink: 0; border-radius: 4px; }
  .partner-logo .placeholder-img { height: 100%; background: #ddd; font-size: 11px; }
  /* ── FOOTER ── */
  .site-footer { background: #0d1f16; color: #ccc; padding: 56px 0 24px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
  .footer-brand .logo { font-size: 20px; color: #fff; margin-bottom: 16px; display: block; }
  .footer-brand p { font-size: 13px; line-height: 1.8; color: #888; }
  .footer-contact { margin-top: 16px; }
  .footer-contact li { font-size: 13px; color: #888; margin-bottom: 8px; display: flex; gap: 8px; align-items: flex-start; }
  .footer-col h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 8px; }
  .footer-col a { font-size: 13px; color: #888; transition: color .2s; }
  .footer-col a:hover { color: #fff; }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; text-align: center; font-size: 13px; color: #555; }
  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .features-grid, .products-grid { grid-template-columns: repeat(3,1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    .about-grid, .contact-grid, .press-grid, .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .features-grid, .products-grid, .gallery-grid, .news-grid { grid-template-columns: repeat(2,1fr); }
    .hero-content h1 { font-size: 32px; }
    .hero-slide { padding: 32px 24px; }
    .nav { display: none; }
  }
  @media (max-width: 480px) {
    .features-grid, .products-grid, .news-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2,1fr); }
    .form-row { grid-template-columns: 1fr; }
  }
</style>
</head>
<body>
<header class=”site-header”>
  <div class=”header-top”>
    <div class=”container”>
      <a href=”#”>Facebook</a>
      <a href=”#”>YouTube</a>
      <a href=”#”>LinkedIn</a>
      <span style=”color:#555″>|</span>
      <a href=”#”>VI</a>
      <a href=”#”>EN</a>
    </div>
  </div>
  <div class=”header-main”>
    <div class=”container”>
      <div class=”logo”>SPRING TIME</div>
      <nav>
        <ul class=”nav”>
          <li><a href=”#”>Trang chủ</a></li>
          <li><a href=”#”>Về chúng tôi</a></li>
          <li><a href=”#”>Sản phẩm</a></li>
          <li><a href=”#”>Tin tức</a></li>
          <li><a href=”#”>Liên hệ</a></li>
        </ul>
      </nav>
      <div class=”header-cta”>
        <a href=”#contact” class=”btn”>Nhận báo giá</a>
      </div>
    </div>
  </div>
</header>
<section class=”hero”>
  <div class=”hero-slide”>
    <div class=”placeholder-img”>[ Ảnh hero / background toàn trang ]</div>
    <div class=”hero-content”>
      <h1>SPRING TIME</h1>
      <p>Mô tả ngắn về thương hiệu hoặc sản phẩm — 1-2 dòng ấn tượng</p>
      <a href=”#” class=”btn”>Khám phá ngay</a>
      <a href=”#about” class=”btn”>Tìm hiểu thêm</a>
    </div>
  </div>
  <div class=”hero-dots”>
    <span class=”active”></span>
    <span></span>
    <span></span>
  </div>
</section>
<section class=”about-section section” id=”about”>
  <div class=”container”>
    <div class=”about-grid”>
      <div class=”about-text”>
        <h2>Về Spring Time</h2>
        <p>Đoạn giới thiệu chính về thương hiệu / doanh nghiệp. Nêu lịch sử hình thành, lĩnh vực hoạt động, điểm khác biệt cốt lõi.</p>
        <p>Đoạn thứ hai nói về tầm nhìn, sứ mệnh, hoặc cam kết với khách hàng và thị trường.</p>
        <a href=”#” class=”btn btn-primary” style=”margin-top:8px”>Tìm hiểu thêm</a>
      </div>
      <div>
        <div class=”about-video”>
          <div class=”placeholder-img”>[ Ảnh thumbnail video — click để phát ]</div>
          <div class=”play-btn”>
            <svg viewBox=”0 0 80 80″ fill=”none” xmlns=”http://www.w3.org/2000/svg”>
              <circle cx=”40″ cy=”40″ r=”38″ stroke=”white” stroke-width=”3″ fill=”rgba(0,0,0,.3)”/>
              <path d=”M32 26L58 40L32 54V26Z” fill=”white”/>
            </svg>
          </div>
        </div>
      </div>
    </div>
  </div>
</section>
<section class=”stats-bar”>
  <div class=”container”>
    <div class=”stats-grid”>
      <div class=”stat-item”>
        <div class=”stat-icon”>🌍</div>
        <div>
          <h3>Thị trường xuất khẩu</h3>
          <p>20+ quốc gia</p>
        </div>
      </div>
      <div class=”stat-item”>
        <div class=”stat-icon”>🤝</div>
        <div>
          <h3>Khách hàng tin tưởng</h3>
          <p>1,000+</p>
        </div>
      </div>
      <div class=”stat-item”>
        <div class=”stat-icon”>📦</div>
        <div>
          <h3>Sản lượng hàng tháng</h3>
          <p>120+ Tấn/Tháng</p>
        </div>
      </div>
    </div>
  </div>
</section>
<section class=”features-section section”>
  <div class=”container”>
    <div class=”features-header”>
      <h2 class=”section-title” style=”margin-bottom:0″>”Tiêu đề USP chính”<br><span style=”font-weight:400;font-size:18px;color:#555″>Mô tả phụ ngắn gọn</span></h2>
    </div>
    <div class=”features-grid”>
      <div class=”feature-card”>
        <div class=”feature-icon”>✅</div>
        <h3>Tính năng / Lợi thế 1</h3>
        <p>Mô tả ngắn về lợi thế này, 1-2 câu đủ ý.</p>
      </div>
      <div class=”feature-card”>
        <div class=”feature-icon”>🔬</div>
        <h3>Tính năng / Lợi thế 2</h3>
        <p>Mô tả ngắn về lợi thế này, 1-2 câu đủ ý.</p>
      </div>
      <div class=”feature-card”>
        <div class=”feature-icon”>🤝</div>
        <h3>Tính năng / Lợi thế 3</h3>
        <p>Mô tả ngắn về lợi thế này, 1-2 câu đủ ý.</p>
      </div>
      <div class=”feature-card”>
        <div class=”feature-icon”>🏅</div>
        <h3>Tính năng / Lợi thế 4</h3>
        <p>Mô tả ngắn về lợi thế này, 1-2 câu đủ ý.</p>
      </div>
      <div class=”feature-card”>
        <div class=”feature-icon”>⚙️</div>
        <h3>Tính năng / Lợi thế 5</h3>
        <p>Mô tả ngắn về lợi thế này, 1-2 câu đủ ý.</p>
      </div>
      <div class=”feature-card”>
        <div class=”feature-icon”>🧪</div>
        <h3>Tính năng / Lợi thế 6</h3>
        <p>Mô tả ngắn về lợi thế này, 1-2 câu đủ ý.</p>
      </div>
      <div class=”feature-card”>
        <div class=”feature-icon”>⚖️</div>
        <h3>Tính năng / Lợi thế 7</h3>
        <p>Mô tả ngắn về lợi thế này, 1-2 câu đủ ý.</p>
      </div>
      <div class=”feature-card”>
        <div class=”feature-icon”>🌱</div>
        <h3>Tính năng / Lợi thế 8</h3>
        <p>Mô tả ngắn về lợi thế này, 1-2 câu đủ ý.</p>
      </div>
    </div>
  </div>
</section>
<section class=”products-section section”>
  <div class=”container”>
    <h2 class=”section-title”>Sản phẩm nổi bật</h2>
    <div class=”products-grid”>
      <div class=”product-card”>
        <div class=”product-img”><div class=”placeholder-img”>[ Ảnh sản phẩm 1 ]</div></div>
        <div class=”product-info”>
          <div class=”product-category”>Danh mục sản phẩm</div>
          <h3>Tên sản phẩm 1</h3>
        </div>
      </div>
      <div class=”product-card”>
        <div class=”product-img”><div class=”placeholder-img”>[ Ảnh sản phẩm 2 ]</div></div>
        <div class=”product-info”>
          <div class=”product-category”>Danh mục sản phẩm</div>
          <h3>Tên sản phẩm 2</h3>
        </div>
      </div>
      <div class=”product-card”>
        <div class=”product-img”><div class=”placeholder-img”>[ Ảnh sản phẩm 3 ]</div></div>
        <div class=”product-info”>
          <div class=”product-category”>Danh mục sản phẩm</div>
          <h3>Tên sản phẩm 3</h3>
        </div>
      </div>
      <div class=”product-card”>
        <div class=”product-img”><div class=”placeholder-img”>[ Ảnh sản phẩm 4 ]</div></div>
        <div class=”product-info”>
          <div class=”product-category”>Danh mục sản phẩm</div>
          <h3>Tên sản phẩm 4</h3>
        </div>
      </div>
    </div>
    <div class=”products-footer”>
      <a href=”#” class=”btn btn-primary”>Xem thêm sản phẩm</a>
    </div>
  </div>
</section>
<section class=”gallery-section section”>
  <div class=”container”>
    <h2 class=”section-title”>Hình ảnh thực tế</h2>
    <div class=”gallery-grid”>
      <div class=”gallery-item”><div class=”placeholder-img”>Ảnh 1</div></div>
      <div class=”gallery-item”><div class=”placeholder-img”>Ảnh 2</div></div>
      <div class=”gallery-item”><div class=”placeholder-img”>Ảnh 3</div></div>
      <div class=”gallery-item”><div class=”placeholder-img”>Ảnh 4</div></div>
      <div class=”gallery-item”><div class=”placeholder-img”>Ảnh 5</div></div>
      <div class=”gallery-item”><div class=”placeholder-img”>Ảnh 6</div></div>
      <div class=”gallery-item”><div class=”placeholder-img”>Ảnh 7</div></div>
      <div class=”gallery-item”><div class=”placeholder-img”>Ảnh 8</div></div>
    </div>
  </div>
</section>
<section class=”contact-section section” id=”contact”>
  <div class=”container”>
    <div class=”contact-grid”>
      <div class=”contact-text”>
        <h2 class=”section-title” style=”color:#fff”>Liên hệ chúng tôi</h2>
        <p>Vui lòng để lại thông tin để nhân viên có thể liên hệ với bạn một cách nhanh chóng và thuận tiện nhất!</p>
      </div>
      <div class=”contact-form”>
        <div class=”form-row”>
          <input type=”text” placeholder=”Họ và tên”>
          <input type=”email” placeholder=”Email”>
        </div>
        <div class=”form-row”>
          <input type=”tel” placeholder=”Số điện thoại”>
        </div>
        <div class=”form-row full”>
          <textarea placeholder=”Lời nhắn”></textarea>
        </div>
        <button class=”btn btn-primary”>Gửi tin nhắn</button>
      </div>
    </div>
  </div>
</section>
<section class=”press-section section”>
  <div class=”container”>
    <h2 class=”section-title”>Báo chí / Truyền thông nói gì?</h2>
    <div class=”press-grid”>
      <div class=”press-embed”>
        <div class=”placeholder-img”>[ Nhúng video Facebook / YouTube báo chí ]</div>
      </div>
      <div>
        <h3 style=”margin-bottom:16px;font-size:20px”>Video nổi bật</h3>
        <div style=”display:flex;flex-direction:column;gap:16px”>
          <div style=”display:flex;gap:12px;align-items:center”>
            <div class=”placeholder-img” style=”width:120px;height:68px;flex-shrink:0″>Thumb</div>
            <p style=”font-size:14px;color:#555″>Tiêu đề video hoặc bài báo 1</p>
          </div>
          <div style=”display:flex;gap:12px;align-items:center”>
            <div class=”placeholder-img” style=”width:120px;height:68px;flex-shrink:0″>Thumb</div>
            <p style=”font-size:14px;color:#555″>Tiêu đề video hoặc bài báo 2</p>
          </div>
          <div style=”display:flex;gap:12px;align-items:center”>
            <div class=”placeholder-img” style=”width:120px;height:68px;flex-shrink:0″>Thumb</div>
            <p style=”font-size:14px;color:#555″>Tiêu đề video hoặc bài báo 3</p>
          </div>
        </div>
      </div>
    </div>
  </div>
</section>
<section class=”news-section section”>
  <div class=”container”>
    <h2 class=”section-title”>Tin tức mới nhất</h2>
    <div class=”news-grid”>
      <div class=”news-card”>
        <div class=”news-img”><div class=”placeholder-img”>Ảnh bài viết 1</div></div>
        <div class=”news-body”>
          <div class=”news-category”>Danh mục tin tức</div>
          <h3>Tiêu đề bài viết số 1 — nên khoảng 2 dòng để cân đối</h3>
          <p>Mô tả tóm tắt bài viết, khoảng 1-2 câu ngắn gọn…</p>
        </div>
      </div>
      <div class=”news-card”>
        <div class=”news-img”><div class=”placeholder-img”>Ảnh bài viết 2</div></div>
        <div class=”news-body”>
          <div class=”news-category”>Danh mục tin tức</div>
          <h3>Tiêu đề bài viết số 2 — nên khoảng 2 dòng để cân đối</h3>
          <p>Mô tả tóm tắt bài viết, khoảng 1-2 câu ngắn gọn…</p>
        </div>
      </div>
      <div class=”news-card”>
        <div class=”news-img”><div class=”placeholder-img”>Ảnh bài viết 3</div></div>
        <div class=”news-body”>
          <div class=”news-category”>Danh mục tin tức</div>
          <h3>Tiêu đề bài viết số 3 — nên khoảng 2 dòng để cân đối</h3>
          <p>Mô tả tóm tắt bài viết, khoảng 1-2 câu ngắn gọn…</p>
        </div>
      </div>
    </div>
    <div class=”news-footer”>
      <a href=”#” class=”btn btn-primary”>Xem tất cả tin tức</a>
    </div>
  </div>
</section>
<section class=”partners-section section”>
  <div class=”container”>
    <h2 class=”section-title”>Đối tác</h2>
    <div class=”partners-track”>
      <div class=”partner-logo”><div class=”placeholder-img”>Logo 1</div></div>
      <div class=”partner-logo”><div class=”placeholder-img”>Logo 2</div></div>
      <div class=”partner-logo”><div class=”placeholder-img”>Logo 3</div></div>
      <div class=”partner-logo”><div class=”placeholder-img”>Logo 4</div></div>
      <div class=”partner-logo”><div class=”placeholder-img”>Logo 5</div></div>
      <div class=”partner-logo”><div class=”placeholder-img”>Logo 6</div></div>
      <div class=”partner-logo”><div class=”placeholder-img”>Logo 7</div></div>
    </div>
  </div>
</section>
<footer class=”site-footer”>
  <div class=”container”>
    <div class=”footer-grid”>
      <div class=”footer-brand”>
        <span class=”logo”>SPRING TIME</span>
        <p>Mô tả ngắn về thương hiệu trong footer, 1-2 dòng.</p>
        <ul class=”footer-contact” style=”list-style:none;margin-top:16px”>
          <li>📍 Địa chỉ công ty, Tỉnh/Thành phố, Việt Nam</li>
          <li>📞 +84 xxx xxx xxx</li>
          <li>✉️ info@springtime.vn</li>
          <li>🌐 www.springtime.vn</li>
        </ul>
      </div>
      <div class=”footer-col”>
        <h4>Về chúng tôi</h4>
        <ul>
          <li><a href=”#”>Lịch sử hình thành</a></li>
          <li><a href=”#”>Tầm nhìn – Sứ mệnh</a></li>
          <li><a href=”#”>Đội ngũ</a></li>
        </ul>
      </div>
      <div class=”footer-col”>
        <h4>Sản phẩm</h4>
        <ul>
          <li><a href=”#”>Danh mục 1</a></li>
          <li><a href=”#”>Danh mục 2</a></li>
          <li><a href=”#”>Danh mục 3</a></li>
        </ul>
      </div>
      <div class=”footer-col”>
        <h4>Điều khoản</h4>
        <ul>
          <li><a href=”#”>Điều khoản dịch vụ</a></li>
          <li><a href=”#”>Chính sách thanh toán</a></li>
          <li><a href=”#”>Chính sách hoàn trả</a></li>
          <li><a href=”#”>Chính sách bảo mật</a></li>
        </ul>
      </div>
    </div>
    <div class=”footer-bottom”>
      Spring Time © 2025 — All Rights Reserved
    </div>
  </div>
</footer>
</body>
</html>