:root {
  --bg: #fff8ef;
  --text: #222;
  --dot: #000;
  --dot-bg: #fff;
  --radius: 50px;
  --side-padding: 48px;
  --page-max: 1200px;
  --bg-beige: #fbf3ea;
  --text-dark: #222;
  --muted: #6f6f6f;
  --accent: #fff;
}

* {
  box-sizing: border-box;
}

/* SEO Hidden Content */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100%; /* chỉ body kéo dài */
  overflow-x: hidden;
}

body {
  /* font-family: "Playfair Display", serif; */
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* Header */
.top-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #f2ece9;
  width: 100%;
}

.top-header.scrolled {
  background: #f2ece9; /* màu sau khi scroll */
}

.top-header .header-container {
  max-width: 1200px;
  /* giới hạn nội dung ở giữa */
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* PC nav */
.nav-pc {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-pc a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 20px;
}

/* Logo */
.logo img {
  height: 80px;
  width: auto;
  display: block;
}

/* Buttons header */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-actions button {
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 20px;
}

.header-actions .primary {
  background: #957541;
  color: #fff;
}

.header-actions .primary:hover {
  background: #000;
}

.nav-mobile button {
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-mobile .primary {
  background: #42413a;
  color: #fff;
}

.nav-mobile .primary:hover {
  background: #000;
}
/* Hamburger button */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  cursor: pointer;
  display: none;
}

.menu-toggle .menu-icon {
  width: 26px;
  height: 26px;
  color: #333;
  /* đổi màu dễ dàng */
}

/* Mobile nav (ẩn mặc định) */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 16px;
  background: var(--bg);
  /* dùng màu nền của site */
  padding: 24px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);

  /* hiệu ứng trượt */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.nav-mobile a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 1.1rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-mobile a:last-child {
  border-bottom: none;
}

/* Khi mở menu */
.nav-mobile.show {
  display: flex;
  max-height: 400px;
  /* đủ lớn để chứa menu */
  padding: 24px;
}

/* Responsive */

/* Footer bottom */
footer {
  margin: 0 auto;
  padding: 0 var(--side-padding) 15px;
  background-color: #fff8ef;
  font-size: 20px;
}
footer.info-section small {
  display: block;
  text-align: center;
  width: 100%;
}
.hero {
  text-align: center;
  padding: 30px 16px 8px;
}

.hero-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: nowrap; /* giữ 1 hàng */
  overflow: hidden;
}

.hero h1 {
  margin: 0;
  font-size: 3.8rem;
  font-weight: 500;
  color: #532d09;
  white-space: nowrap;
}

.hero p {
  margin: 8px 0 0;
  color: #532d09;
  font-size: 35px;
}

.hero-svg {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: -60px;
  margin-left: -60px;
}

.hero-svg svg {
  width: 160px;
  height: auto;
  opacity: 0.9;
}

/* Responsive: vẫn 1 hàng nhưng co lại cho vừa */
@media (max-width: 900px) {
  .hero-title {
    gap: 6px;
    transform-origin: center;
  }
  .hero-svg {
    margin-right: -25px;
    margin-left: -25px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }

  .hero-svg svg {
    width: 70px;
  }
  .header-actions button {
    font-size: 16px;
  }
}

/* Slider wrapper (centered) */
.slider-wrap {
  position: relative;
  /* để pagination-wrap absolute relative tới đây */
  max-width: 1200px;
  margin: 28px auto 40px;
  padding: 0 24px;
  /* chừa 2 bên để lộ ảnh kế */
}

/* chỉ áp dụng cho slider ảnh */
.slider-wrap .swiper {
  position: relative;
  overflow: visible;
  /* cho lộ ảnh 2 bên */
  height: clamp(260px, 45vw, 520px);
  /* responsive height */
}

.slider-wrap .swiper-slide {
  width: 70%;
  /* luôn set mỗi slide chiếm 70% */
  max-width: 950px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(255, 255, 255, 0.08);
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pagination wrapper: nằm chính giữa trên ảnh (chiều rộng = 70% -> bằng với slide giữa) */
.pagination-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  /* chỉnh nếu muốn cao/thấp */
  width: 70%;
  /* khớp với .swiper-slide width */
  max-width: 950px;
  display: flex;
  justify-content: center;
  pointer-events: none;
  /* mặc định để tránh chặn kéo */
  z-index: 30;
}

/* Bật lại pointer events cho bullets */
.pagination-wrap .swiper-pagination {
  pointer-events: auto;
}

.pagination-wrap .swiper-pagination {
  text-align: center;
}

.pagination-wrap .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  /* background: var(--dot-bg); */
  background: #dddcdc;
  /* border: 2px solid var(--dot); */
  opacity: 0.95;
  margin: 0 6px !important;
}

