@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap");
::-webkit-scrollbar-track {
  border: 0px;
  padding: 2px 0;
  background-color: #ffffff;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #dbb266;
  border: 0;
}

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

.text-primary {
  color: #dbb266 !important;
}

a {
  text-decoration: none !important;
  color: #dbb266;
}

.text-theme {
  color: #27264f !important;
}

.text-gray {
  color: #1c1c1c !important;
}

.bg-light {
  background: #f7f7f7 !important;
}

.bg-secondary {
  background: #27264f !important;
}

.btn {
  border-radius: 18px;
  padding: 14px 22px;
  font-size: 16px;
  border: 0;
}

.btn-primary {
  background: #dbb266;
  border-color: #dbb266;
}
.btn-primary:hover {
  background: #27264f;
  border-color: #27264f;
}

.btn-outline-primary {
  border: 1px solid #dbb266;
  color: #dbb266;
  padding: 10px 25px;
}
.btn-outline-primary:hover {
  background: #dbb266;
  color: #ffffff;
  border-color: #dbb266;
}

body {
  font-family: "Lexend", sans-serif;
  font-size: 15px;
  background: #ffffff;
  color: #1c1c1c;
}

header {
  z-index: 9;
  background: #27264f;
  transition: 0.3s ease all;
}
header .navbar {
  padding: 1rem 0;
}
header .navbar .nav-link {
  color: #ffffff;
  transition: 0.3s;
}
header .navbar .nav-link:hover {
  color: #dbb266;
}
header .navbar .navbar-toggler {
  color: #ffffff;
}
header .navbar .navbar-toggler:focus {
  box-shadow: none;
}
header.fix-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transform: translateY(-100%);
  animation: slideDown 0.4s ease forwards;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  header .navbar-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    background: #f7f7f7;
    height: 100vh;
    padding: 15px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  }
}
.hero-section {
  position: relative;
  height: 90vh;
  background-image: url(../images/navigate-my-realty-banner.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.hero-section::after {
  content: "";
  position: absolute;
  top: 0%;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
}
.hero-section .container {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  z-index: 1;
}
.hero-section .container h1 {
  color: #ffffff;
  font-size: 50px;
  font-weight: 600;
  text-align: center;
}
.hero-section .container p {
  color: #ffffff;
  font-size: 18px;
  text-align: center;
}

.search-box {
  border-radius: 20px;
  background: #ffffff;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

.nav-tabs .nav-link {
  padding: 10px 15px;
  border-radius: 30px;
  color: #ffffff;
  border: none;
  transition: all 0.3s ease;
  font-size: 15px;
  background: rgba(0, 0, 0, 0.4196078431);
  margin: 0 8px;
}
.nav-tabs .nav-link i {
  font-size: 16px;
}
.nav-tabs .nav-link:hover {
  color: #ffffff;
}
.nav-tabs .nav-link.active {
  color: #ffffff;
  background: #dbb266;
}

.banner-filter-wrapper {
  position: relative;
  margin-top: -160px;
}

.banner-filter {
  border-radius: 20px;
  background: #ffffff;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.banner-filter .amenities p {
  font-weight: 600;
  font-size: 18px;
  color: #27264f;
  text-align: left;
}
.banner-filter .amenities ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 0;
  -moz-column-count: 5;
       column-count: 5;
}
.banner-filter .amenities ul li {
  margin-bottom: 10px;
}
.banner-filter .dropdown button {
  height: auto !important;
  border-radius: 15px !important;
  border: 1px solid #eee !important;
  padding: 15px !important;
  color: #1c1c1c !important;
  background-color: #fff !important;
  display: flex !important;
  align-items: center !important;
  font-size: 15px !important;
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}
.banner-filter .dropdown .dropdown-menu {
  border-radius: 6px !important;
  border: 1px solid #ced4da !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08) !important;
}
.banner-filter .dropdown .dropdown-menu li {
  font-size: 14px;
}

.search-form {
  display: grid;
  gap: 1rem;
}
.search-form label {
  font-weight: 600;
}
.search-form input,
.search-form select {
  border-radius: 0px;
  padding: 0.75rem;
  border: 0;
  padding: 0;
}
.search-form input:focus,
.search-form select:focus {
  outline: none;
  border: none;
  box-shadow: none;
}
.search-form input::-moz-placeholder, .search-form select::-moz-placeholder {
  opacity: 0.5;
}
.search-form input::placeholder,
.search-form select::placeholder {
  opacity: 0.5;
}
.search-form .select2-container--default .select2-selection--single {
  padding: 0 !important;
  border: 0 !important;
}
.search-form .btn-primary {
  min-width: 130px;
}
.search-form .btn-light {
  background: rgba(219, 178, 102, 0.12);
  color: #dbb266;
  font-size: 25px;
  padding: 7px 16px;
}
.search-form .btn-light:hover {
  background: #dbb266;
  color: #ffffff;
}
.search-form .btn-light .bi-x-lg {
  display: none;
}
.search-form .btn-light.active .bi-x-lg {
  display: block;
}
.search-form .btn-light.active .bi-sliders2 {
  display: none;
}

.category-section {
  padding: 4rem 0;
}
.category-section .category-card {
  position: relative;
  display: block;
  height: 100%;
  border-radius: 15px;
  border: 1px solid #cacaca;
  overflow: hidden;
  text-align: center;
  padding: 30px;
  display: grid;
  place-items: center;
}
.category-section .category-card img {
  opacity: 0.5;
  width: 70px;
  margin-bottom: 20px;
}
.category-section .category-card span {
  color: #1c1c1c;
  font-size: 20px;
  font-weight: 600;
  display: block;
}
.category-section .category-card p {
  color: #1c1c1c;
  opacity: 0.8;
  margin-bottom: 0;
}
.category-section .category-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background: #dbb266;
  transition: 0.3s ease all;
  z-index: -1;
}
.category-section .category-card:hover {
  border-color: #dbb266;
}
.category-section .category-card:hover::before {
  height: 100%;
}
.category-section .category-card:hover img {
  opacity: 1;
  filter: invert(1);
}
.category-section .category-card:hover span {
  color: #ffffff;
}
.category-section .category-card:hover p {
  color: #ffffff;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 30px;
  padding: 8px 14px;
  background: #dbb266;
  overflow: hidden;
  z-index: 1;
  font-size: 14px;
  font-weight: 500;
}
.badge span {
  position: relative;
}

.hotel-section {
  padding: 4rem 0;
}

.hotel-card {
  background: #fff;
  border-radius: 15px;
  transition: 0.3s;
  position: relative;
  box-shadow: 0 3px 10px rgba(146, 146, 146, 0.15);
}
.hotel-card .img-box {
  overflow: hidden;
  border-radius: 15px 15px 0 0;
  position: relative;
}
.hotel-card .img-box::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  opacity: 0.5;
  transition: 0.5s ease all;
}
.hotel-card .img-box img {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease all;
}
.hotel-card .hotel-body {
  border: 1px solid #ececec;
  border-top: unset;
  padding: 1rem;
  border-radius: 0 0 15px 15px;
}
.hotel-card .hotel-body .hotel-title {
  font-weight: 600;
  font-size: 22px;
  margin-top: 0;
  color: #27264f;
}
.hotel-card .hotel-body .location {
  color: #6c757d;
  font-size: 16px;
}
.hotel-card .hotel-body .price {
  font-weight: 600;
  font-size: 22px;
  color: #dbb266;
}
.hotel-card .hotel-body .price sup {
  color: #27264f;
  opacity: 0.7;
}
.hotel-card .hotel-body .amenities {
  color: #6c757d;
}
.hotel-card .hotel-body .amenities span {
  display: inline-block;
}
.hotel-card .hotel-body .amenities span .num {
  color: #27264f;
}
.hotel-card .hotel-body .rating-area {
  padding: 15px 0 0;
  margin-top: 15px;
  border-top: 1px solid #ddd;
  position: relative;
}
.hotel-card .hotel-body .rating-area::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0%;
  height: 1px;
  background: #27264f;
  transition: 0.3s ease all;
}
.hotel-card .hotel-body .details-link {
  color: #2b74fe;
  font-size: 14px;
  font-weight: 500;
}
.hotel-card .hotel-body .details-link:hover {
  color: #27264f;
}
.hotel-card .hotel-body .badge-wrapper {
  position: relative;
  display: inline-block;
  z-index: 10;
  /* Dropdown */
}
.hotel-card .hotel-body .badge-wrapper .badge-dropdown {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  min-width: 180px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
}
.hotel-card .hotel-body .badge-wrapper .badge-dropdown ul {
  list-style: none;
  padding: 10px;
  margin: 0;
}
.hotel-card .hotel-body .badge-wrapper .badge-dropdown ul li {
  font-size: 13px;
  color: #333;
  padding: 6px 8px;
  border-radius: 6px;
  transition: background 0.2s;
}
.hotel-card .hotel-body .badge-wrapper .badge-dropdown ul li:hover {
  background: #f5f5f5;
}
.hotel-card .hotel-body .badge-wrapper:hover .badge-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hotel-card .hotel-body .btn-outline-primary {
  padding: 10px 25px;
}
.hotel-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.hotel-card:hover .img-box::after {
  height: 100%;
}
.hotel-card:hover .img-box img {
  scale: 1.1;
}
.hotel-card:hover .hotel-body {
  border-color: #ffffff;
}

