* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Geomini", sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.navbar-nav .dropdown {
  position: relative;
}

.navbar-nav .dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.25s ease;
  pointer-events: none;
  margin-top: 0;
}

.navbar-nav .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.navbar-nav .dropdown-menu .dropdown-item {
  padding: 10px 20px;
  transition: all 0.2s ease;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
  background-color: #f5f5f5;
}

.navbar-nav .dropdown:hover > .nav-link {
  color: #ddd;
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: linear-gradient(to bottom, rgba(13, 99, 229, 0.25) 0%, rgba(6, 21, 45, 0.5) 50%, rgba(6, 21, 45, 0.8) 100%),
        url('../images/hero-background.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  overflow: hidden;
  padding-bottom: 80px;
}

.navbar-brand img {
  width: 150px;
}

.nav-container {
  background: #ffffff0f;
  padding: 20px 30px 20px;
  border-radius: 70px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body .navbar-header .navbar-nav .nav-link {
  color: #fff;
  font-size: 14px;
}

.nav-container body .navbar-header .nav-container .btn-primary {
  background-color: #0D63E5;
  color: #ffffff;
  border-color: #0D63E5;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 24px;
  transition: var(--transition-fast);
}

.nav-container body .navbar-header .nav-container .btn-primary:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.bkrm-hm-form-scx-tabs .nav-item {
  margin: 0;
}

.bkrm-hm-form-scx-tabs .nav-link {
  border: none;
  background: transparent;
  color: #24344d;
  font-size: 20px;
  font-weight: 600;
  border-radius: 60px;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: .35s;
}

.bkrm-hm-form-scx-tabs .nav-link i {
  font-size: 30px;
  color: #50627d;
  transition: .35s;
}

.bkrm-hm-form-scx-tabs .nav-link:hover {
  color: #0d63e5;
}

.bkrm-hm-form-scx-tabs .nav-link.active {
  background: #eef5ff;
  color: #0d63e5;
}

.bkrm-hm-form-scx-tabs .nav-link.active i {
  color: #0d63e5;
}

.hero-content {
  flex-grow: 1;
  margin-top: 150px;
  z-index: 10;
  position: relative;
  max-width: 800px;
}

.hero-title {
  font-size: 60px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.hero-desc {
  font-family: var(--body-font);
  font-size: clamp(0.95rem, 1.2vw, 1.12rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 580px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.btn-hero-primary {
  background-color: #0D63E5;
  color: #ffffff;
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 10px 30px rgba(13, 99, 229, 0.25);
  border: 1px solid #0D63E5;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-hero-primary:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.15);
}

.floating-cards-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.floating-card {
  position: absolute;
  width: clamp(80px, 9vw, 1100px);
  aspect-ratio: 1 / 1;
  pointer-events: auto;
  will-change: transform;
}

.card-inner {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: var(--transition-smooth);
  background-color: rgba(0, 0, 0, 0.2);
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-tl {
  left: 19%;
  top: 48%;
}

.card-tr {
  right: 19%;
  top: 48%;
}

.card-bl {
  left: 5.5%;
  top: 67%;
}

.card-br {
  right: 5.5%;
  top: 67%;
}

.floating-card:hover .card-inner {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  transform: scale(1.1) translateY(-10px);
}

.floating-card:hover .card-img {
  transform: scale(1.12);
}

@keyframes floatCard1{


    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}

@keyframes floatCard2{


    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

}

@keyframes floatCard3{


    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}

@keyframes floatCard4{


    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }

}

.bkrm-footer-scx {
  position: relative;
  background: #06152d;
  color: #fff;
  overflow: hidden;
}

.bkrm-footer-scx::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/footer-bg.jpg') center/cover no-repeat;
  opacity: .08;
  pointer-events: none;
}

.bkrm-footer-scx>.container,
.bkrm-footer-scx-news,
.bkrm-footer-scx-main,
.bkrm-footer-scx-bottom {
  position: relative;
  z-index: 2;
}

.bkrm-footer-scx-news {
  padding: 90px 0 70px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.bkrm-footer-scx-news-content span {
  display: inline-block;
  background: rgba(13, 99, 229, 0.15);
  color: #6ea8fe;
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .8px;
  margin-bottom: 18px;
}

.bkrm-footer-scx-news-content h2 {
  margin: 0 0 18px;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.bkrm-footer-scx-news-content p {
  margin: 0;
  color: rgba(255,255,255,.70);
  font-size: 16px;
  line-height: 1.5;
}

.bkrm-footer-scx-news-form {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255,255,255,.05);
  padding: 15px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  backdrop-filter: blur(12px);
}

.bkrm-footer-scx-news-form input {
  flex: 1;
  height: 62px;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  padding: 0 20px;
  font-size: 16px;
}

.bkrm-footer-scx-news-form input::placeholder {
  color: rgba(255,255,255,.55);
}

.bkrm-footer-scx-news-form button {
  border: none;
  background: #0D63E5;
  color: #fff;
  padding: 0 34px;
  height: 62px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: .35s;
}

.bkrm-footer-scx-news-form button:hover {
  background: #004fc4;
}

.bkrm-footer-scx-news-form button i {
  transition: .35s;
}

.bkrm-footer-scx-news-form button:hover i {
  transform: translateX(5px);
}

.bkrm-footer-scx-main {
  padding: 80px 0 60px;
}

.bkrm-footer-scx-logo {
  display: inline-block;
  margin-bottom: 28px;
}

.bkrm-footer-scx-logo img {
  max-width: 240px;
}

.bkrm-footer-scx-about p {
    color: rgba(255, 255, 255, .68);
    line-height: 1.5;
    font-size: 16px;
    margin-bottom: 35px;
}

.bkrm-footer-scx-social {
  display: flex;
  gap: 14px;
}

.bkrm-footer-scx-social a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: .35s;
}

.bkrm-footer-scx-social a:hover {
  background: #0D63E5;
  border-color: #0D63E5;
  transform: translateY(-5px);
}

.bkrm-footer-scx-links h4,
.bkrm-footer-scx-contact h4 {
  position: relative;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 35px;
  padding-bottom: 16px;
}

.bkrm-footer-scx-links h4::after,
.bkrm-footer-scx-contact h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 3px;
  border-radius: 20px;
  background: #0D63E5;
}

.bkrm-footer-scx-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bkrm-footer-scx-links li {
  margin-bottom: 16px;
}

.bkrm-footer-scx-links a {
  color: rgba(255,255,255,.70);
  text-decoration: none;
  transition: .35s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.bkrm-footer-scx-links a::before {
  content: "›";
  color: #0D63E5;
  font-size: 18px;
}

.bkrm-footer-scx-links a:hover {
  color: #fff;
  transform: translateX(8px);
}

.bkrm-footer-scx-contact ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bkrm-footer-scx-contact li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 22px;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
}

.bkrm-footer-scx-contact li i {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: rgba(13, 99, 229, 0.12);
  color: #6ea8fe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.bkrm-footer-scx-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 28px 0;
}

.bkrm-footer-scx-bottom p {
  margin: 0;
  color: rgba(255,255,255,.60);
  font-size: 15px;
}

.text-warning {
  color: #0D63E5 !important;
}

.hero-search-container {
  width: 100%;
  max-width: 560px;
  margin: 25px auto 0;
  position: relative;
  z-index: 10;
}

.search-form-single { 
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 10px 6px 10px 20px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.search-form-single input {
    font-size: 14px;
    background: transparent;
    color: #fff;
    border: 0;
    border-radius: 30px;
}
.search-form-single select {
    font-size: 12px;
    background: transparent;
    color: #fff;
    border: 1px solid #ffffff4d;
    border-radius: 30px;
    width: 100%;
    height: 38px;
    padding: 0 10px 0;
}
.search-form-single input::placeholder { 
    color: #fff; 
}
.search-input-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 14px;
}

.search-input-icon {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  display: flex;
  align-items: center;
}

body .search-input-single {
  background: transparent;
  border: none;
  box-shadow: none;
  color: #ffffff;
  outline: none;
  padding: 0;
  font-size: 16px;
  width: 100%;
  height: 36px;
}

body .search-input-single:focus {
  background: transparent;
  border: none;
  box-shadow: none;
  color: #ffffff;
  outline: none;
}

body .search-input-single::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.btn-search-single {
  background-color: #0D63E5;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 8px 24px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  white-space: nowrap;
}

.btn-search-single:hover {
  background-color: #004fc4;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(13, 99, 229, 0.4);
}

.btn-search-single:active {
  transform: translateY(-1px);
}

.trending-section {
  position: relative;
  background-color: #ffffff;
  color: #1e293b;
  z-index: 20;
}

.trending-heading {
  font-family: var(--primary-font);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: #1e293b;
}

.trending-accent {
  font-family: 'Yellowtail', cursive;
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  color: #0D63E5;
  font-weight: 400;
  display: inline;
  margin-right: 5px;
  transform: rotate(-3deg);
}

.trending-desc {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.7;
  color: #50627d;
  max-width: 600px;
}

.feature-card {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 16px;
  padding: 32px 20px 25px;
  box-shadow: 0 10px 30px rgba(80, 98, 125, 0.04);
  transition: var(--transition-smooth);
  margin-top: 15px;
  height: calc(100% - 15px);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(80, 98, 125, 0.08);
  border-color: #e2e8f0;
}

.card-number-badge {
  position: absolute;
  top: -18px;
  left: 30px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #0D63E5;
  color: #ffffff;
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(13, 99, 229, 0.2);
}

.feature-icon-wrapper {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: rgba(13, 99, 229, 0.08);
  color: #0D63E5;
  font-size: 24px;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card:hover .feature-icon-wrapper {
  background-color: #0D63E5;
  color: #ffffff;
}

.feature-title {
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 600;
  color: #0D63E5;
}

.feature-text {
  font-family: var(--body-font);
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.5;
}

.trending-image-column {
  min-height: 600px;
}

.trending-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 30% center;
  z-index: 1;
  /*background-image: url('../images/rooms-booking-about-tour.png');*/
}

.brush-stroke-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.package-includes-section {
  position: relative;
  background-color: #ffffff;
  color: var(--color-dark);
  z-index: 20;
  overflow: hidden;
}

.services-provide-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.provide-item {
  position: relative;
  transition: var(--transition-smooth);
}

.provide-num {
  font-family: var(--primary-font);
  font-size: 24px;
  font-weight: 700;
  color: #0D63E5;
}

.provide-title {
  font-family: var(--primary-font);
  font-size: 19px;
  font-weight: 700;
  color: #0D63E5;
}

.provide-line-connector {
  display: flex;
  align-items: center;
  position: relative;
  height: 1px;
}

.connector-line {
  flex-grow: 1;
  height: 1.5px;
  background-color: rgba(13, 99, 229, 0.2);
}

.connector-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #0D63E5;
  box-shadow: 0 0 6px rgba(13, 99, 229, 0.4);
  position: relative;
    top: -3px;
}

.provide-desc {
  font-family: var(--body-font);
  font-size: 14.5px;
  color: #50627d;
  line-height: 1.6;
  margin-left: 36px;
}

.collage-container-column {
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bubble-collage-grid {
  position: relative;
  width: 100%;
  height: 480px;
}

.bubble-circle {
  position: absolute;
  border-radius: 50%;
  border: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  z-index: 5;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.bubble-circle:hover {
  transform: scale(1.06);
  z-index: 10;
  box-shadow: 0 20px 45px rgba(13, 99, 229, 0.15);
}

.bubble-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.bubble-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.bubble-circle.circle-sm {
  width: 110px;
  height: 110px;
}

.bubble-circle.circle-md {
  width: 170px;
  height: 170px;
}

.bubble-circle.circle-lg {
  width: 240px;
  height: 240px;
}

.bubble-circle.circle-1 {
  top: 50px;
  left: 40px;
}

.bubble-circle.circle-2 {
  top: 20px;
  right: 20px;
}

.bubble-circle.circle-3 {
  top: 220px;
  left: 20px;
}

.bubble-circle.circle-4 {
  top: 310px;
  right: 80px;
}

.svg-collage-path-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.attractions-section {
  position: relative;
  background-color: #ffffff;
  color: var(--color-dark);
  z-index: 20;
  padding-bottom: 90px;
}

.attractions-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 24px;
  padding-top: 30px;
  padding-bottom: 50px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.attractions-grid::-webkit-scrollbar {
  display: none;
}

.attraction-col {
  flex: 0 0 300px;
  max-width: 300px;
}

.attraction-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 380px;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.attraction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(13, 99, 229, 0.12);
}

.attraction-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.attraction-img:nth-of-type(even)  {
      transform: translateY(-5px);
}
.attraction-card:hover .attraction-img {
  transform: scale(1.05);
}

.attraction-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 13.5px;
  color: #334155;
  z-index: 5;
  transition: var(--transition-fast);
}

.attraction-badge i {
  color: #0D63E5;
  font-size: 14px;
}

.attraction-card:hover .attraction-badge {
  background-color: #0D63E5;
  color: #ffffff;
}

.attraction-card:hover .attraction-badge i {
  color: #ffffff;
}

.itinerary-section {
  position: relative;
  background-color: #fafbfd;
  color: var(--color-dark);
  z-index: 20;
}

.itinerary-wrapper {
  position: relative;
}

.itinerary-svg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.itinerary-card-container {
  width: 100%;
  display: flex;
}

.itinerary-card {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  width: 100%; 
  padding: 24px 24px 20px;
  position: relative;
  z-index: 5;
  transition: var(--transition-smooth);
}

.itinerary-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 20px 45px rgba(13, 99, 229, 0.1);
}

.itinerary-pin {
  width: 48px;
  height: auto;
  margin: -24px auto 12px;
  display: block;
  position: relative;
  z-index: 15;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.itinerary-inner {
  border-radius: 14px;
  padding: 20px;
  border: 1px dashed #cbd5e1;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.itinerary-inner {
  background: linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.80)), url('https://bookinroom.com/wp-content/uploads/2026/08/itienary-bg1.png') center/cover;
}