.pagination-wrap .swiper-pagination-bullet-active {
  background: #747474;
  border-color: #fff;
}

/* Footer Info */
/* .info-section{
  width: 100%;
  border-top: 1px solid #e0d6c8;
 background-image: url("/images/footer-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
} */
.info-section {
  width: 100%;
  border-top: 1px solid #e0d6c8;
  background-image: url("/images/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(255, 248, 239, 0.2); /* lớp màu phủ */
  background-blend-mode: lighten; /* hoặc overlay, multiply, soft-light... */
}
.info-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 15px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: start;
}

/* Logo */
.footer-logo-img {
  max-width: 110px;
  margin-bottom: 15px;
}

/* Tiêu đề */
.info-grid h3 {
  margin-bottom: 12px;
  margin-top: 0;
  font-weight: 700;
  font-size: 22px;
  color: #3a2d22;
}

.info-grid p {
  margin: 6px 0;
  line-height: 1.6;
  font-size: 18px;
  color: #4a4037;
}

.info-grid i {
  margin-right: 8px;
  color: #b48a58;
}
.info-grid .footer-contact {
  margin-left: -40px;
}
/* Social icons */
.social-icons {
  margin-top: 10px;
  display: flex;
  gap: 14px;
}

.social-icons svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons a:hover svg {
  transform: scale(1.2);
  opacity: 0.7;
}

/* Map */
.map-box iframe {
  width: 100%;
  height: 180px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 992px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-grid .footer-contact {
    margin-left: 0px;
  }
}

@media (max-width: 600px) {
  .info-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .swiper-slide {
    width: 80%;
  }

  .pagination-wrap {
    width: 80%;
  }

  .top-header .header-container {
    padding: 12px 16px;
    /* nhỏ padding cho mobile */
  }

  .nav-pc {
    display: none;
  }

  /* Ẩn menu PC */
  .menu-toggle {
    display: flex;
  }

  /* Hiện nút hamburger */
  .header-actions button,
  .nav-mobile button {
    white-space: nowrap;
  }
}

@media (max-width: 600px) {
  .swiper-slide {
    width: 90%;
  }

  .pagination-wrap {
    width: 90%;
    bottom: 14px;
  }

  .nav-pc {
    display: none;
  }

  /* Ẩn menu PC */
  .menu-toggle {
    display: flex;
  }

  /* Hiện nút hamburger */
  .header-actions button,
  .nav-mobile button {
    padding: 8px 14px;
  }
}

/* ---------- HERO và BANNER ---------- */
.hero-about {
  height: 480px;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: inset 0 -40px 60px rgba(0, 0, 0, 0.15);
}

/* banner "About Us" — pill bo tròn và phủ xuống dưới */
.about-banner,
.service-banner {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -35px;
  /* phủ xuống dưới hero */
  background: var(--bg-beige);
  padding: 14px 44px;
  border-radius: 35px;
  /* box-shadow: 0 12px 30px rgba(23,23,23,0.12); */
  font-weight: 600;
  font-size: 36px;
  color: #532d09;
  letter-spacing: 0.2px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
  font-family: "Playfair Display", serif;
}

/* kiểu thêm: một viền mảnh màu be để giống thiết kế */
.about-banner::before {
  content: "";
  position: absolute;
  inset: -2px;
  /* tạo viền mảnh xung quanh */
  border-radius: 40px;
  background: var(--bg);
  z-index: -1;
}
.service-banner::before {
  content: "";
  position: absolute;
  inset: -2px;
  /* tạo viền mảnh xung quanh */
  border-radius: 40px;
  background: #fff8ef;
  z-index: -1;
}
/* ---------- Nội dung chính ---------- */
.container {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 50px 20px 20px;
  /* top lớn để chừa chỗ banner */
  position: relative;
}

.about-row {
  display: flex;
  gap: 34px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.about-left {
  flex: 1 1 520px;
  min-width: 280px;
}

.small-label {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
}

.about-left h1 {
  font-size: 50px;
  margin: 0 0 18px;
  font-weight: 500;
  color: #532d09;
  font-family: "Playfair Display", serif;
}

.about-left p {
  color: #5a5a5a;
  line-height: 1.4;
  margin-bottom: 14px;
  font-size: 18px;
}

.btn-appoint {
  display: inline-block;
  background: #fff;
  color: #532d09;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 6px 14px rgba(88, 77, 77, 0.12);
  font-size: 20px;
  border: 1.5px solid #b48a58;
  font-family: "Poppins", sans-serif;
}
.btn-appoint:hover {
  background: #b48a58;
  color: #fff;
  border: none;
}
.about-right {
  flex: 0 0 550px;
  min-width: 260px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.about-image img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 900px) {
  .hero-about {
    height: 240px;
  }
  .about-left h1 {
    font-size: 40px;
  }
}
/* ---------- Reviews (giữ đơn giản) ---------- */
.reviews {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.25),
    rgba(250, 245, 240, 0.7)
  );
  padding: 60px 20px 90px;
  margin-top: 40px;
  /* margin-bottom: 40px; */
}

