:root {
  --font-title: "Fraunces", serif;
  --font-body: "Architects Daughter", cursive;

  --fs-base: 18px;

  --color-bg: #efe5d2;
  --color-bg-header: #eeece2;
  --color-primary: #d97806;
  --color-primary-dark: #a95700;
  --color-text: #4f5050;
  --color-text-light: #c89a3d;
  --color-white: #ffffff;
  --color-border: rgba(217, 120, 6, 0.28);
  --color-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);

  --container: 1280px;
  --header-height: 92px;
  --radius: 14px;

  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
}

html {
  font-size: var(--fs-base);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: var(--color-bg-header);
  border-bottom: 1px solid rgba(217, 120, 6, 0.1);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo {
  flex: 0 0 auto;
}

.site-logo img {
  height: 64px;
  object-fit: cover;
}

.main-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-list a {
  font-size: 1.25rem;
  color: var(--color-text);
  transition: var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--color-primary);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 22px;
  border-radius: 8px;
  border: 1px solid var(--color-primary);
  transition: var(--transition);
  cursor: pointer;
}

.btn-booking {
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.95rem;
}

.btn-booking:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-primary);
  background: var(--color-white);
  border-radius: 8px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 10px;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  border-radius: 999px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  background: var(--color-bg-header);
  border-top: 1px solid rgba(217, 120, 6, 0.12);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu__nav ul {
  padding: 12px 16px 20px;
}

.mobile-menu__nav li + li {
  border-top: 1px solid rgba(217, 120, 6, 0.08);
}

.mobile-menu__nav a {
  display: block;
  padding: 14px 0;
  color: var(--color-text);
  font-size: 1.05rem;
}

.mobile-menu__nav a.active,
.mobile-menu__nav a:hover {
  color: var(--color-primary);
}

/* Banner */
.hero-banner {
  padding-top: var(--header-height);
  background: var(--color-bg);
}

.hero-slide {
  min-height: calc(100vh - 0px);
  display: flex;
  align-items: center;
  padding: 28px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 52px;
}

.hero-content {
  max-width: 680px;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--color-primary);
  font-size: 1.1rem;
}

.hero-title {
  margin: 0 0 22px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 1px;
  color: var(--color-primary);
  text-transform: uppercase;
}

