@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Roboto:wght@300;400;500&display=swap");

:root {
  --bg-dark: #0b0b0b;
  --overlay: rgba(0, 0, 0, 0.45);
  --menu-text: rgba(210, 200, 175, 0.9); /* gần màu chữ trong ảnh */
  --menu-text-strong: rgba(230, 220, 195, 0.95);
  --line: rgba(255, 255, 255, 0.08);
  --font-title: "Lato", Helvetica, Arial, sans-serif;
  --font-text: "Roboto", Helvetica, Arial, sans-serif;

  --header-h: 78px;
  --container: 1240px;
  --page-max: 1200px;
  --color-accent: #e0b550;
  --color-accent-text: #b49444;
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: var(--font-text);
  background: #fff;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: var(--overlay);
  backdrop-filter: blur(2px);
}

.header-inner {
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* left nav | logo | right nav */
  align-items: center;
  gap: 16px;
}

/* Logo giữa */
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  height: 56px;
}
.brand img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Desktop nav */
.nav {
  display: flex;
  align-items: center;
  gap: 42px;
  min-width: 0;
}
.nav.left {
  justify-content: flex-end;
  padding-right: 8px;
}
.nav.right {
  justify-content: flex-start;
  padding-left: 8px;
}

.nav a {
  font-family: var(--font-title);
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--menu-text);
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}
.nav a:hover {
  color: var(--menu-text-strong);
}

/* Mobile bar (logo giữa + hamburger phải) */
.mobile-bar {
  display: none;
  height: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hamburger {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hamburger:focus {
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: 3px;
  border-radius: 10px;
}

.hamburger .lines {
  width: 22px;
  height: 14px;
  position: relative;
}
.hamburger .lines span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  transition:
    transform 0.25s ease,
    top 0.25s ease,
    opacity 0.2s ease;
}
.hamburger .lines span:nth-child(1) {
  top: 1px;
}
.hamburger .lines span:nth-child(2) {
  top: 6.5px;
  opacity: 0.85;
}
.hamburger .lines span:nth-child(3) {
  top: 12px;
  opacity: 0.7;
}

/* Hero demo để giống ảnh */
.hero {
  height: 520px;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0)),
    url("images/hero.jpg") center/cover no-repeat;
}
.spacer {
  height: var(--header-h);
} /* để nội dung không bị header che */

/* ===== MOBILE OVERLAY MENU ===== */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  background: rgba(0, 0, 0, 0.55);
}
.menu-panel {
  width: min(520px, 92vw);
  margin: 0 auto;
  height: 100%;
  background: linear-gradient(#0a0a0a, #050505);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.6);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.menu-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 4px;
}
.menu-top .brand img {
  height: 66px;
}

.menu-close {
  position: absolute;
  right: 4px;
  top: 6px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  font-size: 28px;
  line-height: 1;
}
.menu-close:focus {
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: 3px;
  border-radius: 10px;
}

.menu-list {
  width: 100%;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  padding: 6px 0 24px;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 12px 6px;
}
.menu-item a {
  font-family: var(--font-title);
  font-weight: 300;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 15px;
  color: var(--menu-text);
  text-decoration: none;
  text-align: center;
}
.menu-item a:hover {
  color: var(--menu-text-strong);
}

/* dấu + giống ảnh (ví dụ ở ABOUT US) */
.menu-plus {
  position: absolute;
  right: 8px;
  font-family: var(--font-title);
  font-weight: 300;
  font-size: 26px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1;
  user-select: none;
}

/* ===== OPEN STATE ===== */
body.menu-open {
  overflow: hidden;
}
body.menu-open .menu-overlay {
  display: block;
}
body.menu-open .hamburger .lines span:nth-child(1) {
  top: 6.5px;
  transform: rotate(45deg);
}
body.menu-open .hamburger .lines span:nth-child(2) {
  opacity: 0;
}
body.menu-open .hamburger .lines span:nth-child(3) {
  top: 6.5px;
  transform: rotate(-45deg);
  opacity: 0.85;
}

/* ===== RESPONSIVE ===== */
/* iPad: giảm gap chút cho giống */
@media (max-width: 1024px) {
  .nav {
    gap: 28px;
  }
  .nav a {
    font-size: 13px;
  }
  :root {
    --header-h: 74px;
  }
}
/* ===== HEADER SCROLL EFFECT ===== */
.site-header {
  transition:
    height 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

/* trạng thái bình thường (ở top) */
.site-header.is-top {
  height: 78px; /* chiều cao ban đầu */
  background: rgba(0, 0, 0, 0.35);
  box-shadow: none;
}

/* trạng thái khi scroll xuống */
.site-header.is-shrink {
  height: 58px; /* thu nhỏ lại */
  background: rgba(0, 0, 0, 0.75);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* logo transition */
.site-header .brand img {
  transition: height 0.3s ease;
}

/* logo size */
.site-header.is-top .brand img {
  height: 56px;
}

.site-header.is-shrink .brand img {
  height: 40px;
}
/* ===== DESKTOP SUBMENU ===== */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-link {
  font-family: var(--font-title);
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--menu-text);
  text-decoration: none;
  white-space: nowrap;
}

.has-submenu .submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0px);
  width: 240px;
  background: var(--overlay);
  border-radius: 2px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.2s ease;
  z-index: 2000;
}

