@import url("https://fonts.cdnfonts.com/css/century-gothic-paneuropean");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto+Slab:wght@100..900&display=swap");
@import url("https://db.onlinewebfonts.com/c/73d5d112841b3ee4320be434fe76860a?family=ClassiqueSaigon");
@font-face {
  font-family: "ClassiqueSaigon";
  src: url("../fonts/ClassiqueSaigon-Full.woff2") format("woff2"), url("../fonts/ClassiqueSaigon-Full.woff") format("woff");
  font-display: swap;
}
/* Hero */
.hero {
  position: relative;
}
.hero .hero-box {
  position: relative;
  height: 60vh;
  margin: 2rem;
  border-radius: 1rem;
  overflow: hidden;
}
.hero .hero-box video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .hero-box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: background 0.3s;
}
.hero .hero-content {
  position: relative;
  padding: 2rem 3rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.hero .hero-content .text {
  font-size: 0.975rem;
  color: darkgrey;
  margin: 0 1rem 3rem;
  transition: color 0.3s;
}
@media screen and (min-width: 780px) {
  .hero .hero-content .text {
    font-size: 1.15rem;
  }
}
.hero .hero-content .btn-tour {
  background: #2e2e2e;
  color: #fbfaf6;
  margin: 1rem;
  padding: 0.75rem 1.25rem;
  border-radius: 15px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.hero .hero-content .btn-tour:hover {
  background: #18459e;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

/* Navbar */
.site-branding img {
  max-width: 120px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 40px;
  position: sticky;
  top: 0.5rem;
  z-index: 1000;
  margin: 0 2rem;
  /* keep the navbar contents on a single horizontal line on larger viewports */
  flex-wrap: nowrap;
  /* Glass effect */
  background: rgba(255, 255, 255, 0.21);
  border-radius: 1rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.015);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(6.1px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  /* Ensure desktop CTA (outside the nav) shows and aligns correctly */
}
.navbar nav {
  width: fit-content;
  display: flex;
  align-items: center;
}
.navbar > .btn-quote {
  /* prevent items from wrapping to the next line */
  flex-wrap: nowrap;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  margin-left: 1rem;
  /* ensure links don't wrap and remain inline */
  white-space: nowrap;
}
.navbar ul {
  display: flex;
  gap: 1rem;
  list-style: none;
}
.navbar ul li a {
  text-decoration: none;
  color: #2a322e;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 0.35rem 0.875rem;
  background: #fbfaf6;
  border-radius: 15px;
  font-weight: 300;
  letter-spacing: 0.8px;
}
.navbar ul li a:hover {
  color: #EAE8E2;
  background: #2e2e2e;
  border-radius: 1rem;
  font-weight: 300;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

/* Quote Button */
.btn-quote, .btn-quote.pc {
  background: #2e2e2e;
  color: #fbfaf6;
  padding: 8px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  min-width: fit-content;
  display: inline-flex;
  align-items: center;
}
.btn-quote:hover {
  background: #00aeff;
  box-shadow: 0 0 20px #00aeff;
  color: #000;
}

/* Backwards-compatible selector in case markup used .btn-quote.pc elsewhere */
/* Quote Button (shared styles for desktop/tablet/mobile variants) */
.btn-quote,
.btn-quote.pc,
.btn-quote.mb {
  /* smaller, safe defaults so the button behaves across viewports */
  --border: 0.4rem;
  --radius: 1.25rem;
  position: relative;
  background: #2e2e2e;
  color: #fbfaf6;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  min-width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.btn-quote:hover,
.btn-quote.pc:hover,
.btn-quote.mb:hover {
  background: #00aeff;
  box-shadow: 0 0 18px #00aeff;
  color: #000;
}

/* subtle animated ring behind the button */
.btn-quote::before,
.btn-quote.pc::before,
.btn-quote.mb::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  border-radius: 50%;
  background: conic-gradient(rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.05) 20%, rgba(24, 69, 158, 0.06) 60%, rgba(255, 255, 255, 0.05) 100%);
  transform: translate(-50%, -50%) rotate(0deg);
  animation: hb-spin 6s linear infinite;
  opacity: 0.12;
  pointer-events: none;
}

.btn-quote::after,
.btn-quote.pc::after,
.btn-quote.mb::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - var(--border));
  height: calc(100% - var(--border));
  background: rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%);
  border-radius: var(--radius);
  pointer-events: none;
}