.reviews .inner {
  max-width: var(--page-max);
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.reviews h2 {
  font-size: 40px;
  margin: 0 0 10px;
  font-weight: 500;
  color: #fff;
}

.reviews p {
  color: #fff;
  margin: 0 0 30px;
  font-size: 20px;
}

.review-swiper {
  padding-bottom: 40px;
  /* chừa chỗ cho dots */
}

.review-wrapper {
  display: flex;
}

.review-slide {
  display: flex;
  height: auto;
  /* đảm bảo auto */
}

.review-swiper .swiper-pagination-bullet {
  background: #dddcdc;
  opacity: 1;
  width: 14px;
  /* tăng size ngang */
  height: 14px;
  /* tăng size dọc */
  margin: 0 6px !important;
  border-radius: 50%;
  transition: all 0.3s ease;
  /* hiệu ứng mượt khi đổi trạng thái */
}

/* chấm active */
.review-swiper .swiper-pagination-bullet-active {
  background: #747474;
}

.review-swiper .swiper-slide {
  width: auto;
  /* quan trọng: để Swiper quyết định */
  max-width: none;
  box-shadow: none;
  /* tùy ý, nếu bạn muốn bỏ shadow */
}

.card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.card-header {
  display: flex;
  align-items: center;
  /* căn giữa avatar và info theo chiều dọc */
  margin-bottom: 12px;
}

.card .avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
  /* khoảng cách avatar ↔ info */
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.card .info h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.card .info .stars {
  color: #f1c40f;
  margin-top: 4px;
  font-size: 14px;
}

.card p {
  color: #5b5b5b;
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .about-row {
    gap: 20px;
  }

  .about-right {
    order: 2;
  }

  .about-left {
    order: 1;
  }

  .about-banner {
    padding: 10px 28px;
    font-size: 30px;
    bottom: -30px;
  }
}

@media (max-width: 520px) {
  .about-banner {
    bottom: -24px;
    padding: 8px 20px;
    font-size: 30px;
  }

  .about-right {
    flex-basis: 100%;
  }

  .about-left {
    flex-basis: 100%;
  }

  .card {
    width: 100%;
  }
}

.service-wrapper {
  background: url("/images/service/backgroud-service.png") no-repeat center
    center fixed;
  background-size: cover;
  padding-top: 0px;
  padding-bottom: 10px;
  background-color: #ffffff;
}
.menu-section {
  opacity: 0.8;
}
.menu-container {
  max-width: 1200px;
  margin: 0 auto 60px;
  background: #fff8ef;
  padding: 40px;
  border-radius: 16px;
  backdrop-filter: blur(6px);
  /* hiệu ứng blur nhẹ */
}

h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 36px;
  letter-spacing: 1px;
  color: #532d09;
}

/* 2 cột */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
  row-gap: 0;
}

.menu-subsection {
  margin-bottom: 30px;
}

.menu-subsection h3 {
  margin-bottom: 10px;
  font-size: 28px;
  border-bottom: 2px solid #ccc;
  padding-bottom: 5px;
  font-weight: 600;
  color: #5f340b;
}
.menu-subsection small {
  font-size: 18px;
  font-style: italic;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dotted #ddd;
}

.menu-item span {
  font-size: 22px;
  font-weight: 600;
  color: #000000;
}
.menu-item small {
  font-weight: 500;
  font-size: 18px;
  font-style: italic;
  color: #000;
}
.price {
  font-weight: bold;
  color: #000 !important;
}

