@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,700;0,800;0,900;1,400&family=Prata&display=swap');

/* ---------------------------
  Base
---------------------------- */
:root{
  --container: 1400px;
  --header-h: 74px;

  --font-body: "Poppins", sans-serif;
  --font-title: "Prata", serif;

  --pink-50: #fdecef;
  --pink-100:#f9dbe1;
  --text: #141214;
  --muted:#4b3f45;

  --brand: #027D0D;
  --brand-2: #0D5D14;
  --danger: #c30016;

  --shadow: 0 18px 45px rgba(0,0,0,.18);
  --radius: 18px;
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
}

img{ max-width: 100%; display: block; }

a{ color: inherit; text-decoration: none; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* ---------------------------
  Buttons
---------------------------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: .2px;
  cursor: pointer;
  user-select: none;
  transition: transform .12s ease, filter .12s ease, background .12s ease;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: var(--danger);
  color: #fff;
  box-shadow: 0 10px 24px rgba(195,0,22,.25);
}
.btn-primary:hover{ filter: brightness(1.02); }

.btn-booking{
  background: var(--danger);
  color: #fff;
}

.btn-icon{
  height: 44px;
  width: 44px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------------------------
  Header (fixed)
---------------------------- */
.site-header{
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.header-inner{
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .6px;
}
.brand-mark{
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #6a00ff, #ff3aa6);
  color: #fff;
}
.brand-text{
  font-size: 18px;
  text-transform: uppercase;
}

.nav-desktop{
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-link{
  font-size: 18px;
  text-transform: uppercase;
  opacity: .78;
  transition: opacity .15s ease;
}
.nav-link:hover{ opacity: 1; }
.nav-link.is-active{ color: var(--brand); opacity: 1; }

.header-actions{
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Hamburger icon */
.hamburger-lines{
  position: relative;
  width: 18px;
  height: 2px;
  background: #111;
  border-radius: 999px;
}
.hamburger-lines::before,
.hamburger-lines::after{
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #111;
  border-radius: 999px;
}
.hamburger-lines::before{ top: -6px; }
.hamburger-lines::after{ top: 6px; }
.brand{
  display: flex;
  align-items: center;
}

.brand-logo{
  height: 42px;
  width: auto;
  object-fit: contain;
}
.hamburger{
  display: none;
}

@media (max-width: 860px){
  .hamburger{
    display: inline-flex;
  }
}
/* ---------------------------
  Offcanvas menu (mobile)
---------------------------- */
.offcanvas-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 80;
}

.offcanvas{
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(360px, 86vw);
  background: #fff;
  z-index: 90;
  transform: translateX(102%);
  transition: transform .22s ease;
  border-left: 1px solid rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
}

.offcanvas.is-open{ transform: translateX(0); }

.offcanvas-head{
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.offcanvas-title{
  font-weight: 900;
  font-size: 16px;
}

.offcanvas-nav{
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.offcanvas-link{
  padding: 12px 10px;
  border-radius: 12px;
  font-weight: 800;
  color: #1a1518;
  background: rgba(0,0,0,.02);
}
.offcanvas-link.is-active{
  background: rgba(177,0,107,.08);
  color: var(--brand);
}
.offcanvas-booking{
  margin-top: 8px;
  width: 100%;
}

/* ---------------------------
  Hero banner
---------------------------- */
.hero{
  position: relative;
  min-height: 90vh;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, var(--pink-50) 0 60%, transparent 100%);
}

.hero-bg::before{
  content:"";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;

  background-image: url("../images/hero-right-bg.png");
  background-size: cover;
  /* background-position: center; */
  background-repeat: no-repeat;

}

.hero-bg::after{
  content:"";
  position:absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-inner{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  margin-top: 50px;
}

.hero-left{
  flex: 1 1 40%;
  padding-right: 18px;
}

.hero-title{
  font-family: var(--font-title);
  font-size: clamp(40px, 4.3vw, 72px);
  line-height: 1.02;
  margin: 0 0 18px;
  letter-spacing: .2px;
}

.hero-sub{
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 800;
}
.hero-sub-label{
  font-style: italic;
  opacity: .9;
}
.hero-phone{
  font-style: italic;
  font-weight: 900;
  color: #1a1518;
}

.hero-right{
  flex: 0 0 60%;
  display: flex;
  justify-content: flex-start;
}

.hero-right-frame{
  width: 100%;
  max-width: 720px;
  height: 70vh; 
  position: relative;
}

.hero-slider-float{
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: visible;
  box-shadow: var(--shadow);
  margin-left: auto;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide{
  width: 100%;
  height: 100%;
}

.hero-swiper .swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;

}

/* Pagination container */
.hero-swiper .swiper-pagination{
  bottom: 0px !important;
  right: 0 !important;
  left: auto !important;
}

.hero-swiper .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  background: #CECECE;
}

.hero-swiper .swiper-pagination-bullet-active{
  width: 30px;
  height: 10px;
  background: #FFB5FE;
  border-radius: 50px;
}

/* ---------------------------
  Demo content spacing
---------------------------- */
.demo-content{
  padding: 36px 0 80px;
}

/* ---------------------------
  Responsive
---------------------------- */
@media (max-width: 980px){
  .hero-inner{
    flex-direction: column;
    align-items: stretch;
    padding: 28px 0 44px;
  }
  .hero-left{ padding-right: 0; }
  .hero-right{
     flex: 1 1 auto; 
     margin-top: 28px;
    }
  .hero-right-frame{ max-width: 720px; margin-left: auto; margin-right: auto; }
  
  /* Ẩn background image bên phải trên mobile */
  .hero-bg::before{
    display: none;
  }
  
  .hero-bg{
    background: var(--pink-50);
  }
}

@media (max-width: 860px){
  .nav-desktop{ display: none; }
}

/* Mobile header layout: logo left, booking + hamburger right */
@media (max-width: 520px){
  .btn-booking{ height: 40px; padding: 0 14px; }
  .btn-icon{ height: 40px; width: 40px; }
}

/* ---------------------------
  GSAP Animations
---------------------------- */
.gsap-hero-item{
  opacity: 0;
  transform: translateY(20px);
}

.gsap-fade-in,
.gsap-fade-in-delay{
  opacity: 0;
  transform: translateY(30px);
}

.gsap-title{
  opacity: 0;
  transform: translateY(-20px);
}

.gsap-service-card{
  opacity: 0;
  transform: translateY(40px) scale(0.95);
}

.gsap-testi-swiper,
.gsap-gallery-body{
  opacity: 0;
  transform: translateY(30px);
}

/* Animations for other pages */
.page-banner{
  overflow: hidden;
}

.page-banner .page-banner-title{
  opacity: 0;
  transform: translateY(30px);
}

.menu-hero{
  opacity: 0;
  transform: translateY(40px);
}

.about-content-section .about-content-image,
.about-content-section .about-content-title,
.about-content-section .about-content-text,
.about-content-section .about-content-cta{
  opacity: 0;
  transform: translateY(30px);
}

.contact-split__left,
.contact-split__right{
  opacity: 0;
  transform: translateY(35px);
}

.salon__item{
  opacity: 0;
  transform: scale(0.9);
}

.booking-section{
  opacity: 0;
  transform: translateY(20px);
}

/* ===============================
   ABOUT SECTION
================================= */
.about-section{
  padding: 50px 0;
  background: #f4f1f1;
}

.about-wrapper{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image img{
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.about-content{
  color: #3a3434;
  font-size: 16px;
  line-height: 1.8;
}

.about-subtitle{
  font-size: 22px;
  letter-spacing: 2px;
  color: #8c7d7d;
  display: inline-block;
  margin-bottom: 0px;
}

.about-title{
  font-family: var(--font-title);
  font-size: 50px;
  font-weight: 500;
  margin: 0px;
  color: #3a2f2f;
}

.about-content p{
  margin-bottom: 20px;
}

.about-content strong{
  font-weight: 700;
}

/* Responsive for About Section */
@media (max-width: 992px){
  .about-wrapper{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-title{
    font-size: 40px;
  }

  .about-subtitle{
    font-size: 20px;
  }
}

@media (max-width: 768px){
  .about-section{
    padding: 40px 0;
  }

  .about-wrapper{
    gap: 30px;
  }

  .about-title{
    font-size: 32px;
  }

  .about-subtitle{
    font-size: 18px;
  }

  .about-content{
    font-size: 15px;
  }
}

@media (max-width: 480px){
  .about-section{
    padding: 30px 0;
  }

  .about-title{
    font-size: 28px;
  }

  .about-subtitle{
    font-size: 16px;
  }

  .about-content{
    font-size: 14px;
  }
}
/* ===============================
   SERVICES SECTION
================================= */
.services-section{
  position: relative;
  background: url("../images/services-bg.png") center/cover no-repeat;
  padding-top: 30px;
}

.services-title{
  text-align: center;
  font-family: var(--font-title);
  font-size: 60px;
  color: #fff;
  margin-bottom: 60px;
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.service-card{
  position: relative;
  overflow: hidden;
  height: 420px;
}

.service-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

/* Button */
.service-btn{
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translate(-50%, 40px);
  padding: 12px 28px;
  border-radius: 10px;
  border: none;
  background: #f3f1ef;
  font-family: var(--font-title);
  font-size: 20px;
  cursor: pointer;
  transition: all .4s ease;
  margin-bottom: 20px;
}

/* Hover effect PC */
.service-card:hover img{
  transform: scale(1.08);
}

.service-card:hover .service-btn{
  transform: translate(-50%, 0);
  opacity: 1;
}

@media (max-width: 992px){
  .services-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card{
    height: 260px;
  }

  /* mobile luôn hiện button */
  .service-btn{
    opacity: 1;
    transform: translate(-50%, 0);
    bottom: 20px;
  }
}


/* ===============================
   TESTIMONIALS
================================= */
.testimonials-section{
  padding: 50px 0 50px;
  background: #fff;
}

.testimonials-title{
  text-align: center;
  font-family: var(--font-title);
  font-size: 64px;
  font-weight: 500;
  margin: 0 0 45px;
  color: #2e2426;
}

.testi-swiper{
  padding: 10px 0 50px;
}
.testi-swiper .swiper-slide{
  height: auto;
  display: flex;
}
.testi-card{
  background: #f7eaf6;
  border-radius: 18px;
  padding: 26px 28px;
  text-align: center;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.testi-name{
  margin: 0 0 12px;
  font-weight: 800;
  font-size: 16px;
  color: #221b1d;
}

.testi-text{
  margin: 0;
  font-style: italic;
  color: #3b2f33;
  line-height: 1.7;
  font-size: 15px;
}

/* Pagination giống ảnh: active pill tím */
.testi-pagination{
  bottom: 10px !important;
}

.testi-pagination .swiper-pagination-bullet{
  width: 12px;
  height: 12px;
  background: #cfcfcf;
  opacity: 1;
  margin: 0 8px !important;
  border-radius: 999px;
  transition: all .25s ease;
}

.testi-pagination .swiper-pagination-bullet-active{
  width: 44px;
  height: 12px;
  background: #C90011;
}

/* Responsive */
@media (max-width: 992px){
  .testimonials-title{
    font-size: 44px;
  }
  .testi-card{
    min-height: 240px;
  }
}

/* ===============================
   GALLERY SECTION
================================= */
.gallery-section{
  background: #0D5D14;
  padding: 60px 0 0;
}

.gallery-head{
  padding: 20px 0 35px;
}

.gallery-title{
  text-align: center;
  font-family: var(--font-title);
  font-size: 64px;
  font-weight: 500;
  margin: 0;
  color: #fff;
}

.gallery-body{
  padding: 10px 0 0;
}

/* Slide spacing giống hình */
/* .gallery-swiper{
  padding: 0 0 50px;
} */

/* Ảnh kiểu “card” */
.gallery-item{
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 14px 40px rgba(0,0,0,.22);
  position: relative;
}

.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .5s ease;
}

/* Hover zoom nhẹ */
@media (hover:hover){
  .gallery-item:hover img{
    transform: scale(1.10);
  }
}

/* Pagination */
.gallery-pagination{
  bottom: 10px !important;
}

.gallery-pagination .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,.55);
  opacity: 1;
  margin: 0 8px !important;
  border-radius: 999px;
  transition: all .25s ease;
}

.gallery-pagination .swiper-pagination-bullet-active{
  width: 42px;
  background: #fff;
}


/* ===============================
   FOOTER
================================= */
.site-footer{
  background: #fff;
  padding: 70px 0;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* Title color theo yêu cầu */
.footer-title{
  color: #027D0D;
  font-size: 18px;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.footer-text{
  color: #2d2a2a;
  line-height: 1.7;
  margin: 0 0 12px;
  max-width: 420px;
}

.footer-copy{
  margin-top: 36px;
  color: #2d2a2a;
  font-size: 16px;
}

/* Social icons (img svg) */
.footer-social{
  display: flex;
  gap: 14px;
  margin: 8px 0 18px;
}

.social-link{
  /* width: 42px;
  height: 42px;
  border: 1px solid rgba(174,47,172,.45); */
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.social-link img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Footer links */
.footer-links{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a{
  color: #2d2a2a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Location info */
.footer-info{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-label{
  font-weight: 600;
  color: #2d2a2a;
  margin-bottom: 4px;
}

.info-value{
  color: #2d2a2a;
  line-height: 1.6;
}

.info-value a{
  color: #2d2a2a;
  text-decoration: none;
}

/* Map */
.footer-map .map-embed{
  width: 100%;
  height: 330px;
  background: #d8d8d8;
  border-radius: 2px;
  overflow: hidden;
}

.footer-map iframe{
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive */
@media (max-width: 1100px){
  .footer-grid{
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-map .map-embed{
    height: 300px;
  }
}

@media (max-width: 640px){
  .site-footer{
    padding: 55px 0;
  }
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .footer-map .map-embed{
    height: 280px;
  }
}

/* ===============================
   PAGE BANNER (Reusable with Image)
================================= */
.page-banner{
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 70px;
  /* Background image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay làm dịu ảnh */
.page-banner-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(255,255,255,.65),
    rgba(255,255,255,.65)
  );
  z-index: 1;
}

/* Title */
.page-banner-title{
  font-family: var(--font-title);
  font-size: 48px;
  font-weight: 500;
  margin: 0;
  color: #2a2426;
  position: relative;
  z-index: 2;
}

/* Responsive */
@media (max-width: 992px){
  .page-banner{
    height: 180px;
  }

  .page-banner-title{
    font-size: 38px;
  }
}

@media (max-width: 576px){
  .page-banner{
    height: 150px;
  }

  .page-banner-title{
    font-size: 30px;
  }
}

/* ===============================
   ABOUT CONTENT SECTION
================================= */
.about-content-section{
  padding: 70px 0 90px;
  background: #f6f6f6;
}

.about-content-wrapper{
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

/* Image */
.about-content-image{
  margin-bottom: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  overflow: hidden;
}

.about-content-image img{
  width: 100%;
  height: auto;
  display: block;
}

/* Title */
.about-content-title{
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 500;
  margin: 20px 0 20px;
  color: #2a2426;
}

/* Text */
.about-content-text{
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: #3a3336;
}

.about-content-text p{
  margin: 0 0 14px;
}

/* Button */
.about-content-cta{
  margin-top: 24px;
}

.about-content-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 26px;
  background: #b60b12;
  color: #fff;
  font-size: 16px;
  letter-spacing: .8px;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: 0 12px 26px rgba(182,11,18,.25);
  transition: all .25s ease;
}

.about-content-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(182,11,18,.3);
}

/* Responsive */
@media (max-width: 768px){
  .about-content-section{
    padding: 50px 0 60px;
  }

  .about-content-title{
    font-size: 26px;
  }

  .about-content-text{
    text-align: left;
    font-size: 14px;
  }
}



/* ================= MENU HERO ================= */

.menu-hero{
  background:#fff;
  padding: 50px 0;
  color:#222;
  position: relative;
  z-index: 2;
}

.menu-hero__inner{
  display:grid;
  grid-template-columns: 0.9fr 1fr;  /* trái text/menu - phải ảnh */
  gap: 40px;
  align-items:start;
}

/* LEFT */
.menu-hero__left{ position:relative; }

/* ghost heading */
.menu-hero__ghost{
  margin:0;
  font-size:80px;
  line-height:1;
  color:rgba(174, 47, 172,.25);
  font-family: var(--font-display);
  font-weight:500;
}

/* phần nội dung thụt vào so với ghost */
.menu-hero__copy{
  margin-top: 10px;
  padding-left: 70px; /* thụt như design */
}

.menu-hero__title{
  margin: 0 0 18px 0;
  font-size: 44px;
  font-family: var(--font-display);
  font-weight:500;
  color:#3b2f2a;
}


.menu-hero__right{
  position: relative;
}

.menu-hero__media{
  width: 100%;
  /* max-width: 520px; */
}

.menu-hero__photo{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 4px; 
}


/* ================= MENU LIST ================= */

.menu-list{
  margin-top: 10px;
}

.menu-item{
  /* padding: 5px 0 10px; */
}
.menu-row{
  display:grid;
  grid-template-columns: 1fr 70px 70px;
  align-items:center;
  padding:10px 0;
  border-bottom: 1px dashed rgba(0,0,0,.35);
  column-gap: 10px;
}

.menu-name{
  font-size:18px;
  letter-spacing:.06em;
  color:#4B3C3B;
  margin: 0;
}
.menu-price-col{
  font-size:18px;
  color:#4B3C3B;
  text-align:right;
  white-space:nowrap;
}

/* Header dòng Cash / Card */
.menu-row--head{
  border-bottom: 2px solid rgba(0,0,0,.15);
  font-weight:700;
}

.menu-row--head .menu-price-col{
  font-weight:700;
}
.menu-price{
  font-size:18px;
  font-weight:700;
  color:#4B3C3B;
  white-space:nowrap;
  text-align:right;
}

/* mô tả italic như ảnh */
.menu-desc{
  margin: 10px 0 0 0;
  font-size: 16px;
  line-height: 1.7;
  color:#191919;
  font-style: italic;
  max-width: 640px;
}

.menu-note{
  display:inline-block;
  margin-top: 6px;
  font-style: normal;
  letter-spacing:.06em;
  font-size: 16px;
  color:#191919;
  text-transform: uppercase;
}

.menu-group-title{
  margin: 35px 0 15px 0;
  font-size: 28px;
  font-family: var(--font-display);
  font-weight: 500;
  color:#3b2f2a;
}

.menu-group-title:first-of-type{
  margin-top: 10px;
}
.menu-note-red {
  color: #e10600;
  font-weight: 500;
  line-height: 1;
}
/* ================= RESPONSIVE ================= */
@media (max-width: 992px){
  .menu-hero__inner{
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .menu-hero__inner.image-on-left > .menu-hero__left {
    order: 2;
  }
  
  .menu-hero__inner.image-on-left > .menu-hero__right {
    order: 1;
  }

  .menu-hero__copy{
    padding-left: 0;
  }

  .menu-hero__ghost{
    font-size: 64px;
  }

  .menu-hero__media{
    max-width: 560px;
    margin: 0;
  }

  .menu-name{
    white-space: normal;
  }
}

.salon{
  position: relative;
  padding: 20px;
  
}

.salon__wrap{
  max-width: var(--page-max, 1200px);
  margin: 0 auto;
}

/* Heading with lines */
.salon__heading{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 46px;
}

.salon__title{
  margin: 0;
  font-family: var(--font-title, "Lato", Helvetica, Arial, sans-serif);
  font-weight: 300;
  font-size: 30px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #A68230;
  white-space: nowrap;
}

.salon__line{
  height: 1px;
  width: min(280px, 22vw);
  background: rgba(166,130,48,.55);
}

/* Grid images */
.salon__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

/* Square item */
.salon__item{
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 351 / 526;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border-radius: 2px;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  text-decoration: none;
  transform: translateZ(0);
}

.salon__item img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform .45s ease, filter .45s ease;
  /* filter: brightness(.88); */
}

/* Overlay tối nhẹ */
/* .salon__item::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.18);
  opacity: 1;
  transition: opacity .35s ease;
} */

/* icon + (tùy chọn) */
.salon__item::before{
  content: "+";
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 3;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 2px;
  background: rgba(0,0,0,.35);
  color: rgba(255,255,255,.9);
  font-family: var(--font-title, "Lato", Helvetica, Arial, sans-serif);
  font-size: 22px;
  opacity: 0;
  transform: translateY(6px);
  transition: .25s ease;
}

/* Hover */
.salon__item:hover img{
  transform: scale(1.08);
  filter: brightness(1);
}
.salon__item:hover::after{ opacity: 0; }
.salon__item:hover::before{
  opacity: 1;
  transform: translateY(0);
}

/* ===== iPad ===== */
@media (max-width: 1024px){
  .salon{ padding: 64px 18px; }
  .salon__grid{ grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .salon__title{ font-size: 26px; }
  .salon__heading{ margin-bottom: 34px; gap: 18px; }
  .salon__line{ width: min(220px, 20vw); }
}

/* ===== Mobile ===== */
@media (max-width: 768px){
  .salon{ padding: 52px 16px; }
  .salon__grid{ grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .salon__title{
    font-size: 20px;
    letter-spacing: .22em;
  }

  .salon__line{ width: 18vw; }
}

@media (max-width: 420px){
  .salon__grid{ grid-template-columns: 1fr; }
  .salon__line{ display: none; }
}

.booking-section {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background-color: #fff;
  margin-top: 50px;
}

.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;
  }
}

/* ===============================
   CONTACT SPLIT SECTION
================================= */
.contact-split{
  background: #fff;
  padding: 0;
}

.contact-split__inner{
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: 560px;
  gap: 0;
}

/* LEFT */
.contact-split__left{
  background: #FFF5F9;
  padding: 80px 70px;
}

.contact-split__title{
  font-family: var(--font-display, var(--font-title));
  font-size: 44px;
  font-weight: 500;
  margin: 0 0 10px;
  color: #2a2426;
}

.contact-split__sub{
  margin: 0 0 34px;
  color: #3a3336;
  line-height: 1.6;
  font-size: 16px;
}

/* INFO LIST */
.contact-info{
  display: grid;
  gap: 22px;
}

.contact-info__item{
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
}

.contact-info__icon{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  /* background: rgba(174, 47, 172, .12); */
  display: grid;
  place-items: center;
}

.contact-info__icon img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-info__label{
  font-weight: 600;
  color: #2a2426;
  margin-bottom: 4px;
  font-size: 16px;
}

.contact-info__value{
  color: #3a3336;
  font-size: 16px;
  line-height: 1.55;
}

/* RIGHT */
.contact-split__right{
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 60px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card{
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  padding: 36px 34px;
  border-radius: 18px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
}

.contact-card__title{
  font-family: var(--font-display, var(--font-title));
  font-size: 40px;
  font-weight: 500;
  margin: 0 0 22px;
  color: #2a2426;
  line-height: 1.15;
}

/* FORM */
.contact-form{
  display: grid;
  gap: 14px;
}

.form-field input,
.form-field textarea{
  width: 100%;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 6px;
  padding: 14px 14px;
  font-size: 16px;
  background: #fff;
  outline: none;
}

.form-field textarea{
  resize: none;
  min-height: 160px;
}

.form-field input:focus,
.form-field textarea:focus{
  border-color: rgba(174, 47, 172, .6);
  box-shadow: 0 0 0 4px rgba(174, 47, 172, .12);
}

.contact-form__btn{
  width: 140px;
  height: 44px;
  border-radius: 6px;
  background: #b60b12;
  color: #fff;
  letter-spacing: .5px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(182,11,18,.25);
}

.contact-form__btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(182,11,18,.30);
}

/* RESPONSIVE */
@media (max-width: 992px){
  .contact-split__inner{
    grid-template-columns: 1fr;
  }

  .contact-split__left{
    padding: 50px 22px;
  }

  .contact-split__right{
    padding: 40px 18px;
  }

  .contact-card__title{
    font-size: 30px;
  }
}

/* ===================================
   FIX IOS AUTO-DETECTION MÀU XANH
   (Thêm vào phần Base CSS)
==================================== */

/* Fix iOS auto-detection cho tel & mailto */
a[href^="tel"],
a[href^="mailto"],
a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
}

/* Fix cho About section */
.about-content strong{
  font-weight: 700;
  color: inherit;
}

.about-content strong a{
  color: inherit !important;
}

/* Fix cho Footer text */
.footer-text a{
  color: inherit !important;
  text-decoration: none !important;
}

/* Fix cho Footer info value */
.info-value a{
  color: #2d2a2a !important;
  text-decoration: none !important;
}

/* Fix cho Contact info value */
.contact-info__value a{
  color: inherit !important;
  text-decoration: none !important;
}

.review-section {
  padding: 80px 20px;
  background: #dfe6df; /* màu nền giống hình */
}

.container {
  max-width: 1200px;
  margin: auto;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.review-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  color: #222;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
    flex-direction: column;
    align-items: center;
}

.review-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 20px;
}

.review-card h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Tablet */
@media (max-width: 991px) {
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 30px 15px;
  }
}