.btn-quote span,
.btn-quote.pc span,
.btn-quote.mb span {
  position: relative;
  z-index: 2;
  display: inline-block;
}

@keyframes hb-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@media (max-width: 900px) {
  .navbar {
    padding: 0.5rem 1rem;
    margin: 0.5rem 1rem;
    gap: 0.5rem;
  }
  .navbar ul {
    display: none; /* hidden by default on mobile */
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-radius: 0.75rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem;
    width: calc(100% - 2rem);
    max-width: 360px;
    z-index: 1100;
    /* target WP menu id explicitly for higher specificity */
  }
  .navbar ul li {
    margin: 0.25rem 0;
  }
  .navbar ul li a {
    display: block;
    padding: 0.75rem 1rem;
    background: transparent;
    color: #2a322e;
    border-radius: 0.5rem;
  }
  .navbar ul#primary-menu {
    display: none;
    flex-direction: column;
  }
  /* When navigation is toggled, show the menu */
  /* when nav is toggled show menu; target ID for reliability */
  .main-navigation.toggled ul,
  .main-navigation.toggled #primary-menu,
  .navbar.toggled ul,
  .navbar.toggled #primary-menu {
    display: flex;
  }
  /* Make menu-toggle visible on small screens */
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  /* Handle button visibility for different screen sizes */
  /* Style the booking link inside the hamburger menu for tablet and mobile */
  /* Adjust logo sizing */
}
@media (max-width: 900px) and (max-width: 900px) {
  /* Hide from navbar on mobile/tablet */
  .navbar > .btn-quote {
    display: none !important;
  }
}
@media (max-width: 900px) and (max-width: 780px) {
  /* Show in mobile menu only (not tablet) */
  #primary-menu .menu-item-quote .btn-quote {
    display: flex !important;
    width: 100%;
    padding: 0.75rem 1rem;
    background: #2e2e2e;
    color: #fbfaf6 !important;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0.5rem 0;
    justify-content: center;
    align-items: center;
  }
  #primary-menu .menu-item-quote .btn-quote:hover {
    background: #00aeff;
    box-shadow: 0 0 20px #00aeff;
    color: #000 !important;
  }
}
@media (max-width: 900px) {
  #primary-menu .btn-quote,
  #primary-menu li .btn-quote,
  .navbar ul li .btn-quote {
    display: flex !important;
    width: 100%;
    padding: 0.75rem 1rem;
    background: #2e2e2e;
    color: #fbfaf6 !important;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0.5rem 0;
    justify-content: center;
    align-items: center;
    /* Ensure icon is visible */
    /* Show full text in menu */
    /* Ensure all children inherit the color */
  }
  #primary-menu .btn-quote .fa, #primary-menu .btn-quote .fas, #primary-menu .btn-quote .far, #primary-menu .btn-quote .fab,
  #primary-menu li .btn-quote .fa,
  #primary-menu li .btn-quote .fas,
  #primary-menu li .btn-quote .far,
  #primary-menu li .btn-quote .fab,
  .navbar ul li .btn-quote .fa,
  .navbar ul li .btn-quote .fas,
  .navbar ul li .btn-quote .far,
  .navbar ul li .btn-quote .fab {
    display: inline-block !important;
  }
  #primary-menu .btn-quote span,
  #primary-menu li .btn-quote span,
  .navbar ul li .btn-quote span {
    display: inline-block !important;
  }
  #primary-menu .btn-quote *,
  #primary-menu li .btn-quote *,
  .navbar ul li .btn-quote * {
    color: inherit !important;
  }
  #primary-menu .btn-quote:hover,
  #primary-menu li .btn-quote:hover,
  .navbar ul li .btn-quote:hover {
    background: #00aeff;
    box-shadow: 0 0 20px #00aeff;
    color: #000;
  }
  .site-branding img {
    max-width: 100px;
  }
}
.footer {
  background-color: rgba(234, 245, 255, 0.4196078431);
  color: #1E68C1;
  padding: 4rem 2rem 2rem;
}

.flexbox-container-footer {
  display: flex;
  align-items: center;
  gap: 5vw;
  width: 58.5vw;
  margin-left: auto;
}

.footer-contact-info {
  display: flex;
  margin: 3rem 0;
}

.footer-contact-info img {
  height: 120px;
  margin-bottom: 10px;
}