.hero-desc {
  max-width: 560px;
  margin: 0 0 28px;
  font-size: 1.35rem;
  color: var(--color-text-light);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.btn-outline {
  color: var(--color-primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.hero-social p {
  margin: 0 0 12px;
  font-size: 1.9rem;
  color: #222;
}

.hero-social__list {
  display: flex;
  gap: 12px;
}

.hero-social__list a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--color-primary);
  font-weight: 700;
  box-shadow: var(--color-shadow);
}

.hero-media {
  display: flex;
  justify-content: center;
}

.hero-image {
  width: 100%;
  max-width: 520px;
  border-radius: 0;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

/* Swiper */
.heroSwiper {
  position: relative;
}

.heroSwiper .swiper-pagination {
  bottom: 18px !important;
}

.heroSwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(217, 120, 6, 0.4);
  opacity: 1;
}

.heroSwiper .swiper-pagination-bullet-active {
  background: var(--color-primary);
}

.heroSwiper .swiper-button-prev,
.heroSwiper .swiper-button-next {
  color: var(--color-primary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--color-shadow);
}

.heroSwiper .swiper-button-prev::after,
.heroSwiper .swiper-button-next::after {
  font-size: 16px;
  font-weight: 800;
}

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --header-height: 84px;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    display: flex;
  }

  .hero-slide {
    min-height: auto;
    padding: 56px 0 72px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    order: 2;
  }

  .hero-desc {
    margin-inline: auto;
  }

  .hero-buttons,
  .hero-social__list {
    justify-content: center;
  }

  .hero-media {
    order: 1;
  }

  .hero-image {
    max-width: 620px;
  }

  .hero-image img {
    height: 520px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  :root {
    --fs-base: 18px;
    --header-height: 78px;
  }

  .container {
    width: min(100% - 20px, var(--container));
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .site-logo img {
    height: 52px;
  }

  .btn-booking {
    min-height: 42px;
    padding: 8px 14px;
    font-size: 0.9rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero-slide {
    padding: 28px 0 64px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 14vw, 4.2rem);
    line-height: 1;
    margin-bottom: 16px;
  }

  .hero-kicker {
    margin-bottom: 12px;
    font-size: 1rem;
  }

  .hero-desc {
    font-size: 1.08rem;
    margin-bottom: 22px;
  }

  .hero-buttons {
    gap: 10px;
    margin-bottom: 22px;
  }

  .btn-outline {
    min-height: 44px;
    padding: 10px 18px;
    font-size: 0.95rem;
  }

  .hero-social p {
    font-size: 1.7rem;
  }

  .hero-social__list a {
    width: 48px;
    height: 48px;
  }

  .hero-image img {
    height: 360px;
  }

  .heroSwiper .swiper-button-prev,
  .heroSwiper .swiper-button-next {
    display: none;
  }
}

/* Small mobile */
@media (max-width: 479px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .hero-image img {
    height: 300px;
  }
}

/* INFO SECTION */

.info {
  background-image: url('../images/info.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  height: 500px;   /* quan trọng */
  position: relative;
  margin-top: -40px;
}

.info .container {
  position: relative;
  z-index: 3;
}

/* BOX */

.info-box {
  width: min(100%, 1100px);
  margin: 0 auto;

  padding: 28px 24px;

  text-align: center;

  background: linear-gradient(180deg,#e8deb9,#ebc55a);

  border: 1px solid rgba(120,92,24,0.15);

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  transform: translateY(-70px);

  border-radius: 20px;

  opacity: 0;

  animation: infoBounce 0.9s ease-out 0.25s forwards;
}

/* LOGO */

.info-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.info-logo img {
  height: 160px;
  object-fit: cover;
}

/* TEXT */

.info-content {
  font-size: 1.15rem;
  line-height: 1.8;
}

.info-content span,
.info-content a {
  color: var(--color-primary);
}

.info-content a:hover {
  text-decoration: underline;
}

/* BACKGROUND IMAGE */

.info-bg {
  height: 300px;

  margin-top: -20px;

  background-image: url("assets/images/promo-bg.jpg");

  background-size: cover;
  background-position: center;
}

/* BOUNCE EFFECT */

@keyframes infoBounce {

  0%{
    opacity:0;
    transform:translateY(-30px) scale(.96);
  }

  50%{
    opacity:1;
    transform:translateY(-80px) scale(1.02);
  }

  70%{
    transform:translateY(-65px);
  }

  100%{
    opacity:1;
    transform:translateY(-70px);
  }

}

@media (max-width:1024px){
.info{
  margin-top: 10px;
}
.info-box{
transform:translateY(-50px);
padding:24px;
}

.info-logo img{
height:80px;
}

.info-bg{
height:260px;
}

}

@media (max-width:768px){

.info-box{
transform:translateY(-35px);
padding:18px;
}


.info-content{
font-size:1rem;
}

.info-bg{
height:220px;
}

}


/* ABOUT SECTION */
.about-section {
  padding: 80px 0;
  background: #efe5d2;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr;
  gap: 32px;
  align-items: center;
}

.about-content {
  color: #2f2f2f;
}

.about-title {
  margin: 0 0 20px;
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--color-primary);
  text-transform: uppercase;
}

.about-content p {
  margin: 0 0 20px;
  font-size: 1.18rem;
  line-height: 1.7;
}

.about-content span,
.about-content a {
  color: var(--color-primary);
}

.about-content a:hover {
  text-decoration: underline;
}

.about-media {
  overflow: hidden;
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

/* reveal animation */
.about-text,
.about-image {
  opacity: 0;
  transition: all 0.9s ease;
  will-change: transform, opacity;
}

.about-text {
  transform: translateX(-60px);
}

.about-image {
  transform: translateX(60px);
}

.reveal-about.is-visible .about-text,
.reveal-about.is-visible .about-image {
  opacity: 1;
  transform: translateX(0);
}

/* tablet */
@media (max-width: 1024px) {
  .about-section {
    padding: 64px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-content {
    order: 1;
  }

  .about-media {
    order: 2;
  }

  .about-media img {
    min-height: 360px;
  }

  .about-content p {
    font-size: 1.08rem;
  }

  .about-text {
    transform: translateY(40px);
  }

  .about-image {
    transform: translateY(40px);
  }

  .reveal-about.is-visible .about-text,
  .reveal-about.is-visible .about-image {
    transform: translateY(0);
  }
}

/* mobile */
@media (max-width: 767px) {
  .about-section {
    padding: 48px 0;
  }

  .about-grid {
    gap: 18px;
  }

  .about-title {
    margin-bottom: 14px;
  }

  .about-content p {
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .about-media img {
    min-height: 240px;
  }
}

/* =========================
   GALLERY SECTION
========================= */
.gallery-section {
  position: relative;
  padding: 90px 0 80px;
  background: #ecebcf;
  overflow: hidden;
}

.gallery-flower {
  position: absolute;
  inset: 0;
  width: 100%;
  background-image: url("../images/gallery-bg.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  background-attachment: fixed;
  z-index: 1;
}

.gallery-section .container {
  position: relative;
  z-index: 2;
}

.gallery-head {
  text-align: center;
  margin-bottom: 34px;
}

.gallery-title {
  margin: 0 0 12px;
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-primary);
}

.gallery-subtitle {
  margin: 0 0 14px;
  font-size: 1.8rem;
  line-height: 1.4;
  color: #232323;
}

.gallery-link {
  display: inline-block;
  font-size: 1.35rem;
  color: var(--color-primary);
  transition: var(--transition);
}

.gallery-link:hover {
  transform: translateX(4px);
}

/* slider wrap */
.gallery-wrap {
  position: relative;
  padding: 0 44px;
}

.gallery-swiper {
  overflow: hidden;
}

.gallery-swiper .swiper-wrapper {
  align-items: stretch;
}

.gallery-swiper .swiper-slide {
  height: auto;
}

/* card */
.gallery-card {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
}

.gallery-card__button {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: block;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

/* nav */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  color: var(--color-primary);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-nav:hover {
  transform: translateY(-50%) scale(1.06);
}

.gallery-nav span {
  font-size: 2rem;
  line-height: 1;
}

.gallery-nav--prev {
  left: -8px;
}

.gallery-nav--next {
  right: -8px;
}

.gallery-nav.swiper-button-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* pagination */
.gallery-pagination {
  margin-top: 18px;
  text-align: center;
}

.gallery-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(0, 0, 0, 0.35);
  opacity: 1;
}

.gallery-pagination .swiper-pagination-bullet-active {
  background: var(--color-primary);
}

.gallery-empty {
  text-align: center;
  margin: 0;
  font-size: 1.05rem;
  color: #444;
}

/* =========================
   LIGHTBOX
========================= */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.82);
  cursor: pointer;
}

.gallery-lightbox__dialog {
  position: relative;
  z-index: 2;
  width: min(92vw, 920px);
  margin: 5vh auto 0;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-lightbox__dialog img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.26);
}

.gallery-lightbox__close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #222;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {
  .gallery-section {
    padding: 72px 0 64px;
  }

  .gallery-flower {
    opacity: 0.2;
  }

  .gallery-subtitle {
    font-size: 1.45rem;
  }

  .gallery-link {
    font-size: 1.15rem;
  }

  .gallery-wrap {
    padding: 0 34px;
  }

  .gallery-nav {
    width: 42px;
    height: 42px;
  }

  .gallery-nav span {
    font-size: 1.7rem;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 767px) {
  .gallery-section {
    padding: 56px 0 52px;
  }

  

  .gallery-head {
    margin-bottom: 22px;
  }

  .gallery-subtitle {
    font-size: 1.15rem;
  }

  .gallery-link {
    font-size: 1rem;
  }

  .gallery-wrap {
    padding: 0 8px;
  }

  .gallery-nav {
    display: none;
  }

  .gallery-lightbox__dialog {
    width: min(94vw, 94vw);
    margin-top: 8vh;
  }

  .gallery-lightbox__close {
    top: -12px;
    right: -4px;
    width: 40px;
    height: 40px;
  }
}

/* =========================
   HOME SERVICES
========================= */
.home-services {
  padding: 90px 0 90px;
  background: #e9e2bf;
  overflow: hidden;
}

.services-head {
  text-align: center;
  margin-bottom: 42px;
}

.services-title {
  margin: 0 0 12px;
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-primary);
}

.services-subtitle {
  margin: 0 0 18px;
  color: #232323;
  font-size: 1.7rem;
  line-height: 1.4;
}

.services-link {
  display: inline-block;
  color: var(--color-primary);
  font-size: 1.3rem;
  transition: var(--transition);
}

.services-link:hover {
  transform: translateX(4px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}

.service-card {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-services.is-visible .service-card {
  opacity: 1;
  transform: translateY(0);
}

.service-card__inner {
  display: block;
  text-align: center;
}

.service-card__image {
  border: 1px solid rgba(72, 72, 72, 0.7);
  border-radius: 38px;
  overflow: hidden;
  background: #f5f2ea;
  aspect-ratio: 0.86 / 1.15;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* label */
.service-card__label {
  min-width: 105px;
  max-width: calc(80% - 34px);
  margin: -1px auto 0;
  background: #ebca53;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  min-height: 52px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-card__text {
  transition: transform 0.3s ease;
  text-align: center;
}

.service-card__arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.service-card__label:hover .service-card__text {
  transform: translateX(-6px);
}

.service-card__label:hover .service-card__arrow {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
/* tablet */
@media (max-width: 1024px) {
  .home-services {
    padding: 72px 0 72px;
  }

  .services-head {
    margin-bottom: 32px;
  }

  .services-subtitle {
    font-size: 1.4rem;
  }

  .services-link {
    font-size: 1.12rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 18px;
  }

  .service-card__image {
    aspect-ratio: 0.92 / 1.1;
  }

  .service-card__label {
    min-height: 50px;
    padding: 10px 14px;
  }
}

/* mobile */
@media (max-width: 767px) {
  .home-services {
    padding: 56px 0 56px;
  }

  .services-head {
    margin-bottom: 24px;
  }

  .services-subtitle {
    margin-bottom: 12px;
    font-size: 1.15rem;
  }

  .services-link {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 420px;
    margin: 0 auto;
  }

  .service-card__image {
    aspect-ratio: 1 / 1.08;
    border-radius: 30px;
  }

  .service-card__label {
    min-width: 170px;
    max-width: calc(100% - 50px);
    min-height: 48px;
    padding: 10px 14px;
  }

  .service-card__label:hover .service-card__text {
    transform: translateX(-4px);
  }

  .service-card__label:hover .service-card__arrow {
    transform: translateX(4px);
  }
}

/* =========================
   TESTIMONIAL
========================= */
.home-testimonial {
  position: relative;
  padding: 90px 0 90px;
  background-color: #f4f1e8;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.home-testimonial .page {
  width: min(100% - 32px, 1360px);
  margin: 0 auto;
}

.testimonial-head {
  text-align: center;
  margin-bottom: 52px;
}

.testimonial-title {
  margin: 0 0 20px;
  font-family: var(--font-title);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-primary);
}

.testimonial-subtitle {
  margin: 0 0 20px;
  font-size: 1.8rem;
  line-height: 1.4;
  color: #111;
}

.testimonial-link {
  display: inline-block;
  font-size: 1.35rem;
  color: var(--color-primary);
  transition: var(--transition);
}

.testimonial-link:hover {
  transform: translateX(4px);
}

.testimonial-slider {
  position: relative;
  padding: 0 56px 44px;
}

.testimonial-slider .swiper-wrapper {
  align-items: stretch;
}

.testimonial-slider .swiper-slide {
  height: auto;
}

.testimonial-card {
  height: 100%;
  min-height: 198px;
  padding: 20px 22px 18px;
  border: 1px solid rgba(62, 62, 62, 0.8);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.18);
  text-align: center;
  backdrop-filter: blur(1px);
}

.testimonial-name {
  margin: 0 0 10px;
  font-size: 1.55rem;
  line-height: 1.3;
  color: var(--color-primary);
  font-weight: 400;
}

.testimonial-text {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.55;
  color: #111;
}

/* pagination */
.testimonial-pagination {
  margin-top: 26px;
  text-align: center;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(0, 0, 0, 0.28);
  opacity: 1;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--color-primary);
}

/* nav */
.testimonial-nav {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-primary);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;
  transition: var(--transition);
}

.testimonial-nav:hover {
  transform: translateY(-50%) scale(1.05);
}

.testimonial-nav span {
  font-size: 2rem;
  line-height: 1;
}

.testimonial-nav--prev {
  left: 0;
}

.testimonial-nav--next {
  right: 0;
}

.testimonial-nav.swiper-button-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* tablet */
@media (max-width: 1024px) {
  .home-testimonial {
    padding: 72px 0 72px;
  }
  .testimonial-head {
    margin-bottom: 36px;
  }

  .testimonial-subtitle {
    font-size: 1.45rem;
  }

  .testimonial-link {
    font-size: 1.15rem;
  }

  .testimonial-slider {
    padding: 0 40px 40px;
  }

  .testimonial-card {
    min-height: 190px;
    border-radius: 30px;
    padding: 18px 18px 16px;
  }

  .testimonial-name {
    font-size: 1.35rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .testimonial-nav {
    width: 42px;
    height: 42px;
  }
}

/* mobile */
@media (max-width: 767px) {
  .home-testimonial {
    padding: 56px 0 56px;
  }

  .home-testimonial .page {
    width: min(100% - 20px, 1360px);
  }

  .testimonial-head {
    margin-bottom: 24px;
  }

  .testimonial-subtitle {
    margin-bottom: 12px;
    font-size: 1.15rem;
  }

  .testimonial-link {
    font-size: 1rem;
  }

  .testimonial-slider {
    padding: 0 0 34px;
  }

  .testimonial-card {
    min-height: auto;
    border-radius: 26px;
    padding: 18px 16px;
  }

  .testimonial-name {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .testimonial-text {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .testimonial-nav {
    display: none;
  }
}

/* =========================
   STORE SECTION
========================= */
.store-section {
  padding: 52px 0 0;
  background: #efe3c8;
}

.store-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.store-map {
  min-height: 100%;
}

.store-map__inner {
  height: 100%;
  min-height: 350px;
  overflow: hidden;
  border: 1px solid rgba(80, 80, 80, 0.12);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
  background: #f8f4ea;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-map__inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.store-map__inner iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  display: block;
}

.store-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.store-card {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(80, 80, 80, 0.12);
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.07);
  border-color: rgba(217, 120, 6, 0.22);
}

.store-card__title {
  margin: 0 0 10px;
  font-family: var(--font-title);
  font-size: 1.55rem;
  line-height: 1.1;
  color: #1f2c3b;
}

.store-card p {
  margin: 0 0 6px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #111;
}

.store-card p:last-child {
  margin-bottom: 0;
}

.store-card--accent p {
  color: var(--color-primary);
  font-size: 1rem;
}

.store-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  border-top: 1px solid rgba(150, 108, 36, 0.24);
  background: #efe3c8;
  padding: 18px 0 22px;
  margin-top: 18px;
}

.site-footer p {
  margin: 0;
  text-align: center;
  font-size: 1rem;
  color: #111;
}

.site-footer a {
  color: var(--color-primary);
}

.site-footer a:hover {
  text-decoration: underline;
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {
  .store-section {
    padding: 42px 0 0;
  }

  .store-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .store-map__inner,
  .store-map__inner iframe {
    min-height: 300px;
  }

  .store-card {
    padding: 16px 18px;
    border-radius: 16px;
  }

  .store-card__title {
    font-size: 1.4rem;
  }

  .store-card p,
  .store-card--accent p {
    font-size: 0.96rem;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 767px) {
  .store-section {
    padding: 34px 0 0;
  }

  .store-grid {
    gap: 16px;
  }

  .store-map__inner,
  .store-map__inner iframe {
    min-height: 240px;
    border-radius: 14px;
  }

  .store-content {
    gap: 12px;
  }

  .store-info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .store-card {
    padding: 14px 14px 16px;
    border-radius: 14px;
  }

  .store-card__title {
    margin-bottom: 8px;
    font-size: 1.2rem;
  }

  .store-card p,
  .store-card--accent p {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .site-footer {
    padding: 14px 0 18px;
    margin-top: 14px;
  }

  .site-footer p {
    font-size: 0.92rem;
    line-height: 1.45;
  }
}

/* =========================
   SERVICES PAGE
========================= */
.services-page-hero {
  position: relative;
  padding: 120px 0 90px;
  background: url('../images/services-banner.png') no-repeat center center / cover;
  overflow: hidden;
}

.services-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 231, 120, 0.6), rgba(255, 255, 255, 0.15));
}

.services-page-hero .container {
  position: relative;
  z-index: 2;
}

.services-page-hero__content {
  text-align: center;
}

.services-page-hero__content h1 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-primary);
}

