/* Fonts + root variables */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=EB+Garamond:wght@400;500;600&family=Imperial+Script&display=swap');

:root{
  --font-body: "Poppins", sans-serif;
  --font-subtitle: "EB Garamond", serif;
  --font-title: "Imperial Script", cursive;

  --color-bg: rgba(0,0,0,0.95);
  --color-text: #ffffff;
  --color-accent: #E0B550;
  --color-accent-text: #B49444;
  --color-accent-banner-home: #F9E25D;
  --color-accent-dark: #b99329;

  --page-max: 1200px;
  --radius: 6px;
}

/* Base */
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: #000;
  color: var(--color-text);
}

/* Header wrapper (chiếm full width) */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: var(--color-bg);
  border-bottom: 1px solid #222;
}

/* Nội dung header giới hạn max width và căn giữa */
header .page {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  max-width: var(--page-max);
  margin: 0 auto;
}

/* logo */
header .logo img {
  height: 70px;
  display: block;
}

/* left / right */
header .header-left,
header .header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Nav mặc định */
nav#main-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

nav#main-nav ul li a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  font-family: var(--font-body);
  letter-spacing: 0.4px;
}

nav#main-nav ul li a:hover,
nav#main-nav ul li a.active {
  color: var(--color-accent);
}

/* Booking button (right) */
.btn-booking {
  background: linear-gradient(90deg, #A68230, #F2D063);
  color: #000;
  padding: 9px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(0,0,0,0.15);
  transition: transform .15s, filter .15s;
}

.btn-booking:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  background: linear-gradient(90deg, #F2D063, #A68230);

}

/* Hamburger menu (mobile) */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--color-accent);
}
/* ===== Header phone ===== */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px; /* khoảng cách giữa phone và nút */
}

.header-phone{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  line-height: 1;
  padding: 6px 0;
}

.header-phone .phone-icon{
  display: inline-flex;
  width: 28px; height: 28px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.25));
}

.header-phone .phone-icon svg{
  width: 28px; height: 28px; display:block;
}

.header-phone .phone-text{
  color: var(--color-accent);               /* vàng như mock */
  font-weight: 700;
  letter-spacing: 0.3px;
  font-size: 14px;
}

.header-phone:hover .phone-text{
  color: #fff;                  /* hover sáng nhẹ */
}

/* Mobile: ẩn phone để gọn (giống đã ẩn nút right nếu cần) */
@media (max-width: 900px){
  /* .header-phone { display:none; } */
}

/* spacer to avoid content being under fixed header */
.hero {
  margin-top: 100px; /* đúng bằng chiều cao header (tùy chỉnh) */
}

/* Responsive: mobile */
@media (max-width: 900px) {
  header .page {
    padding: 10px 16px;
  }

  nav#main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: var(--color-bg);
    display: none;
    flex-direction: column;
    padding: 12px 20px;
    border-top: 1px solid #222;
  }

  nav#main-nav.active {
    display: flex;
  }

  nav#main-nav ul {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
  }

  /* hide right booking on small screens (optional) */
  header .header-right .header-phone { display: none; }
}

/* ====== HERO SECTION ====== */
.hero {
  margin-top: 90px;
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

/* Swiper Container */
.hero .swiper {
  width: 100%;
  height: 100%;
}

/* Each Slide */
.hero .swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden; /* NEW: tránh lộ mép khi phóng to ảnh */
}

/* ========== UPDATED - Ảnh nền animate bằng ::before ========== */
.hero .swiper-slide::before{
  content:"";
  position:absolute; inset:0;
  background: inherit;           /* ép kế thừa background-image từ .swiper-slide */
  background-size: cover;
  background-position: center;
  z-index: 0;
  will-change: transform;
  transform: scale(1.08) translateY(0); /* phóng nhẹ để không hở viền khi trôi */
  animation: none;               /* chỉ chạy khi slide active */
}

/* Overlay tách riêng (đặt lên trên ảnh) */
.hero .swiper-slide::after{
  content:"";
  position:absolute; inset:0;
  /* background: rgba(0,0,0,.55); */
  z-index: 1;
}