.section-title {
  font-size: 42px;
  font-weight: 600;
}
.section-title span {
  color: #dbb266;
}

.section-subtitle {
  font-size: 16px;
  font-weight: 500;
}

.tourist-card {
  position: relative;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
.tourist-card.tourist-card2 {
  height: 450px;
}
.tourist-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s ease;
}
.tourist-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
}
.tourist-card:hover img {
  transform: scale(1.08);
}
.tourist-card .tourist-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  color: #fff;
}
.tourist-card .tourist-overlay h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2px;
}
.tourist-card .tourist-overlay p {
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.9;
}
.tourist-card .tourist-overlay .btn {
  font-size: 13px;
  font-weight: 600;
}

.testimonials-section {
  background-image: url(../images/pattern.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.brands-section {
  background: #27264f;
}

.testimonial-card {
  border: 1px solid #eeeeee;
  border-radius: 20px;
  padding: 25px;
  height: 100%;
  transition: 0.3s;
}
.testimonial-card .testimonial-content {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}
.testimonial-card .testimonial-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial-card .testimonial-user h6 {
  font-weight: 600;
}
.testimonial-card .testimonial-user small {
  color: #777;
}
.testimonial-card .testimonial-rating {
  margin-top: 10px;
  color: #fbbf24;
}

.video-review video {
  height: 550px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}

.owl-nav {
  position: absolute;
  right: 0;
  top: -80px;
}
.owl-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  place-items: center;
  background: #dbb266 !important;
  color: #fff !important;
  margin-left: 10px;
}
.owl-nav button:hover {
  background: #27264f !important;
}

.owl-dots {
  margin-top: 0px;
}
.owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #d1d5db;
}
.owl-dots .owl-dot.active span {
  background: #2b74fe;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none !important;
}

.counter-section {
  background: linear-gradient(135deg, #2b74fe, #0b5ed7);
  color: #fff;
  position: relative;
}
.counter-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/top_banner-2.png);
  background-repeat: no-repeat;
  background-size: 40%;
  background-position: bottom right;
  opacity: 0.3;
}

.counter-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 30px 20px;
  transition: 0.3s ease;
  position: relative;
  text-align: left;
}
.counter-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.18);
}
.counter-card i {
  font-size: 50px;
  margin-bottom: 10px;
  display: block;
  color: #dbb266;
}
.counter-card .counter-number {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 5px;
}
.counter-card p {
  font-size: 20px;
  margin-bottom: 0;
  font-weight: 500;
  opacity: 0.5;
}

.cta-section {
  border-radius: 0;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: #27264f;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50%;
  width: 100%;
  background: #ffffff;
}
.cta-section .container {
  position: relative;
  z-index: 2;
  background-color: #fef7f1;
  background-image: url(../images/ssdw.webp);
  background-repeat: no-repeat;
  background-position: right bottom;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 30px;
  padding: 110px 60px;
}
.cta-section .container h2 {
  line-height: 1.3;
}
.cta-section .container p {
  font-size: 18px;
  opacity: 0.6;
}
.cta-section .container .btn {
  border-radius: 50px;
  padding: 14px 34px;
}
.cta-section .container .agent {
  position: absolute;
  right: 70px;
  width: auto;
  bottom: 0;
}

.main-footer {
  padding: 70px 0;
  background: #27264f;
  color: #a3a3a3;
}
.main-footer .container h6 {
  font-weight: 600;
  margin-bottom: 25px;
  font-size: 18px;
  color: #ffffff;
}
.main-footer .container ul {
  list-style: none;
  padding: 0;
}
.main-footer .container ul li {
  margin-bottom: 15px;
}
.main-footer .container ul li a {
  color: #a3a3a3;
  text-decoration: none;
}
.main-footer .container ul li a:hover {
  text-decoration: underline;
}
.main-footer .container .seo-links {
  line-height: 1.8;
}
.main-footer .container .seo-links a {
  color: #555;
  text-decoration: none;
}
.main-footer .container .seo-links a:hover {
  text-decoration: underline;
}
.main-footer .container .icon-box {
  display: flex;
  align-items: center;
}
.main-footer .container .icon-box i {
  color: #dbb266;
  font-size: 45px;
  width: 60px;
}
.main-footer .container .icon-box div {
  width: calc(100% - 60px);
  padding-left: 16px;
  border-left: 1px solid #3d3d3d;
}
.main-footer .container .icon-box div p {
  color: #a3a3a3;
}
.main-footer .container .icon-box div span {
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
}
.main-footer .container .footer-bottom {
  font-size: 13px;
  border-top: 1px solid #5f5f5f;
}
.main-footer .container .footer-bottom a {
  color: #555;
  text-decoration: none;
}
.main-footer .container .social-icons a {
  margin-right: 12px;
  color: #a3a3a3;
  font-size: 16px;
}
.main-footer .container .social-icons a:hover {
  color: #dbb266;
}

