@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
/* --- DESIGN SYSTEM & CSS VARIABLES --- */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f9f9f9;
  --bg-dark: #111111;
  --bg-darker: #000000;
  
  --text-primary: #111111;
  --text-secondary: #666666;
  --text-light: #ffffff;
  --text-light-secondary: #cccccc;
  
  --border-light: #eeeeee;
  --border-dark: #333333;
  --border-radius: 10px;
  
  --font-sans: "Google Sans Flex", sans-serif;
  
  --container-width: 1280px;
  --header-height: 80px;
  --transition: all 0.3s ease;
  
  --primary-color: #000000;
  --secondary-color: #555555;
  --accent-color: #e6b37a; /* Tag color */
}

/* --- RESET & BASE STYLES --- */
* {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 28px; }
h2 { font-size: 25px; }
.h2-sm { font-size: 1.8rem !important; line-height: 1.4 !important; }
h3 { font-size: 1.5rem; }

/* Mobile Typography adjustment */
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 24px; }
  .h2-sm { font-size: 1.4rem !important; }
  h3 { font-size: 1.25rem; }
}

/* --- REUSABLE UTILITIES & LAYOUT --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px !important;
  position: relative;
}

.section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}132

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.text-center { text-align: center; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 1rem; }
.mt-4 { margin-top: 1rem; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }

/* Flexbox Utilities */
.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }
.align-items-end { align-items: flex-end; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-end { justify-content: flex-end; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  gap: 8px;
}

.btn-primary {
  background-color: var(--bg-dark);
  color: var(--text-light);
  border-color: var(--bg-dark);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--bg-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  box-shadow: 0px 0px 10px 2px rgb(255 255 255 / 5%);
  border: 1.5px solid black;
}

.btn-outline:hover {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.footer-col .btn-outline:hover {
  background-color: var(--bg-primary) !important;
  color: var(--text-primary) !important;
}

.btn-white {
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

/* --- HEADER & NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: white;
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo img {
  width: 140px;
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 17px;
  font-weight: 450;
  position: relative;
  padding: 8px 0;
  transition: var(--transition);
}

.nav-link.active {
  font-weight: 550;
  color: var(--text-primary);
}

.nav-link:not(.active):hover {
  color: var(--text-primary);
}

/* Underline for hover and active state */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--text-primary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-menu-btn svg{
  width: 30px;
  height: 30px;
}
/* Dropdown Menu */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown .nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--bg-primary);
  min-width: 200px;
  box-shadow: 0px 8px 20px 0px rgba(0,0,0,0.08);
  z-index: 1000;
  top: 100%;
  left: 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0px 0px 10px 2px rgb(236, 235, 235);
}
.dropdown-content a {
  color: var(--text-primary);
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  font-size: 0.875rem;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-light);
}
.dropdown-content a:last-child {
  border-bottom: none;
}
.dropdown-content a:hover {
  background-color: var(--bg-secondary);
}
.nav-dropdown:hover .dropdown-content {
  display: block;
}

#mobile-menu {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: auto;
  bottom: 0;
  width: 300px;
  max-width: 100%;
  background-color: var(--bg-primary);
  padding: 30px;
  box-shadow: -5px 10px 30px rgba(0,0,0,0.1);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
}

#mobile-menu.open {
  transform: translateX(0);
}

@media (max-width: 992px) {
  .nav-menu { display: none; }
  .mobile-menu-btn { display: block; }
  .header-actions { display: none; } /* Hide booking btn on mobile header if needed */
}

.header-actions .btn {
    border-radius: 10px;
    padding: 8px 30px;
}

/* --- HERO BANNERS --- */
.hero-banner {
  margin-top: var(--header-height);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
  padding: 100px 20px;
}

.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Overlay */
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.hero-content h1 {
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 1.125rem;
  margin-bottom: 32px;
  opacity: 0.9;
}

/* Breadcrumb Banner for Subpages */
.breadcrumb-banner {
  margin-top: var(--header-height);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  text-align: center;
}