.itinerary-day-num {
  position: absolute;
  top: 15px;
  right: 15px;
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 14px;
  color: #0D63E5;
  opacity: 0.6;
}

.itinerary-day-title {
  font-family: var(--primary-font);
  font-size: 20px;
  font-weight: 700;
  color: #0D63E5;
}

.itinerary-day-subtitle {
  font-family: var(--primary-font);
  font-size: 14.5px;
  font-weight: 700;
  color: #1e293b;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

.itinerary-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
  margin-bottom: 0;
}

.itinerary-list li {
  position: relative;
  padding-left: 20px;
  font-family: var(--body-font);
  font-size: 13.5px;
  color: #1e293b;
  margin-bottom: 10px;
  line-height: 1.4;
  font-weight: 600;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

.itinerary-list li:last-child {
  margin-bottom: 0;
}

.itinerary-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: #0D63E5;
  font-weight: bold;
  font-size: 18px;
  top: -3px;
}

.pricing-section {
  background-color: #ffffff;
  position: relative;
  z-index: 20;
  color: #1e293b;
}

body .packages-listing-section .pricing-all-link:hover {
  color: #004fc4;
  text-decoration: underline;
}

.pricing-card {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(80, 98, 125, 0.04);
  border: 1px solid #eef2f6;
  transition: var(--transition-smooth);
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(13, 99, 229, 0.08);
  border-color: rgba(13, 99, 229, 0.15);
}

.pricing-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.pricing-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pricing-card:hover .pricing-img {
  transform: scale(1.05);
}

.pricing-stars-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 16, 22, 0.6);
  padding: 6px 12px;
  border-radius: 20px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.pricing-stars-overlay .stars {
  display: flex;
  gap: 2px;
}

.pricing-stars-overlay .stars i {
  color: #0D63E5;
}

.pricing-discount-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #0D63E5;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  font-family: var(--primary-font);
  box-shadow: 0 4px 10px rgba(13, 99, 229, 0.2);
  z-index: 10;
}

.pricing-discount-badge .pct {
  font-size: 13px;
  font-weight: 800;
}

.pricing-discount-badge .off {
  font-size: 8px;
  font-weight: 800;
}

.pricing-pill {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: linear-gradient(135deg, #0D63E5, #4d9cff);
  color: #ffffff;
  font-family: var(--primary-font);
  font-size: 10px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 8px rgba(13, 99, 229, 0.2);
}

.pricing-card-body {
  padding: 24px;
}

.pricing-card-title {
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  transition: color 0.3s ease;
}

.pricing-card:hover .pricing-card-title {
  color: #0D63E5;
}

.pricing-details-grid {
  width: 100%;
}
.pricing-details-grid p {
    font-size: 14px;
}
.pricing-left-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body-font);
  font-size: 12.5px;
  color: #50627d;
}

.detail-item i {
  color: #0D63E5;
  font-size: 14px;
}

.pricing-divider {
  width: 1px;
  align-self: stretch;
  background-color: #e2e8f0;
  margin: 0 16px;
}

.pricing-right-details {
  flex-shrink: 0;
}

.price-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 3px;
}

.price-value {
  font-family: var(--primary-font);
  font-size: 22px;
  font-weight: 800;
  color: #0D63E5;
  line-height: 1;
}

.gallery-section {
  background-color: #ffffff;
  padding: 100px 0;
  position: relative;
  z-index: 25;
}

.gallery-bg-blur {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.08;
  pointer-events: none;
}

.gallery-bg-blur.blur-1 {
  background: #0D63E5;
  top: -10%;
  left: -10%;
}

.gallery-bg-blur.blur-2 {
  background: #eab308;
  bottom: -10%;
  right: -10%;
}

.gallery-custom-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 16px;
  align-items: start;
}

.gallery-text-card {
  grid-column: 1 / span 6;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 20px;
  height: 180px;
}

.gallery-grid-desc {
  font-family: var(--body-font);
  font-size: 14px;
  color: #50627d;
  line-height: 1.6;
  max-width: 440px;
}

.gallery-img-card {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.gallery-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-img-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(13, 99, 229, 0.12);
}

.gallery-img-card:hover img {
  transform: scale(1.04);
}

.gallery-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
}

.gallery-img-card:hover .gallery-img-overlay {
  opacity: 1;
}

.gallery-img-title {
  color: #ffffff;
  font-family: var(--primary-font);
  font-size: 14px;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.gallery-img-1 {
  grid-column: 7 / span 3;
  grid-row: 1;
  height: 180px;
}

.gallery-img-2 {
  grid-column: 10 / span 3;
  grid-row: 1 / span 2;
  height: 436px;
}

.gallery-img-3 {
  grid-column: 1 / span 5;
  grid-row: 2;
  height: 240px;
}

.gallery-img-4 {
  grid-column: 6 / span 2;
  grid-row: 2;
  height: 240px;
}

.gallery-img-5 {
  grid-column: 8 / span 2;
  grid-row: 2;
  height: 240px;
}

.gallery-img-6 {
  grid-column: 1 / span 3;
  grid-row: 3;
  height: 180px;
}

.gallery-img-7 {
  grid-column: 4 / span 3;
  grid-row: 3;
  height: 180px;
}

.gallery-img-8 {
  grid-column: 7 / span 3;
  grid-row: 3;
  height: 180px;
}

.gallery-info-card {
  grid-column: 10 / span 3;
  grid-row: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 180px;
  justify-content: flex-start;
}

.btn-gallery-solid {
  background-color: #0D63E5;
  color: #ffffff !important;
  border: none;
  padding: 8px 16px;
  border-radius: 12px;
  font-family: var(--primary-font);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(13, 99, 229, 0.15);
}

.btn-gallery-solid:hover {
  background-color: #004fc4;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(13, 99, 229, 0.25);
}

.btn-gallery-outline {
  background-color: #ffffff;
  color: #1e293b !important;
  border: 1px solid #e2e8f0;
  padding: 8px 16px;
  border-radius: 12px;
  font-family: var(--primary-font);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.btn-gallery-outline:hover {
  background-color: #f8fafc;
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.btn-gallery-outline .icon-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(13, 99, 229, 0.08);
  color: #0D63E5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  vertical-align: middle;
}

.gallery-explore-script .script-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: #0D63E5;
  font-weight: 700;
}

.testimonials-section {
  background-color: #ffffff;
  color: #1e293b;
  z-index: 20;
  position: relative;
  overflow: hidden;
}

.testimonial-squiggly-svg {
  transform: rotate(-5deg);
  margin-bottom: 20px;
}

.btn-testimonial-cta {
  background: linear-gradient(135deg, #0D63E5, #4d9cff);
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-testimonial-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(13, 99, 229, 0.3);
  color: #ffffff;
}

.testimonial-stack-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 40px;
}

.testimonial-card-item {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15, 16, 22, 0.04);
  border: 1px solid #f1f5f9;
  max-width: 540px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card-item.highlighted {
  border-left: 4px solid #0D63E5;
}

.testimonial-avatar {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border: 3px solid rgba(13, 99, 229, 0.08);
}

.testimonial-name {
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
}

.testimonial-text {
  font-family: var(--body-font);
  font-size: 14.5px;
  line-height: 1.6;
}

.quote-icon {
  font-size: 2.2rem;
  align-self: flex-start;
  line-height: 1;
}

.faq-section {
  background-color: #ffffff;
  color: #1e293b;
  z-index: 20;
  position: relative;
}

.faq-badge {
  background-color: rgba(13, 99, 229, 0.08);
  color: #0D63E5;
  font-weight: 600;
  font-size: 13px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px 24px;
  border: 1px solid #eef2f6;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}

.faq-item:hover {
  border-color: rgba(13, 99, 229, 0.2);
  box-shadow: 0 8px 24px rgba(13, 99, 229, 0.04);
}

.faq-header {
  user-select: none;
}

.faq-question {
  font-family: var(--primary-font);
  font-size: 17px;
  font-weight: 600;
  color: #1e293b;
  transition: color 0.3s ease;
}

.faq-item:hover .faq-question {
  color: #0D63E5;
}

.faq-toggle-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background-color: rgba(13, 99, 229, 0.08);
  color: #0D63E5;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  flex-shrink: 0;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  opacity: 0;
}

.faq-answer {
  font-family: var(--body-font);
  font-size: 14.5px;
  color: #50627d;
  line-height: 1.6;
}

.faq-item.active {
  box-shadow: 0 12px 30px rgba(13, 99, 229, 0.06);
  border-color: rgba(13, 99, 229, 0.15);
}

.faq-item.active .faq-question {
  color: #0D63E5;
}

.faq-item.active .faq-toggle-btn {
  background-color: #0D63E5;
  color: #ffffff;
  transform: rotate(180deg);
}

.faq-item.active .faq-body {
  max-height: 200px;
  opacity: 1;
  margin-top: 12px;
}

.why-choose-section {
  background-color: #ffffff;
  color: #1e293b;
  z-index: 20;
  position: relative;
  overflow: hidden;
}

.why-choose-dots-overlay {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 250px;
  height: 250px;
  background-image: radial-gradient(#0D63E5 1.8px, transparent 1.8px);
  background-size: 16px 16px;
  opacity: 0.08;
  pointer-events: none;
}

.why-choose-badge {
  color: #0D63E5;
  font-size: 13px;
  letter-spacing: 0.1em;
}

.why-choose-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why-choose-timeline::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 22px;
  width: 2px;
  height: calc(100% - 50px);
  border-left: 2px dashed #cbd5e1;
  z-index: 1;
}

.timeline-step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.step-icon-wrapper {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(15, 16, 22, 0.08);
}

.bg-gold-gradient,
.bg-orange-gradient,
.bg-blue-gradient,
.bg-teal-gradient {
  background: linear-gradient(135deg, #0D63E5, #0045ab);
}

.step-content {
  flex-grow: 1;
}

.step-title {
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
}

.step-desc {
  font-family: var(--body-font);
  font-size: 14.5px;
  color: #50627d;
  line-height: 1.6;
  margin-bottom: 0;
}

.main-travel-card {
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(15, 16, 22, 0.08);
  border: 1px solid #f1f5f9;
  width: 100%;
  max-width: 440px;
  overflow: visible;
}

.card-photo-container {
  width: calc(100% - 32px);
  margin: 16px auto 0;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  overflow: hidden;
}

.card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-trip-title {
  font-family: var(--primary-font);
  font-size: 24px;
  font-weight: 800;
  color: #1e293b;
}

.card-trip-meta {
  font-size: 14px;
  color: #64748b;
  font-family: var(--body-font);
}

.card-action-row {
  margin-top: 15px;
}

.action-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.guide-badge-card {
  position: absolute;
  bottom: 50px;
  right: -60px;
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(15, 16, 22, 0.1);
  border: 1px solid #f1f5f9;
  width: 250px;
  z-index: 20;
  transition: transform 0.3s ease;
}

.main-travel-card:hover .guide-badge-card {
  transform: translateY(-5px);
}

.guide-avatar {
  width: 45px;
  height: 45px;
  object-fit: cover;
}

.guide-label {
  font-size: 11px;
  letter-spacing: 0.02em;
}

.guide-name {
  font-family: var(--primary-font);
  font-size: 14.5px;
  color: #1e293b;
}

.guide-rating {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
}

.card-chevron-btn {
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(15, 16, 22, 0.08);
  border: 1px solid #e2e8f0;
  color: #0D63E5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.booking-section {
  background-color: #fafbfd;
  color: #1e293b;
  z-index: 20;
  position: relative;
}

.booking-input-wrapper {
  background-color: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 14px 22px;
  width: 100%;
  transition: all 0.3s ease;
}
.booking-input-wrapper p {
    display: flex;
    align-items: center;
    margin: 0;
}
.booking-input-wrapper:focus-within {
  border-color: #0D63E5;
  box-shadow: 0 0 0 3px rgba(13, 99, 229, 0.1);
}
.booking-input-wrapper select {
    max-width: 100%;
    font-size: 14px;
    border: 0;
    color: #1e293bb5;
}
.booking-field-icon {
  color: #475569;
  font-size: 20px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-input-control,
.booking-select-control {
  border: none;
  background: transparent;
  width: 100%;
  outline: none;
  font-family: var(--body-font);
  font-size: 14.5px;
  color: #1e293b;
}
.booking-input-control {
    max-height: 20px;
}
.booking-input-control::placeholder {
  color: #94a3b8;
}

.booking-select-control {
  color: #94a3b8;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.booking-select-control option {
  color: #1e293b;
  background-color: #ffffff;
}

.booking-select-control:focus, 
.booking-select-control:valid {
  color: #1e293b;
}

.btn-booking-submit {
  background: #0D63E5;
  border: none;
  padding: 14px 30px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(13, 99, 229, 0.15);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-booking-submit:hover {
  background-color: #004fc4;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(13, 99, 229, 0.25);
}

.btn-booking-submit i {
  font-size: 15px;
}

.pricing-all-link:hover {
  color: #004fc4 !important;
  text-decoration: underline !important;
}

.who-we-are-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  z-index: 1;
  background-image: url('../images/who-we-are.png');
}

.wcu-tab-btn {
  background-color: #ffffff;
  border: 1px solid #eef2f6 !important;
  transition: all 0.3s ease;
  cursor: pointer;
  outline: none;
}

.wcu-tab-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 16, 22, 0.05) !important;
  border-color: rgba(13, 99, 229, 0.15) !important;
  background-color: #f8fafc;
}

.wcu-tab-btn.active {
  background-color: #0D63E5 !important;
  border-color: #0D63E5 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 25px rgba(13, 99, 229, 0.25) !important;
}

.wcu-icon-wrapper {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 8px;
  background-color: rgba(13, 99, 229, 0.08);
  color: #0D63E5;
  font-size: 18px;
  transition: all 0.3s ease;
}

.wcu-tab-btn.active .wcu-icon-wrapper {
  background-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.wcu-tab-title {
  font-family: var(--primary-font);
  font-size: 15px;
  color: inherit;
}

.wcu-content-card {
  background-color: #ffffff;
  border: 1px solid #eef2f6 !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03) !important;
}

.wcu-image-container {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.wcu-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wcu-detail-title {
  font-family: var(--primary-font);
  font-size: 28px;
  color: #0f1016;
}

.wcu-detail-desc {
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 1.6;
}

.wcu-checklist li {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 500;
}

.wcu-checklist li i {
  font-size: 16px;
}

.who-we-are-redesign {
  background-color: #ffffff !important;
  color: #1e293b;
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.wcu-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 30px;
  padding: 8px 18px;
  font-family: var(--primary-font);
  font-size: 12px;
  font-weight: 700;
  color: #0f1016;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.02);
  margin-bottom: 24px;
}

.wcu-badge i {
  font-size: 16px;
  color: #0D63E5;
  font-weight: 900;
}

.wcu-main-heading {
  font-family: var(--primary-font);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
  color: #0f1016;
}

.wcu-main-desc {
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 1.7;
  color: #50627d;
}

.wcu-inline-card {
  background-color: #f8fafc;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #f1f5f9;
}

.wcu-avatar-circle {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.wcu-avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wcu-card-title {
  font-family: var(--primary-font);
  font-size: 16px;
  font-weight: 700;
  color: #0f1016;
}

.wcu-card-desc {
  font-family: var(--body-font);
  font-size: 13.5px;
  line-height: 1.5;
  color: #64748b;
}

.wcu-bullet-list {
  margin: 24px 0;
}

.wcu-bullet-list li {
  font-family: var(--body-font);
  font-size: 14.5px;
  font-weight: 600;
  color: #24344d;
}

.wcu-bullet-list li i {
  font-size: 16px;
  color: #0D63E5;
}

.btn-wcu-explore {
  background-color: #0D63E5;
  color: #ffffff !important;
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 36px;
  box-shadow: 0 10px 20px rgba(13, 99, 229, 0.15);
  transition: var(--transition-fast);
}

.btn-wcu-explore:hover {
  background-color: #004fc4;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(13, 99, 229, 0.25);
}

.wcu-collage-container {
  position: relative;
  width: 100%;
  height: 520px;
}

.wcu-collage-img-box {
  position: absolute;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(15, 16, 22, 0.08);
  transition: var(--transition-smooth);
}

.wcu-collage-img-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 55px rgba(15, 16, 22, 0.15);
}

.wcu-collage-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wcu-box-travelers {
  top: 0;
  left: 0;
  width: 70%;
  height: 380px;
  z-index: 10;
}

.wcu-image-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0D63E5;
  color: #ffffff;
  font-family: var(--primary-font);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  text-align: center;
  border-radius: 0 0 24px 24px;
  z-index: 11;
}

.wcu-box-resort {
  bottom: 0;
  right: 0;
  width: 58%;
  height: 300px;
  z-index: 12;
  border: 6px solid #ffffff;
}

.wcu-balloon-graphic {
  position: absolute;
  top: 30px;
  right: 15px;
  width: 110px;
  height: auto;
  z-index: 15;
  animation: wcuFloatBalloon 6s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.05));
}

