/* ===== IMPORTS & ROOT ===== */
@import url("https://fonts.googleapis.com/css2?family=Arsenal:ital,wght@0,400;0,700;1,400;1,700&family=Arizonia&display=swap");

:root {
  --main-bg: #B70505;
  --header-bg: #edf6ec;
  --accent: #B70505;
  --text-main: #222;
  --text-light: #151515;
  --max-width: 1200px;
  --font-main: "Arsenal", sans-serif;
  --font-script: "Arsenal", sans-serif;
  --font-size-base: 18px;
  --font-size-title: 50px;
  --font-size-heading: 20px;
  --font-size-title-mobile: 50px;
  --header-height: 90px;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  background: #FFF2F2;
  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: #b70505;
  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: var(--accent);
  opacity: 1;
}
.gallery-title {
  font-family: var(--font-script);
  font-size: var(--font-size-title);
  color: #151515;
  margin-bottom: 40px;
  margin-top: 0px;
  font-weight: 600;
}
.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: var(--accent);
  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: var(--accent);
}
@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: var(--accent);
  border: 2px solid var(--accent);
}

.fixed-buttons .booking {
  background-color: var(--accent);
  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(255, 255, 255, 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);
  overflow: visible; /* Cho phép logo vượt qua chiều cao header */
  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: 0px 8px 20px;
  background: transparent; /* giữ trong suốt */
  overflow: visible; /* Cho phép logo vượt qua container */
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 100%; /* Chiếm full chiều cao header */
}

/* Logo */
.logo {
  position: relative;
  z-index: 10; /* Đảm bảo logo hiển thị trên các element khác */
}

.logo img {
  width: 85px;
  height: 100px; /* Chiều cao lớn hơn header (90px) */
  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: 16px;
  background: rgb(255, 255, 255); 

}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .header__container {
    padding: 12px 0px;
  }

  .logo img {
    width: auto;
    height: 80px; /* Chiều cao lớn hơn header mobile */
    max-width: 70px; /* Giới hạn width tối đa */
  }
  .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: 600;
  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: #fff;
  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: var(--accent);
  margin-bottom: 10px;
  font-weight: 600;
  margin-top: 10px;
}

.about-right h2 {
  font-family: var(--font-main);
  color: #444;
  font-size: 30px;
  font-weight: 600;
  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-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: #151515;
  margin-bottom: 50px;
  margin-top: 0px;
  font-weight: 600;
}