/* Chỉ animate slide đang active để mượt và tiết kiệm tài nguyên */
.hero .swiper-slide-active::before{
  animation: heroFloat 10s ease-in-out infinite;
}

/* Keyframes: trôi lên/xuống chậm rãi */
@keyframes heroFloat{
  0%   { transform: scale(1.08) translateY(-1.5%); }
  50%  { transform: scale(1.12) translateY( 1.5%); }
  100% { transform: scale(1.08) translateY(-1.5%); }
}

/* Content luôn trên cùng */
.hero-content {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--color-accent);
  z-index: 2;
  width: 100%;
  padding: 0 20px;
}

.hero-content h2 {
  font-family: var(--font-subtitle);
  font-size: 100px;
  font-weight: 400;
  color: var(--color-accent-banner-home);
  margin-bottom: 30px;
  margin-top: 20px;

}

.hero-content h1 {
  font-family: var(--font-subtitle);
  font-size: 100px;
  color: var(--color-accent-banner-home);
  font-weight: 300;
  margin-bottom: 30px;
  margin-top: 20px;
}

.hero-content .hero-sub {
  font-family: var(--font-title);
  font-size: 80px;
  color: var(--color-accent-banner-home);
  margin-bottom: 10px;
  font-weight: 500;
}

/* Button */
.hero-content .btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  background: linear-gradient(90deg, #A68230, #F2D063);
  color: #000;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-content .btn-primary:hover {
  background: linear-gradient(90deg, #F2D063, #A68230);
  color: #000;
  transform: scale(1.05);
}

/* ====== SWIPER PAGINATION (BULLETS) ====== */
.hero .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  bottom: 20px;
  z-index: 3; /* đảm bảo nằm trên overlay */
}

.hero .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #999;
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.hero .swiper-pagination-bullet-active {
  width: 20px;
  border-radius: 10px;
  background-color: #fff;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .hero-content h2,.hero-content h1 { 
    font-size: 32px; 
    margin-top: 10px;
  }
  .hero-content .hero-sub { font-size: 38px; }
  .hero-content .btn-primary {
    padding: 10px 22px;
    font-size: 14px;
  }
  .hero {
  height: 35vh;
}
}

/* ====== HOME ABOUT ====== */
.home-about{
  background: #000; /* đồng bộ nền hero */
  padding: 80px 20px 40px;
}

.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-subtitle);
  font-size: 56px;
  font-weight: 500;
  color: var(--color-accent);
  line-height: 1.1;
  margin: 0 0 24px;
}

.home-about .about-text p{
  color: var(--color-accent-text);
  font-size: 18px;
  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 .15s, filter .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: 44px; }
  .home-about .about-visual{ height: 440px; }
  .home-about .about-visual img {
    max-width: 360px;
  }
}
@media (max-width: 640px){
  .home-about{ padding: 56px 16px 24px; }
  .home-about .about-text h2{ font-size: 34px; }
  .home-about .about-text p{ font-size: 16px; }
  .home-about .about-visual{
    height: 320px;
    gap: 10px;
    justify-content: center;
  }

}
/* ====== HOME SERVICES ====== */
.home-services{
  position: relative;
  padding: 80px 20px 90px;

   
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* nhẹ nhàng tăng độ đọc */
.home-services::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(to bottom,
              rgba(0,0,0,.55) 0%,
              rgba(0,0,0,.35) 40%,
              rgba(0,0,0,.55) 100%);
  pointer-events:none;
}

.home-services .page{
  position: relative;  /* nằm trên overlay */
  max-width: var(--page-max);
  margin: 0 auto;
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 36px;
}

/* Card */
.service-card{
  text-align: center;
}

.service-card .thumb{
  width: 220px;
  height: 220px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 42px rgba(0,0,0,.45);
}

/* Tiêu đề + mô tả */
.service-card h3{
  font-family: var(--font-subtitle);
  font-weight: 500;
  font-size: 32px;
  color: var(--color-accent);
  margin: 0 0 8px;
}

