@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.5.7/jquery.fancybox.min.css");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");
@font-face {
  font-family: Saoldisplay;
  src: url(../fonts/SaolDisplay-Light.woff) format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Zodiak Variable;
  src: url("https://cdn.prod.website-files.com/685077c466f113761c6d796b/6853fdf5a6339fac04043129_Zodiak-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Recklesstrial;
  src: url(https://cdn.prod.website-files.com/6549375e368fd4067d8ff385/654939a9eb1c3f62f3d341b7_RecklessTRIAL-Light.otf) format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Manrope", sans-serif !important;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #48120E !important;
  background-color: #F6EFE5 !important;
  margin: 0;
  padding: 0;
}

p {
  font-family: "Manrope", sans-serif !important;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #48120E;
}

.manrope-bold {
  font-family: "Manrope", sans-serif !important;
  font-weight: 700 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Saoldisplay, "Times New Roman", sans-serif;
}

h1 {
  font-family: Saoldisplay, "Times New Roman", sans-serif;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1.5;
}

/*Navigation with hero section*/
/* Navbar Styles */
.nav-head-wrap .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background: transparent;
  z-index: 1000;
  transition: transform 0.3s ease, background 0.3s ease;
}
.nav-head-wrap .navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.nav-head-wrap .navbar.scrolled .nav-item {
  color: #261516 !important;
}
.nav-head-wrap .navbar.hidden {
  transform: translateY(-100%);
}
.nav-head-wrap .navbar-left {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-head-wrap .nav-item-wrapper {
  position: relative;
}
.nav-head-wrap .nav-item {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  transition: opacity 0.3s;
  padding: 0.5rem 0;
  text-transform: uppercase;
}
.nav-head-wrap .nav-item:hover {
  opacity: 0.8;
}
.nav-head-wrap .nav-item .arrow {
  transition: transform 0.3s;
}
.nav-head-wrap .nav-item-wrapper:hover .arrow {
  transform: rotate(180deg);
}
.nav-head-wrap {
  /* Dropdown Menu */
}
.nav-head-wrap .nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 250px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 1rem;
  border-radius: 4px;
}
.nav-head-wrap .nav-item-wrapper:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-head-wrap .nav-dropdown-item {
  display: block;
  padding: 1rem 1.5rem;
  color: #261516;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: background 0.3s;
  border-bottom: 1px solid #f0f0f0;
}
.nav-head-wrap .nav-dropdown-item:last-child {
  border-bottom: none;
}
.nav-head-wrap .nav-dropdown-item:hover {
  background: #AD1A1A;
  color: #FFFFFF;
  border-radius: 3px;
}
.nav-head-wrap .nav-dropdown-item:hover small {
  color: yellow !important;
}
.nav-head-wrap {
  /* Mega menu - mobile-first: single column by default, expands to two columns on wider screens */
}
.nav-head-wrap .nav-dropdown.mega {
  background: #FFFFFF;
  width: 100%;
  left: 0;
  right: 0;
  position: static;
  margin-top: 0.5rem;
  border-radius: 0;
  box-shadow: none;
  padding: 0.25rem 0;
  transform: none;
  opacity: 1;
  visibility: visible;
}
.nav-head-wrap .nav-dropdown.mega .mega-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
  align-items: start;
}
.nav-head-wrap .nav-dropdown.mega .mega-column {
  padding: 0;
}
.nav-head-wrap .nav-dropdown.mega .nav-dropdown-item {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid #f4f4f4;
  font-weight: 500;
}
.nav-head-wrap {
  /* Desktop / large screens: show as absolute two-column megamenu with card-like styling */
}
@media (min-width: 992px) {
  .nav-head-wrap .nav-item-wrapper .nav-dropdown.mega {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 520px;
    width: auto;
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    padding: 0.75rem;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.28s cubic-bezier(0.2, 0.9, 0.2, 1);
  }
  .nav-head-wrap .nav-item-wrapper:hover .nav-dropdown.mega {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-head-wrap .nav-dropdown.mega .mega-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .nav-head-wrap .nav-dropdown.mega .mega-column {
    padding: 0.25rem 0.75rem;
    border-right: 1px solid #f2f2f2;
  }
  .nav-head-wrap .nav-dropdown.mega .mega-column:last-child {
    border-right: none;
  }
  .nav-head-wrap .nav-dropdown.mega .nav-dropdown-item {
    padding: 0.9rem 1rem;
    border-bottom: none;
  }
}
.nav-head-wrap .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 80px;
}
.nav-head-wrap .logo img {
  height: 119px;
  width: 64px;
}
.nav-head-wrap .navbar-right {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-head-wrap .book-btn {
  background: #c92127;
  color: white;
  padding: 0.7rem 1.1rem;
  border: none;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s;
}
.nav-head-wrap .book-btn:hover {
  background: #a51b20;
}
.nav-head-wrap {
  /* Hamburger Menu */
}
.nav-head-wrap .hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.nav-head-wrap .hamburger span {
  width: 25px;
  height: 3px;
  background: #AD1A1A;
  transition: all 0.3s;
}
.nav-head-wrap .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.nav-head-wrap .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-head-wrap .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
.nav-head-wrap {
  /* Mobile Menu */
}
.nav-head-wrap .mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: #AD1A1A;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.nav-head-wrap .mobile-menu.active {
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  z-index: 1000;
}
.nav-head-wrap .mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-head-wrap .mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  color: #F6EFE5;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 1px;
  cursor: pointer;
}
.nav-head-wrap .mobile-nav-link .arrow {
  transition: transform 0.3s;
}
.nav-head-wrap .mobile-nav-item.active .mobile-nav-link .arrow {
  transform: rotate(180deg);
}
.nav-head-wrap {
  /* Mobile Accordion */
}
.nav-head-wrap .mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  transition: max-height 0.3s ease;
}
.nav-head-wrap .mobile-nav-item.active .mobile-dropdown {
  max-height: 500px;
}
.nav-head-wrap .mobile-dropdown-item {
  display: block;
  padding: 1rem 2rem 1rem 2rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-head-wrap .mobile-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-section {
  /* Carousel Styles */
}
.hero-section .hero-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero-section .hero-carousel-inner {
  display: flex;
  transition: transform 0.6s ease-in-out;
  height: 100%;
}
.hero-section .hero-carousel-item {
  min-width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
}
.hero-section .hero-carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}
.hero-section .carousel-content {
  position: absolute;
  left: 4rem;
  bottom: 8rem;
  color: #FFFFFF;
  z-index: 10;
  max-width: 750px;
}
.hero-section .carousel-subtitle {
  font-size: 1.2rem;
  letter-spacing: 4px;
  font-weight: 300;
  text-transform: uppercase;
  margin-left: 25%;
}
.hero-section .carousel-title {
  font-size: 5rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 3rem;
  margin-left: 25%;
}
.hero-section .carousel-btn {
  background: transparent;
  color: white;
  padding: 1rem 2.5rem;
  border: 2px solid white;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  margin-left: 25%;
}
.hero-section .carousel-btn:hover {
  background: white;
  color: #AD1A1A;
}
.hero-section {
  /* Carousel Controls */
}
.hero-section .hero-carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  z-index: 100;
  transition: background 0.3s;
}
.hero-section .hero-carousel-control:hover {
  background: rgba(255, 255, 255, 0.3);
}
.hero-section .hero-carousel-control.prev {
  left: 2rem;
}
.hero-section .hero-carousel-control.next {
  right: 2rem;
}
.hero-section {
  /* Carousel Indicators */
}
.hero-section .hero-carousel-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.8rem;
  z-index: 100;
}
.hero-section .hero-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.hero-section .hero-indicator.active {
  background: white;
  transform: scale(1.2);
}