.fixed-icon {
  position: fixed;
  z-index: 9;
  right: 30px;
  bottom: 30px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background-color: rgb(53, 168, 53);
}
.fixed-icon a {
  color: #fff;
  font-size: 30px;
}

@media (max-width: 1099px) {
  .main-footer .container {
    padding: 50px 15px;
  }
}
.section-padding {
  padding: 100px 0;
}

.page-headers {
  padding: 50px 0 0;
}
.page-headers .container {
  position: relative;
  z-index: 9;
}
.page-headers .container h1 {
  font-size: 40px;
  font-weight: bold;
  color: #27264f;
}
.page-headers .container p {
  line-height: 1.5;
  color: #27264f;
}

.hotel-details .hotel-details-heading h1 {
  font-size: 30px;
  font-weight: bold;
}
.hotel-details .hotel-gallery img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.hotel-details .hotel-gallery .gallery-main {
  height: 345px;
  border-radius: 10px;
}
.hotel-details .hotel-gallery .gallery-thumb {
  height: 165px;
  border-radius: 10px;
}
.hotel-details .hotel-gallery .more-photos {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hotel-details .hotel-tabs .nav-link {
  font-weight: 600;
}
.hotel-details .price-card {
  top: 135px;
  z-index: 9;
}
.hotel-details .hotel-tabs-wrapper {
  top: 85px;
  z-index: 9999;
}
.hotel-details .hotel-tabs .nav-link {
  font-weight: 500;
  color: #555;
  padding: 8px 6px;
  margin: 0;
  background: none !important;
  border: 0 !important;
  font-size: 14px;
}
.hotel-details .hotel-tabs .nav-link.active {
  color: #dbb266;
}
.hotel-details .hotel-section {
  padding: 40px 0;
  border-bottom: 1px solid #eee;
}
.hotel-details .section-title {
  font-weight: 700;
  margin-bottom: 20px;
}
.hotel-details .details-badge {
  font-size: 15px;
  margin-right: 5px;
}
.hotel-details .hotel-content ul li {
  margin-bottom: 15px;
}
.hotel-details .video-box {
  height: 300px;
}
.hotel-details #virtualTour .nav-pills .nav-item {
  margin-bottom: 0;
  margin-right: 10px;
}
.hotel-details #virtualTour .nav-pills .nav-item .nav-link {
  color: #1c1c1c;
  border-color: #1c1c1c;
  font-weight: 500;
}
.hotel-details #virtualTour .nav-pills .nav-item .nav-link.active, .hotel-details #virtualTour .nav-pills .nav-item .nav-link:hover {
  border-color: #dbb266 !important;
  color: #fff;
  background: #dbb266;
}

.room-card {
  background: white;
  overflow: hidden;
}
.room-card .room-image-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.room-card .room-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.room-card .image-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.room-card .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}
.room-card .dot.active {
  background: white;
}
.room-card .room-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
}
.room-card .amenities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 13px;
  color: #4a4a4a;
}
.room-card .amenity-item {
  display: flex;
  align-items: center;
}
.room-card .amenity-item::before {
  content: "•";
  margin-right: 8px;
  color: #666;
}
.room-card .see-all-btn {
  color: #0066cc;
  font-size: 14px;
  font-weight: 500;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  margin-top: 12px;
}
.room-card .option-header {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.room-card .inclusion-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
  color: #333;
}
.room-card .inclusion-item::before {
  content: "•";
  margin-right: 8px;
  color: #333;
}
.room-card .non-refundable {
  display: flex;
  align-items: center;
  gap: 4px;
}
.room-card .info-icon {
  width: 14px;
  height: 14px;
  border: 1px solid #666;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #666;
}
.room-card .more-inclusions {
  color: #0066cc;
  font-size: 14px;
  font-weight: 500;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.room-card .price-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.room-card .price-main {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
}
.room-card .price-original {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
  margin-left: 8px;
}
.room-card .discount-badge {
  background: #dbb266;
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 8px;
}
.room-card .taxes-info {
  font-size: 13px;
  color: #666;
}
.room-card .reward-points {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #666;
}
.room-card .reward-icon {
  width: 16px;
  height: 16px;
  background: #ffc107;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
}
.room-card .coupon-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #dbb266;
}
.room-card .coupon-icon {
  width: 16px;
  height: 16px;
  background: #dbb266;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
}

.blogs-section {
  /* Search and Filter Section */
  /* Featured Post */
  /* Blog Grid */
}
.blogs-section .search-filter-section {
  background-color: white;
  padding: 30px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}
.blogs-section .search-box {
  position: relative;
}
.blogs-section .search-box input {
  width: 100%;
  padding: 14px 50px 14px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 50px;
  font-size: 15px;
  transition: all 0.3s;
}
.blogs-section .search-box input:focus {
  outline: none;
  border-color: #dbb266;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.blogs-section .search-box i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
}
.blogs-section .filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.blogs-section .filter-tag {
  padding: 10px 24px;
  border: 2px solid #e5e7eb;
  border-radius: 50px;
  background: white;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.blogs-section .filter-tag:hover,
.blogs-section .filter-tag.active {
  background: #dbb266;
  color: white;
  border-color: #dbb266;
}
.blogs-section .featured-post {
  background: linear-gradient(135deg, #667eea 0%, #2b74fe 100%);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.blogs-section .featured-content {
  padding: 60px;
  color: white;
}
.blogs-section .featured-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.blogs-section .featured-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.blogs-section .featured-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.95;
  line-height: 1.7;
}
.blogs-section .featured-meta {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 30px;
  font-size: 14px;
}
.blogs-section .featured-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blogs-section .btn-read-more {
  display: inline-block;
  padding: 14px 35px;
  background: white;
  color: #dbb266;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.blogs-section .btn-read-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.blogs-section .featured-image {
  position: relative;
  height: 100%;
  min-height: 400px;
}
.blogs-section .featured-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blogs-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}
.blogs-section .blog-card {
  background: white;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}
