/* 32:42 */

/* Importing google fonts */
@import url("https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --white-color: #fff;
  /* --dark-color: #252525; */
  --dark-color: #03262c;
  /* --primary-color: #df7366; */
  --primary-color: #061738;
  /* --secondary-color: #c94c3b; */
  --secondary-color: #60cd12;
  --light-pink-color: #faf4f5;
  --medium-gray-color: #ccc;

  /* Cỡ chữ */
  --font-size-s: 0.9rem;
  --font-size-n: 1rem;
  --font-size-m: 1.12rem;

  --font-size-l: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-xxl: 2.3rem;

  /* Độ đậm chữ */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Bán kính đường viền */
  --border-radius-s: 8px;
  --border-radius-m: 30px;
  --border-radius-circle: 50%;

  /* Chiều rộng tối đa của trang web */
  --site-max-width: 1200px;
}

html {
  scroll-behavior: smooth;
}

/* stylings for whole site */
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

img {
  width: 100%;
}

.section-content {
  margin: 0 auto;
  padding: 0 20px;
  max-width: var(--site-max-width);
}

.section-title {
  text-align: center;
  padding: 60px 0 100px;
  text-transform: uppercase;
  font-size: var(--font-size-xl);
}

.section-title::after {
  content: "";
  width: 80px;
  height: 5px;
  display: block;
  margin: 10px auto 0;
  border-radius: var(--border-radius-s);
  background: var(--secondary-color);
}
/* Navbar styling */
header {
  position: fixed;
  width: 100%;
  z-index: 5;
  background: var(--primary-color);
}

header .navbar {
  display: flex;
  padding: 20px 40px;
  align-items: center;
  justify-content: space-between;
}

.navbar .nav-logo .logo-text {
  color: var(--white-color);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
}

.navbar .nav-menu {
  display: flex;
  gap: 10px;
}

.navbar .nav-logo .logo-image {
  height: 50px; /* chiều cao logo, bạn chỉnh theo ý */
  width: auto; /* tự co giãn theo tỉ lệ */
  display: block; /* bỏ khoảng trắng dưới ảnh */
}
.navbar .nav-menu .nav-link {
  padding: 10px 18px;
  color: var(--white-color);
  font-size: var(--font-size-m);
  border-radius: var(--border-radius-m);
  transition: 0.3s ease;
}

.navbar .nav-menu .nav-link:hover {
  color: var(--white-color);
  background: var(--secondary-color);
}

.navbar :where(#menu-close-button, #menu-open-button) {
  display: none;
}

/* Slider section styling */
.slider-section .slider {
  width: 1300px;
  max-width: 100%;
  height: 620px;
  margin: auto;
  position: relative;
  overflow: hidden;
}
.slider-section .slider .list {
  position: absolute;
  width: max-content;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  transition: 1s;
}
.slider-section .slider .list img {
  width: 1300px;
  max-width: 100vw;
  height: 100%;
  object-fit: cover;
  filter: brightness(100%); /*Giam độ sáng slider xuống*/
}
.slider-section .slider .buttons {
  position: absolute;
  top: 45%;
  left: 5%;
  width: 90%;
  display: flex;
  justify-content: space-between;
}
.slider-section .slider .buttons button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff5;
  color: #fff;
  border: none;
  font-family: monospace;
  font-weight: bold;
}
.slider-section .slider .dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  color: #fff;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
.slider-section .slider .dots li {
  list-style: none;
  width: 10px;
  height: 10px;
  background-color: #fff;
  margin: 10px;
  border-radius: 20px;
  transition: 0.7s;
}
.slider-section .slider .dots li.active {
  width: 30px;
}

/* Hero section styling */
.hero-section {
  min-height: 100vh;
  background: var(--primary-color);
}

.hero-section .section-content {
  display: flex;
  align-items: center;
  min-height: 100vh;
  color: var(--white-color);
  justify-content: space-between;
}

.hero-section .hero-details .title {
  font-size: var(--font-size-xxl);
  color: var(--secondary-color);
  font-family: "Miniver", sans-serif;
}

.hero-section .hero-details .subtitle {
  margin-top: 8px;
  max-width: 70%;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
}

.hero-section .hero-details .description {
  max-width: 70%;
  margin: 24px 0 40px;
  font-size: var(--font-size-m);
}

.hero-section .hero-details .buttons {
  display: flex;
  gap: 23px;
}

