/* ===== IMPORTS & ROOT ===== */
@import url("https://fonts.googleapis.com/css2?family=Arizonia&display=swap");

:root {
  --main-bg: #007f5a;
  --header-bg: #edf6ec;
  --accent: #007f5a;
  --text-main: #222;
  --text-light: #151515;
  --max-width: 1200px;
  --font-main: "Arsenal", sans-serif;
  --font-script: "Arizonia", cursive;
  --font-size-base: 18px;
  --font-size-title: 83px;
  --font-size-heading: 20px;
  --font-size-title-mobile: 50px;
  --header-height: 90px;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  background: #edf6ec;
  padding: 20px 20px 40px 20px;
  text-align: center;
}
.gallery-section .swiper-slide img {

  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s;
}
.gallery-section .swiper-pagination {
  position: static;
  margin-top: 24px;
  width: 100%;
  text-align: center;
}
.gallery-section .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.7;
  width: 12px;
  height: 12px;
  margin: 0 6px !important;
  border-radius: 50%;
  display: inline-block;
  transition: background 0.2s;
}
.gallery-section .swiper-pagination-bullet-active {
  background: #007f5a;
  opacity: 1;
}
.gallery-title {
  font-family: var(--font-script);
  font-size: var(--font-size-title);
  color: #21704e;
  margin-bottom: 40px;
  margin-top: 0px;
  font-weight: 500;
}
.gallery-list {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.gallery-item {
  width: 350px;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s;
}
.gallery-item img:hover {
  transform: scale(1.07);
}
.gallery-btn-wrap {
  margin-top: 10px;
}
.gallery-btn {
  display: inline-block;
  background: #007f5a;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  padding: 14px 38px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: background 0.2s;
}
.gallery-btn:hover {
  background: #007f5a;
}
@media (max-width: 1200px) {
  .gallery-list {
    gap: 18px;
  }
  .gallery-item {
    width: 170px;
    height: 170px;
  }
}
@media (max-width: 800px) {
  .gallery-list {
    gap: 10px;
  }
  .gallery-item {
    width: 120px;
    height: 120px;
  }
  .gallery-title {
    font-size: var(--font-size-title-mobile);
  }
  .gallery-btn {
    font-size: 16px;
    padding: 10px 18px;
  }
}

/* Reset & Base */
body {
  margin: 0;
  font-family: var(--font-main);
  /* background: var(--main-bg); */
  color: var(--text-main);
  font-size: var(--font-size-base);
}
html,
body {
  overflow-x: hidden;
}

.fixed-buttons {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.fixed-buttons .btn {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-align: center;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px 0 0 6px;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.fixed-buttons .call-now {
  background-color: #fff;
  color: #007f5a;
  border: 2px solid #007f5a;
}

.fixed-buttons .booking {
  background-color: #007f5a;
  color: #fff;
}

.fixed-buttons .btn:hover {
  opacity: 0.85;
  transform: scale(1.05);
}

/* ===== Header ===== */
/* .header {
  background: var(--header-bg);
  color: var(--text-light);

  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.header__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5px 0px;
  background: transparent;
} */
.header {
  position: fixed; /* 👈 cố định hoàn toàn, không chỉ sticky */
  top: 0;
  left: 0;
  width: 100%; /* phủ toàn màn hình */
  z-index: 1000;
  height: var(--header-height);
  background: rgba(237, 246, 236, 0.85); /* 👈 màu nền có độ trong suốt (0.85 = 85%) */
  backdrop-filter: blur(8px); /* 👈 làm mờ nhẹ nền phía sau cho đẹp hơn */
  color: var(--text-light);

  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease;
}

.header__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8px 20px;
  background: transparent; /* giữ trong suốt */
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

/* Logo */
.logo img {
  width: 80px;
  height: auto;
  object-fit: contain;
}

/* Nav chung */
.nav ul {

  color: var(--text-light);
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* .nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
} */

.nav a:hover,
.nav a.active {
  color: var(--accent-color);
}

/* Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 35px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-light);
  border-radius: 2px;
}

/* Nav PC hiển thị mặc định */
.nav-pc {
  display: block;
}

/* Nav Mobile ẩn mặc định */
.nav-mobile {
  display: none;
  margin-top: 12px;
  padding: 0 16px;
  background: rgba(237, 246, 236, 1); /* 👈 màu nền có độ trong suốt (0.85 = 85%) */

}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .header__container {
    padding: 12px 0px;
  }

  .logo img {
    width: 70px;
  }
  .btn-call {
    display: none;
  }
  /* Ẩn nav PC, hiện hamburger */
  .nav-pc {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Nav mobile xổ xuống */
  .nav-mobile {
    display: none;
    width: 100%;
  }

  .nav-mobile.active {
    display: block;
    animation: slideDown 0.3s ease;
  }

  .nav-mobile ul {
    flex-direction: column;
    gap: 12px;
    padding: 0;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  object-fit: contain;
}

.logo__text {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: 2px;
}

.logo__text small {
  font-size: 0.8rem;
  font-weight: normal;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: var(--font-size-heading);
  font-weight: 600;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--accent);
}

.btn-booking {
  background: var(--main-bg);
  color: var(--header-bg);
  padding: 10px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  font-size: var(--font-size-heading);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background 0.2s;
}

.btn-booking:hover {
  background: #fff;
  color: var(--main-bg);
  border: 1px solid var(--main-bg);
}
.btn-call {
  background: #fff;
  color: var(--main-bg);
  padding: 10px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-size: var(--font-size-heading);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background 0.2s;
  border: 1px solid var(--main-bg);
  font-weight: 600;
}

.btn-call:hover {
  background: var(--main-bg);
  color: var(--header-bg);
}

/* Banner Section */
.banner-section {
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Promotions Section */
.promotions-section {
  width: 100%;
  background: url("../images/promotions/bg-leaf.jpg") no-repeat center/cover,
    #195c3a;
  padding: 20px 0 40px 0;
  position: relative;
  min-height: 500px;
}
.promotions-title {
  text-align: center;
  font-family: var(--font-script);
  font-size: var(--font-size-title);
  color: #fff;
  margin-bottom: 40px;
  letter-spacing: 2px;
  font-weight: 500;
  margin-top: 0px;
}
.promotionsSwiper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.promotionsSwiper .swiper-wrapper {
  align-items: center;
  /* justify-content: center; */
  display: flex;
}
.promotionsSwiper .swiper-slide {
  /* background: #fff; */
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 370px;
  transition: box-shadow 0.3s;
  /* Căn giữa khi ít slide */
}
.promotionsSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  max-width: 350px;
  max-height: 370px;
}
.promotionsSwiper .swiper-slide-active {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.promotions-section .swiper-pagination {
  position: static;
  margin-top: 24px;
  width: 100%;
  text-align: center;
}
.promotions-section .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.7;
  width: 12px;
  height: 12px;
  margin: 0 6px !important;
  border-radius: 50%;
  display: inline-block;
  transition: background 0.2s;
}
.promotions-section .swiper-pagination-bullet-active {
  background: #007f5a;
  opacity: 1;
}

@media (max-width: 1100px) {
  .promotionsSwiper {
    max-width: 100%;
  }
  .promotionsSwiper .swiper-slide img {
    max-width: 90vw;
  }
}
@media (max-width: 900px) {
  .promotionsSwiper .swiper-slide {
    height: 300px;
  }
  .promotions-title {
    font-size: var(--font-size-title-mobile);
  }
}
@media (max-width: 600px) {
  .promotionsSwiper .swiper-slide {
    height: 400px;
  }
  .promotions-title {
    font-size: var(--font-size-title-mobile);
  }
}

.bannerSwiper {
  width: 100%;
  height: 100%;
}

.bannerSwiper .swiper-slide img {
  width: 100%;
  height: 1000px;
  object-fit: cover;
}

.bannerSwiper .swiper-button-prev,
.bannerSwiper .swiper-button-next {
  color: #fff !important;
  transition: 0.3s;
}
.bannerSwiper .swiper-button-prev {
  left: 60px !important;
}
.swiper-button-next {
  right: 60px !important;
}
.bannerSwiper .swiper-button-prev:hover,
.bannerSwiper .swiper-button-next:hover {
  color: #0f6848;
}

@media (max-width: 768px) {
  .bannerSwiper .swiper-button-prev,
  .bannerSwiper .swiper-button-next {
    display: none;
  }
  .bannerSwiper .swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
}

/* About Section */
.about-section {
  background: url("/assets/images/about-home-bg.png") no-repeat center/cover;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  margin-top: -10px;
  align-items: center;
  flex-direction: column;
}

.about-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 90%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-top: -200px;
  z-index: 99;
  padding: 10px 20px;
  gap: 10px;
}
.about-btn {
  margin-top: 50px;
  margin-bottom: -30px;
}
.about-left {
  flex: 0 0 35%;
  text-align: center;
}

.about-left img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-width: 350px;
}

.about-right {
  /* flex: 0 0 65%; */
  padding: 10px 10px;
}

.about-right h1 {
  font-family: var(--font-script);
  font-size: var(--font-size-title);
  color: #1c6b5a;
  margin-bottom: 10px;
  font-weight: 500;
  margin-top: 10px;
}

.about-right h2 {
  font-family: var(--font-main);
  color: #444;
  font-size: 20px;
  margin-bottom: 25px;
}

.about-right h3 {
  font-family: var(--font-main);
  color: #444;
  font-size: 20px;
  margin-bottom: 25px;
}

.about-right p {
  font-family: var(--font-main);
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: var(--font-size-base);
}



/* Responsive */
@media (max-width: 768px) {
  .about-right h1 {
    font-size: var(--font-size-title-mobile);
    margin-top: 10px;
  }
  .about-right h2 {
    font-size: var(--font-size-title-mobile);
    margin-top: 10px;
    font-size: 20px;
  }
  .about-left img {
    height: 200px;
    width: 100%;
  }
  .about-container {
    flex-direction: column;
    margin-top: -160px;
  }

  .about-left,
  .about-right {
    flex: 0 0 100%;
  }

  .about-right {
    padding: 0 20px;
    order: 1;

  }
  .about-left {
    order: 2;
  }
}

/* services */
.services-section {
  text-align: center;
  padding: 20px 20px 40px 20px;
  background-color: #fff;
}

.services-title {
  font-family: var(--font-script);
  font-size: var(--font-size-title);
  color: #1c6b5a;
  margin-bottom: 50px;
  margin-top: 0px;
  font-weight: 500;
}

.services-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.service-item {
  width: 220px;
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.service-item a {
  text-decoration: none;
  color: inherit;
}

.service-image {
  width: 220px;
  height: 220px;
  /* border-radius: 50%; */
  /* border: 4px solid #a3d3b4; */
  overflow: hidden;
  position: relative;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
  overflow: visible;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-name {
  background-color: #f0f8f3;
  color: #000;
  font-weight: 700;
  padding: 10px 0;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.1);
}

.service-item:hover .service-name {
  background-color: #1c6b5a;
  color: #fff;
}

/* ✅ Responsive cho màn hình nhỏ hơn 900px */
@media (max-width: 900px) {
  .services-container {
    gap: 25px;
  }

  .service-item {
    width: 45%; /* chia 2 cột */
  }

  .service-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1; /* giữ hình vuông tròn */
    margin-bottom: 0px;
  }
  .service-image img {
    width: 90%;
    height: 90%;
  }
  .service-name {
    font-size: 14px;
  }
}

/* ✅ Responsive thêm cho màn nhỏ hơn 600px */
@media (max-width: 600px) {
 
  .services-title {
    font-size: var(--font-size-title-mobile);
    margin-bottom: 10px;
  }

  .services-section {
    padding: 25px 10px;
  }
}


/* ===== FOOTER NEW ===== */
.footer-new {
  position: relative;
  background: #195c3a;
  color: #fff;
  padding: 0;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}
.footer-bg {
  position: absolute;
  inset: 0;
  background: url("../images/footer-bg.png") no-repeat center/cover, #195c3a;
  opacity: 1;
  z-index: 0;
}
.footer-container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0px 32px 24px 32px;
  gap: 32px;
}