.inner-bg {
  position: relative;
  width: 100%;
  /* Mobile-first: smaller height by default */
  height: 450px;
  overflow: hidden;
  background-color: #AD1A1A;
}
.inner-bg .inner-bg-item {
  position: absolute;
  inset: 0;
  /* background image & darkening applied to pseudo-element so text is not filtered */
}
.inner-bg .inner-bg-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/about-inner-bg.webp") no-repeat center center/cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  filter: brightness(0.35);
  z-index: 0;
}
.inner-bg .inner-bg-item {
  /* ensure content sits above the image overlay */
}
.inner-bg .inner-bg-item .container-fluid {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 60px;
  padding-right: 60px;
}
.inner-bg .partner-bg-item {
  position: absolute;
  inset: 0;
  /* background image & darkening applied to pseudo-element so text is not filtered */
}
.inner-bg .partner-bg-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/partner-with-us-bg.webp") no-repeat center center/cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  filter: brightness(0.35);
  z-index: 0;
}
.inner-bg .partner-bg-item {
  /* ensure content sits above the image overlay */
}
.inner-bg .partner-bg-item .container-fluid {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 60px;
  padding-right: 60px;
}
.inner-bg h1 {
  position: relative;
  color: #FFFFFF;
  font-size: 3rem;
  margin: 0;
  z-index: 3;
}

.pet-bg-item {
  position: absolute;
  inset: 0;
  /* background image & darkening applied to pseudo-element so text is not filtered */
}
.pet-bg-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/pet-friendly-policy.webp") no-repeat center center/cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  filter: brightness(0.35);
  z-index: 0;
}
.pet-bg-item {
  /* ensure content sits above the image overlay */
}
.pet-bg-item .container-fluid {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 60px;
  padding-right: 60px;
}

.bg-body {
  background-color: #F6EFE5 !important;
}

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