.blogs-section .blog-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: 16px;
}
.blogs-section .blog-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s;
}
.blogs-section .blog-card:hover .blog-card-image img {
  transform: scale(1.1);
}
.blogs-section .blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #dbb266;
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blogs-section .blog-card-content {
  padding: 25px 0;
}
.blogs-section .blog-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 13px;
  color: #6b7280;
}
.blogs-section .blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.blogs-section .blog-card-content h3 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: #27264f;
  line-height: 1.4;
}
.blogs-section .blog-card-content h3:hover {
  color: #dbb266;
}
.blogs-section .blog-card-content p {
  color: #dbb266;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.blogs-section .blog-card-content p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #dbb266;
  transition: 0.3s ease all;
}
.blogs-section .blog-card-content p:hover::after {
  width: 100%;
}
.blogs-section .blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}
.blogs-section .author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.blogs-section .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blogs-section .author-name {
  font-weight: 600;
  font-size: 14px;
  color: #1f2937;
}
.blogs-section .read-time {
  color: #6b7280;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Sidebar */
.sidebar-widget {
  background: white;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.sidebar-widget h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1f2937;
}
.sidebar-widget .popular-post {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  text-decoration: none;
  color: inherit;
}
.sidebar-widget .popular-post:last-child {
  margin-bottom: 0;
}
.sidebar-widget .popular-post .popular-post-image {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.sidebar-widget .popular-post .popular-post-content h5 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1f2937;
  line-height: 1.4;
}
.sidebar-widget .popular-post .popular-post-content .popular-post-date {
  font-size: 13px;
  color: #6b7280;
}
.sidebar-widget .tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sidebar-widget .tag {
  padding: 8px 18px;
  background: #f3f4f6;
  border-radius: 50px;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s;
  color: #374151;
}
.sidebar-widget .tag:hover {
  background: #dbb266;
  color: white;
}
.sidebar-widget .search-form {
  position: relative;
}
.sidebar-widget .search-form input {
  width: 100%;
  padding: 14px 20px 14px 50px;
  border: 1px solid #eee;
  border-radius: 15px;
  font-size: 15px;
}
.sidebar-widget .search-form .bi {
  position: absolute;
  left: 20px;
  top: 50%;
  translate: 0 -50%;
  font-size: 20px;
  color: #5f5f5f;
}
.sidebar-widget .widget-filter {
  padding: 0;
  margin-bottom: 0;
  list-style: none;
}
.sidebar-widget .widget-filter li {
  margin-bottom: 15px;
}
.sidebar-widget .widget-filter li:last-child {
  margin-bottom: 0;
}
.sidebar-widget select {
  border-radius: 15px;
  border: 1px solid #eee;
  padding: 15px;
  color: #767676;
  width: 100%;
}
.sidebar-widget select:focus {
  box-shadow: none;
  outline: none;
  border-color: #dbb266;
}

.price-filter {
  max-width: 320px;
}
.price-filter .price-text {
  font-size: 15px;
  color: #27264f;
}
.price-filter .range-slider {
  position: relative;
  height: 30px;
}
.price-filter .track {
  position: absolute;
  height: 4px;
  top: 0px;
  border-radius: 10px;
}
.price-filter .track-bg {
  width: 100%;
  background: #e5e7eb;
}
.price-filter .track-active {
  background: #dbb266;
}
.price-filter .range-slider input[type=range] {
  position: absolute;
  width: 100%;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
}
.price-filter .range-slider input[type=range]::-webkit-slider-thumb {
  pointer-events: auto;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background: #dbb266;
  margin-top: -7px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1019607843);
  border: 2px solid #fff;
}
.price-filter .range-slider input[type=range]::-webkit-slider-runnable-track {
  height: 4px;
  background: transparent;
}
.price-filter .range-slider input[type=range]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: #dbb266;
  margin-top: -7px;
  border-radius: 50%;
  cursor: pointer;
}
.price-filter .range-slider input[type=range]::-moz-range-track {
  height: 4px;
  background: transparent;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 15px;
  color: #767676;
  margin-bottom: 0px;
  position: relative;
}
.filter-checkbox .count {
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  font-weight: 600;
  opacity: 0.5;
}

/* Hide default checkbox */
.filter-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Custom box */
.checkmark {
  width: 18px;
  height: 18px;
  border: 1px solid #767676;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.checkmark::after {
  content: "";
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s ease;
  position: relative;
  bottom: 2px;
}

/* Checked state */
.filter-checkbox input:checked ~ .checkmark {
  background: #27264f;
  border-color: #27264f;
}

.filter-checkbox input:checked ~ .checkmark::after {
  transform: rotate(45deg) scale(1);
}

/* Hover effect */
.filter-checkbox:hover .checkmark {
  border-color: #27264f;
}

