/* Room listing and room detail styles */

.room-list {
  display: grid;
  gap: 34px;
}

.room-selection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 34px 0 42px;
}

.room-selection-card {
  padding: 20px;
  border: 1px solid rgba(23, 74, 120, .12);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(23, 74, 120, .08);
  text-align: center;
}
.room-selection-card .icon{
  display: flex;
  width: 55px;
  height: 55px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  padding: 13px;
  margin: 0px auto;
}
.room-selection-card img {
}

.room-selection-card h3,
.room-note-card h3,
.room-info h3 {
  color: var(--blue);
  font-family: DomaineLocal, Georgia, serif;
}

.room-selection-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  margin-top: 17px;
}

.room-selection-card p,
.room-note-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.room-card {
  margin-bottom: 28px;
}

.room-media > a {
  display: block;
}

.room-media img {
}

.room-copy {
  display: flex;
  align-items: center;
}

.room-info {
  width: 100%;
}

.room-info img {
  width: 100%;
  object-fit: cover;
}

.room-info h3 {
  margin: 0 0 8px;
  font-size: 42px;
}

.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
  color: #27485f;
  font-size: 13px;
  font-weight: 600;
}

.room-amenities {
}

.room-amenities li::before {
}

.room-info strong {
  line-height: 1.8;
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 16px;
}

.price-row {
  border-top: 1px solid var(--blue);
  padding-top: 16px;
}

.price-row p {
}

.price-row b {
  color: var(--blue);
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
}

.room-actions {
  display: flex;
  flex-shrink: 0;
  gap: 14px;
}

.room-note-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.room-note-card {
  padding: 24px;
  border: 1px solid rgba(23, 74, 120, .12);
  border-radius: 8px;
  background: #f4faf8;
}

.room-note-card i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--green);
  background: #fff;
}

.room-list-card {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 28px;
  align-items: stretch;
}

.room-list-card > a img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  border-radius: 8px;
  object-fit: cover;
}

.room-list-card .room-info {
  padding: 14px 0;
}

.room-list-card .price-row {
  align-items: flex-start;
  flex-direction: column;
}


.room-detail-head {
  padding: 2px 0 30px;
}

.room-detail-hero-media {
  position: relative;
  overflow: hidden;
}

.room-detail-hero-media img {
  width: 100%;
  height: clamp(300px, 42vw, 620px);
  object-fit: cover;
  display: block;
}

.detail-title {
  margin: 0;
  color: var(--blue);
  font-size: 38px;
  line-height: 1;
}

.detail-feature-copy {
  max-width: 760px;
  color: #405867;
  font-size: 16px;
  line-height: 24px;
  margin-top: 15px;
}

.detail-price {
  color: #3f3c36;
  font-family: DomaineLocal, Georgia, serif;
  font-size: 28px;
}

.detail-price b {
  color: var(--blue);
  font-size: 48px;
  font-weight: 400;
}

.detail-gallery {
  margin-bottom: 30px;
}

.detail-gallery-main,
.detail-gallery-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
}

.detail-gallery-main img,
.detail-gallery-thumb img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.detail-gallery-main img {
  height: 100%;
  min-height: 32px;
  height: 360px;
}

.detail-gallery-thumb img {
  height: 176px;
}

.detail-gallery-main:hover img,
.detail-gallery-thumb:hover img {
  transform: scale(1.04);
}

.detail-gallery-more {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  background: linear-gradient(180deg, rgba(17, 31, 45, .08), rgba(17, 31, 45, .7));
}

.detail-gallery-hidden {
  display: none;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 30px;
  align-items: start;
}

.detail-nav {
  position: sticky;
  top: 92px;
  z-index: 12;
  margin-bottom: 34px;
  border-top: 1px solid #e1e9ec;
  border-bottom: 1px solid #e1e9ec;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
}

.detail-nav .container {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scrollbar-width: none;
}

.detail-nav .container::-webkit-scrollbar {
  display: none;
}