.services-page {
  padding: 56px 0 80px;
  background: #e8dfbc;
}

.service-menu-block {
  width: 80%;
  margin-bottom: 44px;
  margin: 0 auto 50px;
}

.service-menu-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.service-menu-title span {
  flex: 1;
  height: 1px;
  background: #e2b640;
  opacity: 0.8;
}

.service-menu-title h2 {
  margin: 0;
  font-size: 3rem;
  font-weight: 400;
  color: #ef9820;
  white-space: nowrap;
}

.service-menu-title__center {
  text-align: center;
}

.service-menu-title__center h2 {
  margin-bottom: 4px;
}

.service-menu-title__center p {
  margin: 0;
  font-size: 0.78rem;
  color: #222;
}

.service-menu-list {
  background: transparent;
  border-bottom: 1px solid rgba(120, 120, 120, 0.2);
}

.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px dotted rgba(120, 120, 120, 0.18);
}

.service-row span {
  font-family: "Patrick Hand", cursive;
  font-size: 1.5rem;
  color: #333;
  text-transform: uppercase;
  transition: all .25s ease;
}

.service-row strong {
  font-family: "Patrick Hand", cursive;
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  transition: all .25s ease;
}

.service-row:hover span{
  transform: scale(1.08);
  color: #d87906;
}