.service-card p{
  color: var(--color-accent-text);
  font-size: 16px;
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

/* ====== Responsive ====== */
@media (max-width: 1200px){
  .service-card .thumb{ width: 200px; height: 200px; }
}
@media (max-width: 992px){
  .services-grid{ grid-template-columns: repeat(3, 1fr); }
  .service-card .thumb{ width: 190px; height: 190px; }
}
@media (max-width: 768px){
  .services-grid{ grid-template-columns: repeat(2, 1fr); gap: 36px 22px; }
  .service-card h3{ font-size: 26px; }
  .service-card .thumb{ width: 180px; height: 180px; }
}
@media (max-width: 520px){
  .services-grid{ grid-template-columns: 1fr; }
  .service-card .thumb{ width: 220px; height: 220px; }
}

/* ===== Scroll Reveal Utilities ===== */
.reveal-up,
.reveal-right,
.reveal-left{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: transform, opacity;
}

.reveal-right{ transform: translateX(24px); }
.reveal-left{ transform: translateX(-24px); }

.reveal-show{
  opacity: 1;
  transform: translate(0,0);
}

/* Delay theo biến CSS --d nếu có (stagger) */
.reveal-up,
.reveal-right,
.reveal-left{
  transition-delay: var(--d, 0ms);
}

/* ===== Hover nâng & glow cho service card ===== */
.service-card{
  transform: translateY(0);
  transition: transform .25s ease;
}
.service-card:hover{
  transform: translateY(-6px);
}

.service-card .thumb{
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card .thumb::after{
  content:"";
  position:absolute; inset:-2px;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(212,175,55,.0);
  transition: box-shadow .35s ease;
}
.service-card:hover .thumb{
  transform: scale(1.03);
  box-shadow: 0 24px 48px rgba(0,0,0,.55);
}
.service-card:hover .thumb::after{
  box-shadow: 0 0 0 3px rgba(212,175,55,.25);
}

/* ===== Parallax nền cho home-services ===== */
.home-services{
  background-attachment: fixed; /* tạo chiều sâu */
}
@media (max-width: 1024px){
  .home-services {
    padding-bottom: 20px;
  }
  /* Tắt fixed ở mobile để mượt hơn */
  .home-services{ background-attachment: scroll; }
}

/* ===== Floating nhẹ cho ảnh about ===== */
@keyframes floatSoft {
  0%   { transform: translateY(0) }
  50%  { transform: translateY(-8px) }
  100% { transform: translateY(0) }
}
.float-soft{
  animation: floatSoft 6s ease-in-out infinite;
}

/* tinh chỉnh ảnh about khi hover (nhẹ) */
.about-img{
  transition: transform .35s ease, box-shadow .35s ease;
}
.about-img:hover{
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 24px 48px rgba(0,0,0,.45);
}

/* ====== HOME FEATURE ====== */
.home-feature{
  background:#111; /* nền tối sang, khác hero 1 chút */
  padding: 80px 20px;
}

.home-feature .page{
  max-width: var(--page-max);
  margin: 0 auto;
}

.feature-row{
  display: grid;
  grid-template-columns: 1.05fr 1fr; /* ảnh : chữ */
  gap: 56px;
  align-items: center;
  padding: 36px 0;
}

.feature-row.inverse{
  grid-template-columns: 1fr 1.05fr; /* chữ : ảnh */
}

.feature-media{
  position: relative;
}
.feature-img{
  width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}

.feature-text .pretitle{
  font-family: var(--font-title);
  color: #A68230;
  font-size: 34px;
  margin: 0 0 8px;
}

.feature-text h3{
  font-family: var(--font-subtitle);
  font-weight: 500;
  font-size: 42px;
  color: var(--color-accent);
  line-height: 1.2;
  margin: 0 0 16px;
}

.feature-text p{
  color: var(--color-accent-text);
  line-height: 1.8;
  margin: 0 0 20px;
  max-width: 560px;
}

/* ===== Buttons unified with header booking style ===== */
.btn-cta,
.btn-ghost {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  padding: 12px 24px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  transition: transform .15s ease, filter .15s ease;
}

/* Gradient vàng giống header */
.btn-cta,
.btn-ghost {
  background: linear-gradient(90deg, #A68230, #F2D063);
  color: #000;
}

/* Hover hiệu ứng nhẹ nổi lên */
.btn-cta:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* Kích thước nhỏ cho section nội dung */
.btn-sm {
  padding: 10px 20px;
  font-size: 15px;
}


/* Hover ảnh nhẹ */
.feature-img{
  transition: transform .35s ease, box-shadow .35s ease;
}
.feature-media:hover .feature-img{
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(0,0,0,.55);
}

/* ====== Responsive ====== */
@media (max-width: 1024px){
  .feature-text h3{ font-size: 36px; }
}
@media (max-width: 860px){
  .feature-row,
  .feature-row.inverse{
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .feature-text p{ max-width: 100%; }
}
@media (max-width: 560px){
  .home-feature{ padding: 20px 16px; }
  .feature-text .pretitle{ font-size: 28px; }
  .feature-text h3{ font-size: 30px; }
}

/* ====== HOME PRICES ====== */
.home-prices{
  background: #000;              /* đồng bộ tổng thể */
  padding: 90px 20px 110px;
}

.home-prices .page{
  max-width: var(--page-max);
  margin: 0 auto;
}

/* Headings */
.home-prices .prices-head{
  text-align: center;
  margin-bottom: 36px;
}
.home-prices .pretitle{
  font-family: var(--font-title);
  color: #A68230;
  font-size: 38px;
  margin: 0 0 8px;
}
.home-prices h2{
  font-family: var(--font-subtitle);
  font-weight: 500;
  font-size: 52px;
  color: var(--color-accent);
  margin: 0;
}

/* Grid 2 cột */
.prices-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 70px;
  margin-top: 30px;
}

/* Cột */
.prices-col{ display: grid; gap: 30px; }

/* Item */
.price-item .row{
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.price-item .title{
  font-family: var(--font-subtitle);
  font-weight: 500;
  font-size: 30px;
  color: var(--color-accent);
  margin: 0;
  white-space: nowrap;
}
.price-item .leader{
  flex: 1 1 auto;
  height: 0;                     /* chỉ hiển thị border */
  border-bottom: 2px dotted rgba(212,175,55,.55); /* dotted leader */
  transform: translateY(-4px);   /* căn đẹp với baseline */
}
.price-item .price{
  font-family: var(--font-subtitle);
  font-size: 26px;
  color: var(--color-accent);
  white-space: nowrap;
}

/* mô tả */
.price-item .desc{
  color: var(--color-accent-text);
  margin: 10px 0 0;
  line-height: 1.8;
}

/* CTA dưới */
.prices-cta{
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

/* Hover nhẹ cho từng item */
.price-item{
  transition: transform .2s ease;
}
.price-item:hover{
  transform: translateY(-4px);
}

/* ====== Responsive ====== */
@media (max-width: 1024px){
  .home-prices{
    padding: 20px;
  }
  .home-prices h2{ font-size: 44px; }
  .price-item .title{ font-size: 26px; }
  .price-item .price{ font-size: 22px; }
}
@media (max-width: 820px){
  .prices-grid{ grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 560px){
  .home-prices{ padding: 20px; }
  .home-prices .pretitle{ font-size: 32px; }
  .home-prices h2{ font-size: 34px; }
}
/* ====== HOME TESTIMONIAL ====== */
.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;
  /* background: rgba(0,0,0,0.55); */
}

.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: 36px;
  color: #A68230;
  margin-bottom: 8px;
}
.testimonial-head h2{
  font-family: var(--font-subtitle);
  font-size: 48px;
  font-weight: 500;
  color: var(--color-accent);
  margin: 0;
}

/* Swiper */
.testimonial-slider{
  padding-bottom: 60px;
}
.testimonial-slider .swiper-slide{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* White review box (ảnh bạn sẽ chèn vào) */
.review-box{
  width: 380px;
  height: 230px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transition: transform .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;
  margin-top: 10px;
  width: 100%;
  max-width: 380px; /* bằng chiều rộng khung review-box */
  margin-left: auto;
  margin-right: auto;
}
.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 .25s ease;
}
.review-author .avatar:hover{
  transform: scale(1.05);
}
.review-author .avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.review-author .avatar:not(:has(img)){
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}
.review-author span{
  font-style: italic;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}

/* Pagination bullets */
.testimonial-slider .swiper-pagination{
  bottom: 0;
}
.testimonial-slider .swiper-pagination-bullet{
  width: 8px;
  height: 8px;
  background: #999;
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.testimonial-slider .swiper-pagination-bullet-active{
  width: 20px;
  border-radius: 10px;
  background: #fff;
}

/* Responsive */
@media (max-width: 992px){
  .home-testimonial { padding: 20px 16px; }
  .review-box{ width: 360px; height: 240px; }
  .testimonial-head h2{ font-size: 38px; }
}
@media (max-width: 640px){
  /* .review-box{ width: 260px; height: 170px; } */
}
/* ====== HOME APPOINTMENT (CTA) ====== */
.home-appointment{
  position: relative;
  padding: 120px 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.home-appointment .overlay{
  position: absolute; inset: 0;
  background: rgba(0,0,0,.35);
}

/* center box */
.home-appointment .page{
  position: relative;
  max-width: var(--page-max);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-appointment .cta-panel{
  width: 100%;
  max-width: 880px;
  padding: 48px 56px;
  background: rgba(0,0,0,.9);
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
  border-radius: 10px;
  text-align: center;
  backdrop-filter: blur(2px);
}

/* headings */
.home-appointment .pretitle{
  font-family: var(--font-title);
  color: #A68230;
  font-size: 36px;
  margin: 0 0 10px;
}
.home-appointment h2{
  font-family: var(--font-subtitle);
  color: var(--color-accent);
  font-weight: 500;
  font-size: 52px;
  margin: 0 0 18px;
  line-height: 1.2;
}
.home-appointment .cta-desc{
  color: var(--color-accent-text); /* vàng nhạt dễ đọc trên nền tối */
  line-height: 1.9;
  max-width: 680px;
  margin: 0 auto 26px;
}

/* button dùng style đã đồng bộ với header */
.home-appointment .btn-cta{
  padding: 12px 26px;
}

/* effects */
.home-appointment .cta-panel:hover{
  transform: translateY(-2px);
  transition: transform .25s ease;
}

/* responsive */
@media (max-width: 992px){
  .home-appointment{ padding: 100px 16px; }
  .home-appointment h2{ font-size: 40px; }
}
@media (max-width: 600px){
  .home-appointment{ padding: 80px 14px; }
  .home-appointment .cta-panel{ padding: 32px 22px; }
  .home-appointment .pretitle{ font-size: 28px; }
  .home-appointment h2{ font-size: 30px; }
}
/* ====== HOME VIDEOS ====== */
.home-videos{
  padding: 70px 20px 90px;
  background:#000;
}
.home-videos .page{
  max-width: var(--page-max);
  margin: 0 auto;
}
.videos-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.video-card .thumb{
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.45);
  cursor: pointer;
}
.video-card img{
  width: 100%;
  height: 240px;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .35s ease, filter .35s ease;
}
.video-card .thumb::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 55%, rgba(0,0,0,.25));
  pointer-events:none;
}
.video-card .play-btn{
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: 0;
  padding: 0;
  line-height: 0;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.35));
}
.video-card:hover img{ transform: scale(1.04); filter: brightness(1.02); }
.video-card:hover .play-btn{ transform: translate(-50%, -50%) scale(1.05); }

.video-card .v-title{
  text-align: center;
  color: var(--color-accent);
  font-family: var(--font-subtitle);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
  margin: 14px 10px 0;
}

/* Modal */
.video-modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000;
}
.video-modal.open{ display: block; }

.vm-backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(2px);
}
.vm-dialog{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(980px, calc(100% - 28px));
  background: #111;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  padding: 16px;
}
.vm-player{
  position: relative;
  width: 100%;
  /* 16:9 responsive */
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}
.vm-player iframe{
  position:absolute; inset:0;
  width:100%; height:100%;
}
.vm-close{
  position: absolute;
  top: 6px; right: 10px;
  width: 36px; height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  transition: background .2s ease, transform .15s ease;
}
.vm-close:hover{ background: rgba(255,255,255,.22); transform: scale(1.05); }

