File size: 34,673 Bytes
e9e7743 d2d9a0c e9e7743 d2d9a0c e9e7743 d2d9a0c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 | <!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 */
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 Section */
.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 Section */
.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 Section */
.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 Section */
.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 Section */
.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 */
.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 Section */
.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 */
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;
}
/* Responsive */
@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>
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Animation on scroll
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');
}
}
}
// Initialize animation on page load
window.addEventListener('load', revealOnScroll);
// Form submission
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> |