.footer-col {
  flex: 1 1 0;
  min-width: 220px;
  max-width: 350px;
  margin: 0 12px;
}
.footer-title {
  font-family: var(--font-script);
  font-size: 32px;
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-about p {
  font-size: 16px;
  margin-bottom: 12px;

  color: #e0e0e0;

  font-style: italic;
}
.footer-about b {
  color: #fff;
}
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  font-size: 16px;
  font-style: normal;
}
.footer-contact-list div {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact-list i {
  color: #fff;
  min-width: 18px;
}
.footer-contact-list a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-contact-list a:hover {
  color: #007f5a;
}
.footer-social {
  margin-top: 8px;
}
.footer-social a {
  color: #91ff9e;
  font-size: 22px;
  margin-right: 16px;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #ffe082;
}
.footer-hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 16px;
}
.footer-hours-list li {
  margin-bottom: 6px;
}
.footer-holiday small {
  font-size: 16px;
  font-style: italic;
  color: #e0e0e0;
  margin-top: 8px;
}
.footer-map-box {
  width: 260px;
  height: 160px;
  background: #fff;
  border-radius: 14px;
  margin-top: 24px;
}
.footer-bottom {
  text-align: center;
  color: #fff;
  font-size: 16px;
  padding: 12px 0 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  position: relative;
  z-index: 2;
}
.footer-map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  display: block;
}
@media (max-width: 1100px) {
  .footer-container {
    flex-wrap: wrap;
    gap: 18px;
    padding: 32px 10px 18px 10px;
  }
  .footer-map-box {
    width: 180px;
    height: 120px;
  }
}
@media (max-width: 900px) {
  .footer-title {
    margin-top: 0px;
  }
  .footer-container {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 20px;
  }
  .footer-col {
    max-width: 100%;
    margin: 0 0 18px 0;
  }
  .footer-map-box {
    width: 100%;
    height: 120px;
    margin-top: 12px;
  }
}