.text-para {
  color: #261516 !important;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-head-wrap .navbar {
    padding: 1rem 1.5rem;
  }
  .nav-head-wrap .navbar-left,
  .nav-head-wrap .navbar-right .nav-item {
    display: none;
  }
  .nav-head-wrap .hamburger {
    display: flex;
  }
  .nav-head-wrap .mobile-menu {
    display: block;
  }
  .nav-head-wrap .logo {
    position: relative;
    left: 15%;
    transform: translateX(-15%);
    height: 60px;
  }
  .nav-head-wrap .navbar-right {
    gap: 0;
  }
  .nav-head-wrap .book-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
  }
  .hero-section .carousel-content {
    left: 1.5rem;
    right: 1.5rem;
    bottom: 6rem;
  }
  .hero-section .carousel-title {
    font-size: 2.5rem;
  }
  .hero-section .carousel-subtitle {
    font-size: 0.9rem;
  }
  .hero-section .hero-carousel-control {
    padding: 0.8rem 1rem;
    font-size: 1.5rem;
  }
  .hero-section .hero-carousel-control.prev {
    left: 1rem;
  }
  .hero-section .hero-carousel-control.next {
    right: 1rem;
  }
}
/* Headlinewrap responsive tweaks */
.headlinewrap .miswrap {
  padding: 0 1rem;
}
.headlinewrap .headline-box {
  padding: 0.75rem 0.5rem;
  text-align: left;
}
.headlinewrap .headline-title {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.headlinewrap .headline-desc {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Our Story responsive tweaks */
.ourstory-section {
  padding-top: 40px;
  padding-bottom: 40px;
}
.ourstory-section .display-heading {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.ourstory-section .lead-text {
  font-size: 0.95rem;
  line-height: 1.6;
}
.ourstory-section .feature-list {
  padding-left: 1.25rem;
  margin-top: 0.5rem;
}
.ourstory-section .img-wrapper {
  margin-top: 1rem;
}
.ourstory-section .img-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

@media (max-width: 480px) {
  .hero-section .carousel-title {
    font-size: 2rem;
  }
  .nav-head-wrap .book-btn {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
  }
}
/* Navigation with hero section */
.bg-primary {
  background-color: #AD1A1A !important;
}

.bg-dark-green {
  background-color: #034925 !important;
}

.bg-dark-brown {
  background-color: #261516 !important;
}

.default-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

/*Project Card Section*/
.resort-section {
  --resort-stick-top: 110px;
  /* default, will be updated by JS based on header height */
}
.resort-section .resort-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
}
.resort-section .resort-content {
  color: #F6EFE5;
  padding-left: 40px;
}
.resort-section .resort-content p.project-name {
  font-family: Saoldisplay, "Times New Roman", sans-serif !important;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: #F6EFE5;
  margin-bottom: 0;
}
.resort-section .resort-content p.price {
  font-size: 28px;
  font-weight: 500;
  color: #F6EFE5;
  padding-top: 10px;
}
.resort-section .resort-content p.price-multi {
  font-size: 18px;
  font-weight: 500;
  color: #F6EFE5;
  padding-top: 10px;
}
.resort-section .resort-content .checkin {
  font-size: 14px;
  color: #F6EFE5;
}
.resort-section .resort-content .disclaimtext {
  font-size: 14px;
  color: #F6EFE5;
  padding-top: 15px;
}
.resort-section .resort-content .border {
  border: solid 1px #a11006 !important;
}
.resort-section .resort-content .checkinout {
  background-color: #b12920;
}
.resort-section .resort-title {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.resort-section .resort-text {
  font-size: 16px;
  line-height: 1.8;
  max-width: 380px;
  margin-bottom: 30px;
  color: #F6EFE5;
}
.resort-section .btn-explore {
  background-color: #F6EFE5;
  color: #b01818;
  border-radius: 6px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  border: none;
}
.resort-section .btn-explore:hover {
  background-color: #f1f1f1;
  color: #b01818;
}
.resort-section {
  /* Responsive Adjustments */
}
@media (max-width: 991px) {
  .resort-section .resort-section {
    padding: 30px;
  }
  .resort-section .resort-content {
    padding-left: 0;
    margin-top: 30px;
  }
  .resort-section .resort-title {
    font-size: 36px;
  }
}
.resort-section .container {
  position: sticky;
  top: var(--resort-stick-top);
  z-index: 1;
  margin-bottom: 1.5rem;
}
.resort-section {
  /* Ensure later containers stack above earlier ones */
}
.resort-section .container:nth-of-type(1) {
  z-index: 1;
}
.resort-section .container:nth-of-type(2) {
  z-index: 2;
}
.resort-section .container:nth-of-type(3) {
  z-index: 3;
}
.resort-section {
  /* Optional visual spacing for when not stuck */
}
.resort-section .resort-image img {
  width: 100%;
  display: block;
}
.resort-section {
  /* Grid for Amenities */
}
.resort-section .amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 15px;
  margin-bottom: 40px;
  margin-top: 20px;
}
@media (max-width: 576px) {
  .resort-section .amenity-grid {
    grid-template-columns: 1fr;
  }
}
.resort-section .amenity-item {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 300;
}
.resort-section .amenity-item i {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  color: var(--accent-gold);
  font-size: 1.1rem;
  transition: 0.3s;
}
.resort-section .amenity-item:hover i {
  background: var(--accent-gold);
  color: #fff;
}

.btn-primary {
  background-color: #AD1A1A !important;
  color: #F6EFE5 !important;
}

/* Project Card section */
/*lion-carousel-section start here*/
.project-showcase-section {
  position: relative;
}
.project-showcase-section .project-slide {
  height: 50vh;
}
.project-showcase-section .project-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}
.project-showcase-section .project-content {
  position: relative;
  color: #fff;
  max-width: 520px;
}
.project-showcase-section .project-location {
  font-style: italic;
  font-size: 18px;
  opacity: 0.9;
}
.project-showcase-section .project-title {
  font-size: 48px;
  font-weight: 300;
  margin: 10px 0 15px;
}
.project-showcase-section .project-desc {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
  color: #F6EFE5;
}
.project-showcase-section .project-btn {
  margin-top: 20px;
  padding: 12px 28px;
  background: #fff;
  color: #b71c1c;
  border-radius: 6px;
  font-weight: 600;
}
.project-showcase-section .project-btn:hover {
  background: #f5f5f5;
}
.project-showcase-section .carousel-control-prev,
.project-showcase-section .carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}
.project-showcase-section .carousel-control-prev {
  left: 30px;
}
.project-showcase-section .carousel-control-next {
  right: 30px;
}
.project-showcase-section {
  /* Mobile */
}
@media (max-width: 768px) {
  .project-showcase-section .project-title {
    font-size: 32px;
  }
  .project-showcase-section .project-showcase-carousel,
  .project-showcase-section .project-slide {
    height: 80vh;
  }
}
.project-showcase-section .project-carousel-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.8rem;
  z-index: 100;
}
.project-showcase-section .project-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.project-showcase-section .project-indicator.active {
  background: #FFFFFF;
  transform: scale(1.2);
}