@keyframes wcuFloatBalloon{


    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(3deg);
    }

}

.our-story-section {
  background-color: #fafbfd !important;
  position: relative;
  z-index: 20;
  overflow: hidden;
}

.story-title-line {
  width: 60px;
  height: 3px;
  background-color: #0D63E5;
  margin: 10px auto 0;
  border-radius: 2px;
}

.story-quote {
  font-family: var(--primary-font);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.65;
  color: #1e293b;
  font-style: italic;
  border-left: 4px solid #0D63E5;
  padding-left: 20px;
}

.story-capsules-container {
  width: 100%;
  position: relative;
}

.story-capsule-item {
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(15, 16, 22, 0.08);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.story-capsule-item:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 20px 45px rgba(15, 16, 22, 0.15);
}

.story-capsule-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-capsule-item.capsule-sm {
  width: 30%;
  height: 290px;
  border-radius: 40px;
}

.story-capsule-item.capsule-lg {
  width: 38%;
  height: 360px;
  border-radius: 50px;
  transform: translateY(15px);
}

.story-capsule-item.capsule-lg:hover {
  transform: translateY(10px) scale(1.03);
}

.story-capsule-item.capsule-md {
  width: 30%;
  height: 260px;
  border-radius: 35px;
}

.achievements-section {
  position: relative;
  z-index: 20;
  overflow: hidden;
  background-color: #ffffff !important;
}

.ach-badge {
  display: inline-flex;
  align-items: center;
  background-color: #fafbfd;
  border: 1px solid #eef2f6;
  border-radius: 30px;
  padding: 6px 14px;
  font-family: var(--primary-font);
  font-size: 11px;
  font-weight: 700;
  color: #0D63E5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-logo-box {
  background-color: #fafbfd;
  border: 1px solid #f1f5f9;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  font-family: var(--primary-font);
  font-size: 13px;
  color: #64748b;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
  transition: var(--transition-fast);
}

.partner-logo-box:hover {
  color: #0D63E5;
  border-color: rgba(13, 99, 229, 0.15);
  background-color: #ffffff;
}

.ach-image-card {
  height: 100%;
  min-height: 480px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.ach-play-btn {
  transition: var(--transition-fast);
}

.ach-play-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 99, 229, 0.2) !important;
  box-shadow: 0 8px 20px rgba(15, 16, 22, 0.08) !important;
}

.play-icon-square {
  width: 38px;
  height: 38px;
  background-color: #0D63E5;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(13, 99, 229, 0.25);
}

.ach-stat-num {
  font-family: var(--primary-font);
  font-size: 32px;
  font-weight: 800;
  color: #0f1016;
}

.ach-stat-label {
  font-family: var(--body-font);
  font-size: 13.5px;
  font-weight: 500;
}

.stacked-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.who-we-are-redesign,
.our-story-section,
.achievements-section,
.why-choose-section {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.wcu-css-tabs .wcu-content-card {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#wcu-radio-1:checked~.row .wcu-label-1 {
  background-color: #0D63E5 !important;
  border-color: #0D63E5 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 25px rgba(13, 99, 229, 0.25) !important;
}

#wcu-radio-1:checked~.row .wcu-label-1 .wcu-icon-wrapper {
  background-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

#wcu-radio-1:checked~.row .wcu-pane-1 {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

#wcu-radio-2:checked~.row .wcu-label-2 {
  background-color: #0D63E5 !important;
  border-color: #0D63E5 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 25px rgba(13, 99, 229, 0.25) !important;
}

#wcu-radio-2:checked~.row .wcu-label-2 .wcu-icon-wrapper {
  background-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

#wcu-radio-2:checked~.row .wcu-pane-2 {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

#wcu-radio-3:checked~.row .wcu-label-3 {
  background-color: #0D63E5 !important;
  border-color: #0D63E5 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 25px rgba(13, 99, 229, 0.25) !important;
}

#wcu-radio-3:checked~.row .wcu-label-3 .wcu-icon-wrapper {
  background-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

#wcu-radio-3:checked~.row .wcu-pane-3 {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

#wcu-radio-4:checked~.row .wcu-label-4 {
  background-color: #0D63E5 !important;
  border-color: #0D63E5 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 25px rgba(13, 99, 229, 0.25) !important;
}

#wcu-radio-4:checked~.row .wcu-label-4 .wcu-icon-wrapper {
  background-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

#wcu-radio-4:checked~.row .wcu-pane-4 {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

#wcu-radio-5:checked~.row .wcu-label-5 {
  background-color: #0D63E5 !important;
  border-color: #0D63E5 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 25px rgba(13, 99, 229, 0.25) !important;
}

#wcu-radio-5:checked~.row .wcu-label-5 .wcu-icon-wrapper {
  background-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

#wcu-radio-5:checked~.row .wcu-pane-5 {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.contact-section {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #ffffff;
  color: #1e293b;
  position: relative;
  z-index: 20;
}

.contact-tagline {
  font-family: var(--primary-font);
  font-size: 12px;
  font-weight: 700;
  color: #0D63E5;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contact-heading {
  font-family: var(--primary-font);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.25;
  color: #0f1016;
  margin-bottom: 25px;
  white-space: nowrap;
}

.contact-desc {
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 1.7;
  color: #50627d;
  margin-bottom: 45px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.contact-info-block h4 {
  font-family: var(--primary-font);
  font-size: 16px;
  font-weight: 700;
  color: #0f1016;
  margin-bottom: 12px;
}

.contact-info-block p {
  font-family: var(--body-font);
  font-size: 14.5px;
  line-height: 1.6;
  color: #50627d;
  margin: 0;
}

.contact-social-icons {
  display: flex;
  gap: 14px;
  align-items: center;
}

.contact-social-icons a {
  color: #50627d;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-social-icons a:hover {
  color: #0D63E5;
  transform: translateY(-2px);
}

.contact-card {
  background-color: #fafbfd;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid #eef2f6;
  box-shadow: 0 15px 35px rgba(80, 98, 125, 0.03);
}

.contact-card-title {
  font-family: var(--primary-font);
  font-size: 24px;
  font-weight: 700;
  color: #0f1016;
  margin-bottom: 10px;
}

.contact-card-desc {
  font-family: var(--body-font);
  font-size: 14px;
  line-height: 1.6;
  color: #50627d;
  margin-bottom: 30px;
}

.contact-form-group {
  margin-bottom: 25px;
}

.contact-input-control {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid #cbd5e1;
  border-radius: 0;
  padding: 10px 0;
  font-family: var(--body-font);
  font-size: 14.5px;
  color: #0f1016;
  outline: none;
  transition: all 0.3s ease;
}

.contact-input-control::placeholder {
  color: #94a3b8;
}

.contact-input-control:focus {
  border-bottom-color: #0D63E5;
}

textarea.contact-input-control {
  min-height: 100px;
  resize: none;
}

.btn-contact-submit {
  background-color: #0D63E5;
  color: #ffffff !important;
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(13, 99, 229, 0.15);
  cursor: pointer;
}

.btn-contact-submit:hover {
  background-color: #004fc4;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(13, 99, 229, 0.25);
}

.map-section {
  padding-bottom: 100px;
  background-color: #ffffff;
}

.map-container {
  width: 100%;
  height: 450px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.1) opacity(0.95);
  transition: all 0.5s ease;
}

.map-container iframe:hover {
  filter: grayscale(0) contrast(1) opacity(1);
}

body.page-rooms-booking .hero-section {
  background-image: linear-gradient(to bottom, rgba(13, 99, 229, 0.25) 0%, rgba(6, 21, 45, 0.5) 50%, rgba(6, 21, 45, 0.8) 100%), url('../images/rooms-hero-background.png');
}

.property-section {
  background-color: #ffffff;
  color: #1e293b;
  z-index: 20;
  position: relative;
}

.property-tagline {
  font-family: var(--primary-font);
  font-size: 13px;
  font-weight: 600;
  color: #0D63E5;
  letter-spacing: 0.15em;
}

.property-heading {
  font-family: var(--primary-font);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.25;
}

.property-text {
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 1.7;
  color: #50627d;
}

.btn-property-readmore {
  background-color: #0D63E5;
  color: #ffffff;
  border: 1px solid #0D63E5;
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.08em;
  padding: 16px 36px;
  border-radius: 0;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-block;
}

.btn-property-readmore:hover {
  background-color: transparent;
  color: #0D63E5;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(13, 99, 229, 0.15);
}

.property-slider-container {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
}