.footer-contact-info p {
  margin: 0;
  font-size: 0.875rem;
  padding: 0.75rem 0;
  border-top: 1px solid #82b2ec;
}

.footer-contact-info address {
  font-style: normal;
}

.footer-contact-info a {
  color: #0A2A72;
  text-decoration: none;
  font-weight: 500;
}
.footer-contact-info a:hover {
  text-decoration: underline;
}

.opacity-icon {
  opacity: 0.2;
  height: 450px;
  margin: 20px 0;
  position: absolute;
  right: -100px;
  bottom: -100px;
}

.footer-last-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.footer-last-row ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-last-row ul li a {
  color: #0A2A72;
  text-decoration: none;
  font-size: 0.675rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}
.footer-last-row ul li a span {
  font-size: 0.75rem;
}
.footer-last-row ul li a:hover {
  border-bottom: 1px solid #1E68C1;
}

.footer-last-row p {
  margin: 1rem 0;
  font-size: 0.675rem;
  color: #2e2e2e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-last-row a {
  color: #0A2A72;
  text-decoration: none;
}

/* Mobile footer adjustments */
@media screen and (max-width: 780px) {
  .footer {
    padding: 6rem 1rem 2rem; /* reduce huge top padding for mobile */
  }
  .form-section {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 3rem 0 1.5rem;
  }
  .footer-contact-form {
    width: 100%;
    margin-top: 0.5rem;
  }
  .flexbox-container-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
  }
  .footer-contact-info {
    align-items: flex-start;
    text-align: left;
  }
  .footer-contact-info img {
    height: 48px;
    margin-bottom: 12px;
  }
  .footer-contact-info p {
    font-size: 0.95rem;
  }
  .open-hours {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .opacity-icon {
    display: none; /* hide decorative icon on small screens */
  }
  .footer-last-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }
  .footer-last-row ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .footer-last-row ul li a {
    padding: 0.35rem 0.5rem; /* larger tap area */
  }
  .footer-last-row p {
    order: 2;
    margin: 0.25rem 0;
  }
  .footer-last-row > ul:nth-of-type(2) {
    order: 3; /* policy links below */
  }
}
.page {
  margin: 0;
}