/*lion-carousel-section end here*/
/*Liquid Slide Button (Trend 2025 UI)*/
.liquid-btn {
  position: relative;
  padding: 10px 44px;
  border-radius: 50px;
  background: #F6EFE5;
  color: #AD1A1A;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.liquid-btn:hover {
  color: #F6EFE5;
}

.liquid-btn span {
  position: relative;
  z-index: 2;
}

.liquid {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #261516, #AD1A1A, #261516);
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.6, 0, 0.4, 1);
}

.liquid-btn:hover .liquid {
  transform: translateX(0);
}

.liquid-btn-2 {
  position: relative;
  padding: 10px 44px;
  border-radius: 50px;
  background: #F6EFE5;
  color: #AD1A1A;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.liquid-btn-2:hover {
  color: #F6EFE5;
}

.liquid-btn-2 span {
  position: relative;
  z-index: 2;
}

.liquid-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #48120E, #261516, #48120E);
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.6, 0, 0.4, 1);
}

.liquid-btn-2:hover .liquid-2 {
  transform: translateX(0);
}

.popularvisit .header {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.popularvisit .header h2 {
  font-size: 32px;
  color: #AD1A1A;
  font-weight: 400;
  line-height: 1.2;
}
.popularvisit .header-text {
  font-size: 14px;
  line-height: 1.8;
  color: #48120E;
  margin-top: 36px;
}
@media (min-width: 768px) {
  .popularvisit .header {
    padding: 60px 40px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .popularvisit .header h2 {
    font-size: 56px;
    max-width: 500px;
  }
  .popularvisit .header-text {
    max-width: 400px;
  }
}
.popularvisit .slider-wrapper {
  position: relative;
  padding: 20px 0;
  margin-bottom: 20px;
}
.popularvisit .marquee-container {
  overflow: hidden;
  position: relative;
}
.popularvisit .marquee {
  display: flex;
  gap: 30px;
  width: -moz-fit-content;
  width: fit-content;
}
.popularvisit .marquee.paused {
  animation-play-state: paused !important;
}
.popularvisit .slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
  padding: 0 10px;
}
.popularvisit .control-btn {
  pointer-events: all;
  background: #AD1A1A;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #F6EFE5;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.popularvisit .control-btn:hover {
  background: #AD1A1A;
  transform: scale(1.1);
}
.popularvisit .control-btn:active {
  transform: scale(0.95);
}
@media (min-width: 768px) {
  .popularvisit .control-btn {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }
  .popularvisit .slider-controls {
    padding: 0 20px;
  }
}
.popularvisit .hotel-card {
  min-width: 300px;
  background: transparent;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.popularvisit .hotel-card img {
  border-radius: 5px;
}
@media (min-width: 640px) {
  .popularvisit .hotel-card {
    min-width: 550px;
  }
}
.popularvisit .hotel-card:hover {
  transform: translateY(-5px);
}
.popularvisit .hotel-image {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 640px) {
  .popularvisit .hotel-image {
    height: 320px;
  }
}
.popularvisit .hotel-info {
  padding: 20px;
  text-align: center;
}
@media (min-width: 640px) {
  .popularvisit .hotel-info {
    padding: 25px;
  }
}
.popularvisit .hotel-name {
  font-size: 24px;
  color: #b91c1c;
  margin-bottom: 8px;
  font-weight: 400;
}
@media (min-width: 640px) {
  .popularvisit .hotel-name {
    font-size: 28px;
    margin-bottom: 10px;
  }
}
.popularvisit .hotel-location {
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
}
.popularvisit a.explore-btn {
  background-color: #AD1A1A;
  color: #F6EFE5;
  border: none;
  padding: 12px 35px;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  border-radius: 20px;
  text-decoration: none;
}
.popularvisit a.explore-btn:hover {
  background-color: #991b1b;
}

.wedding-section {
  background-color: #261516;
}
.wedding-section .section-title {
  font-size: 4rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 50px;
  letter-spacing: -1px;
  color: #F6EFE5;
}
.wedding-section .description-text {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.3px;
  max-width: 400px;
  color: #F6EFE5;
  margin-top: 40px;
}
.wedding-section .card-custom {
  background: transparent;
  border: none;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  margin-bottom: 30px;
}
.wedding-section .card-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.wedding-section .card-img-wrapper img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.wedding-section .card-custom:hover .card-img-wrapper img {
  transform: scale(1.05);
}
.wedding-section .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wedding-section .card-custom:hover .card-overlay {
  opacity: 1;
}
.wedding-section .read-more-btn {
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 12px 30px;
  border: 2px solid #fff;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.wedding-section .read-more-btn:hover {
  background-color: #fff;
  color: #2b1f1f;
}
.wedding-section .card-title-custom {
  font-size: 2.2rem;
  font-weight: 400;
  margin-top: 25px;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
  color: #F6EFE5;
}
.wedding-section .card-subtitle-custom {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4d4d4;
}
@media (max-width: 768px) {
  .wedding-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 0;
  }
  .wedding-section .card-title-custom {
    font-size: 2rem;
  }
  .wedding-section .card-img-wrapper img {
    height: 300px;
  }
}
@media (max-width: 576px) {
  .wedding-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 0;
  }
  .wedding-section .card-title-custom {
    font-size: 1.75rem;
  }
  .wedding-section .card-img-wrapper img {
    height: 250px;
  }
}