.property-slide {
  position: absolute;
  bottom: 0;
  transition: left 0.85s cubic-bezier(0.34, 1.56, 0.64, 1), 

                height 0.85s cubic-bezier(0.34, 1.56, 0.64, 1), 

                opacity 0.85s ease;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.property-slide .property-img-wrapper,

.property-slide .property-img-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.property-slide:hover .property-img-portrait {
  transform: scale(1.03);
}

.property-slide.slide-left {
  left: 0;
  width: calc(50% - 8px);
  height: clamp(310px, 28vw, 390px);
  opacity: 1;
  z-index: 3;
}

.property-slide.slide-right {
  left: calc(50% + 8px);
  width: calc(50% - 8px);
  height: clamp(380px, 35vw, 480px);
  opacity: 1;
  z-index: 3;
}

.property-slide.slide-enter-left {
  left: -55%;
  width: calc(50% - 8px);
  height: clamp(310px, 28vw, 390px);
  opacity: 0;
  z-index: 2;
}

.property-slide.slide-exit-right {
  left: 110%;
  width: calc(50% - 8px);
  height: clamp(380px, 35vw, 480px);
  opacity: 0;
  z-index: 2;
}

.property-highlights {
  border-color: #f1f5f9;
}

.highlight-col {
  border-right: 1px solid #f1f5f9;
}

.highlight-col:last-child {
  border-right: none;
}

.highlight-icon-box {
  font-size: 34px;
  color: #0D63E5;
  transition: var(--transition-fast);
}

.highlight-title {
  font-family: var(--primary-font);
  font-size: 17px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.highlight-text {
  font-family: var(--body-font);
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
}

.highlight-col:hover .highlight-icon-box {
  transform: translateY(-3px) scale(1.1);
}

.room-details-section {
  background-color: #ffffff;
  color: #1e293b;
  z-index: 20;
  position: relative;
}

.room-details-heading {
  font-family: var(--primary-font);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.25;
}

.room-details-desc {
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 1.7;
  color: #50627d;
}

.title-divider {
  max-width: 240px;
}

.divider-line {
  height: 1px;
  background-color: #e2e8f0;
}

.divider-icon {
  color: #0D63E5;
  display: flex;
  align-items: center;
}

.carousel-frame-container {
  width: 100%;
}

.room-carousel-img {
  height: clamp(350px, 32vw, 440px);
  object-fit: cover;
}

.custom-carousel-btn {
  width: 44px;
  height: 44px;
  background-color: #06152d;
  color: #ffffff;
  font-size: 16px;
  border-radius: 50%;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.custom-carousel-btn:hover {
  background-color: #0D63E5;
}

.carousel-control-prev.custom-carousel-btn {
  left: 20px;
}

.carousel-control-next.custom-carousel-btn {
  right: 20px;
}

.room-details-thumbnails .thumbnail-wrapper {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  padding: 1px;
  transition: var(--transition-fast);
  aspect-ratio: 16 / 10;
}

.room-details-thumbnails .thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9px;
}

.room-details-thumbnails .thumbnail-wrapper.active {
  border-color: #0D63E5;
}

.room-details-thumbnails .thumbnail-wrapper:hover {
  opacity: 0.9;
}

.room-badge {
  background-color: rgba(13, 99, 229, 0.08);
  color: #0D63E5;
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 30px;
  font-family: var(--primary-font);
}

.room-spec-card {
  background-color: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 8px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.room-spec-list {
  width: 100%;
}

.room-spec-row {
  border-bottom: 1px solid #f1f5f9;
  transition: var(--transition-fast);
}

.room-spec-row:last-child {
  border-bottom: none;
}

.room-spec-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(13, 99, 229, 0.08);
  color: #0D63E5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.room-spec-label {
  font-family: var(--primary-font);
  font-size: 14.5px;
  font-weight: 600;
  color: #1e293b;
}

.room-spec-value {
  font-family: var(--body-font);
  font-size: 14.5px;
  font-weight: 500;
  color: #50627d;
}

.room-details-actions {
  border-color: #f1f5f9;
  background-color: #ffffff;
}

.call-icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(13, 99, 229, 0.08);
  color: #0D63E5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.call-number {
  font-family: var(--primary-font);
  font-size: 15.5px;
  font-weight: 600;
  color: #1e293b;
}

.btn-details-book {
  background-color: #0D63E5;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 10px 24px;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
  box-shadow: 0 4px 12px rgba(13, 99, 229, 0.2);
}

.btn-details-book:hover {
  background-color: #cfcfcf;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 41, 59, 0.15);
}

.amenities-section {
  background-color: #ffffff;
  color: #1e293b;
  z-index: 20;
  position: relative;
}

.amenities-heading {
  font-family: var(--primary-font);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.25;
}

.max-w-600 {
  max-width: 600px;
}

.amenity-item {
  padding: 10px 0;
}

.amenity-icon-box img { 
  width: 40px;
}

.amenity-item:hover .amenity-icon-box {
  transform: scale(1.1) translateY(-2px);
}

.amenity-item-title {
  font-family: var(--primary-font);
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
}

.amenity-item-text {
  font-family: var(--body-font);
  font-size: 13.5px;
  line-height: 1.6;
  color: #64748b;
}

.pricing-heading {
  font-family: var(--primary-font);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.25;
}

.pricing-stay-card {
  transition: var(--transition-smooth);
  border-color: #e2e8f0;
}
.pricing-stay-card a {
    text-decoration: none;
}
.pricing-stay-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pricing-stay-img-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.pricing-stay-img-wrapper a {
  text-decoration: none;
}

.pricing-stay-img-wrapper .stay-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pricing-stay-card:hover .stay-img {
  transform: scale(1.04);
}

.badge-reviews {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  font-family: var(--primary-font);
  font-size: 11.5px;
  font-weight: 500;
  z-index: 5;
}

.badge-reviews .stars {
  color: #0d63e5;
  letter-spacing: 0.1em;
}

.badge-discount-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #0d63e5;
  font-family: var(--primary-font);
  z-index: 5;
  box-shadow: 0 4px 10px rgba(13, 99, 229, 0.3);
}

.badge-discount-circle .percent {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.badge-discount-circle .off {
  font-size: 8px;
  font-weight: 600;
  opacity: 0.9;
}

.badge-stay-tag {
  background-color: #0d63e5;
  font-family: var(--primary-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  z-index: 5;
}

.stay-title {
  font-family: var(--primary-font);
  font-size: 20px;
  font-weight: 700;
  color: #0f2e5a;
}

.stay-params li {
  font-size: 13.5px;
  font-weight: 500;
  color: #475569;
  font-family: var(--primary-font);
}

.stay-params li i {
  font-size: 15px;
  color: #0d63e5;
}

.stay-price-divider {
  width: 1px;
  align-self: stretch;
  background-color: #e2e8f0;
}

.stay-price-block {
  text-align: right;
  flex-shrink: 0;
}

.stay-price-block .price-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #94a3b8;
}

.stay-price-block .price-value {
  font-family: var(--primary-font);
  font-size: 24px;
  font-weight: 800;
  color: #0d63e5;
}

.why-choose-heading {
  font-family: var(--primary-font);
  font-size: clamp(1.8rem, 3.8vw, 2.5rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.25;
}

.choose-info-card {
  background-color: #ffffff;
  border-color: #f1f5f9;
}

.card-brand-banner {
  background-color: #0d63e5;
  color: #ffffff;
}

.card-brand-banner .banner-small {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.card-brand-banner .amount {
  font-family: var(--primary-font);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.card-brand-banner .currency {
  font-size: 18px;
  font-weight: 700;
}

.card-brand-banner .rate {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.8;
}

.choose-row-card {
  border-color: #f1f5f9;
  transition: var(--transition-smooth);
}

.choose-row-card:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(13, 99, 229, 0.05);
  border-color: rgba(13, 99, 229, 0.1);
}

.choose-number-badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: #0d63e5;
  color: #ffffff;
  font-family: var(--primary-font);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.choose-row-title {
  font-family: var(--primary-font);
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
}

.choose-row-text {
  font-family: var(--body-font);
  font-size: 12.5px;
  line-height: 1.5;
}

.choose-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #0d63e5;
  color: #0d63e5;
  font-size: 18px;
}

.traveler-wrapper {
  perspective: 1000px;
}

.traveler-img {
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.06));
  animation: float-traveler 6s ease-in-out infinite;
}

.floating-balloon-red {
  top: 50%;
  left: -10px;
  animation: float-balloon 5s ease-in-out infinite;
}

.vertical-cursive-text {
  font-family: 'Yellowtail', cursive;
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  color: #0d63e5;
  right: -10px;
  top: 35%;
  transform: rotate(90deg);
  transform-origin: center;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

@keyframes float-traveler{


    0%, 100% { transform: translateY(0); }

    50% { transform: translateY(-8px); }


}

@keyframes float-balloon{


    0%, 100% { transform: translateY(0) rotate(0deg); }

    50% { transform: translateY(-15px) rotate(5deg); }


}

.page-packages-listing .package-card-wrapper {
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
  will-change: transform, opacity;
}

.page-packages-listing .package-card-wrapper.filtered-out {
  opacity: 0;
  transform: scale(0.9);
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  border: none;
  pointer-events: none;
  overflow: hidden;
}

.package-card-wrapper a {
  text-decoration: none;
}

@keyframes filterFadeIn{

    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }

}

.page-packages-listing .package-card-wrapper.filtered-in {
  animation: filterFadeIn 0.4s ease forwards;
}

.page-packages-listing .no-results-message {
  text-align: center;
  padding: 50px 20px;
  color: #1e293b;
  background: #ffffff;
  border-radius: 16px;
  border: 1px dashed #cbd5e1;
  margin: 20px auto;
  max-width: 500px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
  animation: filterFadeIn 0.5s ease forwards;
}

.page-packages-listing .no-results-message i {
  font-size: 40px;
  color: #0D63E5;
  margin-bottom: 15px;
  display: block;
}

.page-packages-listing .no-results-message h4 {
  font-family: var(--primary-font);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1e293b;
}

.page-packages-listing .no-results-message p {
  color: #64748b;
  font-size: 14px;
  margin: 0;
}

.page-packages-listing .pricing-section {
  background-color: #f8fafc;
  position: relative;
  z-index: 20;
}

body.page-packages-listing .packages-listing-section .pricing-all-link:hover {
  color: #004fc4;
  text-decoration: underline;
}

.page-packages-listing .pricing-card {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(80, 98, 125, 0.04);
  border: 1px solid #eef2f6;
  transition: var(--transition-smooth);
  height: 100%;
}

.page-packages-listing .pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(13, 99, 229, 0.08);
  border-color: rgba(13, 99, 229, 0.15);
}

.page-packages-listing .pricing-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.page-packages-listing .pricing-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.page-packages-listing .pricing-card:hover .pricing-img {
  transform: scale(1.05);
}

.page-packages-listing .pricing-stars-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 16, 22, 0.6);
  padding: 6px 12px;
  border-radius: 20px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.page-packages-listing .pricing-stars-overlay .stars {
  display: flex;
  gap: 2px;
}

.page-packages-listing .pricing-stars-overlay .stars i {
  color: #0D63E5;
}

.page-packages-listing .pricing-discount-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #0D63E5;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  font-family: var(--primary-font);
  box-shadow: 0 4px 10px rgba(13, 99, 229, 0.2);
  z-index: 10;
}

.page-packages-listing .pricing-discount-badge .pct {
  font-size: 13px;
  font-weight: 800;
}

.page-packages-listing .pricing-discount-badge .off {
  font-size: 8px;
  font-weight: 800;
}

.page-packages-listing .pricing-pill {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: linear-gradient(135deg, #0D63E5, #4d9cff);
  color: #ffffff;
  font-family: var(--primary-font);
  font-size: 10px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 8px rgba(13, 99, 229, 0.2);
}

.page-packages-listing .pricing-card-body {
  padding: 24px;
}

.page-packages-listing .pricing-card-title {
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  transition: color 0.3s ease;
}

.page-packages-listing .pricing-card:hover .pricing-card-title {
  color: #0D63E5;
}

.page-packages-listing .pricing-details-grid {
  width: 100%;
}

.page-packages-listing .pricing-left-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-packages-listing .detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body-font);
  font-size: 12.5px;
  color: #50627d;
}

.page-packages-listing .detail-item i {
  color: #0D63E5;
  font-size: 14px;
}

.page-packages-listing .pricing-divider {
  width: 1px;
  align-self: stretch;
  background-color: #e2e8f0;
  margin: 0 16px;
}

.page-packages-listing .pricing-right-details {
  flex-shrink: 0;
}

.page-packages-listing .price-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 3px;
}

.page-packages-listing .price-value {
  font-family: var(--primary-font);
  font-size: 22px;
  font-weight: 800;
  color: #0D63E5;
  line-height: 1;
}

body.page-rooms-listing .hero-section {
  background-image: linear-gradient(to bottom, rgba(13, 99, 229, 0.25) 0%, rgba(6, 21, 45, 0.5) 50%, rgba(6, 21, 45, 0.8) 100%), url('../images/rooms-hero-background.png');
}

.page-rooms-listing .trending-section {
  position: relative;
  background-color: #ffffff;
  color: #1e293b;
  z-index: 20;
}

.page-rooms-listing .trending-heading {
  font-family: var(--primary-font);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: #1e293b;
}

.page-rooms-listing .trending-accent {
  font-family: 'Yellowtail', cursive;
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  color: #0D63E5;
  font-weight: 400;
  display: inline-block;
  margin-right: 5px;
  transform: rotate(-3deg);
}

.page-rooms-listing .trending-desc {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.7;
  color: #50627d;
  max-width: 600px;
}

.page-rooms-listing .feature-card {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 16px;
  padding: 32px 20px 25px;
  box-shadow: 0 10px 30px rgba(80, 98, 125, 0.04);
  transition: var(--transition-smooth);
  margin-top: 15px;
  height: calc(100% - 15px);
}

.page-rooms-listing .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(80, 98, 125, 0.08);
  border-color: #e2e8f0;
}

.page-rooms-listing .card-number-badge {
  position: absolute;
  top: -18px;
  left: 30px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #0D63E5;
  color: #ffffff;
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(13, 99, 229, 0.2);
}

.page-rooms-listing .feature-icon-wrapper {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: rgba(13, 99, 229, 0.08);
  color: #0D63E5;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.page-rooms-listing .feature-card:hover .feature-icon-wrapper {
  background-color: #0D63E5;
  color: #ffffff;
}

.page-rooms-listing .feature-title {
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 600;
  color: #0D63E5;
}

.page-rooms-listing .feature-text {
  font-family: var(--body-font);
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.5;
}

.page-rooms-listing .trending-image-column {
  min-height: 600px;
}

.page-rooms-listing .trending-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 30% center;
  z-index: 1;
  background-image: url('../images/about-tour.png');
}

.page-rooms-listing .brush-stroke-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.page-rooms-listing .property-section {
  background-color: #ffffff;
  color: #1e293b;
  z-index: 20;
  position: relative;
}

.page-rooms-listing .property-tagline {
  font-family: var(--primary-font);
  font-size: 13px;
  font-weight: 600;
  color: #0D63E5;
  letter-spacing: 0.15em;
}

.page-rooms-listing .property-heading {
  font-family: var(--primary-font);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.25;
}

.page-rooms-listing .property-text {
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 1.7;
  color: #50627d;
}

.page-rooms-listing .btn-property-readmore {
  background-color: #0D63E5;
  color: #ffffff;
  border: 1px solid #0D63E5;
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.08em;
  padding: 16px 36px;
  border-radius: 0;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-block;
}

.page-rooms-listing .btn-property-readmore:hover {
  background-color: transparent;
  color: #0D63E5;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(13, 99, 229, 0.15);
}

.page-rooms-listing .property-slider-container {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
}