/* Intro Animate Text Section */
/* --- Services Section --- */
.services {
  padding: 20vh 4rem;
  background: #f5f5f5;
  text-align: center;
}
.services h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.services .subtitle {
  font-size: 0.8rem;
  max-width: 60ch;
  color: #939393;
  margin: 0 auto 6rem;
}
.services .services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.services .services-list .service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4.5rem 1rem;
  border-bottom: 1px solid #d5d5d5;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  position: relative;
  overflow: visible;
  text-decoration: none;
  color: inherit;
}
.services .services-list .service:hover {
  background: #2e2e2e;
  color: #fff;
}
.services .services-list .service:hover .arrow {
  transform: translateX(5px);
}
.services .services-list .service:hover .service-img {
  display: block;
  transition: all 0.5s ease-in-out;
  margin: 1rem;
}
.services .services-list .service:hover h3 {
  color: #EAE8E2;
}
.services .services-list .service:hover p {
  color: #EAE8E2;
  max-width: 48ch;
}
.services .services-list .service.active {
  background: #0A2A72;
  color: #2e2e2e;
}
.services .services-list .service.active h3 {
  color: #fbfaf6;
}
.services .services-list .service.active p {
  color: #d5d5d5;
}
.services .services-list .service h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: rgb(117, 117, 117);
  font-weight: 400;
}
.services .services-list .service p {
  font-size: 0.8rem;
  color: #2e2e2e;
  margin: 1rem 0 3rem;
  transition: color 0.3s ease;
  max-width: 60ch;
  text-align: right;
}
.services .services-list .service .arrow {
  font-size: 20px;
  color: inherit;
  transition: transform 0.3s ease;
}
.services .services-list .service .arrow i {
  font-size: 24px;
}
.services .services-list .service .service-img {
  flex: 0 0 280px;
  text-align: right;
  display: none;
  position: absolute;
  top: -2rem;
  width: 280px;
  left: 40%;
  right: 60%;
  z-index: 10;
}
.services .services-list .service .service-img img {
  width: 100%;
  border-radius: 1rem;
  max-height: 280px;
  object-fit: cover;
  transform: rotate(-6deg);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Intro Animate Text Section */
.intro-animate-text-section {
  color: #ffffff;
  margin: 0 2rem;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 780px) {
  .intro-animate-text-section {
    height: 80vh;
    overflow: hidden;
    padding: 4rem 0 10vh;
  }
}
.intro-animate-text-section .container {
  position: relative;
}
@media screen and (min-width: 780px) {
  .intro-animate-text-section .container {
    display: flex;
    max-width: 1400px;
    padding: 0 2rem;
    align-items: flex-start;
  }
}
.intro-animate-text-section .image {
  max-width: 240px;
  margin: 0 20vh 1rem 0;
}
.intro-animate-text-section .img-caption {
  max-width: 240px;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.25px;
  color: #939393;
  margin-bottom: 3rem;
}
.intro-animate-text-section .text-content {
  text-align: left;
  font-size: 1rem;
  line-height: 1.4;
  color: #1E68C1;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
  margin-bottom: 1.8rem;
}
@media screen and (min-width: 900px) {
  .intro-animate-text-section .text-content {
    font-size: 2rem;
  }
}
.intro-animate-text-section .text-content p:first-child {
  margin-bottom: 2rem;
}
.intro-animate-text-section .small-footer-text {
  position: absolute;
  font-weight: 800;
  left: 2rem;
  color: #18459e;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.75rem;
  bottom: -80px;
}
@media screen and (min-width: 780px) {
  .intro-animate-text-section .small-footer-text {
    font-size: 0.875rem;
    bottom: -50px;
  }
}

/* Content Info Template Section */
.content-info-template-section {
  background: linear-gradient(135deg, #011a0f, #0A2A72);
  color: #fbfaf6;
  padding: 2rem 2rem 20vh;
}
.content-info-template-section .content-info-template-hero {
  height: 30vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.content-info-template-section .content-info-template-hero h2 {
  font-size: 6rem;
  margin: 0;
  line-height: 1;
  max-width: 24ch;
  text-align: center;
}
.content-info-template-section .content-info-template-hero span {
  background: linear-gradient(45deg, #00aeff, #86b8e4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}
.content-info-template-section .content-info-template-hero p {
  font-size: 0.8rem;
  max-width: 60ch;
  margin-top: 3rem;
  text-align: center;
  font-weight: 300;
}
.content-info-template-section .content-info-template-areas {
  position: relative;
}
.content-info-template-section .content-info-template-areas .flex-container {
  display: flex;
  gap: 2rem;
  padding: 3rem;
  align-content: center;
  flex-wrap: wrap;
  margin: auto;
  justify-content: center;
}
.content-info-template-section .content-info-template-areas .area-card {
  background: rgba(255, 255, 255, 0.2);
  padding: 1.5rem;
  text-align: left;
  flex-basis: 18vw;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.content-info-template-section .content-info-template-areas .area-card:hover {
  transform: scale();
}
.content-info-template-section .content-info-template-areas .area-card h4 {
  margin: 1rem 0 6rem;
  font-size: 1.5rem;
}
.content-info-template-section .content-info-template-areas .area-card p {
  font-size: 0.875rem;
}
.content-info-template-section .content-info-template-areas h3 {
  margin: 2rem 0;
  font-size: 2.5rem;
  text-align: center;
}

/* Mobile refinements for text-content and content-info template */
@media screen and (max-width: 780px) {
  .intro-animate-text-section .text-content {
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
  }
  .intro-animate-text-section .text-content p:first-child {
    margin-bottom: 1rem;
  }
  .intro-animate-text-section .image {
    max-width: 180px;
    margin: 0 4rem 1rem 0;
  }
  .intro-animate-text-section .small-footer-text {
    left: 1rem;
    bottom: -60px;
  }
  .content-info-template-section {
    padding: 1.5rem 1rem 8rem;
    /* keep the same gradient background as desktop */
    background: linear-gradient(135deg, #011a0f, #0A2A72);
  }
  .content-info-template-section .content-info-template-hero {
    height: auto;
    padding: 3rem 1rem;
  }
  .content-info-template-section .content-info-template-hero h2 {
    font-size: 2.25rem;
    max-width: 40ch;
  }
  .content-info-template-section .content-info-template-hero p {
    font-size: 0.95rem;
    margin-top: 1.25rem;
    max-width: 48ch;
  }
  .content-info-template-section .content-info-template-areas .flex-container {
    padding: 1rem;
    gap: 1rem;
  }
  .content-info-template-section .content-info-template-areas .area-card {
    flex-basis: 100%;
    height: auto;
    padding: 1rem;
  }
  .content-info-template-section .content-info-template-areas h3 {
    font-size: 1.75rem;
    margin: 1.5rem 0;
  }
  /* quality-section: stack cards and increase readability on small screens */
  .quality-section {
    padding: 4rem 1rem;
  }
  .quality-section .container {
    display: block;
  }
  .quality-section h2 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  .quality-section p {
    font-size: 0.95rem;
    text-align: center;
    max-width: 48ch;
    margin: 0 auto 1.25rem;
  }
  /* darkbg overlay adjustments for mobile (used by hero overlay) */
  .darkbg {
    background: rgba(0, 0, 0, 0.55) !important;
  }
}
.menu-container h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #1E68C1;
  font-family: "Century Gothic Paneuropean", sans-serif;
}
.menu-container h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #444;
  margin-top: 2rem;
  border-bottom: 2px solid #1E68C1;
  display: inline-block;
  padding-bottom: 0.25rem;
  text-align: center;
}
.menu-container ul {
  list-style-type: none;
  padding: 0;
  margin-top: 1rem;
}
.menu-container li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  margin-bottom: 0.5rem;
  padding: 0.75rem 1rem;
  border-bottom: solid 1px rgba(123, 123, 123, 0.0666666667);
}
.menu-container li:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
.menu-container li p {
  margin: 0;
  font-size: 0.875rem;
  flex: 1;
  color: #222;
  font-weight: 500;
  padding-right: 1rem;
  font-family: "Century Gothic Paneuropean", sans-serif;
}
.menu-container li span {
  white-space: nowrap;
  font-weight: 600;
  color: #1E68C1;
  font-size: 0.875rem;
}
.menu-container section {
  max-width: 850px;
  margin: 0 auto;
}
.menu-container .menu-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .menu-container .menu-container {
    grid-template-columns: 1fr;
  }
}
.menu-container .note {
  font-size: 0.9rem;
  color: #555;
  margin-top: 0.5rem;
  font-style: italic;
}

.review-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 2rem;
}

.review-track {
  display: flex;
  gap: 1.5rem;
  animation: scrollReviews 60s linear infinite;
  width: max-content;
}

.review-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  width: 360px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
}

@media screen and (min-width: 900px) {
  .review-track {
    gap: 2rem;
  }
}
/* Mobile slideshow behavior: make slider scrollable and show controls */
@media screen and (max-width: 780px) {
  .review-slider {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    /* give room for bottom controls so they don't get clipped when scrolling */
    padding-bottom: 6.5rem;
  }
  .review-track {
    animation: none;
    width: max-content;
    gap: 1rem;
  }
  .review-card {
    /* make each card occupy the full viewport area so only one is visible */
    scroll-snap-align: center;
    flex: 0 0 calc(100vw - 2rem);
    width: calc(100vw - 2rem);
    margin: 0 1rem; /* horizontal gutter so card doesn't touch edges */
    /* Add chevron icon for mobile */
  }
  .review-card::after {
    content: "\f138"; /* fa-circle-chevron-right unicode */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
  }
  /* Controls */
  .review-controls {
    display: flex;
    gap: 0.5rem;
    position: absolute;
    left: 50%;
    bottom: 0.75rem;
    transform: translateX(-50%);
    z-index: 9999;
    pointer-events: auto;
    background: transparent;
    padding: 0 0.25rem;
    opacity: 1 !important;
  }
  .review-controls button {
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    border: none;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    /* Keep controls visible and usable when pressed or focused */
  }
  .review-controls button .fa-solid {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.5rem;
    display: inline-block !important;
  }
  .review-controls button i {
    display: inline-block !important;
    font-size: 1.5rem;
    line-height: 1;
    width: 1.5rem;
    height: 1.5rem;
  }
  .review-controls button:hover {
    background: rgba(0, 0, 0, 0.85);
    color: #82b2ec;
    transform: scale(1.1);
  }
  .review-controls button:active, .review-controls button:focus {
    transform: translateY(0);
    opacity: 1;
    outline: none;
  }
  .review-prev i {
    transform: rotate(180deg);
  }
  /* Ensure buttons are not hidden by focus styles from browsers */
  .review-controls button::-moz-focus-inner {
    border: 0;
  }
  /* hide default scrollbar on WebKit */
  .review-slider::-webkit-scrollbar {
    display: none;
  }
}
@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.stars {
  color: #facc15; /* gold color for stars */
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
}

.reviewer-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: #939393;
  margin: 0;
  font-style: italic;
}

