:root {
  --font-body:
    "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-title: "Prata", serif;

  --container: 1400px;
  --header-h: 78px;

  --text: #1f2a2a;
  --muted: #6c7a7a;
  --line: rgba(0, 0, 0, 0.08);

  --brand: #4b3c3b;
  --danger: #4b3c3b;

  --bg: rgba(255, 255, 255, 0.92);
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--text);
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
}

/* =========================
   HEADER
========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 9999;
  background: var(--bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 140px;
}
.brand img {
  height: 70px;
  object-fit: contain;
  display: block;
}
.brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand .brand-text .name {
  font-family: var(--font-title);
  font-size: 18px;
}
.brand .brand-text .tag {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.nav-pc {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-pc a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 10px 2px;
  position: relative;
}
.nav-pc a.is-active {
  color: var(--brand);
  font-weight: 600;
}
.nav-pc a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--brand);
  border-radius: 999px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  background: linear-gradient(253deg, #a29b96 0%, #f3f7f8 54%, #a29b96 100%);
  color: #191919;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.6px;
  border: 0;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.btn-book:hover {
  transform: translateY(-3px);
  background: linear-gradient(253deg, #f3f7f8 0%, #a29b96 54%, #f3f7f8 100%);
}
.btn-book:active {
  transform: translateY(1px);
}

.btn-menu {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}
.burger {
  width: 18px;
  height: 12px;
  position: relative;
}
.burger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #222;
  border-radius: 999px;
  transition:
    transform 0.2s ease,
    top 0.2s ease,
    opacity 0.2s ease;
}
.burger span:nth-child(1) {
  top: 0;
}
.burger span:nth-child(2) {
  top: 5px;
}
.burger span:nth-child(3) {
  top: 10px;
}

/* Drawer */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 9998;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(86vw, 360px);
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 9999;
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
}
.drawer-head {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
}
.drawer-title {
  font-family: var(--font-title);
  font-size: 18px;
}
.drawer-close {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer-body {
  padding: 14px 10px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.drawer-body a {
  padding: 14px 12px;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: 1px solid transparent;
}
.drawer-body a:hover {
  background: rgba(10, 122, 85, 0.06);
  border-color: rgba(10, 122, 85, 0.18);
}
.drawer-body a.is-active {
  color: var(--brand);
  background: rgba(10, 122, 85, 0.08);
  border-color: rgba(10, 122, 85, 0.22);
}
.drawer-foot {
  margin-top: auto;
  padding: 16px;
  border-top: 1px solid var(--line);
}
.drawer-foot .btn-book {
  width: 100%;
  height: 46px;
  border-radius: 14px;
}

body.menu-open .drawer-overlay {
  opacity: 1;
  pointer-events: auto;
}
body.menu-open .drawer {
  transform: translateX(0);
}
body.menu-open .burger span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}
body.menu-open .burger span:nth-child(2) {
  opacity: 0;
}
body.menu-open .burger span:nth-child(3) {
  top: 5px;
  transform: rotate(-45deg);
}

/* Responsive header */
@media (max-width: 980px) {
  .nav-pc {
    display: none;
  }
  .btn-menu {
    display: flex;
  }
  .brand .brand-text {
    display: none;
  }
  .brand img {
    height: 65px;
  }
  .btn-book {
    height: 40px;
    padding: 0 14px;
    font-size: 12px;
  }
}

/* =========================
   HERO (SWIPER)
========================= */
.hero {
  position: relative;
  padding-top: var(--header-h);
  min-height: 720px;
  overflow: hidden;
  /* background: #f3f7d8; */
  background-image: url("../images/banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background:
    radial-gradient(1200px 600px at 75% 45%, rgba(255,255,255,.55), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.15)); */
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 48px 18px 56px;
}

.hero-swiper {
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 56px;
  align-items: center;
}

.hero-media {
  display: flex;
  justify-content: center;
}

.hero-card {
  width: 420px;
  aspect-ratio: 3 / 4;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.55);
}
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 64px;
  line-height: 1.05;
  margin: 0 0 18px;
  color: #1b1f1f;
}
.hero-title small {
  font-size: 30px;
}
.hero-title.style-2 {
  line-height: 0.7;
}
.hero-desc {
  margin: 0 0 22px;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(27, 31, 31, 0.78);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  background: linear-gradient(253deg, #a29b96 0%, #f3f7f8 54%, #a29b96 100%);
  color: #191919;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.6px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.hero-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(253deg, #f3f7f8 0%, #a29b96 54%, #f3f7f8 100%);
}
/* Swiper pagination style giống ảnh */
.hero-pagination {
  position: static !important;
  margin-top: 46px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background: rgba(90, 90, 90, 0.28);
  margin: 0 !important;
}
.hero-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 999px;
  background: var(--brand);
}

