@font-face {
  font-family: 'Dermagent';
  src: 
       url('../fonts/dermagent.otf') format('opentype'),
       url('../fonts/dermagent.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap; 
}

:root {
  --page-max: 1200px;
  --color-bg: #000;
  --color-text: #fff;
  --color-accent: #f9d65c;
  --font-main: "Poppins", "Regular", sans-serif;
  --radius: 25px;
  --font-heading: "Dermagent", "Regular", cursive;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--color-bg);
  color: var(--color-text);
}

.page {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================= */
/* HEADER */
/* ============================= */
/* header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
} */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* chiếm toàn màn hình */
  z-index: 999;
  background: var(--color-bg);
  border-bottom: 1px solid #222;
}

header .page {
  display: flex;
  /* flex cho nội dung bên trong */
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
  max-width: var(--page-max);
  margin: 0 auto;
}

.hero {
  margin-top: 100px;
  /* đúng bằng chiều cao header */
}

header .logo img {
  height: 70px;
  margin-top: 10px;
}

header .header-left,
header .header-right {
  display: flex;
  align-items: center;
}

/* Nav mặc định */
nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--color-accent);
}

/* .btn-booking {
  background: linear-gradient(90deg, #A68230, #F2D063);
  color: var(--color-accent);
  padding: 10px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: bold;
  border: 1px solid var(--color-accent);
  transition: all 0.3s ease;
}

.btn-booking:hover {
  background: linear-gradient(90deg, #F2D063, #A68230);
  transform: scale(1.05); 
} */

/* Hamburger menu */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--color-accent);
}

/* ============================= */
/* HERO */
/* ============================= */
.hero {
  text-align: center;
  padding: 50px 20px;
}

.hero h1 {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 400;
}

.hero h2 {
  font-family: var(--font-heading) !important;
  font-size: 60px;
  margin-top: 10px;
  color: var(--color-accent);
  margin-bottom: 10px;
  font-style: italic;
  font-weight: 400;
}

.hero p {
  font-size: 25px;
  margin-bottom: 30px;
}