/* Newsletter */
.blog-detailssection {
  /* Navigation */
  /* Breadcrumb */
  /* Article Header */
  /* Featured Image */
  /* Article Content */
  /* Tags */
  /* Share Buttons */
  /* Author Bio */
  /* Comments Section */
  /* Related Posts */
  /* Sidebar */
  /* Responsive */
}
.blog-detailssection .navbar-custom {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
}
.blog-detailssection .navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: #dbb266;
}
.blog-detailssection .nav-link {
  color: #374151;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s;
}
.blog-detailssection .nav-link:hover {
  color: #dbb266;
}
.blog-detailssection .breadcrumb-section {
  background: white;
  padding: 20px 0;
  margin-bottom: 40px;
  border-bottom: 1px solid #e5e7eb;
}
.blog-detailssection .breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}
.blog-detailssection .breadcrumb-custom a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.3s;
}
.blog-detailssection .breadcrumb-custom a:hover {
  color: #dbb266;
}
.blog-detailssection .breadcrumb-custom .active {
  color: #374151;
}
.blog-detailssection .article-header {
  background: white;
  border-radius: 16px;
  padding: 50px;
  margin-bottom: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.blog-detailssection .article-category {
  display: inline-block;
  background: #dbb266;
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.blog-detailssection .article-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 25px;
  line-height: 1.3;
}
.blog-detailssection .article-excerpt {
  font-size: 1.2rem;
  color: #6b7280;
  margin-bottom: 30px;
  line-height: 1.6;
}
.blog-detailssection .article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid #e5e7eb;
}
.blog-detailssection .author-box {
  display: flex;
  align-items: center;
  gap: 15px;
}
.blog-detailssection .author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-detailssection .author-details h6 {
  margin: 0;
  font-weight: 600;
  color: #1f2937;
}
.blog-detailssection .author-details span {
  font-size: 13px;
  color: #6b7280;
}
.blog-detailssection .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 14px;
}
.blog-detailssection .meta-item i {
  color: #dbb266;
}
.blog-detailssection .featured-image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.blog-detailssection .featured-image img {
  width: 100%;
  height: auto;
  display: block;
}
.blog-detailssection .article-content {
  background: white;
  border-radius: 16px;
  padding: 50px;
  margin-bottom: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.blog-detailssection .article-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-top: 40px;
  margin-bottom: 20px;
}
.blog-detailssection .article-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-top: 30px;
  margin-bottom: 15px;
}
.blog-detailssection .article-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #374151;
}
.blog-detailssection .article-content ul,
.blog-detailssection .article-content ol {
  margin-bottom: 20px;
  padding-left: 25px;
}
.blog-detailssection .article-content li {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #374151;
}
.blog-detailssection .article-content blockquote {
  border-left: 4px solid #dbb266;
  padding: 20px 30px;
  margin: 30px 0;
  background: #f3f4f6;
  border-radius: 8px;
  font-style: italic;
  color: #374151;
}
.blog-detailssection .article-content img {
  max-width: 100%;
  border-radius: 12px;
  margin: 30px 0;
}
.blog-detailssection .highlight-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 30px;
  border-radius: 12px;
  margin: 30px 0;
}
.blog-detailssection .highlight-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
}
.blog-detailssection .article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e5e7eb;
}
.blog-detailssection .tag {
  padding: 8px 18px;
  background: #f3f4f6;
  border-radius: 50px;
  font-size: 13px;
  color: #374151;
  text-decoration: none;
  transition: all 0.3s;
}
.blog-detailssection .tag:hover {
  background: #dbb266;
  color: white;
}
.blog-detailssection .share-section {
  background: white;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.blog-detailssection .share-section h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1f2937;
}
.blog-detailssection .share-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.blog-detailssection .share-btn {
  padding: 12px 24px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-detailssection .share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: white;
}
.blog-detailssection .share-btn.facebook {
  background: #1877f2;
}
.blog-detailssection .share-btn.twitter {
  background: #1da1f2;
}
.blog-detailssection .share-btn.linkedin {
  background: #0077b5;
}
.blog-detailssection .share-btn.pinterest {
  background: #e60023;
}
.blog-detailssection .share-btn.email {
  background: #ea4335;
}
.blog-detailssection .author-bio {
  background: white;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.blog-detailssection .author-bio-header {
  display: flex;
  gap: 25px;
  margin-bottom: 20px;
}
.blog-detailssection .author-bio-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.blog-detailssection .author-bio-details h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1f2937;
}
.blog-detailssection .author-bio-details p {
  color: #6b7280;
  margin-bottom: 15px;
}
.blog-detailssection .author-social {
  display: flex;
  gap: 10px;
}
.blog-detailssection .author-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  transition: all 0.3s;
}
.blog-detailssection .author-social a:hover {
  background: #dbb266;
  color: white;
}
.blog-detailssection .comments-section {
  background: white;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.blog-detailssection .comments-section h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1f2937;
}
.blog-detailssection .comment {
  padding: 25px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 20px;
}
.blog-detailssection .comment-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.blog-detailssection .comment-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-detailssection .comment-author {
  font-weight: 600;
  color: #1f2937;
}
.blog-detailssection .comment-date {
  font-size: 13px;
  color: #6b7280;
}
.blog-detailssection .comment-text {
  color: #374151;
  line-height: 1.7;
  margin-bottom: 15px;
}
.blog-detailssection .comment-reply {
  color: #dbb266;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.blog-detailssection .comment-form {
  margin-top: 40px;
}
.blog-detailssection .comment-form h5 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1f2937;
}
.blog-detailssection .comment-form input,
.blog-detailssection .comment-form textarea {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 15px;
  transition: all 0.3s;
}
.blog-detailssection .comment-form input:focus,
.blog-detailssection .comment-form textarea:focus {
  outline: none;
  border-color: #dbb266;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.blog-detailssection .comment-form textarea {
  min-height: 150px;
  resize: vertical;
}
.blog-detailssection .btn-submit {
  background: #dbb266;
  color: white;
  padding: 14px 40px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.blog-detailssection .btn-submit:hover {
  background: #27264f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.blog-detailssection .related-posts {
  margin-bottom: 60px;
}
.blog-detailssection .related-posts h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1f2937;
}
.blog-detailssection .related-post-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.blog-detailssection .related-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.blog-detailssection .related-post-image {
  height: 200px;
  overflow: hidden;
}
.blog-detailssection .related-post-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s;
}
.blog-detailssection .related-post-card:hover .related-post-image img {
  transform: scale(1.1);
}
.blog-detailssection .related-post-content {
  padding: 25px;
}
.blog-detailssection .related-post-content h5 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1f2937;
  line-height: 1.4;
}
.blog-detailssection .related-post-meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: #6b7280;
}
.blog-detailssection .sidebar-widget {
  background: white;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.blog-detailssection .sidebar-widget h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1f2937;
}
.blog-detailssection .toc-list {
  list-style: none;
  padding: 0;
}
.blog-detailssection .toc-list li {
  margin-bottom: 12px;
}
.blog-detailssection .toc-list a {
  color: #374151;
  text-decoration: none;
  transition: color 0.3s;
  display: block;
  padding: 8px 0;
}
.blog-detailssection .toc-list a:hover {
  color: #dbb266;
  padding-left: 10px;
}
.blog-detailssection .popular-post {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  text-decoration: none;
  color: inherit;
}
.blog-detailssection .popular-post:last-child {
  margin-bottom: 0;
}
.blog-detailssection .popular-post-image {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.blog-detailssection .popular-post-content h5 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1f2937;
  line-height: 1.4;
}
.blog-detailssection .popular-post-date {
  font-size: 13px;
  color: #6b7280;
}
@media (max-width: 768px) {
  .blog-detailssection .article-header,
  .blog-detailssection .article-content {
    padding: 30px 20px;
  }
  .blog-detailssection .article-title {
    font-size: 2rem;
  }
  .blog-detailssection .article-meta {
    flex-direction: column;
    gap: 15px;
  }
  .blog-detailssection .author-bio-header {
    flex-direction: column;
    text-align: center;
  }
  .blog-detailssection .share-buttons {
    justify-content: center;
  }
}