.has-submenu .submenu a {
  display: block;
  text-align: center;
  padding: 10px 16px;
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  color: var(--menu-text);
  text-decoration: none;
}
.has-submenu::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: 260px; /* rộng hơn submenu chút */
  height: 14px; /* vùng nối */
  background: transparent;
}
.has-submenu .submenu a:hover {
  background: #f3f3f3;
  color: #333;
}

/* Hover PC */
@media (min-width: 769px) {
  .has-submenu:hover .submenu,
  .has-submenu:focus-within .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}
/* ===== MOBILE SUBMENU ===== */
.m-item {
  width: 100%;
}

.m-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 12px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.m-toggle span:first-child {
  font-family: var(--font-title);
  font-weight: 300;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 15px;
  color: var(--menu-text);
}

.m-plus {
  position: absolute;
  right: 8px;
  font-family: var(--font-title);
  font-weight: 300;
  font-size: 26px;
  color: rgba(255, 255, 255, 0.35);
  transition: transform 0.2s ease;
  cursor: pointer;
  pointer-events: auto;
}

.m-label {
  cursor: pointer;
}
.m-submenu {
  display: none;
  padding: 6px 0 14px;
}

.m-submenu a {
  display: block;
  text-align: center;
  padding: 10px 16px;
  margin: 6px auto 0;
  width: min(360px, 92%);
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  color: #666;
  text-decoration: none;
}

.m-submenu a:hover {
  background: #f3f3f3;
  color: #333;
}

/* open state */
.m-has-submenu.open .m-submenu {
  display: block;
}
.m-has-submenu.open .m-plus {
  transform: rotate(45deg);
}
.nav-item.has-submenu.open .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* Fix: bridge không chặn click vào About Us */
.has-submenu::after {
  pointer-events: none;
}

/* (khuyến nghị) submenu chỉ bắt click khi đang mở/hover */
.has-submenu .submenu {
  pointer-events: none;
}
@media (min-width: 769px) {
  .has-submenu:hover .submenu,
  .has-submenu:focus-within .submenu {
    pointer-events: auto;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* .header-inner {
    grid-template-columns: 1fr; 
    padding: 0 14px;
  } */
  .nav {
    display: none;
  }
  .brand {
    height: 58px;
  }
  .brand img {
    height: 58px;
  }
  .mobile-bar {
    display: flex;
  }
  .site-header {
    background: rgba(0, 0, 0, 0.65);
  }
  /* biến header-inner thành flex để logo luôn ở giữa */
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; /* để absolute bám theo khung này */
    height: 100%;
  }

  /* mobile-bar chỉ làm “container” cho nút */
  .mobile-bar {
    display: block;
    position: absolute;
    right: 12px; /* chỉnh sát phải theo ý */
    top: 50%;
    transform: translateY(-50%);
    height: auto;
    width: auto;
  }

  /* bỏ absolute cũ của hamburger (nếu có) và căn lại chuẩn */
  .hamburger {
    position: static !important;
    transform: none !important;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Tùy chọn: nếu muốn header đậm hơn trên PC giống ảnh */
@media (min-width: 1025px) {
  .site-header {
    background: rgba(0, 0, 0, 0.35);
  }
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 800px; /* giống ảnh PC */
}

/* Swiper full height */
.hero-slider .swiper,
.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
  height: 100%;
}

/* background image layer */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* overlay tối như ảnh */
/* .hero-slider .swiper-slide::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
} */

/* Dots */
.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 0.55;
  background: rgba(255, 255, 255, 0.5);
}
.hero-slider .swiper-pagination-bullet-active {
  opacity: 1;
  width: 20px;
  border-radius: 10px;
}

/* Arrows (nhẹ nhàng) */
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  color: rgba(255, 255, 255, 0.8);
  transform: scale(0.9);
}
.hero-slider .swiper-button-prev:hover,
.hero-slider .swiper-button-next:hover {
  color: rgba(255, 255, 255, 1);
}

/* Mobile height nhỏ lại */
@media (max-width: 768px) {
  .hero-slider {
    height: 280px; /* giống ảnh mobile */
  }

  /* Mobile thường không cần arrows */
  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next {
    display: none;
  }
}

/* ====== FOOTER ====== */
.site-footer {
  position: relative;
  background: #000; /* fallback nếu không có ảnh */
  color: #cdb96a;
  padding: 38px 20px 28px;
  overflow: hidden;
}

/* line mảnh phía trên (theo yêu cầu) */
.site-footer .footer-topline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* ảnh nền mềm (nếu dùng) */
.site-footer .footer-bg {
  position: absolute;
  inset: 0;
  /* thay ảnh nền nếu có */
  background-size: cover;
  background-position: center;
  /* opacity: .55; */
  filter: brightness(1.1);
  pointer-events: none;
}

