: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: relative;
  z-index: 100;
  background: #f2ece9;
  width: 100%;
}

.top-header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #f2ece9; /* mÃ u sau khi scroll */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

body.header-fixed {
  padding-top: var(--header-height, 90px);
}

.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;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 290px;
  background: #fff8ef;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 8px 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.2s ease;
  z-index: 120;
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 16px;
  white-space: nowrap;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Logo */
.logo img {
  height: 70px;
  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: #233860;
  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;
}

.mobile-submenu {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-submenu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-submenu-head a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 1.1rem;
  padding: 8px 0;
  flex: 1;
}

.mobile-submenu-toggle {
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  line-height: 1;
  padding: 8px 0 8px 8px;
  cursor: pointer;
}

.mobile-submenu-toggle .arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.mobile-submenu.open .mobile-submenu-toggle .arrow {
  transform: rotate(180deg);
}

.mobile-submenu-panel {
  display: none;
  padding: 4px 0 10px 20px;
}

.mobile-submenu.open .mobile-submenu-panel {
  display: block;
}

.mobile-submenu-panel a {
  display: block;
  text-decoration: none;
  color: var(--text);
  font-size: 1rem;
  padding: 6px 0;
}

/* Khi má»Ÿ menu */
.nav-mobile.show {
  display: flex;
  max-height: 520px;
  /* Ä‘á»§ 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: #233860;
  white-space: nowrap;
}

.hero p {
  margin: 8px 0 0;
  color: #233860;
  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("/assets/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("/assets/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: 15px;
  align-items: start;
}

/* Logo */
.footer-logo-img {
  max-width: 110px;
  margin-bottom: 15px;
  margin-left: 50px;
}

/* 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: #233860;
}
.info-grid .footer-contact {
  margin-left: -60px;
}
/* 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;
  }
  .footer-logo-img {
    margin-left: 0;
  }
}

@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: #233860;
  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: #233860;
  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: #233860;
  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 #233860;
  font-family: "Poppins", sans-serif;
}
.btn-appoint:hover {
  background: #233860;
  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;
    text-align: center;
  }
}

@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("/assets/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: #233860;
}

/* 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("/assets/images/contact/bacgroud-contact.png") no-repeat center
    center/cover;
  color: #333;
  padding: 40px;
  border-top: 1.5px solid #233860;
  border-right: 1.5px solid #233860;
  border-bottom: 1.5px solid #233860;
  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: #233860;
  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: #233860;
  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: #233860;
  font-family: "Playfair Display", serif;
  margin-bottom: 0;
}
.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: #3b1f04;
}

.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: 0px;
  color: #5a4a38;
  margin-bottom: 20px;
}

.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: #233860;
  font-weight: 600;
}

.vip-subtitle {
  font-size: 25px;
  margin-top: 0;
  margin-bottom: 30px;
  color: #233860;
}

.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: #233860;
  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("/assets/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: #233860;
  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 #233860;
  color: #233860;
  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: #233860;
  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("/assets/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: #233860;
  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: #233860;
  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: #151515;
  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 #233860;
  border-radius: 25px;
  color: #233860;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: #fff;
  font-size: 18px;
}

.services-home .btn-view:hover {
  background-color: #233860;
  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("/assets/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: #233860;
  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: #233860;
  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 #233860;
  color: #233860;
  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: #233860;
  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("/assets/images/bg-about-home.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-title {
  font-size: 60px;
  font-weight: 600;
  color: #233860;
  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: #233860;
  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("/assets/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: 36px;
  font-weight: 700;
  color: #233860;
  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: #233860;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}

.why-item h3 span {
  font-size: 36px;
  font-weight: 700;
  color: #233860;
  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;
  }
}


.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;
}

.promotion-poster {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.promo-poster-card {
  margin: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid #e6d8c6;
}

.promo-poster-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@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;
  }

  .promotion-poster {
    margin: 24px auto;
    padding: 0 14px;
  }
}

/* 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: #233860;
}

.membership-section h1 {
  font-size: 70px;
  margin-bottom: 10px;
  color: #233860;
  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;
  }
}
.salon-video-section {
  background-color: #fff8ef;
  background-image: url("/assets/images/bg-service-home.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  padding: 60px 20px 70px;
}

.salon-video-container {
  max-width: 980px;
  margin: 0 auto;
}

.salon-video-section h2 {
  font-size: 60px;
  font-weight: 600;
  color: #233860;
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
}

.salon-video-section p {
  max-width: 760px;
  margin: 0 auto 30px;
  font-size: 20px;
  line-height: 1.5;
  color: #151515;
}

.salon-video-frame {
  /* background: #ececec; */
  border-radius: 8px;
  overflow: hidden;
  /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); */
  aspect-ratio: 16 / 9;
}