.hero-section .hero-details .button {
  padding: 10px 26px;
  border: 2px solid transparent;
  color: var(--primary-color);
  border-radius: var(--border-radius-m);
  background: var(--secondary-color);
  font-weight: var(--font-weight-medium);
  transition: 0.3s ease;
}

.hero-section .hero-details .button:hover,
.hero-section .hero-details .contact-us {
  color: var(--white-color);
  border-color: var(--white-color);
  background: transparent;
}
.hero-section .hero-details .contact-us:hover {
  color: var(--primary-color);
  border-color: var(--secondary-color);
  background: var(--secondary-color);
}

.hero-section .hero-image-wrapper {
  max-width: 400px;
  margin-right: 30px;
  padding-right: 20px;
}

/* About section styling */
.about-section {
  padding: 120px 0;
  background: var(--light-pink-color);
}

.about-section .section-content {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
}

.about-section .about-image-wrapper .about-image {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius-circle);
}

.about-section .about-details .section-title {
  padding: 0;
}

.about-section .about-details {
  max-width: 50%;
}

.about-section .about-details .text {
  line-height: 30px;
  margin: 50px 0 30px;
  text-align: center;
  font-size: var(--font-size-m);
}

.about-section .social-link-list {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.about-section .social-link-list .social-link {
  color: var(--primary-color);
  font-size: var(--font-size-l);
}
.about-section .social-link-list .social-link:hover {
  color: var(--secondary-color);
}

/* Menu section styling */

.menu-section {
  color: var(--white-color);
  background: #444444;
  padding: 50px 0 100px;
}

.menu-section .section-title {
  padding: 30px 0 30px 0;
}

.menu-section .menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.menu-section .menu-list .menu-item {
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  width: calc(100% / 3 - 30px);
}

.menu-section .menu-list .menu-item .menu-image {
  max-width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.menu-section .menu-list .menu-item .name {
  margin: -20px 0 12px 0;
  font-size: var(--font-size-l);
  font-weight: var(--font-weight-semibold);
}

.menu-section .menu-list .menu-item .text {
  font-size: var(--font-size-m);
}

.menu-section .menu-list .menu-item .menu-button .button {
  position: relative;
  display: inline-block;
  background: var(--primary-color);
  color: var(--white-color);
  padding: 8px 12px 8px 12px;
  border-radius: var(--border-radius-m);
  transition: 0.3s ease;
}

.menu-section .menu-list .menu-item .menu-button .button:hover {
  color: var(--white-color);
  background: var(--secondary-color);
}
/* Tesimonials section styling */
.testimonials-section {
  padding: 50px 0 100px;
  background: var(--light-pink-color);
}

.testimonials-section .slider-wrapper {
  overflow: hidden;
  margin: 0 60px 50px;
}

.testimonials-section .testimonial {
  display: flex;
  padding: 35px;
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.testimonials-section .testimonial .user-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 50px;
  border-radius: var(--border-radius-circle);
}

.testimonials-section .testimonial .name {
  margin-bottom: 16px;
  font-size: var(--font-size-m);
}

.testimonials-section .testimonial .feedback {
  line-height: 25px;
}

.testimonials-section .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  opacity: 1;
  background: var(--secondary-color);
}

.testimonials-section .swiper-slider-button {
  margin-top: -50px;
  color: var(--secondary-color);
  transition: 0.3s ease;
}
.testimonials-section .swiper-slider-button:hover {
  color: var(--primary-color);
}

/* Gallery section styling */
.gallery-section {
  padding: 50px 0 100px;
}

.gallery-section .gallery-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.gallery-section .gallery-list .gallery-item {
  overflow: hidden;
  border-radius: var(--border-radius-s);
  width: calc(100% / 3 - 32px);
}

.gallery-section .gallery-item .gallery-image {
  width: 100%;
  height: 100%;
  cursor: zoom-in;
  transition: 0.3s ease;
}

.gallery-section .gallery-item:hover .gallery-image {
  transform: scale(1.3);
}

.gallery-section .menu-button {
  display: flex;
  justify-content: center;
}
.gallery-section .section-content .menu-button .button {
  position: relative;
  display: inline-block;
  background: var(--primary-color);
  color: var(--white-color);
  margin-top: 30px;
  padding: 8px 12px 8px 12px;
  border-radius: var(--border-radius-m);
  transition: 0.3s ease;
}

.gallery-section .menu-button .button:hover {
  color: var(--white-color);
  background: var(--secondary-color);
}

/* Contact Us section styling */

.contact-section {
  padding: 50px 0 100px;
  background: var(--light-pink-color);
}

.contact-section .section-content {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
}

.contact-section .contact-info-list .contact-info {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  align-items: center;
}

.contact-section .contact-info-list .contact-info i {
  font-size: var(--font-size-m);
}

.contact-section .contact-form .form-input {
  width: 100%;
  height: 50px;
  padding: 0 12px;
  outline: none;
  margin-bottom: 16px;
  background: var(--white-color);
  border-radius: var(--border-radius-s);
  border: 1px solid var(--medium-gray-color);
}

.contact-section .contact-form {
  max-width: 50%;
}

.contact-section .contact-form .form-input:focus {
  border-color: var(--secondary-color);
}

.contact-section .contact-form textarea.form-input {
  height: 100px;
  padding: 12px;
  resize: vertical;
}

.contact-section .contact-form .submit-button {
  padding: 10px 26px;
  margin-top: 10px;
  color: var(--white-color);
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-medium);
  background: var(--primary-color);
  border-radius: var(--border-radius-m);
  border: 1px solid var(--primary-color);
  transition: 0.3s ease;
}