.testimonial-section {
  background: #fff;
  padding: 20px 0 60px;
  text-align: center;
}

.testimonial-title {
  font-family: var(--font-script);
  font-size: var(--font-size-title);
  color: #21704e;
  margin-bottom: 20px;
  font-weight: 500;
  margin-top: 0px;
}

.testimonialSwiper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonial-item {
  background: #bfe9cc;
  border-radius: 18px;
  padding: 32px 28px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 200px;
  box-sizing: border-box;
}

.testimonial-name {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
  color: #111;
}

.testimonial-icon img {
  width: 48px;
  height: auto;
  margin-bottom: 12px;
}

.testimonial-content {
  font-size: 16px;
  color: #222;
  font-style: italic;
  line-height: 1.5;
}

.testimonial-section .swiper-pagination {
  margin-top: 18px;
  position: static;
}

.testimonial-section .swiper-pagination-bullet {
  background: #21704e;
  opacity: 0.5;
  width: 12px;
  height: 12px;
  margin: 0 6px !important;
  border-radius: 50%;
  transition: background 0.2s;
}

.testimonial-section .swiper-pagination-bullet-active {
  background: #007f5a;
  opacity: 1;
}

@media (max-width: 900px) {
  .testimonial-title {
    font-size: 40px;
  }
  .testimonial-section {
    padding: 20px 20px 60px;
  }
}