/* Pagination */
.pagination-section {
  display: flex;
  margin: 60px 0;
}
.pagination-section .pagination-custom {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
}
.pagination-section .pagination-custom a {
  padding: 12px 18px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  color: #1c1c1c;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}
.pagination-section .pagination-custom a.active, .pagination-section .pagination-custom a:hover {
  background: #dbb266;
  color: white;
  border-color: #dbb266;
}

.category-filter button {
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid #525252;
  color: #1c1c1c;
  margin-right: 10px;
  min-width: 120px;
  background: #fff;
}
.category-filter button:hover {
  background: #dbb266;
  color: #fff;
  border-color: #dbb266;
}

.bg-light-badge {
  background: rgba(43, 117, 254, 0.1215686275);
  color: #2b75fe;
  font-size: 14px;
  border-radius: 6px;
}

.bg-dark-light-badge {
  background: rgba(28, 28, 28, 0.2392156863);
  color: #27264f;
  font-size: 14px;
  border-radius: 6px;
}

.cursor-pointer {
  cursor: pointer;
}

.theme-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.has-triocolor {
  position: relative;
  background: linear-gradient(135deg, #ff9933, #ffffff, #138808);
}

.amenities-badge {
  background: linear-gradient(135deg, #dbb266, #ff9933);
  color: #fff;
  padding: 7px 15px;
  display: inline-block;
  border-radius: 5px;
}

.brands-card {
  border: 1px solid rgba(238, 238, 238, 0.1490196078);
  padding: 20px;
  min-height: 110px;
  border-radius: 20px;
  display: inline-grid;
  place-items: center;
}

.city-box {
  border-radius: 8px;
  font-size: 16px;
  color: #27264f;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  margin: 0 13.5px 10px 0;
  font-weight: bold;
  text-align: center;
}
.city-box:hover {
  color: #27264f;
}
.city-box:hover img {
  scale: 1.1;
}
.city-box .img {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}
.city-box .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease all;
}

.hotels-section .owl-nav {
  position: inherit;
  top: 0;
  margin-top: 20px;
}
.hotels-section .overview-box {
  border: 1px solid #cacaca;
  padding: 15px;
  border-radius: 8px;
}
.hotels-section .overview-box span {
  color: #a3a3a3;
  font-weight: normal;
  display: block;
  margin-bottom: 8px;
}
.hotels-section .overview-box p {
  color: #1c1c1c;
}
.hotels-section .floor-plan-box div {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #cacaca;
}
.hotels-section .floor-plan-box div span {
  color: #a3a3a3;
}
.hotels-section .floor-plan-box div p {
  font-size: 20px;
  font-weight: 500;
  color: #1c1c1c;
}
.hotels-section .amenities-box {
  margin-bottom: 5px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(202, 202, 202, 0.6039215686);
  display: flex;
  align-items: center;
}
.hotels-section .amenities-box .icon-box {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(202, 202, 202, 0.33);
  display: inline-grid;
  place-items: center;
}
.hotels-section .amenities-box .icon-box i {
  color: #dbb266;
  font-size: 22px;
}
.hotels-section .amenities-box span {
  color: #1c1c1c;
  display: inline-block;
  margin-left: 10px;
}
.hotels-section .table th {
  background: #27264f;
  padding: 12px 8px;
}
.hotels-section .hotel-card img {
  height: 180px;
}
.hotels-section .hotel-card .hotel-body .hotel-title {
  font-size: 18px;
}
.hotels-section .hotel-card .hotel-body .location {
  font-size: 12px;
}
.hotels-section .hotel-card .hotel-body .amenities {
  font-size: 12px;
}
.hotels-section .hotel-card .hotel-body .price {
  font-size: 18px;
}
.hotels-section .hotel-card .hotel-body .btn {
  padding: 6px 16px;
  border-radius: 10px;
}

.write-reviews .left-bar {
  position: sticky;
  top: 90px;
}
.write-reviews h1 {
  font-weight: bold;
  font-size: 50px;
  color: #27264f;
}
.write-reviews .rating-wrapper h5 {
  margin-bottom: 20px;
  font-weight: bold;
}
.write-reviews .rating-wrapper .rating {
  display: flex;
  gap: 5px;
}
.write-reviews .rating-wrapper .rating .circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #27264f;
  cursor: pointer;
  transition: all 0.25s ease;
}
.write-reviews .rating-wrapper .rating .circle.active, .write-reviews .rating-wrapper .rating .circle.hover {
  background-color: #27264f;
}
.write-reviews .rating-wrapper .rating-text {
  font-size: 16px;
  font-weight: 500;
  color: #27264f;
}

.register-wrapper {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  background-image: url(../images/login-bg.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.register-wrapper .the_img {
  position: absolute;
  top: 55px;
  width: 200px;
}
.register-wrapper .the_img.left {
  left: 60px;
}
.register-wrapper .left-content h1 {
  font-weight: bold;
  font-size: 50px;
  line-height: 1.2;
}
.register-wrapper .left-content h1 span {
  color: #dbb266;
}
.register-wrapper .left-content img {
  filter: grayscale(1);
}
.register-wrapper .registration-form .form-control {
  border: 0;
  border-radius: 0;
}
.register-wrapper .registration-form label {
  font-weight: 600;
  opacity: 0.5;
}
.register-wrapper .registration-form .filter-checkbox {
  font-weight: normal;
  opacity: 1;
}
.register-wrapper .registration-form .other-links a {
  margin: 0 20px;
  font-weight: 600;
  color: #27264f;
}
.register-wrapper .registration-form .other-links a:hover {
  color: #dbb266;
  text-decoration: underline !important;
}

.user-panel-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 200px;
  width: 100%;
  background: linear-gradient(90deg, #12d8fa, #dbb266);
  z-index: -1;
}

.user-card {
  max-width: 320px;
  margin: 0 auto;
  background: linear-gradient(180deg, #1c56a0, #1a4a8c);
  border-radius: 12px;
  overflow: hidden;
  color: #fff;
  position: sticky;
  top: 100px;
  /* Profile Section */
  /* Stats Section */
  /* Logout Button */
}
.user-card .profile-section {
  padding: 40px 20px 30px;
  /* Add Hotel Button */
}
.user-card .profile-section .profile-img {
  width: 150px;
  height: 150px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
.user-card .profile-section .welcome-text {
  font-size: 13px;
  margin-top: 12px;
}
.user-card .profile-section .user-name {
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 10px;
}
.user-card .profile-section .user-name::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0px;
  translate: -50% 0;
  background: #fff;
  opacity: 0.2;
  border-radius: 2px;
  height: 2px;
  width: 40px;
}
.user-card .profile-section .add-hotel-btn {
  border: 2px solid #dbb266;
  color: #fff;
  border-radius: 30px;
  padding: 6px 20px;
  font-size: 14px;
  background: transparent;
}
.user-card .profile-section .add-hotel-btn:hover {
  background: #dbb266;
  color: #fff;
}
.user-card .stats-section {
  background: #1a4a8c;
  border-top: 1px solid rgba(0, 0, 0, 0.2666666667);
}
.user-card .stat-box {
  flex: 1;
  text-align: center;
  padding: 12px 5px;
  border-right: 1px solid rgba(0, 0, 0, 0.2666666667);
}
.user-card .stat-box:last-child {
  border-right: none;
}
.user-card .stat-box h6 {
  font-size: 12px;
  margin-bottom: 4px;
  opacity: 0.8;
}
.user-card .stat-box span {
  font-size: 16px;
  font-weight: 600;
}
.user-card .logout-btn {
  display: block;
  text-align: center;
  background: #dbb266;
  color: #fff;
  padding: 12px;
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
}
.user-card .logout-btn:hover {
  background: #27264f;
  color: #fff;
}

.dashboard-menu {
  display: flex;
  padding: 0;
  overflow-x: auto;
  margin: 45px 0 35px;
}
.dashboard-menu .menu-item {
  position: relative;
  padding: 10px 22px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background 0.3s ease;
  border-radius: 8px 8px 0 0;
  /* Hover */
}
.dashboard-menu .menu-item i {
  font-size: 16px;
}
.dashboard-menu .menu-item.active {
  background: #f7f7f7;
  color: #27264f;
  font-weight: 500;
}
.dashboard-menu .menu-item.active i {
  color: #27264f;
}
.dashboard-menu .menu-item:hover {
  background: #f7f7f7;
  color: #27264f;
}
.dashboard-menu .menu-item .bdge {
  background: #ffb703;
  color: #fff;
  font-size: 11px;
  border-radius: 50%;
  font-weight: 600;
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
}

/* Responsive */
@media (max-width: 576px) {
  .menu-item {
    padding: 12px 16px;
    font-size: 13px;
  }
}
.profile-card {
  max-width: 100%;
}
.profile-card .profile-header h5 {
  font-weight: 600;
  color: #1e2b48;
}
.profile-card .profile-header i {
  color: #3fa9f5;
  font-size: 18px;
  cursor: pointer;
}
.profile-card .form-label {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 6px;
}
.profile-card .input-icon {
  position: relative;
}
.profile-card .input-icon i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #dbb266;
  font-size: 16px;
}
.profile-card .input-icon .form-control {
  padding-left: 42px;
  background: #ffffff;
  border: 1px solid #eef1f5;
  height: 44px;
  font-size: 14px;
}
.profile-card .input-icon .form-control:focus {
  box-shadow: none;
  border-color: #d0e7ff;
}

.pricing .pricing-card {
  background: transparent;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.6s ease all;
  /* Header */
  /* Body */
  /* Recommended badge */
}
.pricing .pricing-card.featured {
  scale: 1.1;
  z-index: 9;
  position: relative;
  background: #ffffff;
}
.pricing .pricing-card:hover {
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 99;
  background: #ffffff;
}
.pricing .pricing-card:hover .pricing-header i.reflect {
  transform: translateY(-10px);
}
.pricing .pricing-card .pricing-header {
  padding: 40px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pricing .pricing-card .pricing-header::before {
  content: "";
  position: absolute;
  left: -130px;
  top: -50px;
  width: 200px;
  height: 200px;
  background: #fff;
  opacity: 0.2;
  border-radius: 50%;
}
.pricing .pricing-card .pricing-header::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -130px;
  width: 160px;
  height: 160px;
  background: #fff;
  opacity: 0.2;
  border-radius: 50%;
}
.pricing .pricing-card .pricing-header.blue {
  background: linear-gradient(135deg, #dbb266, #45c2ff);
}
.pricing .pricing-card .pricing-header.green {
  background: linear-gradient(135deg, #52d6b0, #6ee0c2);
}
.pricing .pricing-card .pricing-header i.reflect {
  font-size: 70px;
  margin-bottom: 10px;
  display: inline-block;
  -webkit-box-reflect: below 8px linear-gradient(transparent, rgba(255, 255, 255, 0.25));
  line-height: 0.5;
  margin-bottom: 30px;
  transition: 0.8s ease all;
}
.pricing .pricing-card .pricing-header h6 {
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px dotted #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 6px;
}
.pricing .pricing-card .pricing-body {
  padding: 30px 0px 40px;
  position: relative;
}
.pricing .pricing-card .pricing-body::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  translate: -50% 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.pricing .pricing-card .pricing-body h2 {
  font-size: 48px;
  font-weight: 700;
  color: #555;
}
.pricing .pricing-card .pricing-body sup {
  font-size: 20px;
  top: -25px;
  font-weight: normal;
  left: -5px;
}
.pricing .pricing-card .pricing-body ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}
.pricing .pricing-card .pricing-body ul li {
  padding: 10px 0;
  border-top: 1px solid #eee;
  font-size: 14px;
  color: #666;
}
.pricing .pricing-card .pricing-body ul li:nth-child(odd) {
  background: rgba(229, 229, 229, 0.631372549);
}
.pricing .pricing-card .pricing-body ul li:last-child {
  border-bottom: 1px solid #eee;
}
.pricing .pricing-card .recommended {
  margin-top: 25px;
}
.pricing .pricing-card .recommended span {
  width: 45px;
  height: 45px;
  background: #dbb266;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 30px;
}
.pricing .pricing-card .recommended p {
  font-size: 13px;
  color: #777;
}

.notifications .notification-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.notifications .notification-card .notification-header {
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.notifications .notification-card .notification-header h5 {
  margin: 0;
  font-weight: 600;
  color: #1e2b48;
}
.notifications .notification-card .notification-item {
  display: flex;
  gap: 15px;
  padding: 18px 20px;
  border-bottom: 1px solid #f1f1f1;
  transition: background 0.3s ease;
  /* Unread */
  /* Icon */
}
.notifications .notification-card .notification-item:last-child {
  border-bottom: none;
}
.notifications .notification-card .notification-item:hover {
  background: #f8fafc;
}
.notifications .notification-card .notification-item.unread {
  background: #f1f7ff;
}
.notifications .notification-card .notification-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}
.notifications .notification-card .notification-item .icon.blue {
  background: #dbb266;
}
.notifications .notification-card .notification-item .icon.green {
  background: #2ecc71;
}
.notifications .notification-card .notification-item .icon.orange {
  background: #f39c12;
}
.notifications .notification-card .notification-item .content h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.notifications .notification-card .notification-item .content p {
  font-size: 13px;
  color: #6c757d;
  margin-bottom: 6px;
}
.notifications .notification-card .notification-item .content span {
  font-size: 12px;
  color: #adb5bd;
}

/* Booking Card */
.booking-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  gap: 15px;
  align-items: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 15px;
  /* Left Image */
  /* Center Content */
  /* Meta */
  /* Right */
}
.booking-card .booking-left img {
  width: 100px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.booking-card .booking-center {
  flex: 1;
}
.booking-card .booking-center h6 {
  margin-bottom: 4px;
  font-weight: 600;
}
.booking-card .booking-center p {
  font-size: 13px;
  color: #6c757d;
  margin-bottom: 6px;
}
.booking-card .booking-center p i {
  color: #dbb266;
}
.booking-card .booking-meta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #6c757d;
}
.booking-card .booking-meta i {
  margin-right: 4px;
  color: #adb5bd;
}
.booking-card .booking-right {
  text-align: right;
  min-width: 120px;
  /* Status */
}
.booking-card .booking-right .price {
  font-weight: 600;
  margin: 8px 0;
}
.booking-card .booking-right .status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}
.booking-card .booking-right .status.confirmed {
  background: #e7f9f1;
  color: #2ecc71;
}
.booking-card .booking-right .status.pending {
  background: #fff4e5;
  color: #f39c12;
}
.booking-card .booking-right .status.cancel {
  background: #ffeae5;
  color: #ec390c;
}

.bookings {
  /* Card */
  /* Left */
  /* Type badge */
  /* Center */
  /* Meta */
  /* Right */
  /* Status */
  /* Responsive */
}
.bookings .enquiry-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  display: grid;
  grid-template-columns: 1.3fr 1.5fr 1.5fr auto;
  gap: 15px;
  align-items: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 15px;
}
.bookings .enquiry-left h6 {
  margin-bottom: 4px;
  font-weight: 600;
}
.bookings .enquiry-left p {
  font-size: 13px;
  color: #6c757d;
}
.bookings .type {
  display: inline-block;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
  font-weight: 500;
}
.bookings .type.hotel {
  background: #e7f2ff;
  color: #2ea8f7;
}
.bookings .type.resort {
  background: #e8f8f2;
  color: #2ecc71;
}
.bookings .type.garden {
  background: #fff1e6;
  color: #f39c12;
}
.bookings .type.resort {
  background: #dcddff;
  color: #0509f3;
}
.bookings .enquiry-center p {
  font-size: 13px;
  margin-bottom: 4px;
}
.bookings .enquiry-meta {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: #6c757d;
}
.bookings .enquiry-meta i {
  margin-right: 5px;
}
.bookings .enquiry-right {
  text-align: right;
}
.bookings .status {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 20px;
  margin-bottom: 8px;
  font-weight: 500;
}
.bookings .status.new {
  background: #eaf3ff;
  color: #2ea8f7;
}
.bookings .status.replied {
  background: #e7f9f1;
  color: #2ecc71;
}
.bookings .status.closed {
  background: #fdecea;
  color: #e74c3c;
}
@media (max-width: 992px) {
  .bookings .enquiry-card {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .bookings .enquiry-right {
    text-align: left;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .booking-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .booking-right {
    width: 100%;
    text-align: left;
  }
}
/* MAP SECTION */
.contact-map {
  position: relative;
  /* Floating Form */
}
.contact-map iframe {
  width: 100%;
  height: 700px;
  border: none;
}
.contact-map .contact-form {
  position: relative;
  margin-top: -200px;
  background: #fff;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.contact-map .contact-form h5 {
  font-weight: 600;
  margin-bottom: 20px;
}
.contact-map .contact-form label {
  font-size: 16px;
  margin-bottom: 10px;
  color: #1c1c1c;
  font-weight: 500;
}
.contact-map .contact-form .form-control {
  margin-bottom: 12px;
}
.contact-map .contact-form button {
  margin-top: 10px;
}

/* CONTACT INFO */
.contact-info {
  padding: 200px 0 100px;
}
.contact-info .contact-card {
  display: flex;
  align-items: center;
  transition: 0.3s ease all;
  margin-top: 20px;
}
.contact-info .contact-card i {
  width: 70px;
  font-size: 36px;
  color: #1c1c1c;
  opacity: 0.3;
}
.contact-info .contact-card div {
  width: calc(100% - 70px);
  border-left: 2px solid rgba(202, 202, 202, 0.1921568627);
  padding-left: 20px;
}
.contact-info .contact-card div h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 3px;
  opacity: 0.4;
}
.contact-info .contact-card div p {
  color: #27264f;
  margin-bottom: 0;
  font-size: 16px;
}
.contact-info .contact-card div p.phone {
  font-size: 26px;
  font-weight: 600;
  color: #dbb266;
}

/* WHY CHOOSE */
.why-choose {
  background: #fef7f1;
  padding: 80px 0;
}
.why-choose h2 {
  font-weight: 700;
}
.why-choose .subtitle {
  color: #6c757d;
  font-size: 14px;
}
.why-choose .why-card i {
  font-size: 70px;
  color: #dbb266;
  margin-bottom: 10px;
  display: inline-block;
}
.why-choose .why-card h6 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #dbb266;
  margin-bottom: 20px;
}
.why-choose .why-card p {
  color: #27264f;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-form {
    position: static;
    transform: none;
    width: 100%;
    margin: 20px;
  }
  .contact-map {
    height: auto;
  }
  .contact-map iframe {
    height: 350px;
  }
}
.about-us {
  padding: 80px 0;
}