.review-card p {
  font-size: 0.97rem;
  line-height: 1.6;
  color: #fbfaf6;
  margin: 2rem 1rem 0.5rem 1.75rem;
  position: relative;
}
.review-card p span {
  position: absolute;
  top: -4rem;
  left: -1.75rem;
  font-family: "ClassiqueSaigon", sans-serif !important;
  font-weight: 600;
  color: #82b2ec;
  font-size: 6rem;
  opacity: 0.75rem;
}

/* ---- The localized glow ---- */
.review-card .glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: radial-gradient(circle 150px at var(--x, 50%) var(--y, 50%), rgba(255, 200, 120, 0.45), rgba(255, 120, 80, 0.25), transparent 70%);
  mix-blend-mode: soft-light;
  filter: blur(30px);
}

.review-card:hover .glow {
  opacity: 1;
}

.form-section {
  padding: 15vh 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8vw;
  margin: 0;
}
.form-section h2 {
  font-size: 5rem;
  max-width: 60%;
  line-height: 1.1;
  margin: 0;
}
.form-section h2 span {
  background: linear-gradient(45deg, #0A2A72, #1E68C1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}
.form-section p {
  max-width: 48ch;
  font-size: 0.975rem;
  color: rgb(117, 117, 117);
  margin: 3rem 0;
}
.form-section .form-row {
  min-width: 40vw;
  display: flex;
  gap: 2.5rem;
}
.form-section .form-group {
  display: flex;
  flex-direction: column;
  margin: 1.5rem 0 3rem;
}
.form-section .form-group label {
  font-weight: 500;
  color: #0A2A72;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.form-section .form-group input, .form-section .form-group textarea, .form-section .form-group select {
  padding: 0.75rem;
  border: none;
  border-bottom: 1px solid #18459e;
  width: 100%;
  max-width: 300px;
  box-sizing: border-box;
  background: none;
  border-radius: 0;
}
.form-section .form-group input::placeholder,
.form-section textarea::placeholder {
  color: #939393;
  opacity: 0.5;
}
.form-section .form-group textarea {
  height: 100px;
  display: block;
  width: 100%;
  min-width: 40vw;
}
.form-section .form-group select[multiple] {
  height: 100px;
}
.form-section .cf7-checkbox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1rem;
  margin: 1.5rem 0;
}
.form-section .cf7-checkbox .wpcf7-list-item {
  margin: 0;
}
.form-section .cf7-checkbox label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
}
.form-section .cf7-checkbox label input[type=checkbox] {
  width: 1rem;
  height: 1rem;
  accent-color: #18459e;
}
@media (max-width: 768px) {
  .form-section .cf7-checkbox {
    grid-template-columns: 1fr;
  }
}
.form-section .cf7-submit {
  background: #0A2A72;
  color: #fff;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  letter-spacing: 0.5px;
}
.form-section .cf7-submit:hover {
  background: #1E68C1;
  transform: translateY(-2px);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.form-section .cf7-submit:active {
  transform: translateY(0);
  box-shadow: none;
}
.form-section .cf7-submit:focus {
  outline: 2px solid #1E68C1;
  outline-offset: 2px;
}

/* ----- Layout & Base ----- */
.contact-info {
  background: #0e0e0e;
  color: #f5f5f5;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  padding: 6rem 1.5rem;
}

.contact-info .container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}