.page-rooms-listing .property-slide {
  position: absolute;
  bottom: 0;
  transition: left 0.85s cubic-bezier(0.34, 1.56, 0.64, 1), 
                height 0.85s cubic-bezier(0.34, 1.56, 0.64, 1), 
                opacity 0.85s ease;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.page-rooms-listing .property-slide .property-img-wrapper, .page-rooms-listing .property-slide .property-img-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.page-rooms-listing .property-slide:hover .property-img-portrait {
  transform: scale(1.03);
}

.page-rooms-listing .property-slide.pos-left {
  left: 0;
  width: calc(50% - 8px);
  height: clamp(310px, 28vw, 390px);
  opacity: 1;
  z-index: 3;
}

.page-rooms-listing .property-slide.pos-right {
  left: calc(50% + 8px);
  width: calc(50% - 8px);
  height: clamp(380px, 35vw, 480px);
  opacity: 1;
  z-index: 3;
}

.page-rooms-listing .property-slide.entering-left {
  left: -55%;
  width: calc(50% - 8px);
  height: clamp(310px, 28vw, 390px);
  opacity: 0;
  z-index: 2;
}

.page-rooms-listing .property-slide.exiting-right {
  left: 110%;
  width: calc(50% - 8px);
  height: clamp(380px, 35vw, 480px);
  opacity: 0;
  z-index: 2;
}

.page-rooms-listing .property-highlights {
  border-color: #f1f5f9;
}

.page-rooms-listing .highlight-col {
  border-right: 1px solid #f1f5f9;
}

.page-rooms-listing .highlight-col:last-child {
  border-right: none;
}

.page-rooms-listing .highlight-icon-box {
  font-size: 34px;
  color: #0D63E5;
  transition: var(--transition-fast);
}

.page-rooms-listing .highlight-title {
  font-family: var(--primary-font);
  font-size: 17px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.page-rooms-listing .highlight-text {
  font-family: var(--body-font);
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
}

.page-rooms-listing .highlight-col:hover .highlight-icon-box {
  transform: translateY(-3px) scale(1.1);
}

.page-rooms-listing .room-details-section {
  background-color: #ffffff;
  color: #1e293b;
  z-index: 20;
  position: relative;
}

.page-rooms-listing .room-details-heading {
  font-family: var(--primary-font);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.25;
}

.page-rooms-listing .room-details-desc {
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 1.7;
  color: #50627d;
}

.page-rooms-listing .title-divider {
  max-width: 240px;
}

.page-rooms-listing .divider-line {
  height: 1px;
  background-color: #e2e8f0;
}

.page-rooms-listing .divider-icon {
  color: #0D63E5;
  display: flex;
  align-items: center;
}

.page-rooms-listing .carousel-frame-container {
  width: 100%;
}

.page-rooms-listing .room-carousel-img {
  height: clamp(350px, 32vw, 440px);
  object-fit: cover;
}

.page-rooms-listing .custom-carousel-btn {
  width: 44px;
  height: 44px;
  background-color: #06152d;
  color: #ffffff;
  font-size: 16px;
  border-radius: 50%;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-rooms-listing .custom-carousel-btn:hover {
  background-color: #0D63E5;
}

.page-rooms-listing .carousel-control-prev.custom-carousel-btn {
  left: 20px;
}

.page-rooms-listing .carousel-control-next.custom-carousel-btn {
  right: 20px;
}

.page-rooms-listing .room-details-thumbnails .thumbnail-wrapper {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  padding: 1px;
  transition: var(--transition-fast);
  aspect-ratio: 16 / 10;
}

.page-rooms-listing .room-details-thumbnails .thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9px;
}

.page-rooms-listing .room-details-thumbnails .thumbnail-wrapper.active {
  border-color: #0D63E5;
}

.page-rooms-listing .room-details-thumbnails .thumbnail-wrapper:hover {
  opacity: 0.9;
}

.page-rooms-listing .room-badge {
  background-color: rgba(13, 99, 229, 0.08);
  color: #0D63E5;
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 30px;
  font-family: var(--primary-font);
}

.page-rooms-listing .room-spec-card {
  background-color: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 8px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.page-rooms-listing .room-spec-list {
  width: 100%;
}

.page-rooms-listing .room-spec-row {
  border-bottom: 1px solid #f1f5f9;
  transition: var(--transition-fast);
}

.page-rooms-listing .room-spec-row:last-child {
  border-bottom: none;
}

.page-rooms-listing .room-spec-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(13, 99, 229, 0.08);
  color: #0D63E5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.page-rooms-listing .room-spec-label {
  font-family: var(--primary-font);
  font-size: 14.5px;
  font-weight: 600;
  color: #1e293b;
}

.page-rooms-listing .room-spec-value {
  font-family: var(--body-font);
  font-size: 14.5px;
  font-weight: 500;
  color: #50627d;
}

.page-rooms-listing .room-details-actions {
  border-color: #f1f5f9;
  background-color: #ffffff;
}

.page-rooms-listing .call-icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(13, 99, 229, 0.08);
  color: #0D63E5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.page-rooms-listing .call-number {
  font-family: var(--primary-font);
  font-size: 15.5px;
  font-weight: 600;
  color: #1e293b;
}

.page-rooms-listing .btn-details-book {
  background-color: #0D63E5;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 10px 24px;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
  box-shadow: 0 4px 12px rgba(13, 99, 229, 0.2);
}

.page-rooms-listing .btn-details-book:hover {
  background-color: #cfcfcf;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 41, 59, 0.15);
}

.page-rooms-listing .amenities-section {
  background-color: #ffffff;
  color: #1e293b;
  z-index: 20;
  position: relative;
}

.page-rooms-listing .amenities-heading {
  font-family: var(--primary-font);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.25;
}

.page-rooms-listing .max-w-600 {
  max-width: 600px;
}

.page-rooms-listing .amenity-item {
  padding: 10px 0;
}

.page-rooms-listing .amenity-icon-box {
  color: #0D63E5;
  font-size: 32px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.page-rooms-listing .amenity-item:hover .amenity-icon-box {
  transform: scale(1.1) translateY(-2px);
}

.page-rooms-listing .amenity-item-title {
  font-family: var(--primary-font);
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
}

.page-rooms-listing .amenity-item-text {
  font-family: var(--body-font);
  font-size: 13.5px;
  line-height: 1.6;
  color: #64748b;
}

.page-rooms-listing .pricing-section {
  background-color: #ffffff;
  color: #1e293b;
  z-index: 20;
  position: relative;
}

.page-rooms-listing .pricing-heading {
  font-family: var(--primary-font);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.25;
}

.page-rooms-listing .pricing-stay-card {
  transition: var(--transition-smooth);
  border-color: #e2e8f0;
}

.page-rooms-listing .pricing-stay-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.page-rooms-listing .pricing-stay-img-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.page-rooms-listing .pricing-stay-img-wrapper .stay-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.page-rooms-listing .pricing-stay-card:hover .stay-img {
  transform: scale(1.04);
}

.page-rooms-listing .badge-reviews {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  font-family: var(--primary-font);
  font-size: 11.5px;
  font-weight: 500;
  z-index: 5;
}

.page-rooms-listing .badge-reviews .stars {
  color: #0d63e5;
  letter-spacing: 0.1em;
}

.page-rooms-listing .badge-discount-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #0d63e5;
  font-family: var(--primary-font);
  z-index: 5;
  box-shadow: 0 4px 10px rgba(13, 99, 229, 0.3);
}

.page-rooms-listing .badge-discount-circle .percent {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.page-rooms-listing .badge-discount-circle .off {
  font-size: 8px;
  font-weight: 600;
  opacity: 0.9;
}

.page-rooms-listing .badge-stay-tag {
  background-color: #0d63e5;
  font-family: var(--primary-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  z-index: 5;
}

.page-rooms-listing .stay-title {
  font-family: var(--primary-font);
  font-size: 20px;
  font-weight: 700;
  color: #0f2e5a;
}

.page-rooms-listing .stay-params li {
  font-size: 13.5px;
  font-weight: 500;
  color: #475569;
  font-family: var(--primary-font);
}

.page-rooms-listing .stay-params li i {
  font-size: 15px;
  color: #0d63e5;
}

.page-rooms-listing .stay-price-divider {
  width: 1px;
  align-self: stretch;
  background-color: #e2e8f0;
}

.page-rooms-listing .stay-price-block {
  text-align: right;
  flex-shrink: 0;
}

.page-rooms-listing .stay-price-block .price-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #94a3b8;
}

.page-rooms-listing .stay-price-block .price-value {
  font-family: var(--primary-font);
  font-size: 24px;
  font-weight: 800;
  color: #0d63e5;
}

.page-rooms-listing .why-choose-section {
  background-color: #ffffff;
  color: #1e293b;
  z-index: 20;
  position: relative;
}

.page-rooms-listing .why-choose-heading {
  font-family: var(--primary-font);
  font-size: clamp(1.8rem, 3.8vw, 2.5rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.25;
}

.page-rooms-listing .choose-info-card {
  background-color: #ffffff;
  border-color: #f1f5f9;
}

.page-rooms-listing .card-brand-banner {
  background-color: #0d63e5;
  color: #ffffff;
}

.page-rooms-listing .card-brand-banner .banner-small {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.page-rooms-listing .card-brand-banner .amount {
  font-family: var(--primary-font);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.page-rooms-listing .card-brand-banner .currency {
  font-size: 18px;
  font-weight: 700;
}

.page-rooms-listing .card-brand-banner .rate {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.8;
}

.page-rooms-listing .choose-row-card {
  border-color: #f1f5f9;
  transition: var(--transition-smooth);
}

.page-rooms-listing .choose-row-card:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(13, 99, 229, 0.05);
  border-color: rgba(13, 99, 229, 0.1);
}

.page-rooms-listing .choose-number-badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: #0d63e5;
  color: #ffffff;
  font-family: var(--primary-font);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.page-rooms-listing .choose-row-title {
  font-family: var(--primary-font);
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
}

.page-rooms-listing .choose-row-text {
  font-family: var(--body-font);
  font-size: 12.5px;
  line-height: 1.5;
}

.page-rooms-listing .choose-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #0d63e5;
  color: #0d63e5;
  font-size: 18px;
}

.page-rooms-listing .traveler-wrapper {
  perspective: 1000px;
}

.page-rooms-listing .traveler-img {
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.06));
  animation: float-traveler 6s ease-in-out infinite;
}

.page-rooms-listing .floating-balloon-red {
  top: 50%;
  left: -10px;
  animation: float-balloon 5s ease-in-out infinite;
}

.page-rooms-listing .vertical-cursive-text {
  font-family: 'Yellowtail', cursive;
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  color: #0d63e5;
  right: -10px;
  top: 35%;
  transform: rotate(90deg);
  transform-origin: center;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

@keyframes float-traveler{

    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }

}

@keyframes float-balloon{

    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }

}

.page-rooms-listing .testimonials-section {
  background-color: #ffffff;
  color: #1e293b;
  z-index: 20;
  position: relative;
  overflow: hidden;
}

.page-rooms-listing .testimonial-squiggly-svg {
  transform: rotate(-5deg);
  margin-bottom: 20px;
}

.page-rooms-listing .btn-testimonial-cta {
  background: linear-gradient(135deg, #0D63E5, #4d9cff);
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.page-rooms-listing .btn-testimonial-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(13, 99, 229, 0.3);
  color: #ffffff;
}

.page-rooms-listing .testimonial-stack-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 40px;
}

.page-rooms-listing .testimonial-card-item {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15, 16, 22, 0.04);
  border: 1px solid #f1f5f9;
  max-width: 540px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.page-rooms-listing .testimonial-card-item.highlighted {
  border-left: 4px solid #0D63E5;
}

.page-rooms-listing .testimonial-avatar {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border: 3px solid rgba(13, 99, 229, 0.08);
}

.page-rooms-listing .testimonial-name {
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
}

.page-rooms-listing .testimonial-text {
  font-family: var(--body-font);
  font-size: 14.5px;
  line-height: 1.6;
}

.page-rooms-listing .quote-icon {
  font-size: 2.2rem;
  align-self: flex-start;
  line-height: 1;
}

.page-rooms-listing .faq-section {
  background-color: #ffffff;
  color: #1e293b;
  z-index: 20;
  position: relative;
}

.page-rooms-listing .faq-badge {
  background-color: rgba(13, 99, 229, 0.08);
  color: #0D63E5;
  font-weight: 600;
  font-size: 13px;
}

.page-rooms-listing .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-rooms-listing .faq-item {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px 24px;
  border: 1px solid #eef2f6;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}

.page-rooms-listing .faq-item:hover {
  border-color: rgba(13, 99, 229, 0.2);
  box-shadow: 0 8px 24px rgba(13, 99, 229, 0.04);
}

.page-rooms-listing .faq-header {
  user-select: none;
}

.page-rooms-listing .faq-question {
  font-family: var(--primary-font);
  font-size: 17px;
  font-weight: 600;
  color: #1e293b;
  transition: color 0.3s ease;
}

.page-rooms-listing .faq-item:hover .faq-question {
  color: #0D63E5;
}

.page-rooms-listing .faq-toggle-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background-color: rgba(13, 99, 229, 0.08);
  color: #0D63E5;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  flex-shrink: 0;
}

.page-rooms-listing .faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  opacity: 0;
}

.page-rooms-listing .faq-answer {
  font-family: var(--body-font);
  font-size: 14.5px;
  color: #50627d;
  line-height: 1.6;
}

.page-rooms-listing .faq-item.active {
  box-shadow: 0 12px 30px rgba(13, 99, 229, 0.06);
  border-color: rgba(13, 99, 229, 0.15);
}

.page-rooms-listing .faq-item.active .faq-question {
  color: #0D63E5;
}

.page-rooms-listing .faq-item.active .faq-toggle-btn {
  background-color: #0D63E5;
  color: #ffffff;
  transform: rotate(180deg);
}

.page-rooms-listing .faq-item.active .faq-body {
  max-height: 200px;
  opacity: 1;
  margin-top: 12px;
}

.page-rooms-listing .booking-section {
  background-color: #fafbfd;
  color: #1e293b;
  z-index: 20;
  position: relative;
}

.page-rooms-listing .booking-input-wrapper {
  background-color: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 14px 22px;
  width: 100%;
  transition: all 0.3s ease;
}

.page-rooms-listing .booking-input-wrapper:focus-within {
  border-color: #0D63E5;
  box-shadow: 0 0 0 3px rgba(13, 99, 229, 0.1);
}

