: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,.08);

  --brand: #0a7a55;
  --danger: #d8131a;

  --bg: rgba(255,255,255,.92);
  --shadow: 0 8px 24px rgba(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: 56px;
  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: .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: var(--danger);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .6px;
  border: 0;
  cursor:pointer;
  user-select:none;
  white-space:nowrap;
  box-shadow: 0 10px 18px rgba(216,19,26,.18);
}
.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,.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 .2s ease, top .2s ease, opacity .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,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .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 .25s ease;
  z-index: 9999;
  box-shadow: -20px 0 40px rgba(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:.3px;
  border: 1px solid transparent;
}
.drawer-body a:hover{
  background: rgba(10,122,85,.06);
  border-color: rgba(10,122,85,.18);
}
.drawer-body a.is-active{
  color: var(--brand);
  background: rgba(10,122,85,.08);
  border-color: rgba(10,122,85,.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:52px;}
  .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,.78);
  box-shadow: 0 16px 44px rgba(0,0,0,.12);
  border: 1px solid rgba(255,255,255,.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-desc{
  margin: 0 0 22px;
  max-width: 520px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(27,31,31,.78);
}

.hero-btn{
  display: inline-flex;
  align-items:center;
  justify-content:center;
  height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--danger);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .6px;
  box-shadow: 0 12px 20px rgba(216,19,26,.18);
}

/* 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,.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-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: #fbfaee; /* nền kem như ảnh */
  padding: 72px 0;
}

.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,.12);
  background: rgba(255,255,255,.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,.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: var(--danger);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .7px;
  box-shadow: 0 12px 20px rgba(216,19,26,.18);
}

/* ======================
   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 .8s ease, transform .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 .6s ease, transform .6s ease;
  transition-delay: .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 .6s ease, box-shadow .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,.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 .25s ease, box-shadow .25s ease;
}

/* hover */
.about-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(216,19,26,.35);
}

/* click */
.about-btn:active{
  transform: translateY(0);
  box-shadow: 0 10px 18px rgba(216,19,26,.25);
}

/* 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,.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: .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,.10);
  transition: transform .35s ease, box-shadow .35s ease;
}

.service-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .45s ease;
}

/* ---------- NAME ---------- */
.service-name{
  margin-top: 14px;
  padding: 10px 18px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .2px;
  color: #1b1f1f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition:
    background .3s ease,
    color .3s ease,
    transform .3s ease;
}

/* ---------- HOVER EFFECT ---------- */
@media (hover:hover){
  .service-card:hover .service-thumb{
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,.16);
  }

  .service-card:hover .service-thumb img{
    transform: scale(1.08);
  }

  .service-card:hover .service-name{
    background: var(--danger);
    color: #ffffff;
    transform: scale(1.05);
  }
}

/* =====================================================
   SCROLL APPEAR / DISAPPEAR
===================================================== */

/* hidden state */
.services-home .services-head,
.services-home .service-card{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .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: .06s; }
.services-home.is-visible .swiper-slide:nth-child(2) .service-card{ transition-delay: .12s; }
.services-home.is-visible .swiper-slide:nth-child(3) .service-card{ transition-delay: .18s; }
.services-home.is-visible .swiper-slide:nth-child(4) .service-card{ transition-delay: .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,.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,.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: .95;
}

.cta-ornament{
  display: inline-block;
  height: 20px;
  width: auto;
  margin: 4px 0 18px;
  opacity: .95;
}

.cta-desc{
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.7;
  opacity: .92;
}

.cta-phone{
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: opacity .2s ease;
}
.cta-phone:hover{ opacity: .82; }

.cta-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border-radius: 4px;
  background: #fff;
  color: var(--danger);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .7px;
  box-shadow: 0 14px 26px rgba(0,0,0,.20);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

@media (hover:hover){
  .cta-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(0,0,0,.28);
    background: #fff;
  }
  .cta-btn:active{
    transform: translateY(0);
    box-shadow: 0 12px 22px rgba(0,0,0,.22);
  }
}

/* =====================================================
   Scroll appear / disappear
===================================================== */
.cta-inner{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .55s ease, transform .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: .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,.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,.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: var(--danger);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .7px;
  box-shadow: 0 12px 20px rgba(216,19,26,.18);
  transition: transform .25s ease, box-shadow .25s ease;
}

@media (hover:hover){
  .home-gallery-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(216,19,26,.28);
  }
  .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: 280px; }
}


/* =====================================================
   TESTIMONIALS (Happy Customers)
===================================================== */