.section-label {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.subtext {
  color: #bdbdbd;
  font-size: 0.95rem;
  line-height: 1.6;
}

.address {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-details .row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.label {
  font-size: 0.9rem;
  color: #8c8c8c;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.contact-details a {
  color: #f5f5f5;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.contact-details a:hover {
  border-color: #f5f5f5;
}

.hours {
  border-top: 1px solid #222;
  padding-top: 1.5rem;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.8rem 2rem;
  margin-top: 1rem;
}

.hours-grid p {
  margin: 0;
  font-weight: 500;
}

.hours-grid span {
  color: #bcbcbc;
  font-size: 0.95rem;
}

.closed {
  color: #d14c3f;
}

/* Map styling */
.map {
  width: 100%;
  height: 400px;
  background: #1a1a1a;
  margin-top: 3rem;
  border: 1px solid #222;
}

/* Responsive */
@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
  .contact-info h1 {
    font-size: 2rem;
  }
}
.signature-dishes-container {
  min-height: 100vh;
  padding: 2rem;
  margin: 0 auto;
  position: relative;
  background-color: #fbfaf6;
  position: relative;
}
.signature-dishes-container .upperrow {
  position: absolute;
  top: 450px;
  left: 2rem;
  right: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2rem;
  justify-items: center;
  max-width: 1800px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .product-grid {
    gap: 6rem;
  }
}

.product-card {
  display: flex;
  flex-direction: row-reverse;
  padding: 2rem;
  max-width: 40vw;
  margin: 2rem 0;
}
@media screen and (max-width: 900px) {
  .product-card {
    padding: 8rem 2rem;
    margin: 10rem 0 4rem;
    height: 600px;
  }
}
.product-card:hover {
  background: #fbfaf6;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff6b35, #f7931e, #8bc34a, #9c27b0, #fdd835);
  background-size: 300% 100%;
  animation: gradientShift 4s ease infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover::before {
  opacity: 1;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.product-image {
  height: 280px;
  margin: 0 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dish-img {
  min-width: 350px;
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.product-card:hover .dish-img {
  transform: scale(1.05) rotate(2deg);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}
.product-content {
  text-align: center;
  position: relative;
  z-index: 2;
  width: 25vw;
}

.product-title {
  font-family: "ClassiqueSaigon", sans-serif !important;
  font-size: 3rem;
  font-weight: 200;
  color: rgb(117, 117, 117);
  letter-spacing: -0.02em;
  line-height: 0.8;
  transition: color 0.3s ease;
  margin: 2rem auto;
}

.product-card:hover .product-title {
  color: #AD894B;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: #2e2e2e;
  letter-spacing: 0.075rem;
  text-transform: uppercase;
  max-width: 18ch;
  margin: 0 auto 1.5rem;
  line-height: 1.15;
}

.product-tagline {
  font-size: 0.675rem;
  font-weight: 300;
  color: rgb(117, 117, 117);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
}

.product-tagline::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background: #e0e0e0;
  transition: background 0.3s ease;
}

.product-card:hover .product-tagline::after {
  background: #ff6b35;
}

.product-card:nth-child(3), .product-card:nth-child(4) {
  flex-direction: row;
  margin-top: 6rem;
  padding-bottom: 0;
}

.footer-signature-dishes ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
}

.ngubinh-logo {
  font-size: 0.675rem;
  font-weight: 400;
  color: #939393;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 4px;
  height: 4px;
  background: #ccc;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.dot:hover {
  background: #ff6b35;
}

/* Responsive */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .product-card {
    padding: 1.5rem;
  }
  .product-title {
    font-size: 1.5rem;
  }
  .footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .product-image {
    height: 150px;
  }
  .dish-img {
    max-width: 100px;
    max-height: 100px;
  }
}
/* Entrance animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.product-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.product-card:nth-child(1) {
  animation-delay: 0.1s;
}

.product-card:nth-child(2) {
  animation-delay: 0.2s;
}

.product-card:nth-child(3) {
  animation-delay: 0.3s;
}

.product-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* Ripple */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.3);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
  z-index: 10;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
/* ---------- Marquee animation ---------- */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  } /* half the duplicated width */
}
/* Our Menu responsive tweaks */
@media (max-width: 900px) {
  .menu-container h3 {
    margin-left: 1rem;
  }
}
.container-signature-dishes {
  padding: 2rem 5vw;
  background-color: #fbfaf6;
}