.page-rooms-listing .booking-field-icon {
  color: #475569;
  font-size: 20px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-rooms-listing .booking-input-control, .page-rooms-listing .booking-select-control {
  border: none;
  background: transparent;
  width: 100%;
  outline: none;
  font-family: var(--body-font);
  font-size: 14.5px;
  color: #1e293b;
}

.page-rooms-listing .booking-input-control::placeholder {
  color: #94a3b8;
}

.page-rooms-listing .booking-select-control {
  color: #94a3b8;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.page-rooms-listing .booking-select-control option {
  color: #1e293b;
  background-color: #ffffff;
}

.page-rooms-listing .booking-select-control:focus, .page-rooms-listing .booking-select-control:valid {
  color: #1e293b;
}

.page-rooms-listing .btn-booking-submit {
  background: #0D63E5;
  border: none;
  padding: 14px 30px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(13, 99, 229, 0.15);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.page-rooms-listing .btn-booking-submit:hover {
  background-color: #004fc4;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(13, 99, 229, 0.25);
}

.page-rooms-listing .btn-booking-submit i {
  font-size: 15px;
}

.bkrm-top-scx-slider {
  position: relative;
}

.bkrm-top-scx-slide {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.bkrm-top-scx-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}

.bkrm-top-scx-slide:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 10, 25, .9), rgba(0, 10, 25, .55), rgba(0, 10, 25, .15));
}

.container {
  position: relative;
  z-index: 2;
}

.bkrm-top-scx-content {
  max-width: 650px;
  color: #fff;
  padding-top: 200px;
}

.bkrm-top-scx-content h1 {
  font-size: 60px;
  font-weight: 800;
}

.bkrm-top-scx-content p {
  font-size: 18px;
  margin: 24px 0;
}

.bkrm-top-scx-btn {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 50px;
  background: #0d6efd;
  color: #fff;
  text-decoration: none;
  margin-right: 15px;
}

.bkrm-top-scx-btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .4);
}

.bkrm-top-scx-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .25);
  border: 1px solid rgba(255, 255, 255, .4);
  color: #fff;
  z-index: 10;
}

.bkrm-top-scx-prev {
  left: 25px;
}

.bkrm-top-scx-next {
  right: 25px;
}

.slick-dots {
  bottom: 30px;
}

.slick-dots li button:before {
  color: #fff;
}

.slick-dots li.slick-active button:before {
  color: #0d6efd;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.bkrm-hm-form-scx {
  background: #fff;
}

.bkrm-hm-form-scx .container {
  margin-top: -90px;
  background: #fff;
  padding: 40px 40px 30px;
  border-radius: 20px;
}

.bkrm-hm-form-scx-tabs {
  margin-bottom: 45px;
  border-bottom: 1px solid #e8edf6;
  padding-bottom: 22px;
  gap: 18px;
}

.bkrm-hm-form-scx .tab-content {
  margin-top: 45px;
}

.bkrm-hm-form-scx form {
  margin-bottom: 45px;
}

.bkrm-hm-form-scx .row>[class*="col"] {
  margin-bottom: 0;
}

.bkrm-hm-form-scx-field {
  position: relative;
}

.bkrm-hm-form-scx-field i {
  position: absolute;
  top: 50%;
  left: 28px;
  transform: translateY(-50%);
  color: #5e6f8d;
  font-size: 26px;
  z-index: 5;
}

.bkrm-hm-form-scx-field input,
.bkrm-hm-form-scx-field textarea {
  width: 100%;
  height: 60px;
  border: 1px solid #dde6f2;
  border-radius: 18px;
  padding: 0 25px 0 78px;
  font-size: 16px;
  font-weight: 500;
  color: #24344d;
  background: #fff;
  outline: none;
  transition: .35s;
  box-shadow: 0 8px 25px rgba(28, 58, 108, .04);
}

.bkrm-hm-form-scx-field textarea {
  resize: none;
  padding-top: 26px;
  line-height: 1.6;
}

.bkrm-hm-form-scx-field input::placeholder,
.bkrm-hm-form-scx-field textarea::placeholder {
  color: #71819c;
}

.bkrm-hm-form-scx-field input:focus,
.bkrm-hm-form-scx-field textarea:focus {
  border-color: #0d63e5;
  box-shadow: 0 15px 35px rgba(13, 99, 229, .12);
}

.bkrm-hm-form-scx-field input:focus+i,
.bkrm-hm-form-scx-field textarea:focus+i {
  color: #0d63e5;
}

.bkrm-hm-form-scx-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: none;
  background: #0d63e5;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 18px;
  transition: .35s;
  box-shadow: 0 20px 45px rgba(13, 99, 229, .28);
}

.bkrm-hm-form-scx-btn i {
  font-size: 26px;
}

.bkrm-hm-form-scx-btn:hover {
  transform: translateY(-4px);
  background: #004fc4;
  box-shadow: 0 25px 45px rgba(13, 99, 229, .35);
}

.bkrm-hm-form-scx-features { 
  padding-top: 45px;
  border-top: 1px solid #edf2f9;
  padding-bottom: 30px;
}

.bkrm-hm-form-scx-feature {
  display: flex;
  align-items: center;
  gap: 22px;
  height: 100%;
  padding: 0 18px; 
}

.bkrm-hm-form-scx-features .col-lg-3:last-child .bkrm-hm-form-scx-feature {
  border-right: none;
}

.bkrm-hm-form-scx-feature-icon {
  width: 78px;
  height: 78px;
  min-width: 78px;
  border-radius: 50%;
  background: #eef5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d63e5;
  font-size: 34px;
  transition: .35s;
}

.bkrm-hm-form-scx-feature:hover .bkrm-hm-form-scx-feature-icon {
  background: #0d63e5;
  color: #fff;
  transform: rotate(10deg);
}

.bkrm-hm-form-scx-feature h5 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #24344d;
  font-weight: 700;
}

.bkrm-hm-form-scx-feature p {
  margin: 0;
  color: #6c7b95;
  font-size: 14px;
  line-height: 1.5;
}

.bkrm-package-scx {
  padding: 90px 0;
  background: #f7f7f7;
}

.bkrm-package-scx-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 45px;
  flex-wrap: wrap;
  gap: 20px;
}

.bkrm-package-scx-title h2 {
  margin: 0;
  font-size: 46px;
  font-weight: 700;
  color: #14233f;
  display: flex;
  align-items: center;
  gap: 20px;
}

.bkrm-package-scx-title span {
  color: #2b74ff;
  font-size: 28px;
  position: relative;
}

.bkrm-package-scx-btn a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 34px;
  border: 2px solid #d7e5ff;
  border-radius: 60px;
  text-decoration: none;
  color: #1465e8;
  font-weight: 600;
  transition: .35s;
}

.bkrm-package-scx-btn a:hover {
  background: #1465e8;
  color: #fff;
}

.bkrm-package-scx-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  transition: .4s;
  margin-bottom: 30px;
}

.bkrm-package-scx-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 55px rgba(0, 0, 0, .18);
}

.bkrm-package-scx-img {
  position: relative;
  height: 470px;
  overflow: hidden;
}

.bkrm-package-scx-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

.bkrm-package-scx-card:hover img {
  transform: scale(1.08);
}

.bkrm-package-scx-img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
            rgba(7, 19, 38, .95),
            rgba(7, 19, 38, .25),
            rgba(0, 0, 0, 0));
}

.bkrm-package-scx-tag {
  position: absolute;
  left: 22px;
  top: 22px;
  background: #fff;
  color: #1465e8;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
}

.bkrm-package-scx-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 3;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: #ffffff00;
  backdrop-filter: blur(10px);
}

.bkrm-package-scx-info h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 3px;
  font-weight: 700;
}

.bkrm-package-scx-info p {
  color: #fff;
  margin: 0;
  opacity: .9;
  font-size: 18px;
}

.bkrm-wwa-scx {
  padding: 110px 0;
  background: #fff;
}

.bkrm-wwa-scx-head {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 70px;
}

.bkrm-wwa-scx-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 26px;
  border: 1px solid #dbe7ff;
  border-radius: 50px;
  color: #2167f3;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .5px;
  margin-bottom: 28px;
}

.bkrm-wwa-scx-subtitle i {
  font-size: 20px;
}

.bkrm-wwa-scx-head h2 {
  font-size: 33px;
  font-weight: 700;
  line-height: 1.3;
  color: #13243f;
  margin-bottom: 25px;
}

.bkrm-wwa-scx-head h2 span {
  color: #2167f3;
}

.bkrm-wwa-scx-head p {
  max-width: 700px;
  margin: auto;
  color: #667791;
  font-size: 20px;
  line-height: 1.5;
}

.bkrm-wwa-scx-card {
  background: #f6f9ff;
  border-radius: 26px;
  padding: 32px;
  height: 100%;
  transition: .4s;
}

.bkrm-wwa-scx-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .10);
}

.bkrm-wwa-scx-top {
  display: flex;
  align-items: center;
  gap: 20px;
}

.bkrm-wwa-scx-icon {
  width: 64px;
  height: 64px;
  background: #2167f3;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 28px;
}

.bkrm-wwa-scx-top h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  color: #2167f3;
}

.bkrm-wwa-scx-top span {
  color: #24344d;
  font-size: 18px;
  font-weight: 500;
}

.bkrm-wwa-scx-line {
  width: 55px;
  height: 4px;
  background: #2167f3;
  border-radius: 30px;
  margin: 28px 0;
}

.bkrm-wwa-scx-image {
  overflow: hidden;
  border-radius: 18px;
}

.bkrm-wwa-scx-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: .5s;
}

.bkrm-wwa-scx-card:hover img {
  transform: scale(1.08);
}

.bkrm-wwa-scx-center {
  border-radius: 26px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

.bkrm-wwa-scx-center img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: .6s;
}

.bkrm-wwa-scx-center:hover img {
  transform: scale(1.05);
}

.bkrm-rooms-scx {
  padding: 100px 0;
  background: #f5f5f5;
}

.bkrm-rooms-scx-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.bkrm-rooms-scx-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 26px;
  border: 1px solid #dbe7ff;
  border-radius: 50px;
  color: #2167f3;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .5px;
  margin-bottom: 28px;
}

.bkrm-rooms-scx-head h2 {
  font-size: 48px;
  font-weight: 700;
  color: #18233d;
  margin-bottom: 20px;
}

.bkrm-rooms-scx-head p {
  color: #677992;
  font-size: 18px;
  line-height: 1.8;
}

.bkrm-rooms-scx-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
  transition: .4s;
  margin-bottom: 30px;
}

.bkrm-rooms-scx-card:hover {
  transform: translateY(-10px);
}

.bkrm-rooms-scx-image {
  position: relative;
  height: 620px;
}

.bkrm-rooms-scx-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .6s;
}

.bkrm-rooms-scx-card:hover img {
  transform: scale(1.08);
}

.bkrm-rooms-scx-top {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
}

.bkrm-rooms-scx-type {
  background: #fff;
  padding: 10px 20px;
  border-radius: 40px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bkrm-rooms-scx-content {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 25px;
  background: #ffffff30;
  border-radius: 24px;
  padding: 35px;
  backdrop-filter: blur(20px);
}

.bkrm-rooms-scx-content h3 {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.bkrm-rooms-scx-content h3 small {
  font-size: 18px;
  color: #fff;
}

.bkrm-rooms-scx-content h4 {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 25px;
  color: #4b4b4b;
}

.bkrm-rooms-scx-content ul {
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}

.bkrm-rooms-scx-content li {
  color: #555;
  font-size: 18px;
}

.bkrm-rooms-scx-content li i {
  margin-right: 8px;
}

.bkrm-rooms-scx-btn {
  display: block;
  width: 220px;
  margin: auto;
  text-align: center;
  padding: 16px;
  background: #f5f5f5;
  border-radius: 40px;
  text-decoration: none;
  color: #222;
  font-weight: 600;
  transition: .35s;
}

.bkrm-rooms-scx-btn:hover {
  background: #0d63e5;
  color: #fff;
}

.bkrm-cta-scx {
  padding: 90px 0;
  background: #fff;
}

.bkrm-cta-scx-wrap {
  background: #2167f3;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .12);
}

.bkrm-cta-scx-content {
  padding: 70px;
  color: #fff;
}

.bkrm-cta-scx-subtitle {
  display: inline-block;
  padding: 10px 22px;
  background: rgba(255, 255, 255, .10);
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.bkrm-cta-scx-content h2 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 22px;
}

.bkrm-cta-scx-content h2 span {
  display: block;
}

.bkrm-cta-scx-content p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 30px;
}

.bkrm-cta-scx-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 36px;
  background: #fff;
  color: #111;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 700;
  transition: .35s;
}

.bkrm-cta-scx-btn:hover {
  background: #0d63e5;
  color: #fff;
}

.bkrm-cta-scx-btn i {
  transition: .35s;
}

.bkrm-cta-scx-btn:hover i {
  transform: translateX(6px);
}

.bkrm-cta-scx-image {
  height: 100%;
}

.bkrm-cta-scx-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transition: .5s;
}

.bkrm-cta-scx-wrap:hover .bkrm-cta-scx-image img {
  transform: scale(1.05);
}

.pricing-det-cta a {
    display: block;
    text-align: center;
    background: #0D63E5;
    color: #fff;
    padding: 10px 0 10px;
    text-decoration: none;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: 600;
}
.testimonial-card-item {
    margin-bottom: 20px;
}
.search-type-select option {
    background-color: #f5f5f5;
    color: #333;
}
.room-list-btn a {
    color: #fff;
    background: #0d6efd;
    width: 100%;
    display: block;
    text-align: center;
    padding: 10px 0 10px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    border-radius: 15px;
}
/* =========================================================
   HOTEL RESORT CARD LIST
========================================================= */

.hotel-reso-card-list-scx-section {
    padding: 90px 0;
    background: #ffffff;
}


/* =========================================================
   CARD
========================================================= */

.hote-reso-card-list-scx {
    position: relative;

    height: 100%;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e9e7e1;
    border-radius: 22px;

    box-shadow:
        0 8px 30px rgba(25, 35, 30, 0.05);

    transition:
        transform 0.45s cubic-bezier(.2, .8, .2, 1),
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}

.hote-reso-card-list-scx:hover {
    transform: translateY(-8px);

    border-color: #ddd8cb;

    box-shadow:
        0 22px 55px rgba(25, 35, 30, 0.12);
}