.testimonials{
  position: relative;
  padding: 70px 0 80px;
  background: #f3f7d8;
  background-image: url("../images/banner.png"); /* đổi ảnh nền lá nếu bạn muốn */
  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,.55), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.50), rgba(255,255,255,.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: .95;
}

/* Swiper spacing */
.testimonials-swiper{
  padding: 18px 0 6px;
}

/* Card */
.t-card{
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(255,255,255,.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 .35s ease, box-shadow .35s ease;
}

.t-avatar{
  width: 62px;
  height: 62px;
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto 14px;
  border: 3px solid rgba(255,255,255,.85);
  box-shadow: 0 10px 20px rgba(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: .3px;
  color: #1b1f1f;
  margin-bottom: 10px;
}

.t-name span{
  font-weight: 600;
  color: rgba(27,31,31,.65);
}

.t-quote{
  font-size: 14px;
  line-height: 1.7;
  color: rgba(27,31,31,.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,.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 .55s ease, transform .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,.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 .6fr .85fr 1fr;
  gap: 44px;
  align-items: start;
}

/* Titles */
.footer-title{
  margin: 0 0 16px;
  font-size: 16px;
  letter-spacing: .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,.78);
  max-width: 420px;
}

/* Small keyword links */
.footer-links{
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.footer-links a{
  color: var(--brand);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.footer-links a:hover{ opacity: .85; }

.footer-copy{
  margin-top: 18px;
  font-size: 13px;
  color: rgba(27,31,31,.7);
}
/* ---------- SOCIAL ICON SVG ---------- */
.social-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: transform .2s ease, background .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,.82);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.footer-nav a:hover{ opacity: .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,.78);
}
.info-value a{
  color: rgba(27,31,31,.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;
  background: #f3f7d8;
}

.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;
}

/* overlay sáng mềm */
.page-banner::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 420px at 50% 0%, rgba(255,255,255,.55), transparent 60%),
    linear-gradient(90deg, rgba(255,255,255,.28), rgba(255,255,255,.10));
  z-index:0;
}

.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,.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{
  background: #fbfaee;            /* nền kem như hình */
  padding: 56px 0 90px;
}

.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,.10);
  border: 1px solid rgba(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: 760px;
  margin: 0 auto;
}

.about-box-text p{
  margin: 0 0 14px;
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(27,31,31,.78);
}

.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: var(--danger);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .7px;
  box-shadow: 0 12px 20px rgba(216,19,26,.18);
  transition: transform .25s ease, box-shadow .25s ease;
}

@media (hover:hover){
  .about-box-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(216,19,26,.28);
  }
  .about-box-btn:active{
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 980px){
  .about-page-content{
    padding: 44px 0 70px;
  }

  .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: 13px;
  }
}

/* =====================================================
   SERVICES PAGE MENU (cream bg like About)
===================================================== */

.services-page{
  background: #fbfaee;
  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,.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: 0 0 18px;
  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: .3px;
  color: var(--brand);
  text-transform: uppercase;
}

.menu-line{
  height: 1px;
  background: rgba(10,122,85,.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,.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: .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,.22);
  transform: translateY(2px);
}

.row-price{
  font-weight: 800;
  font-size: 18px;
  color: #1b1f1f;
}

.menu-note{
  font-size: 18px;
  color: rgba(27,31,31,.70);
  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: 28px; }
}

@media (max-width: 520px){
  .services-menu-title{ font-size: 24px; }
}

/* ===== 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: .2px;
  font-weight: 800;
}

/* =====================================================
   GALLERY PAGE (Grid + Lightbox)
===================================================== */

.gallery-page{
  background: #fbfaee;
  padding: 56px 0 90px;
}

.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,.06);
  box-shadow: 0 10px 26px rgba(0,0,0,.10);
}

/* Chỉ áp dụng cho ảnh trong gallery-item, KHÔNG áp dụng trong Fancybox */
.gallery-page .gallery-item img{
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;     /* ảnh vuông đều như grid */
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .35s ease;
}

/* 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: #fbfaee;
  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: #fbfaee;           /* trong ảnh box hơi cùng tông nền */
  border: 1px solid rgba(10,122,85,.55);
  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,.18);
  font-size: 14px;
}

.contact-map-hours__row:first-child{
  border-top: 0;
}

.contact-map-hours__row .day{
  color: rgba(27,31,31,.88);
}

.contact-map-hours__row .time{
  color: rgba(27,31,31,.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: #E62636;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
}

.floating-icons a:hover {
  background: #555;
}

.floating-icons img {
  width: 22px;
  height: 22px;
  transition: transform 0.3s;
}

.floating-icons a:hover img {
  transform: scale(1.1);
}