/* content wrapper */
.site-footer .page {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* logo tròn với viền vàng */
.footer-logo .logo-ring {
  display: inline-flex;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  /* border: 1.8px solid rgba(212,175,55,.9); */
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(1px);
}
.footer-logo img {
  width: 90px;
  height: auto;
  display: block;
}
.footer-logo {
  display: inline-block;
  margin-top: 6px;
}

/* tagline */
.footer-tagline {
  font-family: var(--font-subtitle);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
  margin: 16px 0 18px;
}

/* nav */
.footer-nav ul {
  display: inline-flex;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}
.footer-nav li {
  position: relative;
  padding: 0 12px;
}
.footer-nav li + li::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 50%;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%);
}
.footer-nav a {
  color: #eae2b0;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-nav a:hover {
  color: #fff;
}

/* social icons */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 16px 0 18px;
}
.footer-social .soc {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  /* background: linear-gradient(90deg, #A68230, #F2D063); */
  border: 1px solid rgba(0, 0, 0, 0.15);
  transition:
    transform 0.15s ease,
    filter 0.15s ease;
}
.footer-social .soc:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}
.footer-social a {
  display: flex;
  align-items: center;
}
/* divider line mảnh trên copyright */
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  max-width: 1060px;
  margin: 12px auto 12px;
}

/* copyright */
.footer-copy {
  color: #d6c67b;
  font-size: 14px;
  margin: 6px 0 0;
}
.footer-copy span {
  color: #d4af37;
}

/* responsive */
@media (max-width: 720px) {
  .footer-tagline {
    font-size: 18px;
  }
  .footer-nav ul {
    gap: 6px;
    flex-wrap: wrap;
  }
  .footer-nav li {
    padding: 0 8px;
  }
  .footer-social {
    margin: 14px 0 16px;
  }
}

/* ===== SERVICES STRIP (4 images) ===== */
.services-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0; /* dính sát nhau */
  margin: 0; /* dính sát hero */
}

.service-card {
  position: relative;
  display: block;
  aspect-ratio: 16/15; /* gần giống ảnh (màn rộng) */
  overflow: hidden;
  text-decoration: none;
  background: #000;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.5s ease;
}

/* lớp tối */
.service-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: opacity 0.35s ease;
  z-index: 1;
}

/* nội dung */
.service-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 26px;
  text-align: center;
  z-index: 2;
  padding: 0 14px;
}

.service-card__tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 2px;
  background: rgba(150, 130, 80, 0.75); /* gần màu nút SERVICES */
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-card__title {
  margin: 12px 0 0;
  font-family: var(--font-title);
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 26px;
  color: rgba(255, 255, 255, 0.92);
}

/* hover: bỏ lớp tối + zoom nhẹ */
.service-card:hover .service-card__overlay {
  opacity: 0;
}
.service-card:hover img {
  transform: scale(1.08);
}

/* responsive */
@media (max-width: 1024px) {
  .service-card {
    aspect-ratio: 16/7;
  }
  .service-card__title {
    font-size: 20px;
  }
  .service-card__content {
    bottom: 18px;
  }
}

@media (max-width: 768px) {
  .services-strip {
    grid-template-columns: 1fr 1fr; /* mobile 2 cột cho đỡ dài */
  }
  .service-card {
    aspect-ratio: 4/3;
  }
  .service-card__title {
    font-size: 16px;
  }
}

/* ====== HOME ABOUT ====== */
.home-about {
  background: #000; /* đồng bộ nền hero */
  padding: 80px 20px 40px;
}

.home-about:after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.35); */
}

.home-about .page {
  max-width: var(--page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr; /* chữ : hình */
  gap: 40px;
  align-items: center;
}

.home-about .about-text h2 {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.1;
  margin: 0 0 24px;
}

.home-about .about-text p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  font-family: var(--font-text);
  line-height: 1.8;
  margin: 0 0 10px;
  max-width: 560px;
}