/* =========================================================
   IMAGE
========================================================= */

.hote-reso-card-list-scx-image {
    position: relative;

    height: 285px;

    overflow: hidden;

    background: #e9e7e1;
}

.hote-reso-card-list-scx-img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(.2, .8, .2, 1);
}

.hote-reso-card-list-scx:hover .hote-reso-card-list-scx-img {
    transform: scale(1.07);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.hote-reso-card-list-scx-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(20, 28, 24, 0.05) 25%,
            rgba(20, 28, 24, 0.48) 100%
        );

    pointer-events: none;
}


/* =========================================================
   CATEGORY
========================================================= */

.hote-reso-card-list-scx-category {
    position: absolute;

    left: 18px;
    bottom: 18px;

    display: inline-flex;
    align-items: center;

    padding: 8px 14px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;

    background: rgba(255, 255, 255, 0.92);

    color: #28332e;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.2px;
    text-transform: uppercase;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    z-index: 2;
}


/* =========================================================
   IMAGE ICON
========================================================= */

.hote-reso-card-list-scx-image-icon {
    position: absolute;

    top: 17px;
    right: 17px;

    width: 42px;
    height: 42px;

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

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;

    background: rgba(22, 31, 27, 0.45);

    color: #ffffff;

    font-size: 15px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition:
        background 0.3s ease,
        transform 0.3s ease;

    z-index: 2;
}

.hote-reso-card-list-scx:hover .hote-reso-card-list-scx-image-icon {
    background: #0D63E5;

    transform: rotate(45deg);
}


/* =========================================================
   PLACEHOLDER
========================================================= */

.hote-reso-card-list-scx-placeholder {
    width: 100%;
    height: 100%;

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

    gap: 8px;

    color: #9b9d98;
}

.hote-reso-card-list-scx-placeholder i {
    font-size: 34px;
}

.hote-reso-card-list-scx-placeholder span {
    font-size: 12px;
}


/* =========================================================
   CONTENT
========================================================= */

.hote-reso-card-list-scx-content {
    padding: 25px 25px 24px;
}


/* =========================================================
   TITLE
========================================================= */

.hote-reso-card-list-scx-title {
    margin: 0 0 22px;

    color: #202c27;

    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;

    letter-spacing: -0.3px;
}


/* =========================================================
   SPECS
========================================================= */

.hote-reso-card-list-scx-specs {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    padding-bottom: 21px;

    border-bottom: 1px solid #eceae5;
}

.hote-reso-card-list-scx-spec {
    display: flex;
    align-items: center;

    gap: 11px;

    min-width: 0;
}

.hote-reso-card-list-scx-spec-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #0d63e53b;
    color: #0D63E5;
    font-size: 16px;
}

.hote-reso-card-list-scx-spec-content {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 3px;
}

.hote-reso-card-list-scx-spec-label {
    font-size: 9px;
    line-height: 1.2;

    color: #92958f;

    font-weight: 600;

    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.hote-reso-card-list-scx-spec-value {
    overflow: hidden;

    color: #303934;

    font-size: 12px;
    line-height: 1.3;
    font-weight: 700;

    text-overflow: ellipsis;
    white-space: nowrap;
}


/* =========================================================
   BOTTOM
========================================================= */

.hote-reso-card-list-scx-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 15px;

    padding-top: 21px;
}


/* =========================================================
   PRICE
========================================================= */

.hote-reso-card-list-scx-price {
    min-width: 0;
}

.hote-reso-card-list-scx-price-label {
    display: block;

    margin-bottom: 5px;

    color: #999b96;

    font-size: 9px;
    line-height: 1;

    font-weight: 700;

    letter-spacing: 1.2px;
}

.hote-reso-card-list-scx-price-row {
    display: flex;
    align-items: baseline;

    gap: 5px;
}

.hote-reso-card-list-scx-price-value {
    color: #0D63E5;

    font-size: 24px;
    line-height: 1;

    font-weight: 800;
}

.hote-reso-card-list-scx-price-period {
    color: #989b96;

    font-size: 10px;
}


/* =========================================================
   CTA
========================================================= */

.hote-reso-card-list-scx-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 12px 16px;

    flex-shrink: 0;

    border-radius: 9px;

    background: #0D63E5;

    color: #ffffff;

    text-decoration: none;

    font-size: 11px;
    line-height: 1;

    font-weight: 700;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.hote-reso-card-list-scx-cta i {
    font-size: 14px;

    transition: transform 0.3s ease;
}

.hote-reso-card-list-scx-cta:hover {
    background: #06152d;

    color: #ffffff;

    transform: translateY(-2px);
}

.hote-reso-card-list-scx-cta:hover i {
    transform: translateX(4px);
}


/* =========================================================
   EMPTY STATE
========================================================= */

.hote-reso-card-list-scx-empty {
    padding: 70px 20px;

    text-align: center;

    border: 1px dashed #ddd9cf;
    border-radius: 20px;

    background: #faf9f6;
}

.hote-reso-card-list-scx-empty i {
    display: block;

    margin-bottom: 15px;

    color: #a58243;

    font-size: 35px;
}

.hote-reso-card-list-scx-empty h3 {
    margin: 0 0 8px;

    color: #202c27;

    font-size: 21px;
}

.hote-reso-card-list-scx-empty p {
    margin: 0;

    color: #858983;

    font-size: 14px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .hote-reso-card-list-scx-section {
        padding: 70px 0;
    }

    .hote-reso-card-list-scx-image {
        height: 260px;
    }

}


@media (max-width: 767px) {

    .hote-reso-card-list-scx-content {
        padding: 22px;
    }

    .hote-reso-card-list-scx-image {
        height: 250px;
    }

    .hote-reso-card-list-scx-title {
        font-size: 20px;
    }

}


@media (max-width: 450px) {

    .hote-reso-card-list-scx-specs {
        grid-template-columns: 1fr;
    }

    .hote-reso-card-list-scx-bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .hote-reso-card-list-scx-cta {
        width: 100%;
    }

}

/* =========================================================
   TOUR PACKAGE CARD SECTION
========================================================= */

.tur-pk-card-list-scx-section {
    padding: 80px 0;
    background: #ffffff;
}


/* =========================================================
   CARD
========================================================= */

.tur-pk-card-list-scx {
    position: relative;

    height: 100%;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e8e5dd;
    border-radius: 22px;

    box-shadow:
        0 8px 30px rgba(24, 35, 30, 0.055);

    transition:
        transform 0.45s cubic-bezier(.2, .8, .2, 1),
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}

.tur-pk-card-list-scx:hover {
    transform: translateY(-8px);

    border-color: #d9d1c0;

    box-shadow:
        0 22px 55px rgba(24, 35, 30, 0.12);
}


/* =========================================================
   IMAGE
========================================================= */

.tur-pk-card-list-scx-image {
    position: relative;

    height: 285px;

    overflow: hidden;

    background: #e9e6de;
}

.tur-pk-card-list-scx-img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(.2, .8, .2, 1);
}

.tur-pk-card-list-scx:hover .tur-pk-card-list-scx-img {
    transform: scale(1.08);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.tur-pk-card-list-scx-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(18, 28, 23, 0.08) 0%,
            rgba(18, 28, 23, 0.02) 35%,
            rgba(18, 28, 23, 0.58) 100%
        );

    pointer-events: none;
}


/* =========================================================
   DISCOUNT BADGE
========================================================= */

.tur-pk-card-list-scx-discount {
    position: absolute;

    top: 17px;
    left: 17px;

    width: 59px;
    height: 59px;

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

    border-radius: 50%;

    background: #b28a46;

    color: #ffffff;

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.17);

    z-index: 3;
}

.tur-pk-card-list-scx-discount strong {
    font-size: 17px;
    line-height: 1;

    font-weight: 800;
}

.tur-pk-card-list-scx-discount span {
    margin-top: 4px;

    font-size: 8px;
    line-height: 1;

    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================================================
   PACKAGE LABEL
========================================================= */

.tur-pk-card-list-scx-label {
    position: absolute;

    top: 19px;
    right: 18px;

    display: inline-flex;
    align-items: center;

    padding: 8px 13px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;

    background: rgba(255, 255, 255, 0.93);

    color: #26332d;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    z-index: 3;
}


/* =========================================================
   IMAGE ARROW
========================================================= */

.tur-pk-card-list-scx-image-arrow {
    position: absolute;

    right: 18px;
    bottom: 18px;

    width: 42px;
    height: 42px;

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

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;

    background: rgba(20, 29, 25, 0.42);

    color: #ffffff;

    font-size: 15px;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        background 0.3s ease,
        transform 0.35s ease;

    z-index: 3;
}

.tur-pk-card-list-scx:hover .tur-pk-card-list-scx-image-arrow {
    background: #0D63E5;

    transform: rotate(45deg);
}


/* =========================================================
   PLACEHOLDER
========================================================= */

.tur-pk-card-list-scx-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

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

    gap: 8px;

    color: #999c97;
}

.tur-pk-card-list-scx-placeholder i {
    font-size: 34px;
}

.tur-pk-card-list-scx-placeholder span {
    font-size: 12px;
}


/* =========================================================
   CONTENT
========================================================= */

.tur-pk-card-list-scx-content {
    display: flex;
    flex-direction: column;

    padding: 24px 25px 25px;
}


/* =========================================================
   TITLE
========================================================= */