@media (max-width: 600px) {
  .testimonial-title {
    font-size: var(--font-size-title-mobile);
  }

  .testimonialSwiper {
    max-width: 100%;
    padding: 0;
  }

  .testimonialSwiper .swiper-slide {
    width: 100% !important;
    border-radius: 15px;
  }

  .testimonial-item {
    border-radius: 0;
    min-height: auto;
  }
}
/* ===== ANIMATION EFFECTS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

.fade-in.delay-1 {
  animation-delay: 0.2s;
}
.fade-in.delay-2 {
  animation-delay: 0.4s;
}
.fade-in.delay-3 {
  animation-delay: 0.6s;
}
.fade-in.delay-4 {
  animation-delay: 0.8s;
}
.fade-in.delay-5 {
  animation-delay: 1s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  animation: slideInLeft 1s cubic-bezier(0.23, 1.01, 0.32, 1) forwards;
}
.slide-in-right {
  opacity: 0;
  transform: translateX(40px);
  animation: slideInRight 1s cubic-bezier(0.23, 1.01, 0.32, 1) forwards;
}
.slide-in-left.delay-1 {
  animation-delay: 0.2s;
}
.slide-in-left.delay-2 {
  animation-delay: 0.4s;
}
.slide-in-right.delay-1 {
  animation-delay: 0.2s;
}
.slide-in-right.delay-2 {
  animation-delay: 0.4s;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInRight {
  to {
    opacity: 1;
    transform: none;
  }
}

/* about.html */
.body-about-page .testimonial-section {
  background-color: #f2f8f0;
}
/* --- Common layout --- */
.about-page {
  font-family: var(--font-main);
  margin-top: var(--header-height); 
}

