.banner-section-six .content-column {
    padding: 30px 0 30px 30px !important;
    /* min-width: calc(50% - 273px); */
    max-width: 400px !important;
    left: 0;
    position: relative;
}

.banner-section-six .content-column .inner-column .title {
    font-size: 38px;
    line-height: 54px;
}
.contact-section .form-column .sec-title{
    text-align: center;
}

.images-column .inner-column {
  position: relative;
  width: 100%;
  height: 400px; /* ปรับตามต้องการ */
  overflow: hidden;
}

.bg.bg-image {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1);
  /* transition: opacity 1.5s ease, transform 5s ease; */
  z-index: 1;
  filter: brightness(0.7); /* ยิ่งค่าน้อยยิ่งมืด */
  transition: opacity 1.5s ease, transform 8s ease,filter 0.3s ease;
  /* transition: filter 0.3s ease; */
}

.bg.bg-image.active {
  opacity: 1;
  transform: scale(1.1);
  z-index: 2;
}
#footer_logo{
    max-width: 200px !important;
}

a{
    text-decoration: none !important;
}
.icon-svg path{
    fill: blue;
    cursor: pointer;
}
.icon-svg:hover path {
  fill: red;
  transition: fill 0.3s ease;
}
/* tab Comfort & Convenience At Its Best */
tabs {
  margin-top: 30px;
}
.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.tab-buttons li {
  padding: 12px 28px;
  border: 2px solid #bfa980;
  background: #fff;
  color: #bfa980;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(191, 169, 128, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.tab-buttons li:hover {
  background: #bfa980;
  color: #111;
  box-shadow: 0 6px 20px rgba(191, 169, 128, 0.6);
}

.tab-buttons li.active {
  /* background: #111; */
   background: #bfa980;
   color: white;
  /* color: #bfa980; */
  border-color: #bfa980;
  box-shadow: 0 6px 25px rgba(191, 169, 128, 0.9);
}

.tab {
  display: none;
  animation: fade 0.3s ease-in-out;
}

.tab.active {
  display: block;
}

@keyframes fade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .feature-block-three {
    width: 100%;
    margin-bottom: 20px;
  }
}
/* End tab Comfort & Convenience At Its Best */
.main-menu a{
    color: #000000;
}
.main-menu .navigation > li > ul{
    width: 280px;
}
.scroll-snap-x {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.snap-align {
    scroll-snap-align: start;
}
.customer-review-slider {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    width: max-content;
    animation: scroll-left 30s linear infinite;
}

.review-card {
 display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 300px;
    max-width: 400px;
    height: 250px;
      min-height: 200px;
    cursor: pointer;
    flex: 0 0 auto;
    min-width: 450px;
    margin-right: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    white-space: nowrap;
    font-size: 0.95rem;
    background-color: #f8f5f0;
}
.review-card .rating{
    color: #cb935d;
}
.review-card .review-title{
    min-width: 300px;
    max-width: 400px;
}
.review-card .review-title h6{
     white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.review-card .comment{
     overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: normal;
    line-height: 1.4em;
    max-height: calc(1.4em * 3);
}
.review-card .comment span{
    font-weight: bold;
}
.customer-review-slider:hover .slider-track {
    animation-play-state: paused;
}
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


.progress-info .progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; /* ระยะห่างระหว่างกล่อง */
}
@media (max-width: 767.98px) {
  .progress-info .progress {
    grid-template-columns: 1fr;
  }
}
.progress-single {
  background: #f0f0f0; /* ใส่พื้นหลังเล็กน้อยเพื่อแยก */
  padding: 10px;
  border-radius: 6px;
}

.progress-single .progress-title {
  margin-bottom: 8px;
  font-weight: 600;
}

.progress-single .bar {
  background: #ddd;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.bar {
  position: relative;
  background: #ddd;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.bar-inner {
  height: 100%;
  background-color: #cb935d;
  width: 0;
  transition: width 1s ease;
}

.count-text {
  /* position: absolute; */
  right: 8px;
  top: -22px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #333;
}
.contact-section{
    background-color: #faf7f2;
}
.room_amenities ul li{
    list-style-type: circle;
    margin-top: 8px;
    margin-bottom: 8px;
}
#img-icon-tripadvisor{
    width: 18px;
}
.news-block figure img{
    width: 374px;
    height: 486px;
}