.service-row:hover strong{
  transform: scale(1.08);
  color: #d87906;
}

.service-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 0;
  border-bottom:1px dotted rgba(120,120,120,.18);
  transition:all .25s ease;
}

.service-row:hover{
  padding-left:6px;
}

/* Tablet */
@media (max-width: 1024px) {
  .services-page-hero {
    padding: 100px 0 72px;
  }

  .services-page {
    padding: 48px 0 64px;
  }

  .service-menu-block {
    margin-bottom: 36px;
  }

  .service-menu-title h2 {
    font-size: 1.7rem;
  }

  .service-row {
    padding: 10px 0;
  }

  .service-row span,
  .service-row strong {
    font-size: 1.05rem;
  }
  
}

/* Mobile */
@media (max-width: 767px) {
  .services-page-hero {
    padding: 88px 0 54px;
    background-position: left center;
  }

  .services-page {
    padding: 36px 0 48px;
  }

  .service-menu-block {
    margin-bottom: 28px;
  }

  .service-menu-title {
    gap: 10px;
    margin-bottom: 14px;
  }

  .service-menu-title h2 {
    font-size: 1.5rem;
  }

  .service-menu-title__center p {
    font-size: 0.72rem;
  }

  .service-row {
    padding: 9px 0;
    gap: 10px;
  }

  .service-row span,
  .service-row strong {
    font-size: 0.82rem;
  }

  .service-row span {
    max-width: 75%;
    line-height: 1.4;
  }
}

