| | <!DOCTYPE html> |
| | <html lang="vi"> |
| | <head> |
| | <meta charset="UTF-8"> |
| | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| | <title>BẾP 4.0 - Thiết kế & thi công tủ bếp trọn gói</title> |
| | <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
| | <style> |
| | :root { |
| | --primary-gray: #333333; |
| | --secondary-gray: #757575; |
| | --light-gray: #f5f5f5; |
| | --primary-gold: #FFD700; |
| | --secondary-gold: #e6c200; |
| | --dark-gold: #b8860b; |
| | } |
| | |
| | * { |
| | margin: 0; |
| | padding: 0; |
| | box-sizing: border-box; |
| | font-family: 'Arial', sans-serif; |
| | } |
| | |
| | body { |
| | color: var(--primary-gray); |
| | line-height: 1.6; |
| | } |
| | |
| | |
| | header { |
| | background-color: white; |
| | box-shadow: 0 2px 10px rgba(0,0,0,0.1); |
| | position: sticky; |
| | top: 0; |
| | z-index: 100; |
| | } |
| | |
| | .header-container { |
| | display: flex; |
| | justify-content: space-between; |
| | align-items: center; |
| | padding: 15px 5%; |
| | max-width: 1400px; |
| | margin: 0 auto; |
| | } |
| | |
| | .logo { |
| | display: flex; |
| | align-items: center; |
| | } |
| | |
| | .logo i { |
| | font-size: 2.5rem; |
| | color: var(--primary-gold); |
| | margin-right: 15px; |
| | } |
| | |
| | .logo-text h1 { |
| | font-size: 1.8rem; |
| | color: var(--primary-gray); |
| | font-weight: 800; |
| | } |
| | |
| | .logo-text p { |
| | font-size: 0.9rem; |
| | color: var(--secondary-gray); |
| | font-weight: 500; |
| | } |
| | |
| | nav ul { |
| | display: flex; |
| | list-style: none; |
| | } |
| | |
| | nav ul li { |
| | margin-left: 30px; |
| | } |
| | |
| | nav ul li a { |
| | text-decoration: none; |
| | color: var(--primary-gray); |
| | font-weight: 600; |
| | transition: all 0.3s ease; |
| | position: relative; |
| | } |
| | |
| | nav ul li a:hover { |
| | color: var(--primary-gold); |
| | } |
| | |
| | nav ul li a::after { |
| | content: ''; |
| | position: absolute; |
| | width: 0; |
| | height: 2px; |
| | bottom: -3px; |
| | left: 0; |
| | background-color: var(--primary-gold); |
| | transition: width 0.3s ease; |
| | } |
| | |
| | nav ul li a:hover::after { |
| | width: 100%; |
| | } |
| | |
| | .cta-button { |
| | background-color: var(--primary-gold); |
| | color: white; |
| | border: none; |
| | padding: 10px 20px; |
| | border-radius: 30px; |
| | font-weight: 600; |
| | cursor: pointer; |
| | transition: all 0.3s ease; |
| | display: flex; |
| | align-items: center; |
| | } |
| | |
| | .cta-button:hover { |
| | background-color: var(--dark-gold); |
| | transform: translateY(-2px); |
| | } |
| | |
| | .cta-button i { |
| | margin-left: 8px; |
| | } |
| | |
| | |
| | .hero { |
| | background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1556909114-44e7f5c5d2fd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80'); |
| | background-size: cover; |
| | background-position: center; |
| | color: white; |
| | padding: 100px 5%; |
| | text-align: center; |
| | } |
| | |
| | .hero-content { |
| | max-width: 800px; |
| | margin: 0 auto; |
| | } |
| | |
| | .hero h2 { |
| | font-size: 3rem; |
| | margin-bottom: 20px; |
| | line-height: 1.2; |
| | } |
| | |
| | .hero p { |
| | font-size: 1.2rem; |
| | margin-bottom: 30px; |
| | } |
| | |
| | .hero-buttons { |
| | display: flex; |
| | justify-content: center; |
| | gap: 20px; |
| | } |
| | |
| | .video-button { |
| | background-color: transparent; |
| | border: 2px solid white; |
| | color: white; |
| | padding: 10px 20px; |
| | border-radius: 30px; |
| | font-weight: 600; |
| | cursor: pointer; |
| | transition: all 0.3s ease; |
| | display: flex; |
| | align-items: center; |
| | } |
| | |
| | .video-button:hover { |
| | background-color: rgba(255,255,255,0.2); |
| | } |
| | |
| | |
| | .about { |
| | padding: 80px 5%; |
| | background-color: white; |
| | } |
| | |
| | .section-container { |
| | max-width: 1200px; |
| | margin: 0 auto; |
| | display: flex; |
| | align-items: center; |
| | gap: 50px; |
| | } |
| | |
| | .about-image { |
| | flex: 1; |
| | position: relative; |
| | min-height: 400px; |
| | } |
| | |
| | .main-image { |
| | width: 100%; |
| | height: 100%; |
| | object-fit: cover; |
| | border-radius: 10px; |
| | box-shadow: 0 10px 20px rgba(0,0,0,0.1); |
| | } |
| | |
| | .about-content { |
| | flex: 1; |
| | } |
| | |
| | .section-title { |
| | position: relative; |
| | margin-bottom: 30px; |
| | color: var(--primary-gray); |
| | } |
| | |
| | .section-title h3 { |
| | font-size: 2rem; |
| | display: inline-block; |
| | background: linear-gradient(to right, var(--primary-gold), var(--dark-gold)); |
| | -webkit-background-clip: text; |
| | -webkit-text-fill-color: transparent; |
| | } |
| | |
| | .section-title::after { |
| | content: ''; |
| | position: absolute; |
| | width: 50px; |
| | height: 3px; |
| | bottom: -10px; |
| | left: 0; |
| | background: linear-gradient(to right, var(--primary-gold), var(--dark-gold)); |
| | } |
| | |
| | .about-content p { |
| | margin-bottom: 20px; |
| | color: var(--secondary-gray); |
| | } |
| | |
| | |
| | .services { |
| | padding: 80px 5%; |
| | background-color: var(--light-gray); |
| | } |
| | |
| | .services-header { |
| | text-align: center; |
| | margin-bottom: 50px; |
| | } |
| | |
| | .services-grid { |
| | display: grid; |
| | grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); |
| | gap: 30px; |
| | max-width: 1200px; |
| | margin: 0 auto; |
| | } |
| | |
| | .service-card { |
| | background-color: white; |
| | border-radius: 10px; |
| | overflow: hidden; |
| | box-shadow: 0 5px 15px rgba(0,0,0,0.05); |
| | transition: all 0.3s ease; |
| | } |
| | |
| | .service-card:hover { |
| | transform: translateY(-10px); |
| | box-shadow: 0 15px 30px rgba(0,0,0,0.1); |
| | } |
| | |
| | .service-image { |
| | height: 200px; |
| | overflow: hidden; |
| | } |
| | |
| | .service-image img { |
| | width: 100%; |
| | height: 100%; |
| | object-fit: cover; |
| | transition: transform 0.5s ease; |
| | } |
| | |
| | .service-card:hover .service-image img { |
| | transform: scale(1.1); |
| | } |
| | |
| | .service-content { |
| | padding: 20px; |
| | } |
| | |
| | .service-content h4 { |
| | font-size: 1.3rem; |
| | margin-bottom: 10px; |
| | color: var(--primary-gray); |
| | } |
| | |
| | .service-content p { |
| | color: var(--secondary-gray); |
| | margin-bottom: 15px; |
| | } |
| | |
| | .read-more { |
| | color: var(--primary-gold); |
| | font-weight: 600; |
| | text-decoration: none; |
| | display: flex; |
| | align-items: center; |
| | transition: all 0.3s ease; |
| | } |
| | |
| | .read-more:hover { |
| | color: var(--dark-gold); |
| | } |
| | |
| | .read-more i { |
| | margin-left: 5px; |
| | transition: all 0.3s ease; |
| | } |
| | |
| | .read-more:hover i { |
| | transform: translateX(5px); |
| | } |
| | |
| | |
| | .portfolio { |
| | padding: 80px 5%; |
| | background-color: white; |
| | } |
| | |
| | .portfolio-header { |
| | text-align: center; |
| | margin-bottom: 50px; |
| | } |
| | |
| | .portfolio-grid { |
| | display: grid; |
| | grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); |
| | gap: 20px; |
| | max-width: 1200px; |
| | margin: 0 auto; |
| | } |
| | |
| | .portfolio-item { |
| | position: relative; |
| | overflow: hidden; |
| | border-radius: 10px; |
| | height: 250px; |
| | } |
| | |
| | .portfolio-image { |
| | width: 100%; |
| | height: 100%; |
| | object-fit: cover; |
| | transition: all 0.5s ease; |
| | } |
| | |
| | .portfolio-overlay { |
| | position: absolute; |
| | bottom: 0; |
| | left: 0; |
| | right: 0; |
| | background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); |
| | padding: 20px; |
| | color: white; |
| | transform: translateY(100%); |
| | transition: all 0.3s ease; |
| | } |
| | |
| | .portfolio-item:hover .portfolio-overlay { |
| | transform: translateY(0); |
| | } |
| | |
| | .portfolio-item:hover .portfolio-image { |
| | transform: scale(1.1); |
| | } |
| | |
| | |
| | .process { |
| | padding: 80px 5%; |
| | background-color: var(--light-gray); |
| | } |
| | |
| | .process-steps { |
| | display: flex; |
| | justify-content: space-between; |
| | max-width: 1000px; |
| | margin: 0 auto; |
| | position: relative; |
| | } |
| | |
| | .process-steps::before { |
| | content: ''; |
| | position: absolute; |
| | top: 40px; |
| | left: 50px; |
| | right: 50px; |
| | height: 3px; |
| | background-color: var(--primary-gold); |
| | z-index: 1; |
| | } |
| | |
| | .step { |
| | text-align: center; |
| | position: relative; |
| | z-index: 2; |
| | width: 20%; |
| | } |
| | |
| | .step-number { |
| | width: 40px; |
| | height: 40px; |
| | background-color: var(--primary-gold); |
| | color: white; |
| | border-radius: 50%; |
| | display: flex; |
| | justify-content: center; |
| | align-items: center; |
| | margin: 0 auto 15px; |
| | font-weight: bold; |
| | } |
| | |
| | .step h4 { |
| | margin-bottom: 10px; |
| | color: var(--primary-gray); |
| | } |
| | |
| | .step p { |
| | font-size: 0.9rem; |
| | color: var(--secondary-gray); |
| | } |
| | |
| | |
| | .testimonials { |
| | padding: 80px 5%; |
| | background-color: white; |
| | } |
| | |
| | .testimonials-container { |
| | max-width: 1000px; |
| | margin: 0 auto; |
| | text-align: center; |
| | } |
| | |
| | .testimonial-card { |
| | background-color: var(--light-gray); |
| | padding: 30px; |
| | border-radius: 10px; |
| | margin-bottom: 30px; |
| | box-shadow: 0 5px 15px rgba(0,0,0,0.05); |
| | } |
| | |
| | .testimonial-card p { |
| | font-style: italic; |
| | margin-bottom: 20px; |
| | color: var(--secondary-gray); |
| | } |
| | |
| | .client-info { |
| | display: flex; |
| | align-items: center; |
| | justify-content: center; |
| | } |
| | |
| | .client-avatar { |
| | width: 60px; |
| | height: 60px; |
| | border-radius: 50%; |
| | overflow: hidden; |
| | margin-right: 15px; |
| | } |
| | |
| | .client-avatar img { |
| | width: 100%; |
| | height: 100%; |
| | object-fit: cover; |
| | } |
| | |
| | .client-name h5 { |
| | color: var(--primary-gray); |
| | margin-bottom: 5px; |
| | } |
| | |
| | .client-name p { |
| | font-style: normal; |
| | font-size: 0.8rem; |
| | color: var(--secondary-gold); |
| | } |
| | |
| | |
| | .cta { |
| | padding: 80px 5%; |
| | background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80'); |
| | background-size: cover; |
| | background-position: center; |
| | color: white; |
| | text-align: center; |
| | } |
| | |
| | .cta-content { |
| | max-width: 800px; |
| | margin: 0 auto; |
| | } |
| | |
| | .cta h3 { |
| | font-size: 2.5rem; |
| | margin-bottom: 20px; |
| | } |
| | |
| | .cta p { |
| | font-size: 1.2rem; |
| | margin-bottom: 30px; |
| | } |
| | |
| | .contact-form { |
| | display: flex; |
| | flex-wrap: wrap; |
| | gap: 15px; |
| | justify-content: center; |
| | } |
| | |
| | .contact-form input, |
| | .contact-form textarea, |
| | .contact-form button { |
| | padding: 12px 20px; |
| | border-radius: 30px; |
| | border: none; |
| | font-size: 1rem; |
| | } |
| | |
| | .contact-form input { |
| | flex: 1 1 200px; |
| | min-width: 200px; |
| | } |
| | |
| | .contact-form textarea { |
| | flex: 100%; |
| | min-height: 100px; |
| | border-radius: 15px; |
| | } |
| | |
| | .contact-form button { |
| | background-color: var(--primary-gold); |
| | color: white; |
| | font-weight: 600; |
| | cursor: pointer; |
| | transition: all 0.3s ease; |
| | flex: 0 0 auto; |
| | } |
| | |
| | .contact-form button:hover { |
| | background-color: var(--dark-gold); |
| | transform: translateY(-2px); |
| | } |
| | |
| | |
| | footer { |
| | background-color: var(--primary-gray); |
| | color: white; |
| | padding: 60px 5% 30px; |
| | } |
| | |
| | .footer-container { |
| | max-width: 1200px; |
| | margin: 0 auto; |
| | display: grid; |
| | grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); |
| | gap: 40px; |
| | margin-bottom: 40px; |
| | } |
| | |
| | .footer-logo h3 { |
| | font-size: 1.8rem; |
| | margin-bottom: 15px; |
| | color: var(--primary-gold); |
| | } |
| | |
| | .footer-logo p { |
| | margin-bottom: 20px; |
| | color: #aaa; |
| | } |
| | |
| | .social-links { |
| | display: flex; |
| | gap: 15px; |
| | } |
| | |
| | .social-links a { |
| | width: 40px; |
| | height: 40px; |
| | background-color: #444; |
| | color: var(--primary-gold); |
| | border-radius: 50%; |
| | display: flex; |
| | justify-content: center; |
| | align-items: center; |
| | text-decoration: none; |
| | transition: all 0.3s ease; |
| | } |
| | |
| | .social-links a:hover { |
| | background-color: var(--primary-gold); |
| | color: var(--primary-gray); |
| | transform: translateY(-3px); |
| | } |
| | |
| | .footer-links h4 { |
| | font-size: 1.2rem; |
| | margin-bottom: 20px; |
| | color: var(--primary-gold); |
| | position: relative; |
| | padding-bottom: 10px; |
| | } |
| | |
| | .footer-links h4::after { |
| | content: ''; |
| | position: absolute; |
| | width: 40px; |
| | height: 2px; |
| | bottom: 0; |
| | left: 0; |
| | background-color: var(--primary-gold); |
| | } |
| | |
| | .footer-links ul { |
| | list-style: none; |
| | } |
| | |
| | .footer-links ul li { |
| | margin-bottom: 10px; |
| | } |
| | |
| | .footer-links ul li a { |
| | color: #aaa; |
| | text-decoration: none; |
| | transition: all 0.3s ease; |
| | } |
| | |
| | .footer-links ul li a:hover { |
| | color: var(--primary-gold); |
| | padding-left: 5px; |
| | } |
| | |
| | .footer-contact p { |
| | margin-bottom: 15px; |
| | color: #aaa; |
| | display: flex; |
| | align-items: center; |
| | } |
| | |
| | .footer-contact p i { |
| | margin-right: 10px; |
| | color: var(--primary-gold); |
| | } |
| | |
| | .copyright { |
| | text-align: center; |
| | padding-top: 30px; |
| | border-top: 1px solid #444; |
| | color: #aaa; |
| | font-size: 0.9rem; |
| | } |
| | |
| | |
| | @media (max-width: 768px) { |
| | .header-container { |
| | flex-direction: column; |
| | padding: 15px; |
| | } |
| | |
| | .logo { |
| | margin-bottom: 15px; |
| | } |
| | |
| | nav ul { |
| | flex-direction: column; |
| | align-items: center; |
| | width: 100%; |
| | } |
| | |
| | nav ul li { |
| | margin: 10px 0; |
| | } |
| | |
| | .section-container { |
| | flex-direction: column; |
| | } |
| | |
| | .about-image { |
| | min-height: 300px; |
| | width: 100%; |
| | } |
| | |
| | .process-steps { |
| | flex-direction: column; |
| | } |
| | |
| | .process-steps::before { |
| | display: none; |
| | } |
| | |
| | .step { |
| | width: 100%; |
| | margin-bottom: 30px; |
| | text-align: left; |
| | display: flex; |
| | align-items: center; |
| | } |
| | |
| | .step-number { |
| | margin: 0 15px 0 0; |
| | flex-shrink: 0; |
| | } |
| | |
| | .step-content { |
| | text-align: left; |
| | } |
| | |
| | .hero h2 { |
| | font-size: 2rem; |
| | } |
| | |
| | .hero-buttons { |
| | flex-direction: column; |
| | gap: 10px; |
| | } |
| | |
| | .cta h3 { |
| | font-size: 1.8rem; |
| | } |
| | } |
| | </style> |
| | </head> |
| | <body> |
| | <header> |
| | <div class="header-container"> |
| | <div class="logo"> |
| | <i class="fas fa-fire-alt"></i> |
| | <div class="logo-text"> |
| | <h1>BẾP 4.0</h1> |
| | <p>Giữ bếp trong tâm - Trăm năm chăm sóc</p> |
| | </div> |
| | </div> |
| | <nav> |
| | <ul> |
| | <li><a href="#home">Trang chủ</a></li> |
| | <li><a href="#about">Về chúng tôi</a></li> |
| | <li><a href="#services">Dịch vụ</a></li> |
| | <li><a href="#portfolio">Dự án</a></li> |
| | <li><a href="#contact">Liên hệ</a></li> |
| | </ul> |
| | </nav> |
| | <button class="cta-button"> |
| | Tư vấn ngay <i class="fas fa-phone-alt"></i> |
| | </button> |
| | </div> |
| | </header> |
| |
|
| | <section class="hero" id="home"> |
| | <div class="hero-content"> |
| | <h2>Thiết kế tủ bếp cao cấp - Phong cách sống hiện đại</h2> |
| | <p>Chúng tôi mang đến những giải pháp tủ bếp thông minh, tiện nghi và sang trọng cho ngôi nhà của bạn</p> |
| | <div class="hero-buttons"> |
| | <button class="cta-button"> |
| | Báo giá miễn phí <i class="fas fa-file-invoice"></i> |
| | </button> |
| | <button class="video-button"> |
| | <i class="fas fa-play"></i> Xem video |
| | </button> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | <section class="about" id="about"> |
| | <div class="section-container"> |
| | <div class="about-image"> |
| | <img src="https://images.unsplash.com/photo-1565538810643-b5bdb714032a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Về BẾP 4.0" class="main-image"> |
| | </div> |
| | <div class="about-content"> |
| | <div class="section-title"> |
| | <h3>Về BẾP 4.0</h3> |
| | </div> |
| | <p>BẾP 4.0 được thành lập với sứ mệnh mang đến không gian bếp hiện đại, tiện nghi và đẳng cấp cho mọi gia đình Việt. Với hơn 10 năm kinh nghiệm trong ngành nội thất bếp, chúng tôi tự hào là đơn vị thiết kế và thi công tủ bếp uy tín hàng đầu.</p> |
| | <p>Đội ngũ kiến trúc sư, kỹ sư và thợ lành nghề của chúng tôi luôn nỗ lực không ngừng để mang đến những sản phẩm chất lượng nhất, phù hợp với từng không gian và nhu cầu của khách hàng.</p> |
| | <button class="cta-button"> |
| | Xem thêm <i class="fas fa-arrow-right"></i> |
| | </button> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | <section class="services" id="services"> |
| | <div class="services-header"> |
| | <div class="section-title" style="display: inline-block;"> |
| | <h3>Dịch vụ của chúng tôi</h3> |
| | </div> |
| | <p style="max-width: 800px; margin: 15px auto 0; color: var(--secondary-gray);">Chúng tôi cung cấp giải pháp tủ bếp trọn gói từ thiết kế đến thi công với chất lượng hoàn hảo</p> |
| | </div> |
| | <div class="services-grid"> |
| | <div class="service-card"> |
| | <div class="service-image"> |
| | <img src="https://images.unsplash.com/photo-1600585152220-90363fe7e115?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Thiết kế tủ bếp"> |
| | </div> |
| | <div class="service-content"> |
| | <h4>Thiết kế tủ bếp</h4> |
| | <p>Thiết kế theo yêu cầu cá nhân hóa với đa dạng phong cách từ cổ điển đến hiện đại, phù hợp với mọi không gian nhà bạn.</p> |
| | <a href="#" class="read-more"> |
| | Chi tiết <i class="fas fa-arrow-right"></i> |
| | </a> |
| | </div> |
| | </div> |
| | <div class="service-card"> |
| | <div class="service-image"> |
| | <img src="https://images.unsplash.com/photo-1600121848594-d8644e57abab?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Thi công tủ bếp"> |
| | </div> |
| | <div class="service-content"> |
| | <h4>Thi công tủ bếp</h4> |
| | <p>Thi công chuyên nghiệp với vật liệu cao cấp, đảm bảo độ bền đẹp và tính thẩm mỹ cao cho không gian bếp nhà bạn.</p> |
| | <a href="#" class="read-more"> |
| | Chi tiết <i class="fas fa-arrow-right"></i> |
| | </a> |
| | </div> |
| | </div> |
| | <div class="service-card"> |
| | <div class="service-image"> |
| | <img src="https://images.unsplash.com/photo-1600585153186-9e57180a1639?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Nội thất bếp thông minh"> |
| | </div> |
| | <div class="service-content"> |
| | <h4>Nội thất bếp thông minh</h4> |
| | <p>Cung cấp giải pháp nội thất bếp thông minh với đầy đủ tiện ích hiện đại, tối ưu không gian và công năng sử dụng.</p> |
| | <a href="#" class="read-more"> |
| | Chi tiết <i class="fas fa-arrow-right"></i> |
| | </a> |
| | </div> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | <section class="portfolio" id="portfolio"> |
| | <div class="portfolio-header"> |
| | <div class="section-title" style="display: inline-block;"> |
| | <h3>Dự án tiêu biểu</h3> |
| | </div> |
| | <p style="max-width: 800px; margin: 15px auto 0; color: var(--secondary-gray);">Những công trình đã làm nên thương hiệu BẾP 4.0</p> |
| | </div> |
| | <div class="portfolio-grid"> |
| | <div class="portfolio-item"> |
| | <img src="https://images.unsplash.com/photo-1600210492493-0946911123ea?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80" alt="Dự án 1" class="portfolio-image"> |
| | <div class="portfolio-overlay"> |
| | <h4>Tủ bếp phong cách hiện đại</h4> |
| | <p>Biệt thự Quận 2, TP.HCM</p> |
| | </div> |
| | </div> |
| | <div class="portfolio-item"> |
| | <img src="https://images.unsplash.com/photo-1600121848594-d8644e57abab?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Dự án 2" class="portfolio-image"> |
| | <div class="portfolio-overlay"> |
| | <h4>Tủ bếp gỗ óc chó</h4> |
| | <p>Căn hộ cao cấp Q.1, TP.HCM</p> |
| | </div> |
| | </div> |
| | <div class="portfolio-item"> |
| | <img src="https://images.unsplash.com/photo-1600566752355-35792bedcfea?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80" alt="Dự án 3" class="portfolio-image"> |
| | <div class="portfolio-overlay"> |
| | <h4>Bếp đảo sang trọng</h4> |
| | <p>Nhà phố Quận 3, TP.HCM</p> |
| | </div> |
| | </div> |
| | <div class="portfolio-item"> |
| | <img src="https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Dự án 4" class="portfolio-image"> |
| | <div class="portfolio-overlay"> |
| | <h4>Không gian bếp mở</h4> |
| | <p>Chung cư Q.7, TP.HCM</p> |
| | </div> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | <section class="process"> |
| | <div class="testimonials-container"> |
| | <div class="section-title" style="display: inline-block;"> |
| | <h3>Quy trình làm việc</h3> |
| | </div> |
| | <p style="max-width: 800px; margin: 15px auto 50px; color: var(--secondary-gray);">Chúng tôi tuân thủ quy trình chuyên nghiệp để mang đến sản phẩm hoàn hảo nhất</p> |
| | |
| | <div class="process-steps"> |
| | <div class="step"> |
| | <div class="step-number">1</div> |
| | <div class="step-content"> |
| | <h4>Tư vấn</h4> |
| | <p>Khảo sát không gian và tư vấn giải pháp phù hợp</p> |
| | </div> |
| | </div> |
| | <div class="step"> |
| | <div class="step-number">2</div> |
| | <div class="step-content"> |
| | <h4>Thiết kế</h4> |
| | <p>Phác thảo thiết kế 3D và báo giá chi tiết</p> |
| | </div> |
| | </div> |
| | <div class="step"> |
| | <div class="step-number">3</div> |
| | <div class="step-content"> |
| | <h4>Sản xuất</h4> |
| | <p>Sản xuất theo đúng tiêu chuẩn chất lượng</p> |
| | </div> |
| | </div> |
| | <div class="step"> |
| | <div class="step-number">4</div> |
| | <div class="step-content"> |
| | <h4>Lắp đặt</h4> |
| | <p>Thi công lắp đặt chuyên nghiệp</p> |
| | </div> |
| | </div> |
| | <div class="step"> |
| | <div class="step-number">5</div> |
| | <div class="step-content"> |
| | <h4>Bảo hành</h4> |
| | <p>Chăm sóc và bảo hành dài hạn</p> |
| | </div> |
| | </div> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | <section class="testimonials"> |
| | <div class="testimonials-container"> |
| | <div class="section-title" style="display: inline-block;"> |
| | <h3>Khách hàng nói về chúng tôi</h3> |
| | </div> |
| | <p style="max-width: 800px; margin: 15px auto 50px; color: var(--secondary-gray);">Những phản hồi từ khách hàng là động lực để chúng tôi không ngừng cải thiện</p> |
| | |
| | <div class="testimonial-card"> |
| | <p>"Tôi vô cùng hài lòng với dịch vụ của BẾP 4.0. Tủ bếp được thiết kế đúng theo yêu cầu của gia đình tôi, chất liệu tốt và thi công rất chuyên nghiệp. Không gian bếp nhà tôi bây giờ thực sự sang trọng và tiện nghi hơn hẳn."</p> |
| | <div class="client-info"> |
| | <div class="client-avatar"> |
| | <img src="https://randomuser.me/api/portraits/women/45.jpg" alt="Chị Ngọc"> |
| | </div> |
| | <div class="client-name"> |
| | <h5>Chị Ngọc</h5> |
| | <p>Khách hàng tại Hà Nội</p> |
| | </div> |
| | </div> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | <section class="cta" id="contact"> |
| | <div class="cta-content"> |
| | <h3>Sẵn sàng nâng cấp không gian bếp của bạn?</h3> |
| | <p>Đăng ký ngay để nhận tư vấn và báo giá miễn phí từ đội ngũ chuyên gia của chúng tôi</p> |
| | <form class="contact-form"> |
| | <input type="text" placeholder="Họ và tên" required> |
| | <input type="tel" placeholder="Số điện thoại" required> |
| | <input type="email" placeholder="Email"> |
| | <textarea placeholder="Yêu cầu của bạn"></textarea> |
| | <button type="submit"> |
| | Gửi yêu cầu <i class="fas fa-paper-plane"></i> |
| | </button> |
| | </form> |
| | </div> |
| | </section> |
| |
|
| | <footer> |
| | <div class="footer-container"> |
| | <div class="footer-logo"> |
| | <h3>BẾP 4.0</h3> |
| | <p>Giữ bếp trong tâm - Trăm năm chăm sóc</p> |
| | <div class="social-links"> |
| | <a href="#"><i class="fab fa-facebook-f"></i></a> |
| | <a href="#"><i class="fab fa-youtube"></i></a> |
| | <a href="#"><i class="fab fa-instagram"></i></a> |
| | <a href="#"><i class="fab fa-tiktok"></i></a> |
| | </div> |
| | </div> |
| | <div class="footer-links"> |
| | <h4>Liên kết nhanh</h4> |
| | <ul> |
| | <li><a href="#home">Trang chủ</a></li> |
| | <li><a href="#about">Về chúng tôi</a></li> |
| | <li><a href="#services">Dịch vụ</a></li> |
| | <li><a href="#portfolio">Dự án</a></li> |
| | <li><a href="#contact">Liên hệ</a></li> |
| | </ul> |
| | </div> |
| | <div class="footer-links"> |
| | <h4>Dịch vụ</h4> |
| | <ul> |
| | <li><a href="#">Thiết kế tủ bếp</a></li> |
| | <li><a href="#">Thi công tủ bếp</a></li> |
| | <li><a href="#">Nội thất bếp thông minh</a></li> |
| | <li><a href="#">Bảo hành, bảo trì</a></li> |
| | <li><a href="#">Tư vấn phong thủy bếp</a></li> |
| | </ul> |
| | </div> |
| | <div class="footer-contact"> |
| | <h4>Liên hệ</h4> |
| | <p><i class="fas fa-map-marker-alt"></i> Số 123, Đường ABC, Quận 1, TP.HCM</p> |
| | <p><i class="fas fa-phone-alt"></i> 090 123 4567</p> |
| | <p><i class="fas fa-envelope"></i> info@bep40.vn</p> |
| | <p><i class="fas fa-clock"></i> Thứ 2 - Thứ 7: 8:00 - 17:30</p> |
| | </div> |
| | </div> |
| | <div class="copyright"> |
| | <p>© 2023 BẾP 4.0. Tất cả quyền được bảo lưu.</p> |
| | </div> |
| | </footer> |
| |
|
| | <script> |
| | |
| | document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
| | anchor.addEventListener('click', function (e) { |
| | e.preventDefault(); |
| | |
| | document.querySelector(this.getAttribute('href')).scrollIntoView({ |
| | behavior: 'smooth' |
| | }); |
| | }); |
| | }); |
| | |
| | |
| | window.addEventListener('scroll', revealOnScroll); |
| | |
| | function revealOnScroll() { |
| | const elements = document.querySelectorAll('.service-card, .portfolio-item, .step'); |
| | const windowHeight = window.innerHeight; |
| | |
| | for (let i = 0; i < elements.length; i++) { |
| | const elementTop = elements[i].getBoundingClientRect().top; |
| | |
| | if (elementTop < windowHeight - 100) { |
| | elements[i].classList.add('animated'); |
| | } |
| | } |
| | } |
| | |
| | |
| | window.addEventListener('load', revealOnScroll); |
| | |
| | |
| | const contactForm = document.querySelector('.contact-form'); |
| | if (contactForm) { |
| | contactForm.addEventListener('submit', function(e) { |
| | e.preventDefault(); |
| | alert('Cảm ơn bạn đã liên hệ! Chúng tôi sẽ phản hồi sớm nhất.'); |
| | this.reset(); |
| | }); |
| | } |
| | </script> |
| | </body> |
| | </html> |