.breadcrumb-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.breadcrumb-content {
  position: relative;
  z-index: 10;
}

.breadcrumb-content h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.breadcrumb-nav {
  font-size: 0.875rem;
  text-transform: uppercase;
}

.breadcrumb-nav a {
  opacity: 0.7;
}

.breadcrumb-nav a:hover {
  opacity: 1;
}

.breadcrumb-nav span {
  margin: 0 8px;
  opacity: 0.5;
}

/* Category Tabs & Filter Tabs */
.category-tabs,
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .category-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start !important;
    overflow-x: auto;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar Firefox */
  }
  .category-tabs::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
  }
  .category-tabs .btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Filter Tabs Redesign on Mobile */
  .filter-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
    max-width: 100%;
    padding: 0;
    justify-content: stretch !important;
  }
  .filter-tabs .btn {
    width: 100%;
    min-width: 0;
    padding: 10px 6px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}

/* --- NEW CARD STYLE --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 15px;
}

.card {
  background: var(--bg-primary);
  box-shadow: 0px 0px 10px 2px rgb(236, 235, 235);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

/* Increased shadow for better highlight */
.card:hover {
  box-shadow: 0 15px 45px rgba(0,0,0,0.15);
  border-color: #ccc;
}

.card-image {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-tag {
  color: var(--accent-color);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}

.card-title {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--text-primary);
  display: -webkit-box;

-webkit-line-clamp: 2;

-webkit-box-orient: vertical;

overflow: hidden;

text-overflow: ellipsis;
}

.card-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: justify;
}

/* --- FOOTER --- */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 50px 30px 10px 30px;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
  margin-bottom: 60px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer{
    padding: 30px 10px 10px 10px
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .container{
    padding: 0px 15px !important;
  }
}

.footer-col h4 {
  font-size: 1.125rem;
  margin-bottom: 10px;
  color: var(--text-light);
  text-transform: uppercase;
}

.footer-col p, .footer-col ul li a {
  color: var(--text-light-secondary);
  font-size: 0.875rem;
  line-height: 1.8;
}

.footer-col ul li {
  margin-bottom: 7px;
}

.footer-col ul li a:hover {
  color: var(--text-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid var(--border-dark);
  color: var(--text-light-secondary);
  font-size: 0.875rem;
}

/* --- FLOATING ACTIONS --- */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 900;
}

.btn-float {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: var(--transition);
}

.btn-float:hover {
  transform: scale(1.05);
}

.btn-zalo { background-color: #0068FF; }
.btn-phone { background-color: #000000; border: 1px solid #333; }

/* --- REVIEW SLIDER --- */
.review-slider-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.review-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
  gap: 24px;
  padding: 20px 0;
}
.review-slider::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  background: var(--bg-primary);
  box-shadow: 0px 0px 10px 2px rgb(236, 235, 235);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: left;
  transition: var(--transition);
  opacity: 1;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  background-color: var(--bg-dark);
  color: var(--text-light);
  border-color: var(--bg-dark);
  transform: translateY(-4px);
  box-shadow: 0 15px 45px rgba(0,0,0,0.15);
}

.review-card:hover .review-text {
  color: var(--text-light);
}

.review-card:hover .reviewer-name {
  color: var(--text-light);
}

.review-card:hover .reviewer-role {
  color: var(--text-light-secondary);
}

.review-card:hover .quote-icon {
  color: rgba(255, 255, 255, 0.1) !important;
}

.review-card:hover .reviewer-info {
  border-top-color: rgba(255, 255, 255, 0.1) !important;
}

@media (min-width: 768px) {
  .review-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (min-width: 1024px) {
  .review-card {
    flex: 0 0 calc(33.333% - 16px);
  }
}

.review-stars {
  color: #FFB800;
  display: flex;
  gap: 4px;
}

.review-stars i {
  width: 18px;
  height: 18px;
}

.review-text {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.reviewer-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-name {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
}

.reviewer-role {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0px 0px 10px 2px rgb(236, 235, 235);
  background: transparent;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--bg-dark);
  color: var(--text-light);
}

.slider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border-light);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--bg-dark);
  transform: scale(1.2);
}