.btn-services {
  display: inline-block;
  background: linear-gradient(90deg, #A68230, #F2D063);
  color: #000; /* chữ đen cho dễ đọc */
  padding: 12px 25px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
}

.btn-services:hover {
  background: linear-gradient(90deg, #F2D063, #A68230); /* đảo gradient khi hover */
  transform: scale(1.05); /* phóng to nhẹ khi hover */
}

/* ============================= */
/* HERO SLIDER */
/* ============================= */
.swiper-hero {
  width: 100%;
  padding: 60px 0;
}

.swiper-hero .swiper-slide {
  width: 400px;
  height: 500px;
  background: #111;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.swiper-hero .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* ============================= */
/* FOOTER */
/* ============================= */
footer {
  padding: 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

}

footer h3 {
  /* color: var(--color-accent); */
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 40px;
}

footer p {
  margin: 15px 0;
}

footer a {
  color: var(--color-text);
  text-decoration: none;
}

footer a:hover {
  color: var(--color-accent);
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  /* background: #111; */
  border-radius: 50%;
  width: 28px;
  height: 28px;
  transition: 0.3s;
}



footer .map iframe {
  margin: 20px 0;
  display: block;
  width: 300px !important;
  height: 200px !important;
  max-width: 100%;
  border: 0;
  border-radius: 10px;
}

.copyright {
  text-align: center;
  padding: 20px;
  font-size: 14px;
  border-top: 1px solid #333;
  background: #000;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

/* Dưới 900px */
@media (max-width: 900px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: var(--color-bg);
    border-bottom: 1px solid #222;
  }

  header .page {
    padding: 10px 15px;
  }

  /* Logo bên trái + booking bên phải */
  .header-left {
    flex: 1;
  }

  .header-right {
    margin-left: auto;
    margin-right: 10px;
  }

  nav {
    position: absolute;
    /* tách menu khỏi luồng */
    top: 100%;
    /* nằm ngay dưới header */
    left: 0;
    width: 100%;
    display: none;
    background: var(--color-bg);
    text-align: center;
    padding: 15px 0;
    z-index: 1000;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
  }

  .menu-toggle {
    display: block;
    /* hiện hamburger */
    font-size: 28px;
    cursor: pointer;
    margin-left: 15px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero h2 {
    font-size: 60px;
  }

  .hero p {
    font-size: 24px;
  }
 .swiper-hero .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

 .swiper-hero .swiper-slide {
    width: 70%;
    height: auto;
    aspect-ratio: 4/5;
  }

  footer {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }
  footer h3{
  margin-top: 20px;

  }
  footer .map iframe {
    width: 100% !important;
    height: 220px !important;
  }
}

/* Dưới 600px */
@media (max-width: 600px) {
  nav ul {
    gap: 10px;
  }

  .btn-booking {
    padding: 8px 15px;
    font-size: 14px;
  }

  .hero {
    padding: 30px 10px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero h2 {
    font-size: 40px;
  }

  .hero p {
    font-size: 18px;
  }

  .btn-services {
    padding: 10px 20px;
    font-size: 14px;
  }

  .swiper {
    padding: 40px 0;
  }

  .swiper-slide {
    width: 85%;
    aspect-ratio: 4/5;
  }

  footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  footer .map iframe {
    height: 200px !important;
  }
}

.main-wrapper {
  background-attachment: fixed;
  /* cố định khi scroll */
}

/* About Us */
.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 80px auto;
  gap: 30px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 55px;
  margin-bottom: 20px;
  color: #101010;
  font-weight: 400;
    line-height: 0.7;
}
.about-text small {
  font-size: 27px;
}
.about-text p {
  line-height: 1.5;
  margin-bottom: 20px;
  color: #000;
}

.about-images {
  display: flex;
  gap: 15px;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
}

.about-images img {
  border-radius: 12px;
  object-fit: cover;
}

.about-images img:first-child {
  width: 290px;
  height: 330px;
}

.about-images img:last-child {
  width: 100%;
  height: 470px;
}

/* Services */
.services {
  text-align: center;
  margin-bottom: 60px;
}

.services h2 {
  font-family: var(--font-heading);
  font-size: 50px;
  margin-bottom: 30px;
  color: #101010;
  font-weight: 400;
}

.service-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.service-item {
   width: 280px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.service-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.service-item:hover img {
  transform: scale(1.05);
}
.service-item p {
  font-family: var(--font-heading);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  margin: 0;
  padding: 18px 0;
  font-size: 30px;
  color: #000;
  transition: all 0.3s ease;
}

.service-item:hover p {
  background: rgba(166, 130, 48, 0.9); /* vàng nâu gradient nhẹ */
  color: #fff;
}

/* base gallery styles */
.gallery {
  text-align: center;
}

.gallery h2 {
  font-family: var(--font-heading);
  font-size: 50px;
  margin-bottom: 30px;
  color: #101010;
  font-weight: 400;
}

/* grid desktop */
.gallery-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.gallery-item.medium-large {
  width: 240px;
}

.gallery-item.small {
  width: 220px;
}

.gallery-item.large {
  width: 320px;
}

.gallery-item.medium {
  width: 260px;
}

/* slide is hidden by default on large screens */
.gallery-slide {
  display: none;
}

/* tuỳ chỉnh pagination cho gallery slide */
.gallery-slide .swiper-pagination {
  bottom: 10px !important;
  /* cách đáy */
  text-align: center;
}

.gallery-slide .swiper-pagination-bullet {
  background: #ccc;
  /* màu mặc định */
  opacity: 1;
  /* không trong suốt */
  width: 10px;
  height: 10px;
  margin: 0 6px !important;
  border-radius: 50%;
  /* tròn */
  transition: all 0.3s ease;
}

.gallery-slide .swiper-pagination-bullet-active {
  background: #101010;
  /* màu active */
  width: 14px;
  height: 14px;
}

/* Responsive dưới 900px */
@media (max-width: 900px) {
  .about {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .about-text {
    order: 1;
  }

  .about-images {
    order: 2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    padding: 15px;
  }

  .about-images img:first-child {
    width: 37%;
    height: auto;
  }

  .about-images img:last-child {
    width: 55%;
    height: auto;
  }

  .service-list {
    gap: 15px;
  }

  .service-item {
    width: 220px;
  }

  .gallery-grid {
    display: none;
  }

  .gallery-slide {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 12px;
  }

  .gallery-slide .swiper-slide {
    display: flex;
    justify-content: center;
  }

  .gallery-slide .swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
  }
}

/* Responsive dưới 600px */
@media (max-width: 600px) {
  .about-text p {
    font-size: 14px;
    line-height: 1.6;
  }

  .service-item {
    width: 100%;
    max-width: 320px;
  }

  .service-item p {
    font-size: 22px;
    padding: 12px 0;
  }
   .about-images {
    margin-left: 20px;
   }
}


/* Banner About */
.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;
}

/* Nội dung chính */
.about-section {
  background: #fdf6ec;
  padding: 00px 20px;
  background: url("/assets/images/home/bg.png") no-repeat center center/cover;

}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 50px;
  font-family: var(--font-heading);
  color: #101010;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #000;
}

.btn-booking {
  display: inline-block;
  background: linear-gradient(90deg, #A68230, #F2D063);
  color: #000; /* chữ đen */
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
}

.btn-booking:hover {
  background: linear-gradient(90deg, #F2D063, #A68230); /* đảo chiều khi hover */
  transform: scale(1.05); /* hiệu ứng phóng nhẹ */
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .about-image {
    margin-top: 30px;
  }
}
.main-wrapper {
  background-size: cover;
  background-position: center;
  padding: 10px 20px;
  padding-bottom: 10px;
}

.menu-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.menu-section {
  background: rgba(255, 255, 255, 0.5); /* nền mờ */
  border-radius: 16px;
  padding: 40px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.menu-title {
  width: 100%;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 50px;
  color: #101010;
  margin-bottom: 30px;
  margin: 10px;
  line-height: 0.7;
}
.menu-title small{
  font-size: 25px;
  font-weight: 400;
}
.menu-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
}

.menu-content {
  flex: 1;
  text-align: left;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  padding: 0px 10px;
}

.menu-text h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

.menu-text p {
  margin: 5px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

.menu-price {
  font-weight: bold;
  font-size: 18px;
  color: #000;
  /* margin-left: 20px; */
  white-space: nowrap;
}


@media (max-width: 900px) {
  .about-banner{
    height: 210px;
  }
  .about-banner h1{
    font-size: 80px;
  }
  .about-banner h2{
    font-size: 26px;
  }
  .menu-section {
    align-items: center;
    padding: 30px;
  }

  .menu-image img {
    max-width: 100%;
  }

  .menu-content {
    width: 100%;
  }

  .menu-title {
    font-size: 40px;
  }
  .menu-list {
  padding: 0;
  margin: 0;
  margin-top: 20px;
}
}

/* Mobile: dưới 600px */
@media (max-width: 600px) {


  .menu-section {
    padding: 20px;
    gap: 20px;
  }

  .menu-title {
    font-size: 40px;
  }

  .menu-text h4 {
    font-size: 18px;
  }

  .menu-text p {
    font-size: 13px;
  }

  .menu-price {
    font-size: 18px;
  }
}
.gallery-page {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 60px auto; /* căn giữa gallery-page */
}
.gallery-page-title {
  font-family: var(--font-heading);
  font-size: 50px;
  margin-bottom: 30px;
  color: #101010;
  font-weight: 400;
  display: flex;
  align-items: center;
  text-align: center;
  max-width: 1000px;
  margin: 60px auto 30px auto;
}
.gallery-page-title::before,
.gallery-page-title::after {
    content: '';
    flex: 1;
    border-bottom: 2px dotted #a68230;
    margin: 0 20px;
}
.gallery-page-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.gallery-page-item a {
  display: block; /* cho link chiếm toàn bộ khung */
}

.gallery-page-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-page-item:hover img {
  transform: scale(1.05);
}


/* Responsive */
@media (max-width: 900px) {
    .gallery-page {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cột */
        padding: 10px;

    }
}

@media (max-width: 600px) {
    .gallery-page {
        grid-template-columns: 1fr;
        /* 1 cột */
        padding: 10px;

    }
}

.contact-section {
    max-width: 1200px;
    margin: 40px auto;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-left {
    flex: 1;
}

.contact-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-right {
    flex: 1;
    background: url('assets/images/contact/bacgroud-contact.png') no-repeat center center/cover;
    color: #333;
    padding: 40px;
}

.contact-right h2 {
    margin-top: 0;
    margin-bottom: 15px;
}
.contact-right h3,
.business-hours h3
 {
    font-family: var(--font-heading);
    font-size: 30px;
    margin-bottom: 10px;
}
.contact-info p {
    margin: 6px 0;
    line-height: 1.8;

}

.contact-info a {
    color: inherit;
    text-decoration: none;
}

.business-hours {
    margin-top: 20px;
}

.business-hours p {
    margin: 5px 0;
    line-height: 1.8;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    margin-right: 10px;
    font-size: 20px;
    text-decoration: none;
    color: #333;
}


.map-section {
    max-width: 1200px;
    margin: 20px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-section iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* Responsive dưới 900px */
@media (max-width: 900px) {
    .contact-section {
        flex-direction: column;
    }

    .contact-left,
    .contact-left img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .contact-right {
        min-height: auto;
    }
}

/* Responsive dưới 600px */
@media (max-width: 600px) {
    .contact-right {
        padding: 20px;
        font-size: 14px;
    }

    .contact-right h2 {
        font-size: 20px;
    }

    .business-hours h3 {
        font-size: 30px;
    }

    .social-icons a {
        font-size: 18px;
    }
}
.lb-close {
    display: none !important;
}


/* ====== HOME TESTIMONIAL ====== */
.home-testimonial{
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 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-heading);
  font-size: 50px;
  margin-bottom: 0px;
  color: #101010;
}
.testimonial-head h2{
  font-family: var(--font-subtitle);
  font-size: 25px;
  font-weight: 400;
  color: #101010;
  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: 380px;
  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: #101010;
  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: 360px; }
  .testimonial-head h2{ font-size: 25px; }
}
@media (max-width: 640px){
  /* .review-box{ width: 260px; height: 170px; } */
}

.policy-section {
  color: #101010;
  padding: 80px 20px;
  font-family: var(--font-main);
  font-size: 18px;
  max-width: 850px;
  margin: auto;
}

.policy-container {
  max-width: var(--page-max);
  margin: 0 auto;
}

.policy-intro,
.policy-closing {
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 0.9;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.policy-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 22px;
  line-height: 1.8;
}

.policy-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #FB1062;
  font-size: 36px;
  line-height: 1;
}

.policy-list strong {
  font-weight: 600;
}



.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.7); /* trắng 80% opacity */
  color: #222;
  padding: 50px;
  border-radius: var(--radius);
  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: #555;
}
.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, 255, 255, 0.7); /* trắng 80% opacity */
  color: #222;
  padding: 20px;
  border-radius: var(--radius);
  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; }
.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: #333;
  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;
  }
}


.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;
  }
}