.tur-pk-card-list-scx-title { 

    margin: 0 0 13px;

    color: #1d2b25;

    font-size: 21px;
    line-height: 1.32;

    font-weight: 700;

    letter-spacing: -0.25px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.tur-pk-card-list-scx-description {
    min-height: 52px;

    margin-bottom: 21px;

    color: #777c77;

    font-size: 13px;
    line-height: 1.7;
}

.tur-pk-card-list-scx-description p {
    margin: 0;
}

.tur-pk-card-list-scx-description p + p {
    margin-top: 5px;
}

.tur-pk-card-list-scx-description ul,
.tur-pk-card-list-scx-description ol {
    margin: 0;
    padding-left: 18px;
}


/* =========================================================
   BOTTOM
========================================================= */

.tur-pk-card-list-scx-bottom {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 18px;

    padding-top: 18px;

    border-top: 1px solid #ebe9e3;
}


/* =========================================================
   PRICE
========================================================= */

.tur-pk-card-list-scx-price {
    min-width: 0;
}

.tur-pk-card-list-scx-price-label {
    display: block;

    margin-bottom: 5px;

    color: #999c97;

    font-size: 9px;
    line-height: 1;

    font-weight: 700;

    letter-spacing: 1.25px;
}

.tur-pk-card-list-scx-price-row {
    display: flex;
    align-items: baseline;

    gap: 5px;
}

.tur-pk-card-list-scx-price-value {
    color: #0D63E5;

    font-size: 24px;
    line-height: 1;

    font-weight: 800;
}


/* =========================================================
   CTA
========================================================= */

.tur-pk-card-list-scx-cta {
    position: relative;

    display: inline-flex;

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

    gap: 9px;

    flex-shrink: 0;

    padding: 12px 17px;

    border-radius: 9px;

    background: #0D63E5;

    color: #ffffff;

    text-decoration: none;

    font-size: 11px;
    line-height: 1;

    font-weight: 700;

    overflow: hidden;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.tur-pk-card-list-scx-cta::before {
    content: "";

    position: absolute;

    inset: 0;

    background: #06152d;

    transform: translateX(-102%);

    transition: transform 0.35s ease;
}

.tur-pk-card-list-scx-cta span,
.tur-pk-card-list-scx-cta i {
    position: relative;

    z-index: 1;
}

.tur-pk-card-list-scx-cta i {
    font-size: 14px;

    transition: transform 0.3s ease;
}

.tur-pk-card-list-scx-cta:hover {
    color: #ffffff;

    transform: translateY(-2px);
}

.tur-pk-card-list-scx-cta:hover::before {
    transform: translateX(0);
}

.tur-pk-card-list-scx-cta:hover i {
    transform: translateX(4px);
}


/* =========================================================
   EMPTY STATE
========================================================= */

.tur-pk-card-list-scx-empty {
    padding: 70px 20px;

    text-align: center;

    background: #faf9f6;

    border: 1px dashed #dcd8ce;

    border-radius: 20px;
}

.tur-pk-card-list-scx-empty i {
    display: block;

    margin-bottom: 14px;

    color: #a27c3d;

    font-size: 35px;
}

.tur-pk-card-list-scx-empty h3 {
    margin: 0 0 8px;

    color: #1d2b25;

    font-size: 21px;
}

.tur-pk-card-list-scx-empty p {
    margin: 0;

    color: #7d817c;

    font-size: 14px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .tur-pk-card-list-scx-section {
        padding: 70px 0;
    }

    .tur-pk-card-list-scx-image {
        height: 260px;
    }

}


@media (max-width: 767px) {

    .tur-pk-card-list-scx-image {
        height: 250px;
    }

    .tur-pk-card-list-scx-content {
        padding: 22px;
    }

    .tur-pk-card-list-scx-title {
        min-height: auto;

        font-size: 20px;
    }

    .tur-pk-card-list-scx-description {
        min-height: auto;
    }

}


@media (max-width: 480px) {

    .tur-pk-card-list-scx-bottom {
        align-items: stretch;

        flex-direction: column;
    }

    .tur-pk-card-list-scx-cta {
        width: 100%;
    }

}
    /* =========================================================
   ALL PACKAGE TABS
========================================================= */

.all-package-tab-scx-wrap {
    display: flex;
    justify-content: center;

    margin-bottom: 50px;
}


/* =========================================================
   TAB NAV
========================================================= */

.all-package-tab-scx {
    display: inline-flex;
    align-items: stretch;

    gap: 5px;

    padding: 7px;
    margin: 0;

    background: #ffffff;

    border: 1px solid rgba(29, 43, 37, 0.08);

    border-radius: 18px;

    box-shadow:
        0 12px 35px rgba(29, 43, 37, 0.07);
}


/* =========================================================
   TAB ITEM
========================================================= */

.all-package-tab-scx .nav-item {
    margin: 0;
}


/* =========================================================
   TAB LINK
========================================================= */

.all-package-tab-scx .all-package-tab-scx-link {
    position: relative;

    display: flex;
    align-items: center;

    gap: 13px;

    min-width: 190px;

    padding: 14px 20px;

    border: 0;
    border-radius: 13px;

    background: transparent;

    color: #656b66;

    text-align: left;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================================
   HOVER
========================================================= */

.all-package-tab-scx .all-package-tab-scx-link:hover {
    color: #1d2b25;

    background: #f5f3ed;
}


/* =========================================================
   ACTIVE
========================================================= */

.all-package-tab-scx .all-package-tab-scx-link.active {
    color: #ffffff;

    background: #06152d;

    box-shadow:
        0 8px 22px rgba(29, 43, 37, 0.16);
}


/* =========================================================
   ICON
========================================================= */

.all-package-tab-scx-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

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

    border-radius: 11px;

    background: #0d63e5;
    color: #ffffff;

    font-size: 18px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


/* ACTIVE ICON */

.all-package-tab-scx-link.active .all-package-tab-scx-icon {
    background: rgba(255, 255, 255, 0.12);

    color: #fff;
}


/* HOVER ICON */

.all-package-tab-scx-link:hover .all-package-tab-scx-icon {
    transform: translateY(-1px);
}


/* =========================================================
   TEXT
========================================================= */

.all-package-tab-scx-text {
    display: flex;
    flex-direction: column;

    gap: 3px;

    min-width: 0;
}


/* =========================================================
   TITLE
========================================================= */

.all-package-tab-scx-title {
    display: block;

    font-size: 14px;
    line-height: 1.2;

    font-weight: 700;

    white-space: nowrap;
}


/* =========================================================
   SUBTITLE
========================================================= */

.all-package-tab-scx-subtitle {
    display: block;

    font-size: 10px;
    line-height: 1.2;

    font-weight: 500;

    opacity: 0.62;

    white-space: nowrap;
}


/* ACTIVE SUBTITLE */

.all-package-tab-scx-link.active .all-package-tab-scx-subtitle {
    opacity: 0.68;
}


/* =========================================================
   TAB CONTENT
========================================================= */

.all-package-tab-scx-content {
    min-height: 300px;
}


/* =========================================================
   TAB ANIMATION
========================================================= */

.all-package-tab-scx-content .tab-pane {
    animation: allPackageTabScxFade 0.4s ease;
}

@keyframes allPackageTabScxFade {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .all-package-tab-scx-wrap {
        margin-bottom: 40px;
    }

    .all-package-tab-scx {
        width: 100%;
    }

    .all-package-tab-scx .nav-item {
        flex: 1;
    }

    .all-package-tab-scx .all-package-tab-scx-link {
        min-width: 0;

        width: 100%;

        justify-content: center;

        padding: 12px 14px;
    }

    .all-package-tab-scx-icon {
        width: 38px;
        height: 38px;

        flex-basis: 38px;

        font-size: 16px;
    }

    .all-package-tab-scx-subtitle {
        display: none;
    }

}


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

@media (max-width: 767px) {

    .all-package-tab-scx-wrap {
        justify-content: flex-start;

        overflow-x: auto;

        padding: 0 4px 8px;

        scrollbar-width: none;
    }

    .all-package-tab-scx-wrap::-webkit-scrollbar {
        display: none;
    }

    .all-package-tab-scx {
        width: 100%;
        display: block;
        flex-shrink: 0;
    }

    .all-package-tab-scx .nav-item {
        flex: 0 0 auto;
    }

    .all-package-tab-scx .all-package-tab-scx-link {
        min-width: 145px;

        justify-content: flex-start;

        padding: 10px 12px;
    }

    .all-package-tab-scx-icon {
        width: 35px;
        height: 35px;

        flex-basis: 35px;

        border-radius: 9px;

        font-size: 15px;
    }

    .all-package-tab-scx-title {
        font-size: 12px;
    }

}


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

@media (max-width: 480px) {

    .all-package-tab-scx .all-package-tab-scx-link {
        min-width: 132px;

        gap: 9px;

        padding: 9px 10px;
    }

    .all-package-tab-scx-icon {
        width: 32px;
        height: 32px;

        flex-basis: 32px;
    }

    .all-package-tab-scx-title {
        font-size: 11px;
    }

}
/*MODAL*/ 

.modal-backdrop {
    z-index: 1050 !important;
}

.modal {
    z-index: 1055 !important;
}

.modal-dialog {
    z-index: 1056 !important;
}

.modal-content {
    position: relative;
    z-index: 1057 !important;
}
.form-control:focus {
    background-color: transparent;
    color: #fff;
}
   /* =========================================================
   TOUR PACKAGES SECTION
========================================================= */

.tour-packages-section {
    padding: 100px 0;
    background: #f1f1f1;
    overflow: hidden;
    margin-top: 70px;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.tour-packages-heading {
    max-width: 760px;
    margin: 0 auto 48px;
}

.tour-packages-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;

    color: #0D63E5;
}

.tour-packages-eyebrow::before,
.tour-packages-eyebrow::after {
    content: "";
    width: 28px;
    height: 1px;
    background: #0D63E5;
}

.tour-packages-heading h2 {
    margin: 0 0 15px;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
    font-weight: 700;

    color: #17231f;
    letter-spacing: -1.5px;
}

.tour-packages-heading h2 span {
    color: #0D63E5;
}

.tour-packages-heading p {
    max-width: 620px;
    margin: 0 auto;

    font-size: 16px;
    line-height: 1.8;

    color: #747873;
}


/* =========================================================
   PREMIUM TAB NAVIGATION
========================================================= */

.tour-package-tabs-wrap {
    display: flex;
    justify-content: center;

    margin-bottom: 50px;
}

.tour-package-tabs {
    display: inline-flex;
    align-items: stretch;

    padding: 7px;
    margin: 0;

    gap: 5px;

    background: #ffffff;
    border: 1px solid rgba(23, 35, 31, 0.08);

    border-radius: 18px;

    box-shadow:
        0 12px 35px rgba(23, 35, 31, 0.07);
}

.tour-package-tabs .nav-item {
    margin: 0;
}

.tour-package-tabs .nav-link {
    position: relative;

    display: flex;
    align-items: center;
    gap: 13px;

    min-width: 190px;

    padding: 14px 20px;

    border: 0;
    border-radius: 13px;

    background: transparent;

    color: #5d625f;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;

    text-align: left;
}

.tour-package-tabs .nav-link:hover {
    color: #17231f;
    background: #f4f2ec;
}

.tour-package-tabs .nav-link.active {
    color: #ffffff;
    background: #06152d;

    box-shadow:
        0 8px 20px rgba(23, 35, 31, 0.16);
}

.tab-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

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

    border-radius: 11px;

    background: #0d63e5;
    color: #ffffff;

    font-size: 18px;

    transition: all 0.3s ease;
}

.nav-link.active .tab-icon {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.tab-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tab-text strong {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.tab-text small {
    font-size: 11px;
    opacity: 0.65;
    line-height: 1.2;
}


/* =========================================================
   TAB CONTENT
========================================================= */

.tour-package-tab-content {
    min-height: 400px;
}

.tour-package-tab-content .tab-pane {
    animation: tourTabFade 0.45s ease;
}

@keyframes tourTabFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   PACKAGE CARD
========================================================= */

.tour-package-card {
    position: relative;

    height: 100%;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid rgba(23, 35, 31, 0.08);
    border-radius: 20px;

    box-shadow:
        0 8px 30px rgba(23, 35, 31, 0.06);

    transition:
        transform 0.4s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.4s ease;
}

.tour-package-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 22px 50px rgba(23, 35, 31, 0.13);
}


/* =========================================================
   CARD IMAGE
========================================================= */

.tour-card-image {
    position: relative;

    height: 270px;

    overflow: hidden;

    background: #e8e5dd;
}

.tour-card-img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s cubic-bezier(.2,.8,.2,1);
}

.tour-package-card:hover .tour-card-img {
    transform: scale(1.07);
}

.tour-card-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(12, 22, 18, 0.55) 0%,
            rgba(12, 22, 18, 0.08) 45%,
            transparent 70%
        );

    pointer-events: none;
}

.tour-card-placeholder {
    width: 100%;
    height: 100%;

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

    color: #9c9d98;
    font-size: 32px;
}


/* =========================================================
   DISCOUNT BADGE
========================================================= */

.tour-discount-badge {
    position: absolute;

    top: 16px;
    left: 16px;

    min-width: 58px;
    height: 58px;

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

    border-radius: 50%;

    background: #b78b3c;
    color: #ffffff;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.16);

    z-index: 2;
}

.tour-discount-badge strong {
    font-size: 17px;
    line-height: 1;
    font-weight: 800;
}

.tour-discount-badge span {
    margin-top: 3px;

    font-size: 8px;
    line-height: 1;

    letter-spacing: 1px;
    font-weight: 700;
}


/* =========================================================
   PACKAGE LABEL
========================================================= */

.tour-package-label {
    position: absolute;

    right: 16px;
    top: 17px;

    display: inline-flex;
    align-items: center;

    padding: 8px 13px;

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.94);

    color: #17231f;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;

    backdrop-filter: blur(8px);

    z-index: 2;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.tour-card-content {
    display: flex;
    flex-direction: column;

    padding: 25px 25px 24px;
}

.tour-card-title { 
    margin: 0 0 12px;

    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;

    color: #17231f;
}

.tour-card-description {
    min-height: 48px;

    margin-bottom: 20px;

    font-size: 13px;
    line-height: 1.7;

    color: #747873;
}

.tour-card-description p {
    margin: 0;
}

.tour-card-description ul,
.tour-card-description ol {
    padding-left: 18px;
    margin-bottom: 0;
}


/* =========================================================
   PRICE
========================================================= */

.tour-card-price {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 15px 0;

    margin-bottom: 16px;

    border-top: 1px solid #eceae4;
    border-bottom: 1px solid #eceae4;
}

.tour-price-label {
    display: block;

    margin-bottom: 4px;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.4px;
    text-transform: uppercase;

    color: #9a9d99;
}

.tour-price {
    display: block;

    font-size: 23px;
    line-height: 1;

    font-weight: 800;

    color: #0D63E5;
}

.tour-price-icon {
    width: 39px;
    height: 39px;

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

    border-radius: 50%;

    background: #f5f1e8;
    color: #0D63E5;

    font-size: 16px;
}


/* =========================================================
   CARD BUTTON
========================================================= */

.tour-card-button {
    position: relative;

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

    width: 100%;

    padding: 14px 17px;

    border-radius: 10px;

    background: #06152d;
    color: #ffffff;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.3px;

    overflow: hidden;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.tour-card-button::before {
    content: "";

    position: absolute;

    inset: 0;

    background: #0D63E5;

    transform: translateX(-101%);

    transition: transform 0.35s ease;
}

.tour-card-button span,
.tour-card-button i {
    position: relative;
    z-index: 1;
}

.tour-card-button i {
    font-size: 16px;

    transition: transform 0.3s ease;
}

.tour-card-button:hover {
    color: #ffffff;
}

.tour-card-button:hover::before {
    transform: translateX(0);
}

.tour-card-button:hover i {
    transform: translateX(4px);
}


/* =========================================================
   VIEW ALL BUTTON
========================================================= */

.tour-view-all-wrap {
    display: flex;
    justify-content: center;

    margin-top: 45px;
}

.tour-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    padding: 14px 22px;

    border: 1px solid #17231f;
    border-radius: 50px;

    background: transparent;

    color: #17231f;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.4px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.tour-view-all-btn i {
    font-size: 16px;

    transition: transform 0.3s ease;
}

.tour-view-all-btn:hover {
    background: #0D63E5;
    color: #ffffff;

    transform: translateY(-2px);
}

.tour-view-all-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   NO PACKAGES
========================================================= */

.tour-no-packages {
    padding: 70px 20px;

    text-align: center;

    background: #ffffff;

    border: 1px dashed #d7d5ce;
    border-radius: 18px;
}

.tour-no-packages > i {
    display: block;

    margin-bottom: 15px;

    font-size: 35px;

    color: #b18a47;
}

.tour-no-packages h3 {
    margin: 0 0 8px;

    font-size: 21px;
    color: #17231f;
}

.tour-no-packages p {
    margin: 0;

    font-size: 14px;
    color: #777a76;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .tour-packages-section {
        padding: 75px 0;
    }

    .tour-package-tabs {
        width: 100%;
    }

    .tour-package-tabs .nav-link {
        min-width: 0;
        width: 100%; 
        padding: 12px 14px;
    }

    .tab-text small {
        display: none;
    }

    .tab-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

}


@media (max-width: 767px) {

    .tour-packages-heading {
        margin-bottom: 35px;
    }

    .tour-packages-heading h2 {
        font-size: 34px;
    }

    .tour-package-tabs-wrap {
        overflow-x: auto;
        justify-content: flex-start;

        padding: 0 5px 8px;

        margin-bottom: 35px;

        scrollbar-width: none;
    }

    .tour-package-tabs-wrap::-webkit-scrollbar {
        display: none;
    }

    .tour-package-tabs {
        width: 100%;
        display: block;
    }

    .tour-package-tabs .nav-link {
        min-width: 145px;
    }

    .tour-card-image {
        height: 245px;
    }

    .tour-card-content {
        padding: 22px;
    }

}


@media (max-width: 575px) {

    .tour-packages-section {
        padding: 60px 0;
    }

    .tour-packages-heading h2 {
        font-size: 30px;
    }

    .tour-packages-heading p {
        font-size: 14px;
    }

    .tour-package-tabs .nav-link {
        min-width: 135px;
        padding: 10px 12px;
    }

    .tab-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;

        font-size: 15px;
    }

    .tab-text strong {
        font-size: 12px;
    }

    .tour-card-image {
        height: 230px;
    }

    .tour-card-title {
        min-height: auto;
    }

    .tour-card-description {
        min-height: auto;
    }

}