.salon-video-player {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .salon-video-section {
    padding: 40px 16px 45px;
  }
  .salon-video-frame {
    /* aspect-ratio: 3 / 5; */
    height: 600px;
    width: 100%;
  }
  .salon-video-section h2 {
    font-size: 36px;
  }

  .salon-video-section p {
    font-size: 16px;
    margin-bottom: 22px;
  }
}

.follow-section {
  background-image: url("/assets/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: #233860;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.follow-container p {
  color: #151515;
  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; */
  margin-top: 20PX;
}

.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;
  }
}

.about-banner.about-banner-long {
  font-size: 30px;
  padding-left: 34px;
  padding-right: 34px;
}

.policy-section {
  max-width: 1200px;
  margin: 60px auto 40px;
  padding: 0 20px;
}

.policy-card {
  background: #fff;
  border: 1px solid #e8ddd0;
  border-radius: 16px;
  padding: 26px;
}

.policy-card h2 {
  text-align: left;
  font-size: 34px;
  color: #233860;
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
}

.policy-card p,
.policy-card li {
  font-size: 20px;
  line-height: 1.55;
  color: #333;
}

.policy-card ul {
  margin: 0;
  padding-left: 26px;
}

.policy-card li {
  margin: 8px 0;
}

@media (max-width: 900px) {
  .about-banner.about-banner-long {
    font-size: 24px;
    padding-left: 22px;
    padding-right: 22px;
    text-align: center;
  }

  .policy-section {
    margin-top: 45px;
  }

  .policy-card {
    padding: 18px;
  }

  .policy-card h2 {
    font-size: 28px;
  }

  .policy-card p,
  .policy-card li {
    font-size: 18px;
  }
}

/* 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: 691px;
  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: 403px;
    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);
    }
  }
}


.testimonials-home {
  padding: 60px 20px;
}

.testimonials-home .testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-home .title {
  font-size: 60px;
  font-weight: 600;
  color: #233860;
  margin: 0;
  font-family: "Playfair Display", serif;
}

.testimonials-home .image {
  margin: 10px auto 30px;
}

@media (max-width: 768px) {
  .testimonials-home {
    padding: 40px 20px;
  }

  .testimonials-home .title {
    font-size: 35px;
  }
}


.salon{
  position: relative;
  padding: 50px 20px;
 
}

.salon__wrap{
  max-width: var(--page-max, 1200px);
  margin: 0 auto;
}

/* Heading with lines */
.salon__heading{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 46px;
}

.salon__title{
  font-family: "Playfair Display", serif;
  margin: 0;
  font-weight: 300;
  font-size: 30px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #532D09;
  white-space: nowrap;
}

.salon__line{
  height: 1px;
  width: min(280px, 22vw);
  background: rgba(166,130,48,.55);
}

/* Grid images */
.salon__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

/* Square item */
.salon__item{
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border-radius: 2px;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  text-decoration: none;
  transform: translateZ(0);
}

.salon__item img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform .45s ease, filter .45s ease;
  /* filter: brightness(.88); */
}

/* Overlay tối nhẹ */
/* .salon__item::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.18);
  opacity: 1;
  transition: opacity .35s ease;
} */

/* icon + (tùy chọn) */
.salon__item::before{
  content: "+";
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 3;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 2px;
  background: rgba(0,0,0,.35);
  color: rgba(255,255,255,.9);
  font-family: var(--font-title, "Lato", Helvetica, Arial, sans-serif);
  font-size: 22px;
  opacity: 0;
  transform: translateY(6px);
  transition: .25s ease;
}

/* Hover */
.salon__item:hover img{
  transform: scale(1.08);
  filter: brightness(1);
}
.salon__item:hover::after{ opacity: 0; }
.salon__item:hover::before{
  opacity: 1;
  transform: translateY(0);
}

/* ===== iPad ===== */
@media (max-width: 1024px){
  .salon{ padding: 64px 18px; }
  .salon__grid{ grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .salon__title{ font-size: 26px; }
  .salon__heading{ margin-bottom: 34px; gap: 18px; }
  .salon__line{ width: min(220px, 20vw); }
}

/* ===== Mobile ===== */
@media (max-width: 768px){
  .salon{ padding: 52px 16px; }
  .salon__grid{ grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .salon__title{
    font-size: 20px;
    letter-spacing: .22em;
  }

  .salon__line{ width: 18vw; }
}

@media (max-width: 420px){
  .salon__grid{ grid-template-columns: 1fr; }
  .salon__line{ display: none; }
}