/* Booking */
.booking-section {
  display: flex;
  justify-content: center;
  padding: 140px 20px;
  
}

.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;
  }
}
/* =========================
   GALLERY
========================= */

.home-gallery{
  padding:80px 0;
  background:#efe3c8;
}

.gallery-title{
  text-align:center;
  margin-bottom:40px;
}

.gallery-title h2{
  font-family:var(--font-title);
  font-size:2.6rem;
  color:var(--color-primary);
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.gallery-item{
  position:relative;
  width:100%;
  aspect-ratio:1/1;
  overflow:hidden;
  border-radius:18px;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .4s ease;
}

.gallery-item:hover img{
  transform:scale(1.08);
}
/* tablet */
@media(max-width:1024px){

.gallery-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* mobile */
@media(max-width:600px){

.gallery-grid{
grid-template-columns:1fr;
}

}

/* =========================
   FLOATING BUTTONS
========================= */

.floating-icons{
  position:fixed;
  right:18px;
  top:65%;
  transform:translateY(-50%);
  z-index:9999;

  display:flex;
  flex-direction:column;
  gap:12px;
}

.egift-wrapper{
  width:52px;
  height:52px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:#ffffff;
  border-radius:14px;

  box-shadow:0 6px 16px rgba(0,0,0,0.15);

  transition:all .25s ease;
}

.egift-wrapper img{
  width:26px;
  height:26px;
}

.egift-wrapper:hover{
  transform:translateX(-6px);
  box-shadow:0 10px 20px rgba(0,0,0,0.2);
}
@media (max-width:768px){

.floating-icons{
  top:auto;
  bottom:20px;
  right:14px;
  transform:none;
}

.egift-wrapper{
  width:48px;
  height:48px;
}

.egift-wrapper img{
  width:24px;
  height:24px;
}

}