.detail-nav a {
  flex: 0 0 auto;
  padding: 10px 0;
  color: var(--blue);
  font-size: 20px;
  font-weight: 500;
  font-family: DomaineLocal, Georgia, serif;
  text-transform: capitalize;
}

.detail-nav a:hover {
  color: var(--green);
}

.content-block {
  margin-bottom: 36px;
  scroll-margin-top: 170px;
}

#tong-quan,
#gioi-thieu,
#thong-so,
#tien-ich,
#dich-vu,
#chinh-sach,
#faq,
#lien-quan {
  scroll-margin-top: 170px;
}

.content-block h2 {
  margin: 50px 0 20px;
  color: var(--blue);
  font-size: 32px;
}

.detail-subtitle {
  margin: 24px 0 14px;
  color: var(--green);
  font-size: 18px;
}

.lead-copy {
  color: #405867;
  font-size: 16px;
  line-height: 26px;
  text-align: justify;
}

.room-detail-copy p,
.room-detail-copy ul,
.room-detail-copy ol {
  color: #405867;
  line-height: 1.85;
}

.room-detail-copy ul,
.room-detail-copy ol {
  padding-left: 18px;
}

.room-highlight-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 0px 0 36px;
}

.room-highlight {
  padding: 15px 10px;
  border-radius: 8px;
  text-align: center;
  background: #eef6f4;
}

.room-highlight i {
  color: var(--green);
  font-size: 28px;
}

.room-highlight strong {
  display: block;
  margin-top: 10px;
  color: var(--blue);
  font-size: 15px;
}

.room-highlight span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.amenity-grid,
.policy-grid,
.service-icon-grid,
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.amenity-item,
.policy-item,
.service-icon-item,
.spec-card {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid #e1e9ec;
  border-radius: 8px;
  background: #fff;
}
.amenity-item{border: none;padding: 0;}
.amenity-item i,
.policy-item i,
.service-icon-item i,
.spec-card i {
  color: var(--green);
  font-size: 18px;
  margin-top: 2px;
}

.spec-card-icon {
  display: grid;
  flex: 0 0 42px;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #eef6f4;
}

.spec-card-copy {
  min-width: 0;
}

.spec-card-label {
  display: block;
  margin-bottom: 6px;
  color: #6a7f8d;
  font-size: 14px;
  font-weight: 400;
}

.spec-card-value {
  display: block;
  font-size: 16px;
  font-family: DomaineLocal, Georgia, serif;
}

.spec-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.spec-card-compact {
  align-items: center;
  padding: 10px 10px;
  border-radius: 7px;
  background: #fff;
}

.spec-card-compact .spec-card-icon {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  background: #eef6f4;
}

.spec-card-compact .spec-card-icon i {
  font-size: 20px;
}

.spec-card-compact .spec-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spec-bullet-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spec-bullet-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.spec-bullet-list i {
  display: grid;
  flex: 0 0 35px;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: var(--green);
  background: #eef6f4;
  font-size: 18px;
}

.spec-bullet-list span {
  /* color: var(--blue); */
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.booking-panel {
  position: sticky;
  top: 112px;
  padding: 24px;
}

.booking-panel h3 {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 30px;
}

.booking-panel label,
.booking-card label,
.contact-form label {
  padding: 16px 0 0;
  border-bottom: 1px solid #e3e8eb;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

.booking-panel .btn-main,
.booking-card .btn-main,
.contact-form .btn-main {
  width: 100%;
  margin-top: 18px;
}

.booking-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.booking-panel .detail-price {
  margin: 4px 0 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e3e8eb;
  font-size: 24px;
}

.booking-panel .detail-price b {
  font-size: 38px;
}

.support-line {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #e3e8eb;
}

.support-line i {
  display: grid;
  flex: 0 0 42px;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
}

.split-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.split-info-box {
}

.service-included-box,
.service-extra-box {
  margin-bottom: 18px;
}
.service-included-box h3, .service-extra-box h3{margin: 20px 0 10px;color: #161616 !important;font-size: 18px !important;font-weight: 600;margin-bottom: 20px;}
.service-included-box {
  grid-template-columns: 1fr;
}

.service-extra-box {
  width: 100%;
}

.split-info-box h3,
.experience-card h3,
.faq-box h3 {
  color: var(--blue);
  font-size: 30px;
}

#dich-vu .check-list {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#dich-vu .check-list .service-line-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  color: #405867;
}

#dich-vu .check-list .service-line-item > i,
#dich-vu .check-list .service-line-main > i {
  margin-top: 4px;
  color: var(--green);
}

#dich-vu .service-line-main {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
  flex: 1 1 auto;
}