.services-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.service-item {
  width: 240px;
  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: #FFE0E0;
  color: #000;
  font-weight: 700;
  padding: 10px 0;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.service-item:hover {
  z-index: 2;
}
.service-item:hover .service-image img {
  transform: scale(1.1);
}

.service-item:hover .service-name {
  background-color: var(--accent);
  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) {
  .service-item {
    /* width: 100%; mỗi hàng 1 cột */
  }

  .services-title {
    font-size: var(--font-size-title-mobile);
    margin-bottom: 10px;
  }

  .services-section {
    padding: 25px 10px;
  }
}

/* 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;
}

/* ===== 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;
  line-height: 1.4;
}
.footer-about b {
  color: #fff;
}
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  font-size: 16px;
}
.footer-contact-list li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact-list i {
  color: #fff;
  min-width: 18px;
}
.footer-social {
  margin-top: 8px;
}
.footer-social a {
  color: #fff;
  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: #151515;
  margin-bottom: 0px;
  font-weight: 600;
  margin-top: 0px;
}
.testimonial-section .sub-title {
  font-style: italic;
  margin-top: 0px;
  margin-bottom: 30px;
  font-size: 20px;
}
.testimonialSwiper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonial-item {
  background: #FFF2F2;
  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: 22px;
  margin-bottom: 8px;
  color: #111;
}

.testimonial-icon img {
  width: 48px;
  height: auto;
  margin-bottom: 12px;
}

.testimonial-content {
  font-size: 18px;
  color: #222;
  font-style: italic;
  line-height: 1.5;
}

.testimonial-section .swiper-pagination {
  margin-top: 18px;
  position: static;
}

.testimonial-section .swiper-pagination-bullet {
  background: var(--accent);
  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: var(--accent);
  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 */

/* --- Common layout --- */
.about-page {
  font-family: var(--font-main);
  margin-top: var(--header-height); 
}

/* --- Header --- */
.about-page__header {
  background: #fff;
  border-bottom: 2px solid #FFC3C3;
  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: var(--accent);
  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: var(--accent);
  font-weight: 600;
}

.about-page__address span {
  color: var(--accent);
  font-weight: 600;
}

.about-page__btn {
  display: inline-block;
  background: var(--accent);
  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: var(--accent);
  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: var(--accent);
  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: #910c0c;
}

/* 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: #fff;
  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: 450px;
  /* 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;
  }
}
.services-page {
  padding: 20px 0;
  background-color: #FFF8F8;
}

.services-page.has-bg {
  background-size: cover;
  background-position: center;
  color: #fff;
}

.services-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.services-page .service-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.services-page .service-image {
  flex: 1 1 45%;
  height: auto;
}

.services-page .service-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.services-page .service-details {
  flex: 1 1 50%;
}

.services-page .service-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.services-page .service-item {
  margin-bottom: 20px;
  border-bottom: 1px dashed #ccc;
  /* padding-bottom: 20px; */
  width: 100%;
  text-align: start;
}
.services-page .service-item:last-child{
  border-bottom: none;
}
.services-page .service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.services-page .service-header h3 {
  font-size: 25px;
  font-weight: 600;
  margin: 0;
}

.services-page .service-header .price {
  font-size: 25px;
  font-weight: 600;
}

.services-page .service-item p {
  margin: 5px 0 0px;
  font-weight: 500;
}

.services-page .service-item ul {
  list-style: none;
  padding-left: 0;
  line-height: 1.7;
  /* color: #444; */
  margin-top: 0px;
}

.services-page .service-item ul li {
  position: relative;
  padding-left: 15px;
  font-style: italic;
}

.services-page .service-item ul li::before {
  content: "-";
  position: absolute;
  left: 0;
}

@media (max-width: 768px) {
  .services-page .service-content {
    gap: 0;
    flex-direction: column;
  }

  .services-page .service-image,
  .services-page .service-details {
    flex: 1 1 100%;
    width: 100%;
  }

  .services-page .service-title {
    font-size: 26px;
    text-align: center;
  }

 .services-page .service-header {
    flex-direction: row; /* vẫn nằm cùng hàng */
    align-items: center;
    justify-content: space-between;
    gap: 8px; /* tạo khoảng cách nhỏ */
    align-items: flex-start;
  }

  .services-page .service-header h3 {
    font-size: 18px; /* giảm nhẹ kích thước cho vừa màn */
  }

  .services-page .service-header .price {
    white-space: nowrap; /* tránh bị xuống dòng */
     margin-top: 0;
    font-size: 18px;

  }


}


.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 h3 {
  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 h3 {
    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 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);
}

.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;
  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;
}




/* Action Buttons */
.popup-actions {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  width: 90%;
  justify-content: center;
}

.btn-popup-booking,
.btn-popup-call {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-popup-booking {
  background: #8B1538;
  color: white;
}

.btn-popup-booking:hover {
  background: #a91a42;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 21, 56, 0.4);
}

.btn-popup-call {
  background: transparent;
  color: #8B1538;
  border: 2px solid #8B1538;
}

.btn-popup-call:hover {
  background: #8B1538;
  color: white;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .popup-content {
    width: 90vw;
    height: auto;
    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);
  }
  
  .slide-dots {
    bottom: 80px;
  }
  
  .popup-actions {
    bottom: 15px;
    flex-direction: column;
    gap: 10px;
  }
  
  .btn-popup-booking,
  .btn-popup-call {
    padding: 10px 15px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .popup-content {
    width: 95vw;
    height: auto;
    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);
    }
  }
}


.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;
  }
}