.contact-section .contact-form .submit-button:hover {
  color: var(--primary-color);
  background: transparent;
}

/* Footer section styling */
.footer-section {
  padding: 20px 0;
  background: var(--dark-color);
}

.footer-section .section-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-section :where(.copyright-text, .social-link, .policy-link) {
  color: var(--white-color);
  transition: 0.2s ease;
}

.footer-section .social-link-list {
  display: flex;
  gap: 25px;
}

.footer-section .social-link-list .social-link {
  font-size: var(--font-size-l);
}

.footer-section .social-link-list .social-link:hover,
.footer-section .policy-text .policy-link:hover {
  color: var(--secondary-color);
}

.footer-section .policy-text .separator {
  margin: 0 5px;
  color: var(--white-color);
}

/* CSS PAGE ALBUMS */
.gallery-detail button,
.gallery-detail i {
  outline: none;
  border: none;
  border-radius: var(--border-radius-s);
}
.gallery-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.album-wrapper {
  margin: 20px auto;
  max-width: 1100px;
}

.album-wrapper nav {
  display: flex;
  justify-content: center;
}

nav .album-items {
  display: flex;
  max-width: 750px;
  width: 100%;
  justify-content: space-between;
}

nav .album-items .item {
  padding: 7px 15px;
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

nav .album-items .active,
nav .album-items .item:hover {
  color: var(--white-color);
  background: var(--primary-color);
}

.gallery-detail .images {
  gap: 15px;
  max-width: 95%;
  margin-top: 40px;
  columns: 5 340px;
}
.images .card {
  display: flex;
  overflow: hidden;
  position: relative;
  list-style: none;
  margin-bottom: 14px;
  border-radius: 4px;
}

.gallery-detail .images .card.hide {
  display: none;
}

.gallery-detail .images .card.show {
  display: block;
}

.images .card .details {
  position: absolute;
  bottom: -100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  transition: bottom 0.2s ease;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.images .card:hover .details {
  bottom: 0;
}
.photographer {
  color: var(--white-color);
  display: flex;
  align-items: center;
}

.photographer i {
  font-size: 1.4rem;
  margin-right: 10px;
}

.details .photographer span {
  font-size: 1.05rem;
}

.images img {
  width: 100%;
}

.gallery-detail .load-more {
  margin: 50px 0;
  color: var(--white-color);
  cursor: pointer;
  font-size: var(--font-size-m);
  padding: 12px 27px;
  background: var(--primary-color);
}

.gallery-detail .load-more.disabled {
  opacity: 0.6;
  pointer-events: none;
}
.lightbox {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.65);
}

.lightbox .wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  padding: 20px;
  max-width: 850px;
  background: var(--light-pink-color);
  border-radius: 5px;
  transform: translate(-50%, -50%);
}

.wrapper .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .photographer {
  color: #333;
}
.header .photographer i {
  font-size: 1.2rem;
}
.header .photographer span {
  font-size: 1rem;
}

.header .lightbox-buttons i {
  width: 30px;
  height: 30px;
  color: var(--white-color);
  text-align: center;
  line-height: 30px;
  background: var(--primary-color);
  font-size: 1.2rem;
  border-radius: var(--border-radius-s);
  display: inline-block;
}

.lightbox-buttons i:last-child {
  margin-left: 10px;
  background: #6c757d;
}

.preview-img {
  display: flex;
  margin-top: 25px;
  justify-content: center;
}