/* Image */
.about-image img {
  width: 100%;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #dbb266;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.about-content p {
  font-size: 15px;
  color: #27264f;
  margin-bottom: 14px;
}

.city-content ul {
  list-style: none;
  padding: 0;
}
.city-content ul li {
  margin-bottom: 15px;
  color: #272727;
  font-weight: 400;
  line-height: 1.8;
  position: relative;
  padding-left: 30px;
}
.city-content ul li::before {
  content: "\f270";
  font-family: bootstrap-icons;
  position: absolute;
  left: 0;
  top: -5px;
  color: #dbb266;
  font-size: 20px;
}
.city-content ul li strong {
  color: #1c1c1c;
}

/* Points */
.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.about-points div {
  font-size: 14px;
  color: #27264f;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-points i {
  color: #dbb266;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 991px) {
  .about-content {
    padding-left: 0;
  }
  .about-points {
    grid-template-columns: 1fr;
  }
}
.gallery-section .gallery-filter {
  display: flex;
  gap: 10px;
}
.gallery-section .gallery-filter .filter-btn {
  min-width: 120px;
  text-align: center;
}
.gallery-section .gallery-filter .filter-btn.active {
  background: #27264f;
}
.gallery-section .gallery-card {
  border-radius: 10px;
  box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.0784313725);
  overflow: hidden;
  position: relative;
}
.gallery-section .gallery-card img {
  transition: 0.3s ease all;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.gallery-section .gallery-card span {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  color: #dbb266;
  font-size: 18px;
  font-weight: 500;
  width: 70px;
  height: 70px;
  display: inline-grid;
  place-items: center;
  border: 2px solid #dbb266;
  border-radius: 50%;
  opacity: 0;
  transition: 0.3s ease all;
  cursor: pointer;
}
.gallery-section .gallery-card:hover img {
  scale: 1.1;
  filter: brightness(0.5);
}
.gallery-section .gallery-card:hover span {
  opacity: 1;
}

.pagination .page-link {
  color: #dbb266;
}
.pagination .active .page-link {
  background: #dbb266;
  color: #ffffff;
  border-color: #dbb266;
}

.modal .btn-close {
  position: absolute;
  right: -50px;
  top: -50px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  border: 1px solid #dbb266;
}

.emi-container .emi-box {
  /* slider */
}
.emi-container .emi-box .range-field {
  margin-bottom: 25px;
}
.emi-container .emi-box .range-field label {
  font-weight: 600;
  margin-bottom: 6px;
}
.emi-container .emi-box .range-field .range-value {
  font-weight: 600;
  color: #555;
}
.emi-container .emi-box .range-field input[type=range] {
  width: 100%;
  height: 6px;
  border-radius: 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: linear-gradient(to right, #dbb266 0%, #ddd 0%);
}
.emi-container .emi-box .range-field input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 18px;
  height: 18px;
  background: #dbb266;
  border-radius: 50%;
  cursor: pointer;
}
.emi-container .emi-box .result {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
}
.emi-container .emi-box .result div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.emi-container .emi-box .result h3 {
  color: #dbb266;
}
.emi-container .emi-box .result .result h4 {
  color: #1c1c1c;
}
.emi-container .emi-box .chart-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-control {
  border-radius: 15px;
  border: 1px solid #eee;
  padding: 15px;
  color: #767676;
}
.form-control:focus {
  box-shadow: none;
  outline: none;
  border-color: #dbb266;
}
.form-control::-moz-placeholder {
  opacity: 0.5;
}
.form-control::placeholder {
  opacity: 0.5;
}

/* ===============================
   SELECT2 GLOBAL DESIGN FIX
================================ */
.select2-container {
  width: 100% !important;
}

/* single select */
.select2-container .select2-selection--single {
  height: auto !important;
  border-radius: 15px !important;
  border: 1px solid #eee !important;
  padding: 15px !important;
  color: #767676 !important;
  background-color: #fff !important;
  display: flex !important;
  align-items: center !important;
  font-size: 15px !important;
}

/* selected text */
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #1c1c1c !important;
  line-height: normal !important;
  padding-left: 0 !important;
  font-weight: 500 !important;
}