/* --- CTA SECTION --- */
.cta-section {
  padding: 80px 0;
  background-color: var(--bg-secondary);
}

.cta-container {
  display: flex;
  align-items: stretch;
  background-color: var(--bg-dark);
  color: var(--text-light);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.cta-content {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-image {
  flex: 1;
  min-height: 400px;
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
  }
  .cta-content {
    padding: 40px 24px;
    text-align: center;
  }
  .cta-image {
    width: 100%;
    min-height: 300px;
  }
}

/* --- PRICING TABLE --- */
.pricing-table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.pricing-table th, .pricing-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-light);
  text-align: left;
}

.pricing-table th {
  background-color: var(--bg-secondary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 768px) {
  .pricing-table {
    min-width: 0;
  }
  .pricing-table th, .pricing-table td {
padding: 5px 5px;
        font-size: 11px;
        max-width: 180px;
  }
  .pricing-table-wrapper{
    padding: 6px;
  }
  .pricing-table th {
    font-size: 0.75rem;
    letter-spacing: 0;
  }
}

.price-highlight {
  font-weight: 600;
  color: var(--primary-color);
  text-align: right !important;
}

/* --- BENEFITS SECTION --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  text-align: center;
  margin-top: 20px;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
    box-shadow: 0px 0px 16px 2px rgb(236, 235, 235);
    border-radius: 10px;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.benefit-title {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 17px;
}

.benefit-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* --- FLEX & UTILITIES --- */
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-center { justify-content: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 16px; }
.gap-4 { gap: 24px; }
.w-100 { width: 100%; }

/* Bento Grid */
.bento-large {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .bento-large {
    grid-column: span 1;
  }
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 12px;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* Stats Row */
.stats-row {
  display: flex;
  gap: 24px;
}
.stats-row > div {
  flex: 1;
  min-width: 0;
}
.mb-display{
  display: none;
}
.hero-content h1{
  font-size: 40px;
}
.single-service-page{
  padding: 30px 0px !important;
}
@media (max-width: 768px) {
  .hero-content h1{
  font-size: 22px;
}
  .stats-row {
    gap: 12px;
    justify-content: space-between;
  }
  .stats-row > div {
    text-align: center;
  }
  .stats-row .nesta-u-9epl1v {
    font-size: 26px;
  }
  .stats-row .nesta-u-izs0ea {
    font-size: 0.65rem !important;
    line-height: 1.2;
  }
  .card-grid {
    grid-template-columns: repeat(1,1fr);
    gap: 10px;
  }
  .card-image{
    aspect-ratio: 4 / 3;
  }
  .card-body {
    padding: 20px;
  }
  .card-title{
    font-size: 16px;
  }
  h2{
    font-size: 21px;
  }
  h1{
    font-size: 24px;
  }
  .hero-content p
  {
    font-size: 16px;
  }
  .mb-display{
    display: flex;
  }
  .mb-none{
    display: none;
  }
  .contact-page{
    padding: 20px 0px;
  }
  .logo img {
    width: 120px;
}
}

.section-header p{
  margin-bottom: 15px;
}

/* Ẩn text lỗi */
.wpcf7-not-valid-tip {
    display: none !important;
}

/* Border đỏ */
.wpcf7-not-valid {
    border: 1px solid #dc2626 !important;
}

/* Focus vẫn đỏ */
.wpcf7-not-valid:focus {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, .15);
}

/* Textarea */
textarea.wpcf7-not-valid {
    border: 1px solid #dc2626 !important;
}

/* Select */
select.wpcf7-not-valid {
    border: 1px solid #dc2626 !important;
}
.wpcf7-response-output {
    display: none !important;
}

.flatpickr-calendar {
    z-index: 99999 !important;
    border-radius: 16px;
    overflow: hidden;
}

.flatpickr-time {
    height: 56px !important;
}

.flatpickr-time input {
    font-size: 18px !important;
    font-weight: 500 !important;
}

.flatpickr-am-pm {
    display: none !important;
}
.phone-bar a {
  background: #e60808;
}

.play-btn {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,.94);
    transform: translate(-50%, -50%);
    box-shadow: 0 14px 35px rgba(0,0,0,.24);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all .3s ease;
}