/* --- Header --- */
.about-page__header {
  background: #fff;
  border-bottom: 2px solid #8ec194;
  width: 100%;
  text-align: center;
  padding: 20px 0 50px 0;
}

.about-page__title {
  font-family: var(--font-script);
  font-size: var(--font-size-title);
  color: #1c6b5a;
  margin-bottom: 8px;
  margin-top: 0;
  font-weight: 500;
}

.about-page__subtitle {
  font-weight: 500;
  color: #222;
  letter-spacing: 1px;
  margin-top: 0px;
  font-size: 30px;
}

/* --- Content --- */
.about-page__content {
  background: #f2f8f0;
  width: 100%;
  padding: 20px 0;
  position: relative;
}

.about-page__container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.about-page__left {
  flex: 1;
  min-width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-page__image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  /* border: 6px solid #cce3d9; */
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
}

/* --- Right content --- */
.about-page__right {
  flex: 1;
  min-width: 320px;
  color: #333;
}

.about-page__right h3 {
  font-size: 40px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 20px;
}

.about-page__right p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-page__right .highlight {
  color: #1c6b5a;
  font-weight: 600;
}

.about-page__address span {
  color: #1c6b5a;
  font-weight: 600;
}

.about-page__btn {
  display: inline-block;
  background: #1c6b5a;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
  transition: 0.3s;
}

.about-page__btn:hover {
  background: #145244;
}

/* --- Side Buttons --- */
.about-page__side-buttons {
  position: fixed;
  right: 0;
  top: 40%;
  display: flex;
  flex-direction: column;
  z-index: 99;
}

.about-page__side-btn {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: #1c6b5a;
  color: white;
  padding: 10px;
  font-weight: 600;
  text-align: center;
  border-radius: 5px 0 0 5px;
  margin-bottom: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.about-page__side-btn:hover {
  background: #145244;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .about-page__container {
    flex-direction: column;
    text-align: center;
  }
  .about-page__title {
    font-size: var(--font-size-title-mobile);
  }
.about-page__subtitle {

  font-size: 25px;
}
  .about-page__image-small {
    position: static;
    width: 50%;
    margin: 0 auto -40px;
  }

  .about-page__right {
    text-align: left;
  }
  .about-page__right h3 {
    margin-top: 0px;
  }
  .about-page__side-buttons {
    display: none;
  }
}



.nail-gallery-section {
  background-color: #f2f8f0;
  padding: 80px 0;
}

.nail-gallery-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.nail-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.nail-gallery-item {
  overflow: hidden;
  border-radius: 10px;
}

.nail-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.nail-gallery-item:hover img {
  transform: scale(1.05);
}

.nail-gallery-btn {
  text-align: center;
  margin-top: 40px;
}

.btn-appointment {
  background-color: #007f5a;
  color: #fff;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-appointment:hover {
  background-color: #015f45;
}

/* Responsive */
@media (max-width: 900px) {
  .nail-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .nail-gallery-grid {
    grid-template-columns: 1fr;
  }

  .nail-gallery-section {
    padding: 60px 0;
  }
}

/* contact.html */
.follow-section {
  background-color: #f2f8f0;
  padding: 80px 0;
}