/* Responsive hero */
@media (max-width: 980px) {
  .hero-inner {
    padding: 34px 16px 48px;
  }
  .hero-title.style-2 {
    line-height: 1;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    justify-items: center;
    text-align: center;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-desc {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-card {
    width: min(420px, 92vw);
  }

  .hero-pagination {
    margin-top: 28px;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 640px;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-card {
    border-radius: 18px;
  }
  .hero-btn {
    height: 42px;
  }
}

/* =====================================================
   ABOUT SECTION
===================================================== */

.about {
  background: #f3f7f8; /* nền kem như ảnh */
  padding: 72px 0;
  background-image: url("/images/about-home-bg.png");
}

.about-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; /* ảnh lớn hơn chữ */
  gap: 70px;
  align-items: center;
}

/* LEFT */
.about-photo {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.7);
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* RIGHT */
.about-title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 52px;
  line-height: 1.1;
  margin: 0 0 18px;
  color: #1b1f1f;
}

.about-text {
  max-width: 520px;
}

.about-text p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(27, 31, 31, 0.78);
}

.about-text strong {
  color: #1b1f1f;
  font-weight: 700;
}

.about-btn {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  background: linear-gradient(253deg, #a29b96 0%, #f3f7f8 54%, #a29b96 100%);
  color: #191919;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.7px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* ======================
   RESPONSIVE
====================== */
@media (max-width: 980px) {
  .about {
    padding: 54px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .about-title {
    font-size: 40px;
    text-align: center;
  }

  .about-content {
    text-align: center;
  }

  .about-text {
    margin: 0 auto;
  }

  .about-btn {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 520px) {
  .about {
    padding: 44px 0;
  }

  .about-title {
    font-size: 34px;
  }

  .about-text p {
    font-size: 13.5px;
  }

  .about-photo {
    border-radius: 14px;
  }
}

/* =====================================================
   ABOUT ANIMATION
===================================================== */

/* trạng thái ban đầu (chưa hiện) */
.about-media,
.about-content {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

/* ảnh bay từ trái */
.about-media {
  transform: translateX(-60px);
}

/* chữ bay từ phải */
.about-content {
  transform: translateX(60px);
}

/* khi active */
.about.is-visible .about-media,
.about.is-visible .about-content {
  opacity: 1;
  transform: translate(0, 0);
}

/* nút delay thêm cho mượt */
.about-btn {
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  transition-delay: 0.2s;
}

.about.is-visible .about-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile: animation nhẹ hơn */
@media (max-width: 980px) {
  .about-media,
  .about-content {
    transform: translateY(30px);
  }
}
/* =====================================================
   MICRO INTERACTIONS – ABOUT
===================================================== */

/* ---------- IMAGE HOVER / FLOAT ---------- */
.about-photo {
  transition:
    transform 0.6s ease,
    box-shadow 0.6s ease;
}

/* hover desktop */
@media (hover: hover) {
  .about-photo:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
  }
}

/* mobile: breathing animation */
@media (hover: none) {
  .about-photo {
    animation: photoFloat 6s ease-in-out infinite;
  }
}

@keyframes photoFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ---------- BUTTON INTERACTION ---------- */
.about-btn {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* hover */
.about-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(253deg, #f3f7f8 0%, #a29b96 54%, #f3f7f8 100%);
}

/* click */
.about-btn:active {
  transform: translateY(0);
  background: linear-gradient(253deg, #f3f7f8 0%, #a29b96 54%, #f3f7f8 100%);
}

/* pulse when appear */
.about.is-visible .about-btn {
  animation: btnPulse 1.6s ease 1;
}

@keyframes btnPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(216, 19, 26, 0.4);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(216, 19, 26, 0);
  }
  100% {
    box-shadow: none;
  }
}

/* ---------- TEXT SLIGHT FLOAT ---------- */
.about.is-visible .about-title {
  animation: titleFloat 5s ease-in-out infinite;
}

@keyframes titleFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}

/* =====================================================
   SERVICES HOME
===================================================== */

.services-home {
  background: #ffffff;
  padding: 70px 0 80px;
}

.services-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

/* ---------- HEAD ---------- */
.services-head {
  text-align: center;
  margin-bottom: 34px;
}

.services-title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 52px;
  margin: 0 0 8px;
  color: #1b1f1f;
}

.services-ornament {
  display: inline-block;
  height: 22px;
  width: auto;
  opacity: 0.95;
}

/* ---------- SWIPER CONTAINER ---------- */
.services-swiper {
  width: 100%;
  padding-bottom: 56px;
}

/* ---------- CARD ---------- */
.service-card {
  display: block;
  text-align: center;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

/* ---------- IMAGE ---------- */
.service-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5f5f5;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.45s ease;
}

/* ---------- NAME ---------- */
.service-name {
  margin-top: 14px;
  padding: 10px 18px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #1b1f1f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

/* ---------- HOVER EFFECT ---------- */
@media (hover: hover) {
  .service-card:hover .service-thumb {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  }

  .service-card:hover .service-thumb img {
    transform: scale(1.08);
  }

  .service-card:hover .service-name {
    background: linear-gradient(253deg, #a29b96 0%, #f3f7f8 54%, #a29b96 100%);
    transform: scale(1.05);
  }
}

/* =====================================================
   SCROLL APPEAR / DISAPPEAR
===================================================== */

/* hidden state */
.services-home .services-head,
.services-home .service-card {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

/* visible */
.services-home.is-visible .services-head,
.services-home.is-visible .service-card {
  opacity: 1;
  transform: translateY(0);
}

/* stagger animation */
.services-home.is-visible .swiper-slide:nth-child(1) .service-card {
  transition-delay: 0.06s;
}
.services-home.is-visible .swiper-slide:nth-child(2) .service-card {
  transition-delay: 0.12s;
}
.services-home.is-visible .swiper-slide:nth-child(3) .service-card {
  transition-delay: 0.18s;
}
.services-home.is-visible .swiper-slide:nth-child(4) .service-card {
  transition-delay: 0.24s;
}

/* Pagination dots */
.services-pagination {
  position: static !important;
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.services-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background: rgba(90, 90, 90, 0.28);
  margin: 0 !important;
}

.services-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 999px;
  background: var(--brand);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 980px) {
  .services-title {
    font-size: 40px;
  }
}

@media (max-width: 520px) {
  .services-home {
    padding: 54px 0 62px;
  }

  .services-title {
    font-size: 34px;
  }

  .services-ornament {
    height: 18px;
  }

  .services-swiper {
    padding-bottom: 48px;
  }
}
/* =====================================================
   CTA APPOINTMENT (full background)
===================================================== */

.cta-appointment {
  position: relative;
  padding: 92px 0;
  background: #0f1a16;
  background-image: url("../images/appointment-bg.png"); /* <-- thay ảnh nền ở đây */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* overlay tối như hình */
.cta-appointment::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
}

/* lớp vignette nhẹ cho sang */
.cta-appointment::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    closest-side,
    rgba(255, 255, 255, 0.08),
    transparent 60%
  );
  z-index: 0;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 18px;
  text-align: center;
  color: #fff;
}

.cta-title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 54px;
  line-height: 1.1;
  margin: 0 0 8px;
}

.cta-subtitle {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 28px;
  margin: 0 0 14px;
  opacity: 0.95;
}

.cta-ornament {
  display: inline-block;
  height: 20px;
  width: auto;
  margin: 4px 0 18px;
  opacity: 0.95;
}

.cta-desc {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.92;
}

.cta-phone {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: opacity 0.2s ease;
}
.cta-phone:hover {
  opacity: 0.82;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border-radius: 4px;
  background: linear-gradient(253deg, #a29b96 0%, #f3f7f8 54%, #a29b96 100%);
  color: #191919;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.7px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

@media (hover: hover) {
  .cta-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(253deg, #f3f7f8 0%, #a29b96 54%, #f3f7f8 100%);
  }
  .cta-btn:active {
    transform: translateY(0);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.22);
  }
}

/* =====================================================
   Scroll appear / disappear
===================================================== */
.cta-inner {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.cta-appointment.is-visible .cta-inner {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   Responsive
===================================================== */
@media (max-width: 980px) {
  .cta-appointment {
    padding: 72px 0;
  }
  .cta-title {
    font-size: 40px;
  }
  .cta-subtitle {
    font-size: 22px;
  }
  .cta-desc {
    font-size: 16px;
  }
}

@media (max-width: 520px) {
  .cta-appointment {
    padding: 56px 0;
  }
  .cta-title {
    font-size: 32px;
  }
  .cta-subtitle {
    font-size: 18px;
  }
  .cta-ornament {
    height: 16px;
  }
  .cta-desc {
    font-size: 14.5px;
  }
  .cta-btn {
    height: 42px;
    padding: 0 18px;
  }
}

/* =====================================================
   HOME GALLERY
===================================================== */

.home-gallery {
  background: #ffffff;
  padding: 70px 0 80px;
}

.home-gallery-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

.home-gallery-head {
  text-align: center;
  margin-bottom: 26px;
}

.home-gallery-title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 52px;
  margin: 0 0 8px;
  color: #1b1f1f;
}

.home-gallery-ornament {
  display: inline-block;
  height: 22px;
  width: auto;
  opacity: 0.95;
}

/* ===== Desktop collage ===== */
.gallery-desktop {
  display: block;
}

.gallery-collage {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1180px;
  margin: 0 auto;
}

/* ===== Mobile slider ===== */
.gallery-mobile {
  display: none;
}

.gallery-swiper {
  width: 100%;
  padding: 4px 0 10px;
}

.gallery-swiper .swiper-slide {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  background: #f4f4f4;
}

.gallery-swiper img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* Pagination */
.gallery-pagination {
  position: static !important;
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.gallery-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: rgba(90, 90, 90, 0.28);
  margin: 0 !important;
}

.gallery-pagination .swiper-pagination-bullet-active {
  width: 26px;
  border-radius: 999px;
  background: var(--brand);
}

/* Button */
.home-gallery-foot {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.home-gallery-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border-radius: 6px;
  background: linear-gradient(253deg, #a29b96 0%, #f3f7f8 54%, #a29b96 100%);
  color: #191919;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.7px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

@media (hover: hover) {
  .home-gallery-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(253deg, #f3f7f8 0%, #a29b96 54%, #f3f7f8 100%);
  }
  .home-gallery-btn:active {
    transform: translateY(0);
  }
}

/* ===== Responsive switch ===== */
@media (max-width: 980px) {
  .home-gallery {
    padding: 54px 0 62px;
  }

  .home-gallery-title {
    font-size: 40px;
  }

  .home-gallery-ornament {
    height: 18px;
  }

  /* Mobile: hide collage, show slider */
  .gallery-desktop {
    display: none;
  }
  .gallery-mobile {
    display: block;
  }
}

@media (max-width: 520px) {
  .home-gallery-title {
    font-size: 34px;
  }
  .gallery-swiper img {
    height: 450px;
  }
}

/* =====================================================
   TESTIMONIALS (Happy Customers)
===================================================== */

.testimonials {
  position: relative;
  padding: 70px 0 80px;
  background-image: url("../images/banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      1200px 600px at 50% 10%,
      rgba(255, 255, 255, 0.55),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.18));
  z-index: 0;
}

.testimonials-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

.testimonials-head {
  text-align: center;
  margin-bottom: 28px;
}

.testimonials-title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 52px;
  margin: 0 0 8px;
  color: #1b1f1f;
}

.testimonials-ornament {
  display: inline-block;
  height: 22px;
  width: auto;
  opacity: 0.95;
}

/* Swiper spacing */
.testimonials-swiper {
  padding: 18px 0 6px;
}

/* Card */
.t-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  padding: 26px 22px 22px;
  /* box-shadow: 0 16px 40px rgba(0,0,0,.10); */
  min-height: 300px;
  text-align: center;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.t-avatar {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto 14px;
  border: 3px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.t-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.t-name {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: #1b1f1f;
  margin-bottom: 10px;
}

.t-name span {
  font-weight: 600;
  color: rgba(27, 31, 31, 0.65);
}

.t-quote {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(27, 31, 31, 0.78);
  font-style: italic;
}

/* Hover nâng card (PC) */
@media (hover: hover) {
  .swiper-slide-active .t-card,
  .t-card:hover {
    transform: translateY(-6px);
    /* box-shadow: 0 22px 52px rgba(0,0,0,.16); */
  }
}

/* Pagination dots */
.testimonials-pagination {
  position: static !important;
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.testimonials-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background: rgba(90, 90, 90, 0.28);
  margin: 0 !important;
}

.testimonials-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 999px;
  background: var(--brand);
}

/* =====================================================
   Scroll appear / disappear
===================================================== */

.testimonials-head,
.testimonials-swiper {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.testimonials.is-visible .testimonials-head,
.testimonials.is-visible .testimonials-swiper {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   Responsive
===================================================== */

@media (max-width: 980px) {
  .testimonials {
    padding: 56px 0 62px;
  }

  .testimonials-title {
    font-size: 40px;
  }

  .testimonials-ornament {
    height: 18px;
  }

  .t-card {
    min-height: 280px;
    padding: 22px 18px 18px;
  }
}

@media (max-width: 520px) {
  .testimonials-title {
    font-size: 34px;
  }
  .t-quote {
    font-size: 13.5px;
  }
}

/* =====================================================
   FOOTER
===================================================== */

.site-footer {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 60px 0;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.6fr 0.85fr 1fr;
  gap: 44px;
  align-items: start;
}

/* Titles */
.footer-title {
  margin: 0 0 16px;
  font-size: 16px;
  letter-spacing: 0.4px;
  font-weight: 800;
  color: var(--brand);
  text-transform: uppercase;
}

/* Text */
.footer-text {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(27, 31, 31, 0.78);
  max-width: 420px;
}

/* Small keyword links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.footer-links a {
  color: #508ba5;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.footer-links a:hover {
  opacity: 0.85;
}

.footer-copy {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(27, 31, 31, 0.7);
}
/* ---------- SOCIAL ICON SVG ---------- */
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.social-btn img {
  width: 32px;
  height: 32px;
  display: block;
}

/* hover */
@media (hover: hover) {
  .social-btn:hover {
    transform: translateY(-2px);
    background: var(--brand);
  }
}

/* Footer nav links */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-size: 14px;
  color: rgba(27, 31, 31, 0.82);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.footer-nav a:hover {
  opacity: 0.85;
}

/* Location info */
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.info-label {
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 4px;
  color: #1b1f1f;
}
.info-value {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(27, 31, 31, 0.78);
}
.info-value a {
  color: rgba(27, 31, 31, 0.78);
  text-decoration: none;
}
.info-value a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* MAP */
.footer-map {
  display: flex;
  justify-content: flex-end;
}

.footer-map iframe {
  width: 100%;
  max-width: 320px; /* giống ô xám ảnh mẫu */
  height: 240px; /* chiều cao map */
  border: 0;
  border-radius: 0;
  background: #d9d9d9;
}

/* ======================
   RESPONSIVE
====================== */
@media (max-width: 980px) {
  .site-footer {
    padding: 44px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-map {
    justify-content: flex-start;
  }

  .map-iframe {
    max-width: 100%;
    height: 260px;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .map-iframe {
    height: 260px;
  }
}

/* =====================================================
   PAGE BANNER (About)
===================================================== */

.page-banner {
  position: relative;
  padding-top: var(--header-h); /* tránh header fixed che */
  min-height: 330px; /* giống hình */
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-banner--about {
  background-image: url("../images/about/banner.png"); /* <-- thay ảnh nền ở đây */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-banner-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 36px 18px;
  text-align: center;
}

.page-banner-title {
  margin: 0 0 6px;
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.1;
  color: var(--brand);
}

.page-banner-subtitle {
  margin: 0;
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 22px;
  color: rgba(27, 31, 31, 0.78);
}

/* Responsive */
@media (max-width: 980px) {
  .page-banner {
    min-height: 210px;
  }
  .page-banner-title {
    font-size: 44px;
  }
  .page-banner-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 520px) {
  .page-banner {
    min-height: 190px;
  }
  .page-banner-title {
    font-size: 36px;
  }
  .page-banner-subtitle {
    font-size: 16px;
  }
}

/* =====================================================
   ABOUT PAGE CONTENT (cream bg + white card)
===================================================== */

.about-page-content {
  padding: 56px 0 0px;
  background-image: url("/images/about/about-bg.png");
}

.about-box {
  max-width: var(--container);
  margin: 0 auto;
  background: #ffffff;
  border-radius: 8px;
  padding: 34px 38px 40px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.about-box-media {
  border-radius: 4px;
  overflow: hidden;
  background: #f2f2f2;
}

.about-box-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-box-title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 34px;
  line-height: 1.2;
  text-align: center;
  margin: 22px 0 14px;
  color: #1b1f1f;
}

.about-box-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: center; /* giống ảnh */
  color: #1b1f1f;
}
.about-box-text strong {
  font-weight: 500;
}
.about-box-text p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.8;
  /* color: rgba(27, 31, 31, 0.78); */
}
.about-box-title-sub {
  margin: 18px 0 8px; /* khoảng cách như ảnh */
  font-size: 18px;
  line-height: 1.25;
  font-weight: 500;
}
.about-box-actions {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.about-box-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 20px;
  border-radius: 6px;
  background: linear-gradient(253deg, #a29b96 0%, #f3f7f8 54%, #a29b96 100%);
  color: #191919;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.7px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

@media (hover: hover) {
  .about-box-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(253deg, #f3f7f8 0%, #a29b96 54%, #f3f7f8 100%);
  }
  .about-box-btn:active {
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 980px) {
  .about-page-content {
    padding: 44px 0 70px;
  }
  .why-choose__title {
    font-size: 24px !important;
  }
  .about-box {
    max-width: 92vw;
    padding: 26px 18px 30px;
    border-radius: 10px;
  }

  .about-box-title {
    font-size: 28px;
  }
}

@media (max-width: 520px) {
  .about-box-title {
    font-size: 24px;
  }

  .about-box-text p {
    font-size: 16px;
  }
}

/* =====================================================
   SERVICES PAGE MENU (cream bg like About)
===================================================== */

.services-page {
  background: #f3f7f8;
  padding: 20px 0 20px;
}

.services-menu {
  max-width: var(--container);
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  padding: 34px 38px 40px;
  border: 1px solid rgba(0, 0, 0, 0.04);

  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 38px;
  align-items: start;
}

/* left image */
.services-menu-media {
  background: #f2f2f2;
  border-radius: 4px;
  overflow: hidden;
}

.services-menu-media img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* title */
.services-menu-title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 34px;
  text-align: center;
  margin: 0px;
  color: #1b1f1f;
}

/* item */
.menu-item {
  padding: 12px 0 14px;
}

/* TOP: name --- line --- price */
.menu-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.menu-name {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.3px;
  color: var(--brand);
  text-transform: uppercase;
}

.menu-line {
  height: 1px;
  background: rgba(10, 122, 85, 0.22);
  transform: translateY(2px);
}

.menu-price {
  font-weight: 800;
  font-size: 18px;
  color: #1b1f1f;
}

/* desc */
.menu-desc {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(27, 31, 31, 0.78);
  font-style: italic; /* trong ảnh phần mô tả là italic */
}

/* divider between items (như ảnh) */
.menu-item + .menu-item {
  /* border-top: 1px solid rgba(10,122,85,.18); */
}

/* subtitle */
.menu-subtitle {
  margin-top: 18px;
  padding-top: 14px;
  /* border-top: 1px solid rgba(10,122,85,.18); */
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.3px;
  color: var(--brand);
  text-transform: uppercase;
}

/* rows (Classic Shellac...) */
.menu-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  /* border-top: 1px solid rgba(10,122,85,.18); */
}

.row-name {
  font-size: 18px;
  color: #1b1f1f;
}

.row-line {
  height: 1px;
  background: rgba(10, 122, 85, 0.22);
  transform: translateY(2px);
}

.row-price {
  font-weight: 800;
  font-size: 18px;
  color: #1b1f1f;
}

.menu-note {
  font-size: 18px;
  color: rgba(27, 31, 31, 0.7);
  margin: 10px 0 6px;
  font-style: italic;
}
.services-menu-subnote {
  text-align: center;
}
/* Responsive */
@media (max-width: 980px) {
  .services-menu {
    max-width: 92vw;
    padding: 26px 18px 30px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .services-menu-media {
    max-width: 420px;
    margin: 0 auto;
  }

  .services-menu-title {
    font-size: 30px;
  }
}

@media (max-width: 520px) {
  .services-menu-title {
    font-size: 30px;
  }
}

/* ===== Nail Services style (compact rows) ===== */
.menu-row--tight {
  padding: 9px 0;
}

.menu-row--tight .row-name {
  font-size: 18px;
}

.menu-row--tight .row-price {
  font-weight: 700;
}

/* ADD-ON: trong ảnh nó cách ra một chút */
.services-menu-content .menu-subtitle {
  margin-top: 18px;
}
/* Kids menu subtitle center */
.menu-subtitle--center {
  text-align: center;
  border-top: 0; /* menu này subtitle không cần gạch top như kiểu cũ */
  padding-top: 0;
  margin: 18px 0 10px;
  color: var(--brand);
  text-transform: none; /* giống ảnh: không viết hoa hết */
  letter-spacing: 0.2px;
  font-weight: 800;
}

/* =====================================================
   GALLERY PAGE (Grid + Lightbox)
===================================================== */

.gallery-page {
  padding: 56px 0 90px;
  background: #f3f7f8;
}

.gallery-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

/* Item */
.gallery-item {
  display: block;
  overflow: hidden;
  /* background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1); */
}

.gallery-page .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.35s ease;
  border-radius: 36px 0 36px 0;
}

/* Hover zoom nhẹ (PC) */
@media (hover: hover) {
  .gallery-page .gallery-item:hover img {
    transform: scale(1.06);
  }
}

/* Tablet */
@media (max-width: 980px) {
  .gallery-page {
    padding: 44px 0 70px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
}

/* Mobile: 2 ảnh / hàng */
@media (max-width: 520px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
}

/* =====================================================
   FIX FANCYBOX - Đảm bảo ảnh hiển thị đúng trong popup
===================================================== */
.fancybox__container img,
.fancybox__slide img,
.fancybox__content img {
  width: auto !important;
  height: auto !important;
  max-width: 90vw !important;
  max-height: 90vh !important;
  object-fit: contain !important;
  aspect-ratio: auto !important;
  transform: none !important;
}
/* =====================================================
   CONTACT MAP + BUSINESS HOURS (separate from footer map)
===================================================== */

.contact-map-hours {
  background: #f3f7f8;
  padding: 56px 0 90px;
}

.contact-map-hours__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;

  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 34px;
  align-items: start;
}

/* MAP */
.contact-map-hours__map-embed {
  width: 100%;
  height: 430px; /* chỉnh chiều cao map ở đây */
  background: #d9d9d9; /* fallback khi chưa có iframe */
  overflow: hidden;
}

.contact-map-hours__map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* HOURS BOX */
.contact-map-hours__hours {
  background: #fff; /* trong ảnh box hơi cùng tông nền */
  border: 1px solid #508ba5;
  padding: 34px 34px 26px;
}

.contact-map-hours__title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 34px;
  text-align: center;
  margin: 0 0 18px;
  color: #1b1f1f;
}

.contact-map-hours__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-map-hours__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 10px 0;
  border-top: 1px solid rgba(27, 31, 31, 0.18);
  font-size: 14px;
}

.contact-map-hours__row:first-child {
  border-top: 0;
}

.contact-map-hours__row .day {
  color: rgba(27, 31, 31, 0.88);
}

.contact-map-hours__row .time {
  color: rgba(27, 31, 31, 0.88);
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 980px) {
  .contact-map-hours {
    padding: 44px 0 70px;
  }

  .contact-map-hours__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-map-hours__map-embed {
    height: 360px;
  }

  .contact-map-hours__hours {
    padding: 28px 20px 18px;
  }

  .contact-map-hours__title {
    font-size: 28px;
  }
}

@media (max-width: 520px) {
  .contact-map-hours__map-embed {
    height: 300px;
  }

  .contact-map-hours__title {
    font-size: 24px;
  }

  .contact-map-hours__row {
    font-size: 13.5px;
  }
}

.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: 90vh; /* thấp hơn chút cho mobile */
    border-radius: 6px;
  }
}

.floating-icons {
  position: fixed;
  top: 40%;
  right: 0px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.floating-icons a {
  background: linear-gradient(253deg, #a29b96 0%, #f3f7f8 54%, #a29b96 100%);

  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
}

.floating-icons a:hover {
  /* background: #555; */
  background: linear-gradient(253deg, #f3f7f8 0%, #a29b96 54%, #f3f7f8 100%);
}

.floating-icons img {
  width: 22px;
  height: 22px;
  transition: transform 0.3s;
}

.floating-icons a:hover img {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .floating-icons {
    top: 26%;
  }
}

.why-choose {
  padding: 64px 16px;
}

.why-choose__container {
  max-width: 1200px;
  margin: auto;
}

.why-choose__title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 32px;
  font-weight: 400;
  font-family: var(--font-title);
}

.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.why-card {
  border: 1px solid #508ba5;
  border-radius: 8px;
  padding: 22px 14px;
  text-align: center;
  min-height: 160px;

  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;

  /* reveal default */
  opacity: 0;
  transform: translateY(20px) scale(0.96);
}

.why-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.why-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
}

.why-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 0.25s ease;
}

.why-card__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

/* HOVER */
.why-card:hover {
  background: #508ba5;
  box-shadow: 0 12px 26px rgba(16, 24, 40, 0.12);
  transform: translateY(-6px) scale(1.05);
}

.why-card:hover .why-card__text {
  color: #fff;
}

.why-card:hover img {
  filter: brightness(0) invert(1);
}

/* Responsive */
@media (max-width: 1100px) {
  .why-choose__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .why-choose__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .why-choose__grid {
    grid-template-columns: 1fr;
  }
}

.cta-visit {
  position: relative;
  min-height: 420px;
  background: url("/images/about/cta-bg.png") center / cover no-repeat; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 60px 16px;
  overflow: hidden;
}

/* lớp phủ tối */
.cta-visit__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.cta-visit__content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}

.cta-visit__content h2 {
  font-size: 34px;
  font-family: var(--font-title);
  font-weight: 500;
  margin-bottom: 18px;
}

.cta-visit__content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-visit__content strong {
  color: #fff;
  font-weight: 600;
}

.cta-visit__content .btn-book {
  margin-top: 18px;
}