.home-about .btn-cta {
  display: inline-block;
  margin-top: 24px;
  background: linear-gradient(90deg, #a68230, #f2d063);
  color: #000;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  transition:
    transform 0.15s,
    filter 0.15s;
}
.home-about .btn-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

/* Visual triptych */
.home-about .about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-about .about-visual img {
  width: 100%;
  max-width: 520px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  object-fit: cover;
}

/* Responsive */
@media (max-width: 1024px) {
  .home-about .page {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .home-about .about-text h2 {
    font-size: 22px;
  }
  .home-about .about-visual {
    height: 440px;
  }
  .home-about .about-visual img {
    max-width: 360px;
  }
  .home-about .page:nth-of-type(2) .about-visual {
    order: 2;
  }
  .home-about .page:nth-of-type(2) .about-text {
    order: 1;
  }
}
@media (max-width: 640px) {
  .home-about {
    padding: 56px 16px 24px;
  }
  .home-about .about-text p {
    font-size: 16px;
  }
  .home-about .about-visual {
    height: 320px;
    gap: 10px;
    justify-content: center;
  }
}

/* ====== HOME TESTIMONIAL (SYNC + RESPONSIVE) ====== */
.home-testimonial {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 20px;
  overflow: hidden;
}

.home-testimonial .overlay {
  position: absolute;
  inset: 0;
  /* nếu bạn muốn tối nền thì bật lại */
  /* background: rgba(0, 0, 0, 0.35); */
}

.home-testimonial .page {
  position: relative;
  max-width: var(--page-max);
  margin: 0 auto;
  text-align: center;
}

/* Headings */
.testimonial-head {
  margin-bottom: 40px;
}
.testimonial-head .pretitle {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 600;
  /* color: rgba(255, 255, 255, 0.92); */
  margin: 0 0 8px;
  background: linear-gradient(
    90deg,
    #553d00 0%,
    #978100 25%,
    #fff2b2 50%,
    #837214 75%,
    #b8860b 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.testimonial-head h2 {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

/* Swiper */
.testimonial-slider {
  padding-bottom: 54px; /* chừa chỗ cho pagination */
}
.testimonial-slider .swiper-wrapper {
  align-items: stretch;
}
.testimonial-slider .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* review box - dùng clamp để tự co giãn theo màn hình */
.review-box {
  width: clamp(260px, 38vw, 380px);
  height: clamp(170px, 22vw, 200px);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}
.review-box:hover {
  transform: translateY(-6px);
}
.review-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Author avatar + name */
.review-author {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* canh trái */
  gap: 10px;
  width: clamp(260px, 38vw, 380px); /* bằng review-box */
  margin: 6px auto 0;
}

.review-author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease;
}
.review-author .avatar:hover {
  transform: scale(1.05);
}
.review-author .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* NOTE: :has() không support tốt trên mọi trình duyệt.
   Nếu avatar luôn có img thì bỏ phần này cũng ok */
.review-author span {
  font-style: italic;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
}

/* Pagination bullets */
.testimonial-slider .swiper-pagination {
  bottom: 0;
}
.testimonial-slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.25s ease;
}
.testimonial-slider .swiper-pagination-bullet-active {
  width: 20px;
  border-radius: 10px;
  background: #fff;
}

/* ====== iPad (768 - 1024) ====== */
@media (max-width: 1024px) {
  .home-testimonial {
    padding: 70px 18px;
  }
  .testimonial-head .pretitle {
    font-size: 28px;
  }
  .testimonial-slider {
    padding-bottom: 46px;
  }
}

/* ====== Mobile ====== */
@media (max-width: 768px) {
  .home-testimonial {
    padding: 46px 16px;
  }
  .testimonial-head {
    margin-bottom: 24px;
  }
  .testimonial-head .pretitle {
    font-size: 22px;
  }

  .review-author .avatar {
    width: 40px;
    height: 40px;
  }
  .review-author span {
    font-size: 15px;
  }
}

/* ====== Mobile nhỏ ====== */
@media (max-width: 420px) {
  .testimonial-head h2 {
    font-size: 24px;
  }
  .review-box {
    width: 92vw;
    height: 52vw; /* giữ tỉ lệ đẹp */
    max-height: 220px;
  }
  .review-author {
    width: 92vw;
  }
}

/* ===== TEXT REVIEW STYLE ===== */
.review-box.review-text {
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

/* Stars */
.review-stars {
  font-size: 20px;
  color: #f2b705; /* vàng giống ảnh */
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* Review text */
.review-content {
  font-family: var(--font-text);
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  font-style: italic;
}

/* iPad */
@media (max-width: 1024px) {
  .review-stars {
    font-size: 18px;
  }
  .review-content {
    font-size: 14.5px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .review-box.review-text {
    padding: 20px 18px;
  }
  .review-stars {
    font-size: 17px;
  }
  .review-content {
    font-size: 14px;
  }
}

/* ====== ABOUT HERO ====== */
.about-hero {
  position: relative;
  height: clamp(320px, 56vh, 520px);
  /* đổi path ảnh */
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}
.about-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.45) 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

/* content wrap */
.about-hero .page {
  position: relative;
  max-width: var(--page-max);
  width: 100%;
  padding: 0 20px;
}

/* Title */
.about-title {
  margin: 0 0 10px;
  font-family: var(--font-subtitle);
  font-weight: 500;
  font-size: clamp(36px, 6vw, 64px);
  color: var(--color-accent);
  line-height: 1.1;
}

/* Breadcrumbs */
.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-accent-text);
  font-size: 15px;
}
.breadcrumbs a {
  color: var(--color-accent-text);
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumbs a:hover {
  color: #fff;
}
.breadcrumbs .sep {
  opacity: 0.7;
  color: #d4af37;
}
.breadcrumbs .current {
  color: #fff;
  opacity: 0.95;
}

/* Optional parallax khi desktop */
@media (min-width: 1025px) {
  /* .about-hero{ background-attachment: fixed; } */
}

/* Responsive */
@media (max-width: 600px) {
  .about-hero {
    height: 46vh;
  }
}

/* ====== SERVICES PAGE LIST ====== */
.svc {
  /* background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, .06), transparent 45%), linear-gradient(135deg, #0b0b0b, #1a1a1a); */
  padding: 20px;
}

.svc-group {
  max-width: var(--page-max);
  margin: 0 auto 15px;
}

.svc-title {
  font-family: var(--font-subtitle);
  font-weight: 500;
  color: #fff;
  font-size: clamp(28px, 4.2vw, 42px);
  text-align: center;
  margin: 0 0 22px;
}
.svc-subtitle {
  font-family: var(--font-subtitle);
  font-weight: 200;
  color: #fff;
  font-size: 30px;
  text-align: center;
  margin: 0 0 22px;
}
/* 2-column grid */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 70px;
}
.svc-col {
  display: grid;
  gap: 22px;
  align-content: start;
}

/* Item with dotted leader */
.svc-item .row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.svc-item .title {
  font-family: var(--font-subtitle);
  font-weight: 400;
  font-size: 22px;
  color: var(--color-accent);
  margin: 0;
  /* white-space: nowrap; */
}
.svc-item .leader {
  flex: 1 1 auto;
  height: 0;
  border-bottom: 2px dotted rgba(212, 175, 55, 0.55);
  transform: translateY(-4px);
}
.svc-item .price {
  font-family: var(--font-subtitle);
  font-size: 20px;
  color: var(--color-accent);
  white-space: nowrap;
}
.svc-item .desc {
  color: #a8a8a8;
  margin: 8px 0 0;
  line-height: 1.75;
}

/* subtle hover lift */
.svc-item {
  transition: transform 0.18s ease;
}
.svc-item:hover {
  transform: translateY(-3px);
}

/* spacing between groups */
.svc-group + .svc-group {
  margin-top: 36px;
}

/* Responsive */
@media (max-width: 980px) {
  .svc-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 560px) {
  .svc {
    padding: 56px 16px 20px;
  }
}

/* ===== DRINKS (reuse svc-title style) ===== */
.drinks .drinks-wrap {
  text-align: center;
}

/* nút BAR MENU / WINE LIST */
.drinks-btn {
  display: inline-block;
  margin: 14px auto 28px;
  padding: 8px 14px;
  border-radius: 2px;
  background: rgba(166, 130, 48, 0.55);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-title);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.drinks-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* list center giống ảnh */
.drinks-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
}

/* tên món (gold, chữ lớn) */
.drink-name {
  /* margin: 0;
  font-family: var(--font-title);
  font-weight: 300;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 22px;
  color:var(--color-accent); */
  font-family: var(--font-subtitle);
  font-weight: 400;
  font-size: 22px;
  color: var(--color-accent);
  margin: 0;
}

/* ingredient (màu xám, nhỏ hơn) */
.drink-desc {
  margin: 12px 0 0;
  font-family: var(--font-text);
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* WINE LIST items */
.wine-list {
  gap: 22px;
}
.wine-item {
  /* font-family: var(--font-title);
  font-weight: 300;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 22px;
  color: #A68230; */
  font-family: var(--font-subtitle);
  font-weight: 400;
  font-size: 22px;
  color: var(--color-accent);
  margin: 0;
}

/* responsive */
@media (max-width: 768px) {
  .drink-name,
  .wine-item {
    font-size: 20px;
  }

  .drink-desc {
    font-size: 13px;
  }

  .drinks-btn {
    margin-bottom: 22px;
  }
}
/* ===== DRINKS 2 COLUMNS ===== */
.drinks-list.two-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 80px; /* row / column gap */
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

.drinks-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* mỗi drink-item cao đều nhau */
.drink-item {
  /* min-height: 80px;   */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* iPad */
@media (max-width: 1024px) {
  .drinks-list.two-cols {
    gap: 32px 48px;
    max-width: 720px;
  }
}

/* Mobile: về 1 cột cho dễ đọc */
@media (max-width: 768px) {
  .drinks-list.two-cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ===== PRIVACY POLICY SECTION ===== */
.policy-section {
  position: relative;
  padding: 90px 20px;
  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(255, 255, 255, 0.06),
      transparent 45%
    ),
    linear-gradient(135deg, #0b0b0b, #1a1a1a);
}

.policy-wrap {
  max-width: 980px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-text);
}

.policy-intro {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.6);
}

/* section titles */
.policy-title {
  margin: 36px 0 12px;
  font-family: var(--font-title);
  font-weight: 300;
  font-size: 26px;
  letter-spacing: 0.04em;
  color: #a68230;
}

/* text */
.policy-wrap p {
  margin: 0 0 12px;
  line-height: 1.75;
  font-size: 15px;
}

/* list */
.policy-wrap ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.policy-wrap li {
  position: relative;
  padding-left: 18px;
  margin: 10px 0;
  line-height: 1.75;
  font-size: 15px;
}

.policy-wrap li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255, 255, 255, 0.55);
}