.content-header {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
  align-items: start;
}
.content-header a {
  background-color: #0A2A72;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.content-header a:hover {
  background-color: #1E68C1;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
@media screen and (min-width: 1300px) {
  .content-header {
    margin: 6rem 0 8rem;
  }
}
.content-header h2 {
  font-size: 3rem;
  color: #0A2A72;
  margin: 0 0 1.5rem;
  font-family: "Century Gothic Paneuropean", sans-serif;
  font-weight: 900;
  line-height: 0.8;
}
.content-header h3 {
  font-size: 1rem;
  color: #0A2A72;
  margin-bottom: 1rem;
}
.content-header p {
  color: #0A2A72;
  margin-bottom: 4rem;
  max-width: 48ch;
}

.customer-choice {
  background-color: #fbfaf6;
  margin: 0;
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  flex-direction: column;
}
.customer-choice .container {
  padding: 2rem 5vw;
  max-width: 1800px;
}
.customer-choice .content-header {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
  align-items: start;
}
.customer-choice .content-header a {
  background-color: #0A2A72;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.customer-choice .content-header a:hover {
  background-color: #1E68C1;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
@media screen and (min-width: 1300px) {
  .customer-choice .content-header {
    margin: 6rem 0 8rem;
  }
}
.customer-choice .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
  row-gap: 2.5rem;
  margin: 2rem 1rem 3rem 2rem;
  margin-bottom: 30px;
}
@media screen and (min-width: 900px) {
  .customer-choice .grid {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2.5rem;
    row-gap: 3rem;
    margin: 3rem 0 6rem 2rem;
  }
}
@media screen and (min-width: 1300px) {
  .customer-choice .grid {
    margin: 5rem 0 8rem 5rem;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 4rem;
    row-gap: 5rem;
  }
}
.customer-choice .item {
  position: relative;
  text-align: center;
}
.customer-choice .item img {
  width: 80%;
  height: auto;
  border-radius: 10px;
  margin: 1rem;
}
.customer-choice .item span {
  position: absolute;
  top: 0;
  left: 10px;
  color: #0A2A72;
  font-weight: bold;
}
.customer-choice .section {
  margin-top: 30px;
}
.customer-choice .menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3.5rem;
  row-gap: 1rem;
  text-align: left;
}
.customer-choice .menu-item {
  color: #0A2A72;
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  gap: 1.25rem;
}
.customer-choice .footer {
  margin-top: 20px;
  color: #0A2A72;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.customer-choice .item img {
  animation: fadeIn 1s ease-in-out;
}
.customer-choice .item span {
  animation: slideUp 1s ease-in-out;
}
.customer-choice h1, .customer-choice h2, .customer-choice p, .customer-choice .menu-item {
  animation: slideUp 1s ease-in-out;
}