footer.footer-wrapper {
  background: #48120E;
  color: #d4b59e;
  display: flex;
  flex-direction: column;
}
footer.footer-wrapper .footer-main {
  border-bottom: 1px solid rgba(212, 181, 158, 0.2);
  flex: 1 1 auto;
}
footer.footer-wrapper .footer-main {
  border-bottom: 1px solid rgba(212, 181, 158, 0.2);
}
footer.footer-wrapper .footer-main .row.g-0,
footer.footer-wrapper .footer-main > div > .row.g-0,
footer.footer-wrapper .footer-main > .container-fluid > .row.g-0 {
  display: flex;
  align-items: stretch;
}
footer.footer-wrapper .footer-main .row.g-0 > .col-lg-9,
footer.footer-wrapper .footer-main .row.g-0 > .col-lg-3,
footer.footer-wrapper .footer-main > div > .row.g-0 > .col-lg-9,
footer.footer-wrapper .footer-main > div > .row.g-0 > .col-lg-3,
footer.footer-wrapper .footer-main > .container-fluid > .row.g-0 > .col-lg-9,
footer.footer-wrapper .footer-main > .container-fluid > .row.g-0 > .col-lg-3 {
  display: flex;
  align-items: stretch;
}
footer.footer-wrapper .footer-main .col-lg-9 .row {
  display: flex;
  width: 100%;
  align-items: stretch;
}
footer.footer-wrapper .footer-column {
  padding: 50px 30px;
  border-right: 1px solid rgba(212, 181, 158, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
}
footer.footer-wrapper .footer-column:last-child {
  border-right: none;
}
footer.footer-wrapper .footer-heading {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 25px;
  color: #e8d4c1;
  text-transform: capitalize;
}
footer.footer-wrapper .footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer.footer-wrapper .footer-list li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
}
footer.footer-wrapper .footer-list a {
  color: #d4b59e;
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s ease;
}
footer.footer-wrapper .footer-list a:hover {
  color: #e8d4c1;
}
footer.footer-wrapper .footer-nav-links {
  margin-top: 35px;
}
footer.footer-wrapper .footer-nav-links li {
  margin-bottom: 8px;
}
footer.footer-wrapper .footer-nav-links a {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}
footer.footer-wrapper .address-text {
  font-size: 14px;
  line-height: 1.8;
  color: #d4b59e;
  font-weight: 300;
  margin-bottom: 0;
}
footer.footer-wrapper .email-links {
  font-size: 14px;
  margin-top: 25px;
}
footer.footer-wrapper .email-links a {
  color: #d4b59e;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer.footer-wrapper .email-links a:hover {
  color: #e8d4c1;
}
footer.footer-wrapper .contact-section {
  margin-top: 30px;
}
footer.footer-wrapper .phone-numbers {
  font-size: 15px;
  margin-top: 15px;
  line-height: 1.6;
}
footer.footer-wrapper .phone-numbers a {
  color: #d4b59e;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer.footer-wrapper .phone-numbers a:hover {
  color: #e8d4c1;
}
footer.footer-wrapper .social-media {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}
footer.footer-wrapper .social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #e8d4c1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3d1e15;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}
footer.footer-wrapper .social-icon:hover {
  background: #d4b59e;
  transform: scale(1.1);
}
footer.footer-wrapper .footer-bottom {
  padding: 18px 0;
  background: rgba(0, 0, 0, 0.15);
}
footer.footer-wrapper .border-start {
  border-left: solid 1px #724F48 !important;
}
footer.footer-wrapper .border-bottom {
  border-bottom: solid 1px #724F48 !important;
}
footer.footer-wrapper .border-end {
  border-right: solid 1px #724F48 !important;
}
footer.footer-wrapper .copyright-text {
  font-size: 13px;
  color: #d4b59e;
  margin: 0;
  font-weight: 300;
}
footer.footer-wrapper .footer-bottom-links {
  font-size: 13px;
}
footer.footer-wrapper .footer-bottom-links a {
  color: #d4b59e;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer.footer-wrapper .footer-bottom-links a:hover {
  color: #e8d4c1;
}
footer.footer-wrapper .separator {
  margin: 0 8px;
  color: #d4b59e;
}
@media (max-width: 991px) {
  footer.footer-wrapper .footer-column {
    border-right: none;
    border-bottom: 1px solid rgba(212, 181, 158, 0.2);
    padding: 40px 20px;
  }
  footer.footer-wrapper .footer-column:last-child {
    border-bottom: none;
  }
  footer.footer-wrapper .footer-heading {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  footer.footer-wrapper .footer-column {
    padding: 30px 15px;
  }
  footer.footer-wrapper .footer-heading {
    font-size: 22px;
    margin-bottom: 20px;
  }
  footer.footer-wrapper .footer-list li {
    font-size: 14px;
  }
  footer.footer-wrapper .social-media {
    justify-content: flex-start;
  }
  footer.footer-wrapper .footer-bottom .text-end {
    text-align: center !important;
    margin-top: 10px;
  }
}

.head-wrapper {
  padding-left: 60px;
  padding-right: 60px;
}
.head-wrapper h2 {
  font-size: 3rem;
  line-height: 3.9rem;
}
.head-wrapper h2 span {
  color: #AD1A1A;
}

/* The container that defines how long the scroll takes */
.scroll-container {
  height: 200vh;
  /* 4x the viewport height */
  position: relative;
  padding: 40px;
}

/* Keeps the video centered and in view during scroll */
.sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-container {
  position: relative;
  width: 740px;
  /* Initial width */
  height: 750px;
  /* Fixed height */
  transition: width 0.1s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

/* Background Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  /* Hidden initially */
  transition: opacity 0.5s ease-in;
  pointer-events: none;
}

.overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.overlay h4 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.gallery-container .gallery-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}
.gallery-container .line {
  height: 1px;
  background: #AD1A1A;
  flex-grow: 1;
  max-width: 100px;
}
.gallery-container .gallery-title {
  letter-spacing: 5px;
  font-size: 3.5rem;
  text-transform: uppercase;
  color: #AD1A1A;
}
.gallery-container .gallery-item {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-container .gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.gallery-container .gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
}
.gallery-container .gallery-item a {
  display: block;
  position: relative;
  overflow: hidden;
}
.gallery-container .gallery-item a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-container .gallery-item:hover a::after {
  opacity: 1;
}
.gallery-container {
  /* First row - 2 columns */
}
.gallery-container .row-1 .gallery-item {
  height: 350px;
}
.gallery-container {
  /* Second row - full width */
}
.gallery-container .row-2 .gallery-item {
  height: 600px;
}
.gallery-container {
  /* Third row - 3 columns */
}
.gallery-container .row-3 .gallery-item {
  height: 350px;
}
.gallery-container {
  /* Third row - 3 columns */
}
.gallery-container .row-4 .gallery-item {
  height: 450px;
}
.gallery-container {
  /* Third row - 3 columns */
}
.gallery-container .row-5 .gallery-item {
  height: 350px;
}
.gallery-container {
  /* Hidden rows */
}
.gallery-container .hidden-row {
  display: none;
}
.gallery-container .load-more-container {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}
.gallery-container .load-more-btn {
  border: 1px solid #AD1A1A;
  background: transparent;
  color: #AD1A1A;
  padding: 14px 25px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.3s;
  position: relative;
  font-size: 12px;
  border-radius: 10px;
}
.gallery-container .load-more-btn:hover {
  background-color: #AD1A1A;
  color: #F6EFE5;
}
.gallery-container {
  /* Mobile responsive adjustments */
}
@media (max-width: 768px) {
  .gallery-container .row-1 .gallery-item,
  .gallery-container .row-2 .gallery-item,
  .gallery-container .row-3 .gallery-item {
    height: 250px;
  }
}
@media (max-width: 576px) {
  .gallery-container .row-1 .gallery-item,
  .gallery-container .row-2 .gallery-item,
  .gallery-container .row-3 .gallery-item {
    height: 200px;
  }
}