.policy-wrap strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* contact */
.policy-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.policy-contact a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .policy-section {
    padding: 60px 16px;
  }
  .policy-title {
    font-size: 22px;
  }
  .policy-wrap p,
  .policy-wrap li {
    font-size: 14.5px;
  }
}

.salon {
  position: relative;
  padding: 100px 20px;
  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(255, 255, 255, 0.06),
      transparent 46%
    ),
    linear-gradient(135deg, #0b0b0b, #1a1a1a);
}

.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: 0.28em;
  text-transform: uppercase;
  color: #a68230;
  white-space: nowrap;
}


.salon__line {
  height: 1px;
  width: min(280px, 22vw);
  background: rgba(166, 130, 48, 0.55);
}

/* Grid images */
.salon__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

/* Square item */
.salon__item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1; /* vuông */
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 2px;
  box-shadow: 0 18px 45px rgba(0, 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 0.45s ease,
    filter 0.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, 0.35);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-title, "Lato", Helvetica, Arial, sans-serif);
  font-size: 22px;
  opacity: 0;
  transform: translateY(6px);
  transition: 0.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: 15px;
    letter-spacing: 0.22em;
  }

  .salon__line {
    width: 18vw;
  }
}

@media (max-width: 420px) {
  .salon__grid {
    grid-template-columns: 1fr;
  }
  .salon__line {
    display: none;
  }
}