.wrapper .preview-img .img {
  max-height: 65vh;
  max-width: 90vh;
}
.preview-img .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Responsive media query code for max width 1024px */
@media screen and (max-width: 1024px) {
  .menu-section .menu-list {
    gap: 20px;
  }

  .menu-section .menu-list .menu-item {
    width: calc(100% / 3 - 30px);
  }
}
/* Responsive media query code for max width 900px */
@media screen and (max-width: 900px) {
  :root {
    --font-size-m: 1rem;
    --font-size-l: 1.3rem;
    --font-size-xl: 1.5rem;
    --font-size-xxl: 1.8rem;
  }

  body.show-mobile-menu header::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.2);
  }

  .navbar :where(#menu-close-button, #menu-open-button) {
    display: block;
    font-size: var(--font-size-l);
  }

  .navbar #menu-close-button {
    position: absolute;
    right: 30px;
    top: 30px;
  }

  .navbar #menu-open-button {
    color: var(--secondary-color);
  }

  .navbar .nav-menu {
    display: block;
    position: fixed;
    left: -300px;
    top: 0;
    width: 300px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    background: var(--white-color);
    transition: left 0.3s ease;
  }

  body.show-mobile-menu .navbar .nav-menu {
    left: 0;
  }

  .navbar .nav-menu .nav-link {
    color: var(--dark-color);
    display: block;
    margin-top: 17px;
    font-size: var(--font-size-l);
  }

  .hero-section .section-content {
    gap: 50px;
    text-align: center;
    padding: 30px 20px 20px;
    flex-direction: column-reverse;
    justify-content: center;
  }

  .hero-section .hero-details :is(.subtitle, .description),
  .about-section .about-details,
  .service-section .service-details {
    max-width: 100%;
  }

  .hero-section .hero-details .buttons {
    justify-content: center;
  }

  .hero-section .hero-image-wrapper {
    max-width: 270px;
    margin-right: 0;
    padding-top: 50px;
  }

  .about-section .section-content {
    gap: 70px;
    max-width: 100%;
    flex-direction: column-reverse;
  }

  .about-section .about-image-wrapper .about-image {
    width: 100%;
    height: 100%;
    min-width: 250px;
    aspect-ratio: 1;
  }

  .about-image-wrapper img {
    max-width: 300px; /* giới hạn không quá to */
  }

  .service-section .section-content .service-details {
    gap: 70px;
    max-width: 100%;
    flex-direction: column-reverse;
  }

  .service-section .service-image-wrapper .service-image {
    display: none;
  }

  .menu-section .menu-list {
    gap: 30px;
  }

  .menu-section .menu-list .menu-item {
    width: calc(100% / 2 - 30px);
  }

  .menu-section .menu-list .menu-item .menu-image {
    max-width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
  }

  .gallery-section .gallery-list {
    gap: 30px;
  }

  .gallery-section .gallery-list .gallery-item {
    width: calc(100% / 2 - 30px);
  }

  .price .section-content .price-list {
    gap: 30px;
  }

  .price .section-content .price-list .price-item {
    width: calc(100% / 2 - 30px);
  }

  .contact-section .contact-form {
    max-width: 100%;
  }
  .contact-section .section-content {
    align-items: center;
    flex-direction: column-reverse;
  }

  .slider-section .slider {
    height: 400px;
  }

  nav .album-items {
    flex-wrap: wrap;
    justify-content: center;
  }
  nav .album-items .item {
    margin: 5px;
  }
}

/* Responsive media query code for max width 640px */
@media screen and (max-width: 640px) {
  .menu-section .menu-list {
    gap: 30px;
    justify-content: center;
  }

  .menu-section .menu-list .menu-item {
    width: 80%;
  }

  .testimonials-section .slider-wrapper {
    margin: 0 0 30px;
  }

  .testimonials-section .swiper-slider-button {
    display: none;
  }

  .gallery-section .gallery-list .gallery-item {
    width: 100%;
  }

  .price .section-content .price-list .price-item {
    width: 100%;
  }

  .footer-section .section-content {
    flex-direction: column;
    gap: 20px;
  }

  nav .album-items {
    flex-wrap: wrap;
    justify-content: center;
  }
  nav .album-items .item {
    margin: 5px;
  }
}

/* DICH VU */
.service-section {
  padding: 120px 0 10px;
  background: var(--light-pink-color);
}

.service-section .section-content {
  display: flex;
  gap: 20px;
  align-items: center;
  /* justify-content: space-between; */
}

.service-section .service-image-wrapper .service-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  /* border-radius: var(--border-radius-circle); */
}