.facilities-sect .facility-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}
.facilities-sect .line {
  height: 1px;
  background: #AD1A1A;
  flex-grow: 1;
  max-width: 100px;
}
.facilities-sect .facility-title {
  letter-spacing: 5px;
  font-size: 3.5rem;
  text-transform: uppercase;
  color: #AD1A1A;
}
.facilities-sect .facility-card {
  border: 1px solid #f0f0f0;
  padding: 2.5rem 1.5rem;
  transition: all 0.4s ease;
  background: #FFFFFF;
  height: 100%;
  border-radius: 4px;
}
.facilities-sect .facility-card:hover {
  border-color: #AD1A1A;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}
.facilities-sect .icon-wrap {
  color: #AD1A1A;
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.facilities-sect .facility-name {
  font-weight: 600;
  color: #AD1A1A;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
}
.facilities-sect .facility-desc {
  font-size: 0.85rem;
  color: #48120E;
  line-height: 1.6;
}
.facilities-sect .btn-luxury {
  border: 1px solid #AD1A1A;
  background: transparent;
  color: #AD1A1A;
  padding: 14px 45px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.3s;
  position: relative;
  font-size: 12px;
  border-radius: 10px;
}
.facilities-sect .btn-luxury:hover {
  background: #AD1A1A;
  color: #FFFFFF;
}
.facilities-sect {
  /* Loader Animation */
}
.facilities-sect #loader {
  display: none;
}
.facilities-sect .spinner-border {
  width: 1.5rem;
  height: 1.5rem;
  color: #AD1A1A;
}

.headlinewrap {
  padding-left: 60px;
  padding-right: 60px;
}
.headlinewrap .headline-title {
  font-size: 2.5rem;
  line-height: 3.9rem;
  margin-bottom: 20px;
}

.diverseport .header {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.diverseport .header h2 {
  font-size: 32px;
  color: #AD1A1A;
  font-weight: 400;
  line-height: 1.2;
}
.diverseport .header-text {
  font-size: 14px;
  line-height: 1.8;
  color: #48120E;
  margin-top: 36px;
}

.ourstory-section {
  padding-left: 60px;
  padding-right: 60px;
  background-color: #034925;
  /* Typography */
}
.ourstory-section .display-heading {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #F6EFE5;
}
.ourstory-section .lead-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #F6EFE5;
  margin-bottom: 2rem;
}
.ourstory-section .feature-head {
  font-size: 1.5rem;
  color: #F6EFE5;
  font-weight: 300;
}
.ourstory-section .feature-list {
  list-style: none;
  padding-left: 0;
  color: #F6EFE5;
}
.ourstory-section .tracking-widest {
  color: #F6EFE5;
}
.ourstory-section .feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.ourstory-section .feature-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #c4a47c;
  /* Gold/Bronze accent */
}
.ourstory-section {
  /* Image Hover Effect */
}
.ourstory-section .img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  /* Subtle rounding for modern look */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.ourstory-section .img-wrapper img {
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
  display: block;
}
.ourstory-section .img-wrapper:hover img {
  transform: scale(1.08);
}
.ourstory-section {
  /* Overlay decorative element */
}
.ourstory-section .img-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 15px;
  pointer-events: none;
}