/* Responsive */
@media (max-width: 900px) {
  .menu-container {
    padding: 30px;
    margin: 0 auto 10px;
  }

  h2 {
    font-size: 1.7rem;
  }
  .menu-subsection h3 {
    font-size: 1.3rem;
  }
  .menu-subsection small {
    font-size: 0.9rem;
  }
  .menu-item span {
    font-size: 1rem;
  }
  .menu-item small {
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .menu-section {
    /* padding: 40px var(--side-padding); */
  }

  .menu-grid {
    grid-template-columns: 1fr;
    /* 1 cột */
  }

  h2 {
    font-size: 1.5rem;
  }
}

.contact-section {
  max-width: 1200px;
  margin: 40px auto;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-left {
  flex: 1;
}

.contact-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-right {
  flex: 1;
  background: url("/images/contact/bacgroud-contact.png") no-repeat center
    center/cover;
  color: #333;
  padding: 40px;
  border-top: 1.5px solid #5a3b1e;
  border-right: 1.5px solid #5a3b1e;
  border-bottom: 1.5px solid #5a3b1e;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.contact-right h2 {
  margin-top: 0;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  text-align: start;
  color: #333;
}
.contact-info p {
  margin: 6px 0;
  line-height: 1.8;
  font-size: 20px;
}

.contact-info a {
  color: inherit;
  text-decoration: none;
}

.business-hours {
  margin-top: 20px;
}

.business-hours p {
  margin: 5px 0;
  line-height: 1.8;
  font-size: 20px;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  margin-right: 10px;
  font-size: 20px;
  text-decoration: none;
  color: #333;
}

.map-section {
  max-width: 1200px;
  margin: 20px auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-section iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* Responsive dưới 900px */
@media (max-width: 900px) {
  .contact-section {
    flex-direction: column;
  }

  .contact-left,
  .contact-left img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .contact-right {
    min-height: auto;
  }
}

/* Responsive dưới 600px */
@media (max-width: 600px) {
  .contact-right {
    padding: 20px;
    font-size: 14px;
  }



  .social-icons a {
    font-size: 18px;
  }
}
.lb-close {
  display: none !important;
}

/* trạng thái mặc định (PC) */
.btn-egift {
  display: inline-block;
}
.btn-services {
  display: none;
}
@media (max-width: 900px) {
  .btn-egift {
    display: none !important;
  } /* !important để override inline style nếu có */
  .btn-services {
    display: inline-block !important;
  }
}

/* Popup */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.popup-content {
  background: white;
  width: 80%;
  height: 80%;
  position: relative;
}

.popup-content iframe {
  width: 100%;
  height: 100%;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
}
.about-style-2 {
  /* background-color: #f3eeeb; */
  /* padding: 60px 16px; */
  text-align: center;
  color: #5b5046;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-image {
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  width: 100%;
  /* height: 366px; */
  margin-bottom: 50px;
  margin: auto;
  /* box-shadow: 0 0 3px rgba(0, 0, 0, 0.05); */
  margin-top: 20px;
}

/* Text */
.about-content h2 {
  color: #532d09;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}
.about-content img {
  width: 100px;
}
.about-content p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* Nút */
.about-btn {
  display: inline-block;
  background-color: #957541;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding: 10px 26px;
  border-radius: 24px;
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background-color: #8d6b37;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .about-style-2 {
    padding: 0 12px;
  }

  .about-content h2 {
    font-size: 1.5rem;
  }

  .about-image {
    margin-bottom: 30px;
    height: 100%;
  }
}
.section-separator {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(242, 234, 223, 0.6); /* lớp màu phủ */
  background-blend-mode: lighten; /* hoặc overlay, multiply, soft-light... */
}
.service-style-2 {
  padding: 50px 0px;
  color: #4a3b25;
  max-width: 1200px;
  margin: 0 auto;
}
.service-style-2-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.service-style-2-images {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
  margin-top: 20px;
}

.service-style-2-images img {
  width: 288px;
  border-radius: 10px;
  object-fit: cover;
}

.service-style-2-box {
  background: #fffaf7;
  border-radius: 10px;
  padding: 30px;
  padding-top: 0px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-style-2-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #532d09;
  font-family: "Playfair Display", serif;
}
.service-style-2-svg {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-style-2-svg svg {
  width: 70px;
  height: auto;
}
.service-style-2-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
  /* border-bottom: 1px dashed #ddd; */
  /* padding-bottom: 20px; */
  /* margin-bottom: 20px; */
}
.service-style-2-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.service-style-2-item {
  flex: 1;
  min-width: 280px;
}

.service-style-2-item.full {
  flex-basis: 100%;
}

.service-style-2-item h3 {
  font-size: 25px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f0e8d8;
  padding-bottom: 6px;
  margin-bottom: 0;
  color: #532d09;
}

.service-style-2-item h3 span {
  color: #3b1f04;
  font-weight: 700;
}
.service-style-2-item span {
  font-weight: bold;
  /* font-style: italic; */
  display: inline-block;
  font-size: 20px;
}
.service-style-2-item p {
  margin-bottom: 8px;
  margin-top: 5px;
  line-height: 1.4;
  font-size: 20px;
  font-style: italic;
}

.service-style-2-item .highlight {
  color: #f88f00;
  font-weight: bold;
}

.service-style-2-item ul {
  padding-left: 20px;
  margin-top: 8px;
}

.service-style-2-item ul li {
  list-style-type: "– ";
  font-size: 18px;
  font-style: italic;
}
.service-style-2-two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-style-2-col {
  flex: 1;
  min-width: 280px;
}
.service-style-2-note {
  text-align: center;
  font-style: italic;
  font-size: 18px;
  margin-top: 20px;
  color: #5a4a38;
  margin-bottom: 0px;
}

.service-style-2-sub {
  font-size: 14px;
  font-style: italic;
  color: #6c5a40;
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .service-style-2-item p {
    font-size: 18px;
  }
  .service-style-2 {
    padding-bottom: 0px;
  }
  .service-style-2-row {
    flex-direction: column;
    gap: 0px;
  }
  .service-style-2-two-col {
    gap: 0;
  }
  .service-style-2-images {
    padding: 10px;
  }
  .service-style-2-images img {
    width: 46%;
  }
  .service-style-2-note {
    font-size: 18px;
  }
  .service-style-2-item span,
  .service-style-2-item ul li  {
    font-size: 16px;
  }
  .service-style-2-item h3 {
    display: flex;
    flex-direction: row; /* giữ trên 1 hàng */
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: nowrap; /* không xuống dòng */
    font-size: 18px;
    white-space: nowrap;
  }

  .service-style-2-item h3 span {
    font-size: 16px;
  }

  .service-style-2-header {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .service-style-2-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .service-style-2-svg svg {
    width: 50px;
  }
}
.fa-solid {
  font-size: 18px;
  margin-right: 10px;
}

.vip-section {
  /* background-color: #f6f1ee; */
  text-align: center;
  padding: 20px 20px;
  color: #5a3a16;
  border-bottom: 1px solid #cbb49b;
}

.vip-container h2 {
  font-size: 40px;
  margin-bottom: 0;
  color: #532d09;
  font-weight: 600;
}

.vip-subtitle {
  font-size: 25px;
  margin-top: 0;
  margin-bottom: 30px;
  color: #532d09;
}

.vip-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.vip-form input {
  width: 390px;
  padding: 12px 20px;
  border: 1px solid #c9bba9;
  border-radius: 25px;
  outline: none;
  font-size: 20px;
  background-color: #fff;
  font-family: "Playfair Display", serif;
}

.vip-form button {
  background-color: #957541;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Playfair Display", serif;
}

.vip-form button:hover {
  background-color: #8c6834;
}

.vip-privacy {
  font-size: 20px;
  color: #8f8c89;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .vip-container h2 {
    font-size: 25px;
  }

  .vip-subtitle {
    font-size: 20px;
  }

  .vip-form input[type="email"],
  .vip-form button {
    width: 100%;
    border-radius: 20px;
  }

  .vip-privacy {
    white-space: normal; /* Cho phép xuống dòng */
    font-size: 20px; /* Giảm cỡ chữ trên mobile */
    padding: 0 10px; /* Chừa khoảng hai bên */
  }
}

.background {
  background: url("/images/background-hero.jpg") center/cover no-repeat;
  width: 100%;
  height: 767px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-box {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px 60px;
  text-align: center;
  max-width: 800px;
  width: 90%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.logo-hero img {
  width: 180px;
  margin-bottom: 10px;
  margin: auto;
}

.subtitle {
  color: #957541;
  font-size: 22px;
  margin-bottom: 20px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.btn {
  background-color: #fff;
  border: 1.5px solid #8b7a5b;
  color: #532d09;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0px 2px 10px rgb(143 140 140 / 47%);
}

.btn:hover {
  background-color: #8b7a5b;
  color: #fff;
}

.info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  text-align: center;
}

.info-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #3b3222;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  font-weight: 600;
}

/* Thêm gạch ngang dưới h3 */
.info-item h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #adadad;
  border-radius: 1px;
}

.info-item p {
  color: #151515;
  font-size: 15px;
  line-height: 1.6;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 600px) {
  .buttons {
    margin-bottom: 10px;
  }
  .content-box {
    padding: 30px 20px;
  }
  .info-item h3 {
    font-size: 20px;
    margin-top: 5px;
    margin-bottom: 0px;
  }
  .info {
    flex-direction: column;
    gap: 0px;
  }
  .info-item p {
    font-size: 18px;
  }
  .btn {
    padding: 8px 20px;
  }
}
.services-home {
  background-color: #fff8ef;
  text-align: center;
  padding: 60px 20px;
  background-image: url("/images/bg-service-home.png");
  /* background-size: cover; */
  background-position: center;
  background-repeat: no-repeat;
}

.services-home .title {
  font-size: 60px;
  font-weight: 600;
  color: #532d09;
  margin: 0;
  font-family: "Playfair Display", serif;
}

.services-home .image {
  margin: 10px auto 30px;
}

.services-home .service-box {
  background: #fff;
  border-radius: 15px;
  padding: 8px 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: left;
}

.services-home .category {
  font-size: 32px;
  color: #532d09;
  margin-bottom: 15px;
  text-align: center;
  font-family: "Playfair Display", serif;
}

.services-home .service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.services-home .service-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 20px;
  color: #532d09;
  padding: 8px 0;
  border-bottom: 1px dotted rgba(150, 118, 65, 0.3);
}
.services-home .service-list li:last-child {
  border-bottom: none;
}
.services-home .service-list .name {
  font-weight: 500;
}

.services-home .service-list .highlight {
  color: #e7a33e;
  font-weight: 600;
}

.services-home .service-list .price {
  font-weight: 600;
  min-width: 120px;
  text-align: right;
}

.services-home .btn-view {
  display: inline-block;
  padding: 12px 32px;
  border: 1.5px solid #5a3b1e;
  border-radius: 25px;
  color: #5a3b1e;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: #fff;
  font-size: 18px;
}

.services-home .btn-view:hover {
  background-color: #b48a58;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .services-home {
    padding: 40px 20px;
  }
  .services-home .title {
    font-size: 35px;
  }
  .services-home .service-list {
    margin: 0 0 15px;
  }
  .services-home .category {
    margin-top: 10px;
  }
  .services-home .service-box {
    padding: 10px 20px;
  }

  .services-home .service-list li {
    font-size: 18px;
  }
}

.about-home {
  background-color: #f8f2eb;
  font-family: "Poppins", sans-serif;
  color: #4a3b2b;
  background-image: url("/images/bg-about-home.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}
.about-bg.top {
  /* background-color: #F2EADF; */
  border-radius: 0;
  padding-bottom: 40px;
}
.about-bg.bottom {
  background-color: #fff8ef;
  border-radius: 0;
  padding-bottom: 40px;
  padding-top: 40px;
}

.about-images {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-images img {
  width: 95%;
  max-width: 600px;
  border-radius: 20px;
  object-fit: cover;
  /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); */
}

.about-text {
  flex: 1;
  text-align: left;
}

.about-text h2 {
  font-size: 60px;
  font-weight: 600;
  color: #5a3b1e;
  margin-bottom: 20px;
  text-align: left;
  position: relative;
  font-family: "Playfair Display", serif;
}

.about-text p {
  font-size: 18px;
  color: #151515;
  line-height: 1.4;
  text-align: left;
}

/* Responsive */
@media (max-width: 900px) {
  .about-bg.top,
  .about-bg.bottom {
    padding-bottom: 0px;
  }
  .about-bg.bottom {
    padding-top: 0px;
  }
  .about-section {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    gap: 0px;
  }

  .about-section.bottom {
    flex-direction: column-reverse;
  }

  .about-images img {
    width: 70%;
  }
  .about-text h2 {
    font-size: 35px !important;
  }

  .about-text h2 img.h2-decor {
    width: 100px;
  }
}

@media (max-width: 600px) {
  .about-images img {
    width: 90%;
  }
}

.gallery-home {
  background-color: #f6efe8;
  text-align: center;
  padding: 20px 20px;
  padding-bottom: 40px;
}
.gallery-home img {
  text-align: center;
  margin-bottom: 30px;
}
.gallery-title {
  font-size: 60px;
  font-weight: 600;
  color: #5a4227;
  position: relative;
  font-family: "Playfair Display", serif;
  margin-bottom: 0px;
}

/* Layout chính */
.gallery-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  align-items: stretch;
  justify-content: center;
}

/* Ảnh lớn bên trái */
.gallery-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.gallery-large:hover img {
  transform: scale(1.05);
}

/* Bên phải gồm 6 ảnh nhỏ */
.gallery-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 15px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-btn {
  margin-top: 50px;
}
/* Nút View More */
.view-more-btn {
  background-color: #fff;
  border: 1.5px solid #b48a58;
  color: #5a4227;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.view-more-btn:hover {
  background-color: #b48a58;
  color: #fff;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .gallery-title {
    font-size: 35px;
    margin-top: 0px;
  }
  .gallery-wrapper {
    grid-template-columns: 1fr;
  }

  .gallery-right {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-about {
  background-color: #f2eadf;
  text-align: center;
  padding: 10px 20px;
  background-image: url("/images/bg-about-home.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-title {
  font-size: 60px;
  font-weight: 600;
  color: #532d09;
  font-family: "Playfair Display", serif;
  margin-bottom: 0px;
}

.service-icon {
  display: block;
  margin: 0 auto 25px;
}

.service-subtitle {
  font-weight: 500;
  font-size: 25px;
  color: #151515;
  margin-bottom: 8px;
  font-family: "Playfair Display", serif;
}

.service-desc {
  max-width: 800px;
  margin: 0 auto 50px;
  color: #151515;
  line-height: 1.6;
  font-size: 18px;
}

/* Grid layout */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Mỗi item */
.service-item img {
  width: 100%;
  height: auto;
  /* border-radius: 120px 0 120px 0; */
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-item:hover img {
  transform: scale(1.05);
}

.service-item h3 {
  margin-top: 20px;
  font-weight: 500;
  color: #151515;
  font-size: 22px;
}

.service-item p {
  color: #151515;
  font-size: 18px;
  line-height: 1.6;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .service-item img {
    width: 80%;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-title {
    font-size: 35px;
  }
}

.our-team {
  background-color: #fcf6ef;
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.our-team-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 60px;
  padding: 0 20px;
}

.our-team-left {
  flex: 1;
  overflow: hidden;
}

.our-team-left img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.our-team-right {
  flex: 1;
}

.our-team-right h2 {
  font-size: 36px;
  color: #5c3b1e;
  margin-bottom: 20px;
  text-align: left;
  font-family: "Playfair Display", serif;
}

.our-team-right p {
  color: #333;
  line-height: 1.4;
  font-size: 18px;
}

/* Swiper pagination (dots) */
.swiper-pagination-bullet {
  background: #c4b09b;
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0 5px !important;
  transition: all 0.3s;
}

.swiper-pagination-bullet-active {
  background: #a67c52;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 900px) {
  .our-team-container {
    flex-direction: column;
    text-align: left;
    gap: 30px;
  }

  .our-team-left {
    /* border-radius: 30px; */
    aspect-ratio: 16 / 9;
    max-width: 100%;
    padding: 20px;
  }

  .our-team-right h2 {
    font-size: 35px;
    margin-top: 20px;
  }
}

.why-choose {
  background: url("/images/about/bg.png") no-repeat center/cover;
  position: relative;
  padding: 30px 0;
  color: #4b2e0e;
}

.why-choose-overlay {
  /* background: rgba(255, 255, 255, 0.4); */
  /* backdrop-filter: blur(2px); */
}

.why-choose-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 20px;
  text-align: center;
}

.why-title {
  font-size: 40px;
  font-weight: 700;
  color: #532d09;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.why-icon {
  display: block;
  margin: 10px auto 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.why-item {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.why-item h3 {
  font-size: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  color: #532d09;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}

.why-item h3 span {
  font-size: 36px;
  font-weight: 700;
  color: #957541;
  margin-right: 10px;
}

.why-item p {
  color: #000000;
  line-height: 1.6;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 900px) {
  .why-choose {
    padding: 10px 20px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-item {
    text-align: left;
    padding: 0px 30px;
  }

  .why-item h3 {
    justify-content: center;
  }
}

.gallery-page {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 60px auto;
}

.gallery-page-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.gallery-page-item a {
  display: block; /* cho link chiếm toàn bộ khung */
}

.gallery-page-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-page-item:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
  .gallery-page {
    grid-template-columns: repeat(2, 1fr);
    /* 2 cột */
    padding: 0 var(--side-padding);
  }
}

@media (max-width: 600px) {
  .gallery-page {
    grid-template-columns: 1fr;
    /* 1 cột */
    padding: 0 var(--side-padding);
  }
}

.promotion-section {
  max-width: 1200px;
  margin: 40px auto;
  overflow: hidden;
  display: flex;
}

.promotion-left {
  flex: 1;
}

.promotion-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 15px;
  border: 1px solid #a09f9f;
}

.promotion-right {
  flex: 1;
  color: #333;
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 50px;
}
.promotion-right a {
  font-size: 22px;
  color: #000;
}

.promotion-right h2 {
  font-size: 40px;
  margin: 0;
  font-family: "Playfair Display", serif;
}
.promotion-right p {
  margin: 6px 0;
  line-height: 1.4;
  font-size: 22px;
}
@media (max-width: 900px) {
  .promotion-right h2 {
    font-size: 35px;
  }
  .promotion-section {
    flex-direction: column;
  }

  .promotion-left,
  .promotion-left img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .promotion-right {
    min-height: auto;
  }
}

/* Responsive dưới 600px */
@media (max-width: 600px) {
  .promotion-right {
    padding: 20px;
    font-size: 14px;
  }
  .promotion-left {
    padding: 20px;
  }
}

.membership-section {
  text-align: center;
  padding: 20px 20px;
  background-color: #fff8ef;
  color: #532d09;
}

.membership-section h1 {
  font-size: 70px;
  margin-bottom: 10px;
  color: #532d09;
  font-family: "Playfair Display", serif;
}

.membership-desc {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 22px;
  line-height: 1.4;
  color: #151515;
}

.membership-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.membership-box {
  width: 600px;
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.membership-box h3 {
  font-size: 40px;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}

.membership-box .membership-price {
  font-size: 2rem;
  color: #e7a33e;
  margin-bottom: 10px;
  font-weight: bold;
  font-family: "Playfair Display", serif;
}

.membership-box .membership-price span {
  font-size: 1rem;
  font-weight: normal;
}

.membership-box .save {
  font-weight: bold;
  margin-bottom: 15px;
  color: #4a2c1d;
  font-size: 18px;
}

.membership-box .desc {
  font-size: 18px;
  line-height: 1.4;
  color: #4a2c1d;
  font-style: italic;
}

/* Hiệu ứng hover */
.membership-box:hover {
  background-color: #e7a33e;
  color: #fff;
  transform: translateY(-5px);
}

.membership-box:hover .membership-price,
.membership-box:hover .desc,
.membership-box:hover .save {
  color: #fff;
}
@media (max-width: 900px) {
  .membership-section h1,
  .membership-box h3 {
    font-size: 35px;
  }

  .membership-section {
    padding: 20px 20px;
  }
  .membership-box {
    padding-top: 0px;
  }
}
.follow-section {
  background-image: url("/images/follow-bg.png"); /* ảnh nền bạn vừa gửi */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 10px 20px 100px 20px;
  text-align: center;
  position: relative;
}

/* .follow-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 248, 239, 0.6); 
  z-index: 0;
} */

.follow-container {
  position: relative;
  z-index: 1;
}

.follow-container h2 {
  font-size: 60px;
  font-weight: 600;
  color: #532d09;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.follow-container p {
  color: #5a3b1e;
  font-size: 18px;
  margin-bottom: 30px;
}

.follow-social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.follow-social-icons .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  /* background-color: #fff; */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.follow-social-icons .icon img {
  width: 100%;
  height: 100%;
}

.follow-social-icons .icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .follow-section {
    padding-bottom: 30px;
  }
  .follow-container h2 {
    font-size: 32px;
  }
  .follow-container p {
    font-size: 16px;
  }
  .follow-social-icons {
    gap: 18px;
  }
}

.booking-section {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background-color: var(--bg);
  position: relative;
  z-index: 10;
}

.iframe-wrapper {
  width: 100%;
  max-width: 1200px;
  height: 90vh; /* Chiều cao bằng 90% chiều cao màn hình */
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .booking-section {
    padding: 20px 10px;
  }

  .iframe-wrapper {
    height: 80vh; /* thấp hơn chút cho mobile */
    border-radius: 6px;
  }
}

.membership-image-container {
  text-align: center;
  margin-top: 40px;
}

.membership-image-container img {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive cho tablet */
@media (max-width: 768px) {
  .membership-image-container {
    margin-top: 30px;
    padding: 0 20px;
  }
  
  .membership-image-container img {
    max-width: 100%;
    border-radius: 8px;
  }
}

/* Responsive cho mobile */
@media (max-width: 480px) {
  .membership-image-container {
    margin-top: 20px;
    padding: 0 15px;
  }
  
  .membership-image-container img {
    border-radius: 6px;
  }
}
/* Membership Popup Styles */
.membership-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh; /* For mobile viewport */
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0) env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);
  background-color: rgb(31 29 29 / 50%);
}

.membership-popup.show {
  display: flex;
  opacity: 1;
}

.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.popup-content {
  position: relative;
  width: 548px;
  height: 691px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: popupSlideIn 0.4s ease-out;
}

@keyframes popupSlideIn {
  from {
    transform: scale(0.8) translateY(30px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.popup-close:hover {
  background: white;
  transform: scale(1.1);
  color: #8B1538;
}

/* Slider Styles */
.popup-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .popup-content {
    width: 320px;
    height: 403px;
    max-width: 500px;
    aspect-ratio: 1/1;
    margin: 20px;
  }
  
  .popup-slider {
    height: 100%;
  }
  
  .popup-close {
    top: 10px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
  }

}
@media (max-width: 480px) {
  .popup-content {

    margin: 10px;
    aspect-ratio: 1/1;
  }
  
  .popup-close {
    top: 8px;
    right: 12px;
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}

/* iOS Safe Area Support */
@supports (padding: env(safe-area-inset-top)) {
  @media (max-width: 768px) {
    .popup-close {
      top: calc(env(safe-area-inset-top, 0px) + 10px);
      right: calc(env(safe-area-inset-right, 0px) + 15px);
    }
  }
  
  @media (max-width: 480px) {
    .popup-close {
      top: calc(env(safe-area-inset-top, 0px) + 8px);
      right: calc(env(safe-area-inset-right, 0px) + 12px);
    }
  }
}