/* Responsive */
@media (max-width: 1024px){
  .home-videos{
  padding:20px;
}
  .videos-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .videos-grid{ grid-template-columns: 1fr; }
  .video-card img{ height: 210px; }
}


/* ====== 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,.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: var(--page-max);
  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,.35);
  background: rgba(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: 22px;
  color: var(--color-accent);
  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,.25);
  transform: translateY(-50%);
}
.footer-nav a{
  color: #eae2b0;
  text-decoration: none;
  transition: color .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,.15);
  transition: transform .15s ease, filter .15s ease;
}
.footer-social .soc:hover{
  transform: translateY(-2px);
  filter: brightness(1.06);
}

/* divider line mảnh trên copyright */
.footer-divider{
  height: 1px;
  background: rgba(255,255,255,.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; }
}

/* ====== ABOUT HERO ====== */
.about-hero{
  position: relative;
  margin-top: 90px;                 /* tránh đè header fixed của bạn */
  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,.55) 0%,
    rgba(0,0,0,.45) 40%,
    rgba(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-text);
  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 .2s ease;
}
.breadcrumbs a:hover{ color: #fff; }
.breadcrumbs .sep{
  opacity: .7;
  color: #d4af37;
}
.breadcrumbs .current{
  color: #fff;
  opacity: .95;
}

/* Optional parallax khi desktop */
@media (min-width: 1025px){
  .about-hero{ background-attachment: fixed; }
}

/* Responsive */
@media (max-width: 600px){
  .about-hero{ height: 46vh; }
}

/* ====== ABOUT INTRO ====== */
.about-intro{
  padding: 80px 20px 60px;
  background: #000;
}
.about-intro .intro-wrap{
  max-width: var(--page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr; /* text : image */
  gap: 48px;
  align-items: center;
}

/* Text */
.about-intro .pretitle{
  font-family: var(--font-title);
  color: #A68230 !important;
  font-size: 36px;
  margin: 0 0 8px;
}
.about-intro h2{
  font-family: var(--font-subtitle);
  color: var(--color-accent);
  font-weight: 500;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.15;
  margin: 0 0 18px;
}
.about-intro .intro-text p{
  color: var(--color-accent-text);
  line-height: 1.85;
  margin: 0 0 14px;
  max-width: 560px;
}
.about-intro .intro-text strong{
  color: #f0e3a4;
}

/* Button reuse gradient */
.about-intro .btn-cta{ margin-top: 8px; }

/* Image */
.about-intro .intro-media img{
  width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  transition: transform .35s ease, box-shadow .35s ease;
}
.about-intro .intro-media:hover img{
  transform: translateY(-4px);
  box-shadow: 0 30px 72px rgba(0,0,0,.55);
}

/* Responsive */
@media (max-width: 1024px){
  .about-intro .intro-wrap{ grid-template-columns: 1fr; gap: 28px; }
  .about-intro .intro-text p{ max-width: 100%; }
}
@media (max-width: 560px){
  .about-intro{ padding: 64px 16px 44px; }
  .about-intro .pretitle{ font-size: 28px; }
}

/* ====== ABOUT APPOINTMENT — FULL BACKGROUND ====== */
.about-appointment--bg{
  position: relative;
  padding: 90px 20px;
  min-height: 110vh;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* overall dark veil (very soft) */
.about-appointment--bg .ap-overlay{
  position:absolute; inset:0;
  background: rgba(0,0,0,.35);
  pointer-events:none;
}

/* left gradient to help readability for the text block */
.about-appointment--bg .ap-gradient-left{
  position:absolute; inset:0 45% 0 0; /* covers ~55% left side */
  background: linear-gradient(to right, rgba(0,0,0,.55), rgba(0,0,0,0));
  pointer-events:none;
}

/* content */
.about-appointment--bg .ap-inner{
  position: relative;           /* above overlays */
  max-width: var(--page-max);
  margin: 0 auto;
  width: 100%;
}

.about-appointment--bg .pretitle{
  font-family: var(--font-title);
  color: #A68230;
  font-size: 34px;
  margin: 0 0 8px;
}
.about-appointment--bg h2{
  font-family: var(--font-subtitle);
  color: var(--color-accent);
  font-weight: 500;
  font-size: clamp(32px, 4.8vw, 56px);
  line-height: 1.15;
  margin: 0 0 16px;
  max-width: 680px;
}
.about-appointment--bg .ap-desc{
  color:var(--color-accent-text);
  line-height: 1.9;
  max-width: 640px;
  margin: 0 0 22px;
}

/* responsive */
@media (max-width: 1024px){
  .about-appointment--bg{ background-position: center; }
  .about-appointment--bg .ap-gradient-left{ inset: 0 0 40% 0; background: linear-gradient(to top, rgba(0,0,0,.5), rgba(0,0,0,0)); }
}
@media (max-width: 560px){
  .about-appointment--bg{ padding: 64px 16px; min-height: 52vh; }
  .about-appointment--bg .pretitle{ font-size: 28px; }
}
/* ====== SERVICES PAGE LIST ====== */
.svc{
  background:#000;
  padding: 70px 20px 90px;
}

.svc-group{
  max-width: var(--page-max);
  margin: 0 auto 54px;
}

.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;
}

/* 2-column grid */
.svc-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 70px;
}
.svc-col{ display: grid; gap: 22px; }

/* Item with dotted leader */
.svc-item .row{
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.svc-item .title{
  font-family: var(--font-subtitle);
  font-weight: 500;
  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,.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: var(--color-accent-text);
  margin: 8px 0 0;
  line-height: 1.75;
}

/* subtle hover lift */
.svc-item{ transition: transform .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 76px; }
}

/* ====== PAGE GALLERY (isolate with pg-*) ====== */
.pg-gallery{
  background:#000;
  padding:80px 20px 100px;
}
.pg-wrap{
  max-width: var(--page-max);
  margin:0 auto;
}

.pg-title{
  font-family: var(--font-subtitle);
  color: var(--color-accent);
  font-weight:500;
  font-size: clamp(32px,4vw,46px);
  text-align:center;
  margin:0 0 10px;
}
.pg-sub{
  color:var(--color-accent-text);
  text-align:center;
  margin:0 0 50px;
  line-height:1.6;
}

/* Grid (no conflict) */
.pg-grid{
  display:grid !important;              /* ép dùng grid, ghi đè flex nếu có */
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap:16px;
}

/* Items */
.pg-item{
  position:relative;
  border-radius:8px;
  overflow:hidden;
  background:#111;
  aspect-ratio: 1/1;                    /* ô vuông ổn định; bỏ nếu muốn tự do tỉ lệ */
}
.pg-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;                        /* tránh khoảng trống inline */
  transform:scale(1.01);
  transition:transform .5s ease, filter .5s ease;
}

/* Overlay hover */
.pg-item::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(to bottom right, rgba(212,175,55,.35), rgba(0,0,0,.5));
  opacity:0;
  transition:opacity .4s ease;
}
.pg-item:hover img{ transform:scale(1.08); filter:brightness(1.12); }
.pg-item:hover::before{ opacity:1; }

/* Responsive tweaks */
@media (max-width:768px){
  .pg-gallery{ padding:60px 16px 80px; }
  .pg-sub{ margin-bottom:36px; }
}

/* ====== 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;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-info {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .info-item p { max-width: 100%; }
}

.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: 80vh; /* 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:  var(--color-accent);
  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);
}