.contact-section .contact-card {
  border: none;
  border-radius: 20px;
  padding: 1.8rem;
  height: 100%;
  background-color: #fff;
}
.contact-section .contact-card p a {
  color: #261516;
  text-decoration: none;
}
.contact-section .contact-card p a:hover {
  text-decoration: underline;
}
.contact-section .icon-circle {
  width: 40px;
  height: 40px;
  background-color: #AD1A1A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #F6EFE5;
}
.contact-section .form-container {
  background-color: #034925;
  border-radius: 24px;
  padding: 3rem;
}
.contact-section .form-container .form-label {
  color: #F6EFE5;
  font-weight: 300 !important;
}
.contact-section .form-control {
  border: 1px dashed #999;
  background-color: transparent;
  padding: 0.75rem 1rem;
  border-radius: 10px;
}
.contact-section .form-control:focus {
  background-color: #F6EFE5;
  border-style: solid;
  box-shadow: none;
  border-color: #F6EFE5;
}
.contact-section .btn-submit {
  background-color: #AD1A1A;
  border: none;
  padding: 0.75rem 2.5rem;
  border-radius: 8px;
  font-weight: 600;
  color: #F6EFE5;
}
.contact-section .help-badge {
  background: #e0ddd8;
  border-radius: 20px;
  padding: 5px 15px;
  font-size: 0.8rem;
  display: inline-block;
}

.petfriendly-section {
  width: 100%;
}
.petfriendly-section .petfriendly {
  background-size: cover;
}

.font-16 {
  font-size: 16px !important;
}

.font-18 {
  font-size: 18px !important;
}

.contact-section.faq h2 {
  font-family: "Manrope", sans-serif !important;
}

.accordion-button:not(.collapsed) {
  background-color: #261516 !important;
  color: #F6EFE5 !important;
}

.accordion-button:focus {
  box-shadow: none !important;
}

.pet-policy-section {
  padding: 60px 0;
}
.pet-policy-section .policy-grid-item {
  padding: 10px 15px;
  margin-bottom: 15px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}