/* ====== CONTACT PAGE ====== */
.contact-page {
  background: #000;
  color: var(--color-accent-text);
  text-align: center;
  padding: 80px 20px 0;
  position: relative;
}

/* --- INFO GRID --- */
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: var(--page-max);
  margin: 0 auto 60px;
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

/* Contact icons using inline SVG */
.info-item .icon {
  width: 87px;
  height: 87px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  border-radius: 50%;
  /* bỏ background vì SVG đã có hình tròn gradient */
  background: transparent;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
}
.info-item .icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.info-item h3 {
  font-family: var(--font-subtitle);
  font-weight: 500;
  color: var(--color-accent);
  margin: 0 0 6px;
  font-size: 22px;
}

.info-item p {
  color: var(--color-accent-text);
  line-height: 1.6;
  margin: 0;
  max-width: 300px;
}

/* --- MAP --- */
.contact-map {
  width: 100%;
  height: 450px;
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-map iframe {
  width: 100%;
  height: 450px;
  display: block;
}
.contact-page .contact-info .info-item a {
  color: var(--color-accent-text);
  text-decoration: none;
  transition: color 0.2s ease;
}
/* Responsive */
@media (max-width: 900px) {
  .contact-info {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .info-item p {
    max-width: 100%;
  }
}

/* ============================= */
/* Floating Icons */
/* ============================= */

.floating-icons {
  position: fixed;
  top: 40%;
  right: 0px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

/* Icon chính */
.floating-icons a {
  background: #222222;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease;
}

.floating-icons a:hover {
  background: #555;
}

.floating-icons img {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.floating-icons a:hover img {
  transform: scale(1.1);
}
@media (max-width: 900px) {
  .floating-icons {
    top: 25%;
  }
}
/* ============================= */
/* eGift Dropdown */
/* ============================= */

.egift-wrapper {
  position: relative;
}

/* Dropdown hidden mặc định */
.egift-dropdown {
  position: absolute;
  top: 50%;
  right: 55px;
  transform: translateY(-50%) translateX(20px);

  display: flex;
  flex-direction: column;
  gap: 8px;

  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
}

/* Hover-bridge: vùng đệm giữa icon và dropdown */
.egift-dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  bottom: -10px;
  right: -20px; /* kéo sát về phía icon */
  width: 30px; /* độ rộng “cầu nối” */
}

/* Mở dropdown khi hover wrapper HOẶC hover dropdown */
.egift-wrapper:hover .egift-dropdown,
.egift-dropdown:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

/* Style từng nút location */
.egift-dropdown a {
  background: #2c2c2c;
  color: #d4c7a1;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;

  display: flex;
  justify-content: space-between;
  align-items: center;

  min-width: 230px;
  transition: all 0.3s ease;
}

.egift-dropdown a:hover {
  background: #000;
}

/* Icon egift trong dropdown */
.egift-dropdown a img {
  width: 18px;
  height: 18px;
  margin-left: 12px;
}

/* ============================= */
/* Mobile Optimization */
/* ============================= */

@media (max-width: 768px) {
  .floating-icons {
    right: 0;
    gap: 8px;
  }

  .floating-icons a {
    width: 40px;
    height: 40px;
  }

  .floating-icons img {
    width: 20px;
    height: 20px;
  }

  .egift-dropdown a {
    font-size: 13px;
    min-width: 200px;
  }
}
/* ============================= */
/* visit-salon */
/* ============================= */
.visit-salon {
  padding: 80px 20px 0px;
      background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.06), transparent 46%), linear-gradient(135deg, #0b0b0b, #1a1a1a);
}

.visit-container {
  max-width: var(--page-max);
  margin: auto;
  text-align: center;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 0 0 20px
}

.visit-image img {
  width: 100%;
  border-radius: var(--radius);
}

.business-title {
  color: #cbcbcb;
  font-family: var(--font-heading);
  font-size: 26px;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.business-hours p {
  color: #cbcbcb;
  font-size: 18px;
  margin-bottom: 12px;
}

.visit-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.visit-btn {
  padding: 12px 28px;
  font-size: 14px;
  text-decoration: none;
  background: transparent;
  border: 1px solid;
  border-image: linear-gradient(90deg, #a68230, #f2d063) 1;
  color: transparent;
  background-image: linear-gradient(90deg, #a68230, #f2d063);
  -webkit-background-clip: text;
  background-clip: text;
  transition: all 0.35s ease;
  letter-spacing: 1px;
}

/* Hover nổi lên */
.visit-btn:hover {
  border-image: linear-gradient(90deg, #f2d063, #a68230) 1;
  background-image: linear-gradient(90deg, #f2d063, #a68230);

  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(242, 208, 99, 0.25);
}

@media (max-width: 767px) {
  
  .visit-grid {
    display: flex;
    flex-direction: column;
  }

  .visit-content {
    order: 2;
  }

  .visit-image {
    order: 1;
  }
}

/* career-form-section */
.career-form-section {
  background-color: rgba(24, 24, 24, 0.4);
  padding: 70px 20px;
  color: var(--color-text);
}

.career-form-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.career-form-head {
  margin-bottom: 28px;
}

.career-form-title {
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.9);
}

.career-form-sub {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.55;
  font-size: 14px;
}

/* GRID */
.cf-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.cf-empty {
  display: block;
}

/* FIELD */
.career-form .cf-field,
.career-form .cf-fieldset {
  margin-top: 22px;
}
.career-form .cf-fieldset {
  border: 1px solid #434242;
}
.cf-label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.cf-req {
  color: rgba(255, 255, 255, 0.9);
}

/* INPUT LOOK */
.cf-input,
.cf-textarea,
.cf-select {
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.9);
  outline: none;
  font-size: 14px;
}

.cf-textarea {
  border-radius: 22px;
  resize: vertical;
  min-height: 90px;
}

.cf-input::placeholder,
.cf-textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

/* focus */
.cf-input:focus,
.cf-textarea:focus,
.cf-select:focus {
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}

/* OPTIONS (radio/checkbox) */
.cf-options {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 36px;
  margin-top: 10px;
}

.cf-options-2 {
  max-width: 720px;
}

.cf-opt,
.cf-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.cf-opt input,
.cf-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cf-opt-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

/* custom radio */
.cf-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.65);
  display: inline-block;
  position: relative;
}

.cf-opt input:checked + .cf-dot::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
}

/* custom checkbox */
.cf-box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.65);
  display: inline-block;
  position: relative;
}