:root {
  --gold: #b38a3b;
  --navy: #0c224a;
  --light-bg: #f6f6f6;
  --text-dark: #333;
  --max-width: 1200px;
}

/* Smooth fade-slide animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-page {
  /* LAYOUT */
  /* SIDE LABELS */
  /* ABOUT SECTION */
  /* TIMELINE */
  /* RESPONSIVE */
}
.about-page .animate {
  opacity: 0;
  animation: fadeUp 1s ease-out forwards;
}
.about-page .container {
  max-width: var(--max-width);
  margin: auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 1fr);
  gap: 40px;
  align-items: start;
}
.about-page .container .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 4rem 0 2rem;
}
.about-page .side-labels {
  position: absolute;
  left: 0;
  bottom: -1.75rem;
  box-sizing: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-left: 10px;
  background: var(--navy);
}
.about-page .side-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: white;
  background: var(--navy);
  padding: 1.75rem 0.5rem;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  border-top: 1px solid white;
}
.about-page .side-label:last-child {
  border-top: none;
}
.about-page h1 {
  font-size: 5rem;
  margin: 0 0 10px;
  font-weight: 300;
  color: var(--gold);
  font-family: "ClassiqueSaigon", sans-serif !important;
  line-height: 0.8;
}
.about-page h1 span {
  display: block;
}
.about-page p, .about-page blockquote {
  font-weight: 300;
  line-height: 1.5;
  font-size: 0.875rem;
}
.about-page .about-img img {
  width: 100%;
  animation-delay: 0.3s;
  height: 640px;
  max-width: 28vw;
  object-fit: cover;
}
.about-page .timeline {
  text-align: center;
  padding: 0 2rem 0 0;
  margin: 10vw 0;
  animation-delay: 0.5s;
}
.about-page .from-now {
  padding: 40px 20px 80px;
  text-align: center;
  animation-delay: 0.7s;
}
.about-page .from-now h3 {
  font-size: 26px;
  font-weight: 500;
  margin-top: 20px;
}
@media screen and (min-width: 1300px) {
  .about-page .container {
    grid-template-columns: 1.5fr 1fr;
    column-gap: 12vw;
  }
}