.play-btn i {
    font-size: 18px;
    color: #111;
    margin-left: 4px; /* căn giữa mắt thường */
}

.video-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: #fff;
}
.video-section {
    padding: 80px 0;
    overflow: hidden;
}

.video-head {
    margin: 0 auto 32px;
    padding: 0 16px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.video-head span {
    display: block;
    margin-bottom: 8px;
    color: #b38b4d;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.video-head h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    color: #111;
}

.video-nav {
    display: flex;
    gap: 12px;
}

.video-nav button {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 50%;
    background: #fff;
    color: #111;
    font-size: 30px;
    cursor: pointer;
    transition: .25s ease;
}

.video-nav button:hover {
    background: #111;
    color: #fff;
}

.video-swiper {
    padding: 0 16px 10px;
    overflow: visible;
}

.video-card {
    position: relative;
    display: block;
    height: 360px;
    overflow: hidden;
    border-radius: 10px;
    background: #eee;
}

.video-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,.04) 0%,
        rgba(0,0,0,.12) 45%,
        rgba(0,0,0,.35) 100%
    );
    z-index: 1;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.video-card:hover video {
    transform: scale(1.06);
}


.video-section {
    padding: 80px 0;
    overflow: hidden;
}

.video-swiper {
    margin: 0 auto;
    margin-top: 30px;
    padding: 0 16px 10px;
    overflow: hidden;
}

.video-swiper .swiper-wrapper {
    align-items: stretch;
}

.video-swiper .swiper-slide {
    height: auto;
}
.swiper-button-disabled {
    opacity: .35;
    pointer-events: none;
}

@media(max-width: 991px) {
    .video-card {
        height: 320px;
    }
}

@media(max-width: 575px) {
    .video-section {
        padding: 56px 0;
    }

    .video-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .video-card {
        height: 300px;
        border-radius: 20px;
    }
}
.video-pagination{
    margin:40px 0px;
    display:flex;
    justify-content:center;
    align-items:center;
}
@media screen and (max-width: 575px){
.video-pagination{
    margin:40px 0px;
}
}
.video-pagination .swiper-pagination-bullet{
    width:10px;
    height:10px;
    margin:0 6px !important;
    background:#d6d6d6;
    opacity:1;
    transition:.3s;
}

.video-pagination .swiper-pagination-bullet-active{
    width:32px;
    border-radius:999px;
    background:#111;
}

.grid-footer-price{
  display: grid !important;
  grid-template-columns: 60% 40%;
}
@media screen and (max-width: 575px){
  .grid-footer-price{
  grid-template-columns: 100%;
}
}

/* ===============================
   SERVICE ITEM
================================= */

.nesta-service-item {
    border: 1px solid #ececec;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.nesta-service-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    cursor: pointer;
    transition: .25s;
}

.nesta-service-check:hover {
    background: #fafafa;
}

.nesta-service-check input {
    margin-top: 2px;
    width: 18px;
    height: 18px;
}

.nesta-service-check span {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-weight: 600;
    color: #222;
}

.nesta-service-check small {
    font-size: 13px;
    color: #777;
    font-weight: 400;
}


/* ===============================
   VARIANTS
================================= */

.nesta-service-variants {
    border-top: 1px solid #eee;
    padding: 14px 16px;
    background: #fafafa;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nesta-service-variant {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: .25s;
}

.nesta-service-variant:hover {
    background: #fff;
    border-color: #ddd;
}

.nesta-service-variant input {
    margin-top: 3px;
}