.cf-check input:checked + .cf-box::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}

.cf-help {
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* SELECT caret giống ảnh */
.cf-select-wrap {
  position: relative;
}

.cf-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 48px;
}

.cf-caret {
  position: absolute;
  right: 18px;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid rgba(255, 255, 255, 0.55);
  transform: translateY(-30%);
  pointer-events: none;
}

/* SUBMIT */
.cf-actions {
  margin-top: 26px;
}

.cf-submit {
  border: none;
  padding: 12px 28px;
  border-radius: 999px;
  background: rgba(242, 208, 99, 0.75);
  color: rgba(0, 0, 0, 0.9);
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.cf-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  background: rgba(242, 208, 99, 0.92);
}

/* RESPONSIVE */
@media (max-width: 820px) {
  .cf-grid-2 {
    grid-template-columns: 1fr;
  }
  .cf-empty {
    display: none;
  }
}

/* FLOAT BUTTON */
.contact-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #b8a57a;
  border: none;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.contact-float:hover {
  transform: scale(1.1);
}

/* OVERLAY */
.contact-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 9998;
}

.contact-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* PANEL */
.contact-panel {
  position: fixed;
  top: 0;
  right: -500px;
  width: 500px;
  height: 100%;
  background: #f5f5f5;
  padding: 40px 30px;
  transition: 0.4s ease;
  z-index: 9999;
  overflow-y: auto;
}

.contact-panel.active {
  right: 0;
}

/* HEADER */
.contact-header {
  position: relative;
  margin-bottom: 30px;
}

.contact-header h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.contact-header p {
  font-size: 14px;
  color: #555;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: #b8a57a;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 15px;
}

.contact-close {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 24px;
  cursor: pointer;
}

/* FORM */
.contact-form label {
  font-size: 14px;
  font-weight: 500;
}

.form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  margin-top: 8px;
  padding: 14px;
  border-radius: 25px;
  border: none;
  background: #eaeaea;
  font-size: 14px;
}

.contact-form textarea {
  border-radius: 20px;
  height: 120px;
  resize: none;
}