/* arrow */
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100% !important;
  right: 8px !important;
}

/* dropdown */
.select2-dropdown {
  border-radius: 6px !important;
  border: 1px solid #ced4da !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08) !important;
}

/* options */
.select2-results__option {
  padding: 8px 12px !important;
  font-size: 14px !important;
}

/* hover option */
.select2-results__option--highlighted {
  background-color: #0d6efd !important;
  color: #fff !important;
}

/* selected option */
.select2-results__option[aria-selected=true] {
  background-color: #e9ecef !important;
  color: #212529 !important;
}

/* focus */
.select2-container--default.select2-container--focus .select2-selection--single {
  border-color: #86b7fe !important;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15) !important;
}

/* disabled */
.select2-container--disabled .select2-selection {
  background-color: #e9ecef !important;
}

/* multiple select */
.select2-container--default .select2-selection--multiple {
  min-height: 42px !important;
  border-radius: 6px !important;
  border: 1px solid #ced4da !important;
  padding: 4px 6px !important;
}

/* multiple tags */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #0d6efd !important;
  color: #fff !important;
  border: none !important;
  border-radius: 4px !important;
  padding: 3px 8px !important;
  font-size: 12px !important;
}

/* remove button */
.select2-selection__choice__remove {
  color: #fff !important;
  margin-right: 5px !important;
}/*# sourceMappingURL=style.css.map */