.nesta-service-variant span {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nesta-service-variant strong {
    font-size: 15px;
}

.nesta-service-variant small {
    color: #777;
    font-size: 13px;
}

.nesta-service-variant em {
    font-style: normal;
    color: #999;
    font-size: 12px;
}


/* radio được chọn */

.nesta-service-variant:has(input:checked) {
    background: #fff9eb;
    border-color: #d5b06b;
}

.nesta-service-check:has(input:checked) {
    background: #fffdf8;
    border-color: #d5b06b;
}


/* ===============================
   SELECTED SERVICES
================================= */

.nesta-selected-services {
    margin-top: 28px;
    padding: 24px;
    border-radius: 14px;
    background: #faf8f2;
    border: 1px solid #eadfc6;
}

.nesta-selected-services h4 {
    margin: 0 0 18px;
    font-size: 18px;
    font-weight: 700;
}

.nesta-selected-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nesta-selected-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;

    padding: 12px 0;

    border-bottom: 1px dashed #ddd;
}

.nesta-selected-list li:last-child {
    border-bottom: 0;
}

.nesta-selected-list strong {
    display: block;
    color: #222;
    font-size: 15px;
}

.nesta-selected-list span {
    color: #666;
    white-space: nowrap;
    font-size: 14px;
}

.nesta-total-price {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 2px solid #ddd;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 17px;
    font-weight: 600;
}

.nesta-total-price strong {
    font-size: 24px;
    color: #B68A35;
}


/* ===============================
   MOBILE
================================= */

@media (max-width:767px){

    .nesta-selected-list li{
        flex-direction:column;
        align-items:flex-start;
        gap:6px;
    }

    .nesta-total-price{
        flex-direction:column;
        align-items:flex-start;
        gap:8px;
    }

}
@media (max-width: 575px) {
    .card-grid-home{
      grid-template-columns: repeat(2,1fr) !important;
    }
    .card-grid-home .card-body {
        padding: 13px;
    }
}

.nesta-service-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}
@media screen and (max-width: 575px){
  .nesta-service-tabs {
    grid-template-columns: repeat(2, 1fr);
}
}
.nesta-service-tab {
    width: 100%;
    text-align: center;
}
css hiện tại
.nesta-service-wrap {
    margin-bottom: 24px;
}

.nesta-service-tabs {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.nesta-service-tab {
    border: 1px solid #ddd;
    background: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
}

.nesta-service-tab.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

.nesta-service-panel {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.nesta-service-panel.active {
    display: grid;
}

.nesta-service-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
}

.nesta-service-check input {
    width: 18px;
    height: 18px;
}

@media (max-width: 767px) {
    .nesta-service-panel.active {
        grid-template-columns: 1fr;
    }

}

// css alert wcf
.nesta-alert-booking {
    text-align: left;
    font-size: 15px;
}

.nesta-alert-booking p {
    margin-bottom: 16px;
}

.nesta-alert-box {
    padding: 16px;
    border-radius: 12px;
    background: #faf8f2;
    border: 1px solid #eadfc6;
    margin-top: 14px;
}

.nesta-alert-box h4 {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 700;
}

.nesta-alert-box div {
    margin-bottom: 6px;
}

.nesta-alert-box div:last-child {
    margin-bottom: 0;
}

// price card
.service-card-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.service-card-duration {
    font-size: 14px;
    opacity: 0.75;
}

.service-card-variants {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.service-card-variant-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
}

.service-card-variant-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.service-card-variant-item .nesta-u-0dgs0h {
    white-space: nowrap;
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 45px;
    height: 45px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    text-decoration: none;
    transition: all .3s ease;
}

.back-to-top i {
    color: #fff;
    font-size: 18px;
}

.back-to-top:hover {
    background: #222;
    color: #fff;
    transform: translateY(-3px);
}
.btn-booking-mobile{
    padding: 5px 10px;
    font-weight: bold;
    background-color: var(--primary-color);
    color: white;
    font-size: 12px;
    border-radius: 5px;
    display: none;
}