.follow-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.follow-image img {
  width: 380px;
  /* border-radius: 12px; */
  /* border: 4px solid #b9e1c2; */
  object-fit: cover;
}

.follow-content {
  flex: 1;
  text-align: center;
}

.follow-text {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
}

.follow-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.follow-icon img {
  width: 45px;
  height: 45px;
  transition: transform 0.3s ease;
}

.follow-icon img:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 900px) {
  .follow-container {
    flex-direction: column;
    text-align: center;
  }

  .follow-image img {
    width: 300px;
  }

  .follow-text {
    font-size: 16px;
  }
}

.service-style-1 {
  background-color: #fbfffa;
  padding: 60px 20px;
  box-sizing: border-box;
}

.service-style-1__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.service-style-1__image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.service-style-1__image img {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-style-1__content {
  flex: 1.2;
  min-width: 320px;
}

.service-style-1__title {
  font-size: 32px;
  font-weight: 700;
  color: #1d1d1d;
  margin-bottom: 10px;
  margin-top: 0px;
}

.service-style-1__subtitle {
  color: #21704e;
  font-size: 20px;
  font-weight: 700;
  margin: 16px 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.service-style-1__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-style-1__list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px dashed #ccc;
  padding: 10px 0;
  flex-wrap: wrap;
}

.service-style-1__list .name {
  font-weight: 600;
  font-size: 18px;
  color: #222;
}

.service-style-1__list .price {
  font-weight: 600;
  font-size: 18px;
  color: #222;
}

.service-style-1__list .desc,
.service-style-1__content .desc {
  font-size: 16px;
  color: #555;
  font-style: italic;
  line-height: 1.5;
  margin-top: 6px;
  flex-basis: 100%;
  margin-bottom: 0px;
}
.service-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}
.service-row .name {
  font-weight: 600;
  font-size: 18px;
  color: #222;
}
.service-row .price {
  font-weight: 600;
  font-size: 18px;
  color: #222;
}
@media (max-width: 600px) {
  /* Cấu trúc chung */
  .service-style-1__content {
    box-sizing: border-box;
    position: relative;
    width: 100%;
  }

  .service-style-1__list,
  .service-rows,
  .service-row,
  .service-style-1__list li {
    width: 100%;
    box-sizing: border-box;
    padding-right: 0;
  }

  /* Căn cột giá */
  .service-style-1__list .price {
    margin-left: auto;
    text-align: right;
    min-width: 56px;
  }

  /* Layout dòng dịch vụ */
  .service-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    position: relative;
  }

  .service-row .name {
    flex: 1 1 auto;
    display: block;
    padding-right: 8px;
  }

  .service-row .price {
    flex: 0 0 auto;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
  }
}


.service-rows,
.service-row,
.service-style-1__list li {
  width: 100%;
}
.service-style-1__list .price {
  margin-left: auto; 
  text-align: right;
  min-width: 50px; 
}
.service-style-1.has-bg .service-style-1__title,
.service-style-1.has-bg .service-style-1__list .name,
.service-style-1.has-bg .service-style-1__list .price,
.service-style-1.has-bg .service-style-1__list .desc {
  color: #fff;
}
.service-style-1.has-bg .service-style-1__subtitle {
  color: #ace2b2;
}
@media (max-width: 900px) {
  .service-style-1__container {
    flex-direction: column;
    gap: 30px;
  }

  .service-style-1__image img {
    max-width: 100%;
  }
  .service-style-1.has-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.booking-section {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background-color: #fff;
}

.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 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%);
z-index: 9999;
}
.membership-popup .popup-slider {
  width: 100%;
  height: 100%;
  position: relative;
}
.membership-popup .popup-slider .slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.membership-popup .popup-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.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: 697px; */
  /* height: 697px; */
    width: 90vw;
  max-width: 610px;
  height: 90vw;
  max-height: 90vh;
  aspect-ratio: 1;
  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;
}
@media (max-width: 768px) {
  .membership-popup .popup-content {
    width: 90vw;
    height: auto;
    max-width: 500px;
    aspect-ratio: 1;
  }
  .membership-popup .popup-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}