/* SUBMIT */
.contact-submit {
  background: #b8a57a;
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

.contact-submit:hover {
  opacity: 0.85;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-panel {
    width: 100%;
  }

  .form-row {
    flex-direction: column;
  }
}

.booking-section {
  display: flex;
  justify-content: center;
  padding: 140px 20px;
  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(255, 255, 255, 0.06),
      transparent 45%
    ),
    linear-gradient(135deg, #0b0b0b, #1a1a1a);
}

.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: 60px 10px;
  }

  .iframe-wrapper {
    height: 80vh; /* thấp hơn chút cho mobile */
    border-radius: 6px;
  }

  .main-wrapper {
    padding: 0;
  }
  .news-container {
    padding: 30px 12px;
  }

}


.about-banner {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  margin-top: 100px;
}

.about-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12); /* overlay mờ */
}

.about-banner .banner-overlay {
  position: relative;
  color: #fff;
  z-index: 1;
}

.about-banner h2 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 400;
}

.about-banner h1 {
  font-size: 60px;
  font-family: var(--font-heading);
  color: #f4d06f;
  margin: 20px;
  font-weight: 400;
}

.main-wrapper {
  background-size: cover;
  background-position: center;
  padding: 10px 20px;
  padding-bottom: 10px;
}
.main-wrapper {
  background-attachment: fixed;
  /* cố định khi scroll */
}

.news-container {
  padding: 60px 20px; /* khoảng cách trên/dưới */
}

/* Nội dung giới hạn đúng max-width */
.news-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 25px;
  align-items: start;
}

/* Cột trái */
.main-content {
  /* background: rgba(255, 255, 255, 0.65); trắng 80% opacity */
  color: rgb(199, 168, 31);
  padding: 50px;
  border-radius: 60px;
  line-height: 1.7;
}
.main-content h1 {
  font-size: 26px;
  margin: 0 0 12px;
  font-weight: 600;
  line-height: 1;
}
.main-content h2 {
  font-size: 26px;
  margin: 0 0 12px;
  font-weight: 400;
  line-height: 1;
}
.main-content p {
  margin: 0 0 16px;
  color: #ffffff;
}
.main-content img {
  width: 560px;
  display: block;
  border-radius: 8px;
  margin: 18px auto;
}
.main-content ul {
  list-style: none;
  padding-left: 0;
  margin: 18px 0 0;
}
.main-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
}
.main-content ul li::before {
  content: "-";
  position: absolute;
  left: 10px;
  /* top: 6px;
  width: 10px;
  height: 10px; */
  border-radius: 50%;
  /* background: var(--color-accent);  */
}

.news-sidebar {
  background: rgba(255, 220, 67, 0.27); trắng 80% opacity
  color: #ffffff;
  padding: 20px;
  border-radius: 60px;
  display: flex;
  flex-direction: column;
  gap: 16px; /* không set fixed height — slider sẽ có max-height */
}
.news-sidebar h3 {
  margin: 0;
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
}
.news-list {
  display: flex;
  flex-direction: column;
  gap: 12px; /* khoảng cách giữa các item */
}

.news-item {
  display: flex;
  flex-direction: column;
  border-radius: 0;
  overflow: hidden;
}
.news-item {
  padding-bottom: 12px; /* khoảng cách dưới */
  margin-bottom: 12px; /* khoảng cách dưới */
  border-bottom: 1px solid #9c9c9c;
}

.news-item:last-child {
  border-bottom: none; /* bỏ line cho item cuối */
  margin-bottom: 0;
  padding-bottom: 0;
}
.news-item .thumb {
  width: 90%;
  aspect-ratio: 440 / 287;
  object-fit: cover;
  display: block;
  margin: auto;
}

.news-item h4 {
  font-size: 14px;
  margin: 10px;
  line-height: 1.3;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
}

.news-item a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.news-item a:hover {
  text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
  .news-inner {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 0; /* 👈 giảm gap để tránh tràn nhẹ */
  }
  .news-sidebar {
    margin-top: 20px;
  }
  .news-container {
    padding: 30px 12px;
  }

  .main-content {
    padding: 25px;
  }

  /* 👇 fix ảnh bị tràn */
  .main-content img {
    width: 100%;
    height: auto;
  }

  .main-wrapper {
    padding: 0;
  }
}


/* Membership Popup Styles */
.membership-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh; /* For mobile viewport */
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0) env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);
  background-color: rgb(31 29 29 / 50%);
z-index: 9999;
}
.membership-popup .popup-slider {
  width: 100%;
  height: 100%;
  position: relative;
}
.membership-popup .popup-slider .slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.membership-popup .popup-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

}
.membership-popup .popup-slider .slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.membership-popup.show {
  display: flex;
  opacity: 1;
}

.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.popup-content {
  position: relative;
  width: 697px;
  height: 697px;
  /* width: 90vw;
  max-width: 610px;
  height: 90vw; */
  max-height: 90vh;
  aspect-ratio: 1;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: popupSlideIn 0.4s ease-out;
}

@keyframes popupSlideIn {
  from {
    transform: scale(0.8) translateY(30px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.popup-close:hover {
  background: white;
  transform: scale(1.1);
  color: #8B1538;
}
@media (max-width: 768px) {
  .membership-popup .popup-content {
    width: 90vw;
    height: auto;
    max-width: 500px;
    aspect-ratio: 1;
  }
  .membership-popup .popup-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