.pet-policy-section .policy-grid-item:hover {
  border-left-color: var(--accent);
  background-color: #fafafa;
  transform: translateX(5px);
}
.pet-policy-section .icon-box {
  color: #AD1A1A;
  font-size: 1.1rem;
  margin-right: 15px;
  min-width: 25px;
  text-align: center;
}
.pet-policy-section .text-box {
  font-size: 0.95rem;
  line-height: 1.6;
}
.pet-policy-section .text-box strong {
  color: #261516;
  font-weight: 600;
}
.pet-policy-section {
  /* --- Housekeeping Section (Boxed) --- */
}
.pet-policy-section .housekeeping-wrapper {
  color: #AD1A1A;
  padding: 60px 0;
}
.pet-policy-section .housekeeping-wrapper h3 {
  color: #AD1A1A;
}
.pet-policy-section .hk-item {
  background: rgba(255, 255, 255, 0.3);
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.pet-policy-section .hk-item h6 {
  color: #AD1A1A;
  /* Light sage text */
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  margin-bottom: 10px;
}
.pet-policy-section {
  /* --- Alert Box --- */
}
.pet-policy-section .note-box {
  background: rgba(255, 255, 255, 0.3);
  border-left: 5px solid #AD1A1A;
  padding: 30px;
  border-radius: 0 8px 8px 0;
  color: #AD1A1A;
}
.pet-policy-section .note-box h5 {
  font-family: "Manrope", sans-serif !important;
  color: #AD1A1A;
}
.pet-policy-section .note-box p {
  font-family: "Manrope", sans-serif !important;
  color: #48120E;
}
.pet-policy-section {
  /* --- Signatures --- */
}
.pet-policy-section .sig-container {
  border-top: 1px solid #48120E;
  padding-top: 40px;
  margin-top: 40px;
}
.pet-policy-section .sig-container h4 {
  font-size: 2rem;
  color: #AD1A1A;
  margin-bottom: 20px;
}
.pet-policy-section .sig-label {
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #48120E;
  letter-spacing: 2px;
  margin-top: 10px;
}
.pet-policy-section .sig-line {
  height: 1px;
  background-color: #AD1A1A;
  width: 100%;
  max-width: 250px;
}

.pet-friendly-section .feature-card {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 1rem;
  height: 100%;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
}
.pet-friendly-section .main-image-card {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
  background: url("../images/pet-friendly-home.webp") center/cover;
}
.pet-friendly-section .side-image {
  border-radius: 15px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.pet-friendly-section .icon-circle {
  width: 30px;
  height: 30px;
  background-color: #AD1A1A;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.pet-friendly-section h2 {
  font-weight: 700;
  color: #333;
  font-size: 1.25rem;
}
.pet-friendly-section p {
  color: #48120E;
  font-size: 0.95rem;
  line-height: 1.6;
  padding-left: 10px;
  width: 90%;
}
.pet-friendly-section .highlight-box {
  background: rgba(255, 255, 255, 0.3);
  border-left: 5px solid #AD1A1A;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

@media only screen and (min-width: 300px) and (max-width: 767px) {
  /* Head/intro */
  .head-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .head-wrapper h2 {
    font-size: 20px !important;
    line-height: 1.5 !important;
    font-weight: 400 !important;
  }
  /* Video block: keep height reasonable on small screens */
  .video-container {
    width: 100% !important;
    height: auto !important;
    min-height: 200px !important;
  }
  /* Hero carousel adjustments */
  .hero-carousel {
    height: 60vh !important;
    min-height: 320px !important;
  }
  .hero-carousel-item {
    background-position: center !important;
    background-size: cover !important;
  }
  .carousel-content {
    left: 1rem !important;
    right: 1rem !important;
    bottom: 4rem !important;
    max-width: calc(100% - 2rem) !important;
    padding: 0 !important;
  }
  .carousel-subtitle {
    margin-left: 0 !important;
    font-size: 0.85rem !important;
    letter-spacing: 3px !important;
  }
  .carousel-title {
    font-size: 1.75rem !important;
    line-height: 1.1 !important;
    margin-left: 0 !important;
    margin-bottom: 0.75rem !important;
  }
  .carousel-btn {
    padding: 0.6rem 1rem !important;
    font-size: 0.85rem !important;
  }
  /* Hide large carousel controls on small screens to avoid overlap */
  .hero-carousel-control {
    display: none !important;
  }
  /* Make resort section fully visible: disable sticky, relax sizing */
  .resort-section .container {
    position: static !important;
    top: auto !important;
    margin-bottom: 1rem !important;
    overflow: visible !important;
    width: 95% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .resort-section .resort-image img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    display: block !important;
    border-radius: 6px !important;
  }
  .resort-section .resort-content {
    padding-left: 15px !important;
    margin-top: 12px !important;
    color: #F6EFE5 !important;
  }
  .resort-section .resort-title {
    font-size: 1.6rem !important;
    line-height: 1.1 !important;
  }
  .resort-section .resort-text {
    max-width: 100% !important;
    font-size: 0.95rem !important;
  }
  /* Ensure package section is visible and not clipped */
  #package-section {
    position: relative !important;
    z-index: 10 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 1rem !important;
    margin-top: 0.75rem !important;
    overflow: visible !important;
  }
  .gallery-container .gallery-title {
    font-size: 2rem;
  }
  .gallery-container .row-4 .gallery-item, .gallery-container .row-5 .gallery-item {
    height: 325px;
  }
  /* Gallery images should scale properly */
  .gallery-item img,
  .gallery-item a img {
    width: 100% !important;
    height: auto !important;
    -o-object-fit: cover !important;
       object-fit: cover !important;
    display: block !important;
  }
  /* Buttons full width on small screens */
  .liquid-btn,
  .btn-explore,
  .load-more-btn,
  .book-btn {
    width: 100% !important;
    display: inline-flex !important;
    justify-content: center !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    box-sizing: border-box !important;
  }
  /* Facility cards stack nicely */
  .facilities-sect .facility-card {
    margin-bottom: 1rem !important;
  }
  .facilities-sect .facility-title {
    font-size: 2rem;
  }
  /* Small tweaks for spacing to avoid overlap with fixed header */
  body {
    -webkit-text-size-adjust: 100% !important;
  }
  .overlay h4 {
    font-size: 1.25rem !important;
  }
  .sticky-wrapper {
    height: 30vh !important;
  }
  .scroll-container {
    height: 40vh !important;
  }
  .headlinewrap, .ourstory-section {
    padding-left: 0;
    padding-right: 0;
  }
  .headlinewrap .headline-title, .ourstory-section .headline-title {
    font-size: 2rem;
  }
  .headlinewrap .display-heading, .ourstory-section .display-heading {
    font-size: 2.5rem;
  }
  .inner-bg-item .container-fluid {
    align-items: flex-end !important;
    padding-top: 140px;
  }
  .pet-friendly-section h1 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 1280px) and (max-width: 1300px) {
  .nav-head-wrap .nav-item {
    font-size: 0.85rem;
    gap: 0 rem !important;
    text-transform: capitalize !important;
  }
  .nav-head-wrap .logo {
    left: 52%;
  }
  .nav-head-wrap .book-btn {
    font-size: 0.75rem;
    padding: 0.7rem 1.1rem;
  }
  .nav-head-wrap .navbar-left, .nav-head-wrap .navbar-right {
    gap: 1rem !important;
  }
  .logo img {
    height: 95px !important;
    width: 54px !important;
  }
}
@media only screen and (min-width: 1360px) and (max-width: 1360px) {
  .nav-head-wrap .nav-item {
    font-size: 0.85rem;
    gap: 0.1rem;
  }
  .nav-head-wrap .logo {
    left: 53%;
  }
  .nav-head-wrap .navbar-left, .nav-head-wrap .navbar-right {
    gap: 1rem !important;
  }
  .logo img {
    height: 105px !important;
    width: 56px !important;
  }
}
@media only screen and (min-width: 1366px) and (max-width: 1400px) {
  .nav-head-wrap .nav-item {
    font-size: 0.85rem;
    gap: 0.1rem;
  }
  .nav-head-wrap .logo {
    left: 53%;
  }
  .nav-head-wrap .navbar-left, .nav-head-wrap .navbar-right {
    gap: 1rem !important;
  }
  .logo img {
    height: 105px !important;
    width: 56px !important;
  }
}
@media only screen and (min-width: 1440px) and (max-width: 1500px) {
  .nav-head-wrap .nav-item {
    gap: 0.1rem;
  }
  .nav-head-wrap .logo {
    left: 53%;
  }
  .nav-head-wrap .navbar-left, .nav-head-wrap .navbar-right {
    gap: 1rem !important;
  }
  .logo img {
    height: 105px !important;
    width: 56px !important;
  }
}
@media only screen and (min-width: 1536px) and (max-width: 1600px) {
  .nav-head-wrap .nav-item {
    gap: 0.1rem;
  }
  .nav-head-wrap .logo {
    left: 53%;
  }
}/*# sourceMappingURL=style.css.map */