.service-section .service-details .section-title {
  padding: 0;
}

.service-section .service-details {
  max-width: 48%;
}

.service-section .service-details .text {
  line-height: 30px;
  margin: 50px 0 30px;
  text-align: justify;
  font-size: var(--font-size-m);
}

/*  */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  background: var(--light-pink-color);
  padding: 20px 0;
  /* text-align: center; */
}

.section h2 {
  font-size: var(--font-size-xl);
  margin-bottom: 1.5rem;
  color: var(--dark-color);
  text-transform: uppercase;
  text-align: center;
}

.section p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  color: #aaa;
  text-align: center;
}

.team-members,
.services {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.member,
.service-item {
  /* background: #444444; */
  background: url(../images/background-white-3.jpg);
  padding: 10px 20px 20px;
  border-radius: 10px;
  width: 30%;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.member:hover,
.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.member h3 {
  font-size: var(--font-size-l);
  margin: 1rem 0 0.5rem;
  color: var(--secondary-color);
  text-align: center;
}

.service-item h3 {
  font-size: var(--font-size-l);
  margin: 10px 0;
  color: #ff0080;
  text-align: center;
}

.service-item p {
  color: #03262c;
  text-align: justify;
}

.futuristic-border {
  width: 100px;
  height: 5px;
  background: var(--secondary-color);
  margin: 1rem auto;
  border-radius: var(--border-radius-m);
}

@media (max-width: 768px) {
  .team-members,
  .services {
    flex-direction: column;
    align-items: center;
  }

  .member,
  .service-item {
    width: 80%;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 2rem;
  }

  header p {
    font-size: 1rem;
  }

  .section h2 {
    font-size: 2rem;
  }

  .member,
  .service-item {
    width: 100%;
  }

  .section p {
    font-size: 1rem;
  }
}

/* WORKFLOW */
.workflow {
  background: var(--light-pink-color);
}

.workflow h2 {
  padding: 50px 0 10px;
}
.workflow__grid {
  margin-block: 4rem;
  padding: 0 20px 50px;
  display: grid;
  gap: 1rem;
}

.workflow__card {
  padding: 1rem;
  border-radius: var(--border-radius-s);
  background: var(--white-color);
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.workflow__card:hover {
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.workflow__card:nth-child(1):hover {
  border-color: #00d5be;
}
.workflow__card:nth-child(2):hover {
  border-color: #ff637e;
}
.workflow__card:nth-child(3):hover {
  border-color: #c27aff;
}
.workflow__card:nth-child(4):hover {
  border-color: #00bcff;
}

.workflow__card:nth-child(1) div {
  color: #00d5be;
  background: #f0fdfa;
}
.workflow__card:nth-child(2) div {
  color: #ff637e;
  background: #fff1f2;
}

.workflow__card:nth-child(3) div {
  color: #c27aff;
  background: #faf5ff;
}
.workflow__card:nth-child(4) div {
  color: #00bcff;
  background: #f0f9ff;
}

.workflow__card div {
  margin-bottom: 1rem;
  max-width: max-content;
  padding: 5px 8px;
  font-size: 1.75rem;
  border-radius: 5px;
}

.workflow__card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
}
.workflow__card .section__description {
  text-align: left;
}

@media (width > 540px) {
  .workflow__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width > 768px) {
  .workflow__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (width > 1024px) {
  .workflow__grid {
    gap: 1.5rem;
  }
}

/* BANG GIA */
.price {
  padding: 20px 0 100px;
}
.price .section-title {
  padding: 0 0 50px;
}

.price .price-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.price .price-list .price-item {
  overflow: hidden;
  border-radius: var(--border-radius-s);
  width: calc(100% / 2 - 32px);
}

.price-list {
  display: flex;
  flex-wrap: wrap; /* Cho phép xuống dòng khi đủ 2 ảnh */
  justify-content: center; /* Căn giữa hàng cuối cùng */
  gap: 16px; /* Khoảng cách giữa các ảnh */
}

.price .price-item .price-image {
  width: 100%;
  height: 100%;
  cursor: zoom-in;
  transition: 0.3s;
}

.price .price-item:hover .price-image {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Nút ZALO */
.contact-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10000;
}

.contact-buttons a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
}

.contact-buttons a:hover {
  transform: scale(1.1);
}

.contact-buttons a i {
  color: #60cd12;
}

.contact-buttons img {
  width: 40px;
  height: 40px;
}

.contact-buttons i {
  font-size: var(--font-size-l);
}