#dich-vu .service-line-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

#dich-vu .service-line-copy strong {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

#dich-vu .service-line-copy span {
  color: #405867;
  line-height: 1.7;
  font-size: 14px;
}

#dich-vu .service-line-price {
  flex: 0 0 auto;
  min-width: 180px;
  /* color: var(--blue); */
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.experience-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.experience-card {
  overflow: hidden;
  border: 1px solid #e1e9ec;
  border-radius: 8px;
  background: #fff;
}

.experience-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.experience-card div {
  padding: 18px;
}

.timeline-list {
  display: grid;
  gap: 12px;
  counter-reset: stayStep;
}

.timeline-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid #e1e9ec;
  border-radius: 8px;
  background: #fff;
}

.timeline-item::before {
  counter-increment: stayStep;
  content: "0" counter(stayStep);
  color: var(--green);
  font-family: DomaineLocal, Georgia, serif;
  font-size: 38px;
  line-height: 1;
}

.timeline-item strong {
  display: block;
  color: var(--blue);
  font-size: 18px;
}

.faq-box {
  border: 1px solid #e1e9ec;
  border-radius: 8px;
  overflow: hidden;
}

.faq-box .accordion-button {
  color: var(--blue);
  font-weight: 700;
  box-shadow: none;
}

.faq-box .accordion-button:not(.collapsed) {
  color: var(--blue);
  background: #eef6f4;
}

.room-thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.room-thumb-row img {
  width: 100%;
  height: 150px;
  border-radius: 8px;
  object-fit: cover;
}

@media (max-width: 1199px) {
  .room-info h3 {
    font-size: 36px;
  }

  .detail-gallery-main img {
    min-height: 460px;
  }
}

@media (max-width: 991px) {
  .room-selection-grid,
  .room-note-grid {
    grid-template-columns: 1fr;
  }

  .room-amenities {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-gallery-main img {
    min-height: 320px;
  }

  .detail-gallery-thumb img {
    height: 150px;
  }

  .spec-bullet-list {
    grid-template-columns: 1fr;
  }

  #dich-vu .check-list .service-line-item {
    flex-direction: column;
  }

  #dich-vu .service-line-price {
    min-width: 0;
    text-align: left;
    white-space: normal;
    padding-left: 30px;
  }
}

@media (max-width: 767px) {
  .room-info h3 {
    font-size: 30px;
  }

  .room-amenities {
    grid-template-columns: 1fr;
  }

  .price-row p {
    font-size: 24px;
    white-space: normal;
  }

  .price-row b {
    font-size: 40px;
  }

  .detail-feature-copy {
    font-size: 17px;
  }

  .detail-gallery-main img,
  .detail-gallery-thumb img {
    min-height: 0;
    height: 220px;
  }

  .detail-gallery-thumb img {
    height: 180px;
  }

  .detail-gallery-more {
    font-size: 16px;
  }
}
.amenity-grid{grid-template-columns: repeat(2, 1fr);}
.policy-grid{grid-template-columns: repeat(2, 1fr);}
.booking-panel input, .booking-panel select{height: 42px;font-family: DomaineLocal, Georgia, serif;}
#lien-quan .title_page h2{font-size: 38px;margin-bottom: 50px;}
