* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}


html {
  --s: 12px;
  /* control the size*/
  --c1: #f5e6ca;
  --c2: #ededed;

  --g: var(--c1) 3.125%, var(--c2) 0 9.375%,
    var(--c1) 0 15.625%, var(--c2) 0 21.875%,
    var(--c1) 0 28.125%, #0000 0;
  background:
    linear-gradient(225deg, #0000 3.125%, var(--c2) 0 9.375%,
      #0000 0 78.125%, var(--c2) 0 84.375%, #0000 0) 0 calc(var(--s)/2),
    linear-gradient(45deg, var(--g)) 0 var(--s),
    linear-gradient(45deg, var(--g)) calc(var(--s)/-2) calc(var(--s)/-2),
    linear-gradient(225deg, var(--g)) var(--s) 0,
    linear-gradient(225deg, var(--g)) calc(var(--s)/2) var(--s),
    repeating-linear-gradient(-45deg, var(--c1) -3.125% 3.125%, var(--c2) 0 9.375%);
  background-size: calc(2*var(--s)) calc(2*var(--s));
}

body {

  max-width: 100%;
}

:root {
  --heading-font: "Josefin Sans", sans-serif;
  --text-font: "Montserrat", sans-serif;
  --dark-gray: #333333;
  --accent-red: #52131E;
  --border-light: #f2f0e0;
  --border-light: #e0decb;
  --white: #ffff;
  --sand: #D3BD94;
  --footer-text-color: rgba(255, 255, 255, 0.8);
  --bg-white: #ffffff;
  --border-light: #eeeeee;
}


/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 50px;
  isolation: isolate;
}

.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  z-index: -1;
}


/* Logo */
.nav-logo img {
  height: 50px;
  transform: scale(1.5);
  /* Makes image 1.5x bigger */
  transform-origin: center;
}

/* Menu */
.nav-menu {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-menu li a {
  color: white;
  text-decoration: none;
  position: relative;
  font-size: 16px;
  transition: 0.3s;
}

/* Hover underline */
.nav-menu li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #52131E;
  transform: translateX(-50%);
  transition: 0.3s;
}

.nav-menu li a:hover {
  color: #52131E;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  width: 100%;
}

/* Right Button */
.nav-btn button {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.nav-btn button:hover {
  background: #52131E;
  color: var(--white);
}

/* Dropdown Menu */
.nav-menu .dropdown {
  position: relative;
}

.nav-menu .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-menu .dropdown-toggle i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.nav-menu .dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-menu .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 15px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  min-width: 180px;
  border-radius: 8px;
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.nav-menu .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 10px;
}

.nav-menu .dropdown-menu li {
  padding: 0;
}

.nav-menu .dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: white;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.nav-menu .dropdown-menu li a:hover {
  background: rgba(82, 19, 30, 0.8);
  color: white;
  padding-left: 25px;
}

.nav-menu .dropdown-menu li a::after {
  display: none;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }


  .nav-menu {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    height: 750px;

    /* --- Glassy Blur Effect --- */
    background: rgba(80, 80, 80, 0.46);
    /* Light transparent base */
    backdrop-filter: blur(15px);
    /* This creates the glass effect */
    -webkit-backdrop-filter: blur(15px);
    /* Safari support */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);

    /* --- Initial Hidden State for Animation --- */
    display: flex;
    /* Always flex, but hidden via opacity/transform */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    /* Starts slightly higher */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* Smooth "ease" curve */
    pointer-events: none;
    /* Prevents clicking links when menu is hidden */
  }

  /* --- Active State with Smooth Entrance --- */
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    /* Slides down to original position */
    pointer-events: auto;
  }

  .nav-menu li {
    padding: 20px 0;
    width: 100%;
    text-align: center;
    /* Optional: Fade in individual items slightly slower */
    opacity: 0;
    transform: translateY(10px);
    transition: 0.4s ease;
    transition-delay: 0.1s;
  }

  .nav-menu.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-btn {
    display: none;
    /* Ensure button is visible on mobile */
    cursor: pointer;
  }

  /* Mobile Dropdown Styles */
  .nav-menu .dropdown {
    position: relative;
    width: 100%;
  }

  .nav-menu .dropdown-toggle {
    justify-content: center;
  }

  .nav-menu .dropdown-menu {
    position: static;
    transform: none;
    margin-top: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 0;
  }

  .nav-menu .dropdown.active .dropdown-menu {
    max-height: 200px;
    opacity: 1;
    visibility: visible;
    padding: 10px 0;
  }

  .nav-menu .dropdown-menu li {
    padding: 10px 0;
  }

  .nav-menu .dropdown-menu li a {
    padding: 10px 20px;
  }

  .nav-menu .dropdown-menu li a:hover {
    padding-left: 20px;
  }
}



.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  width: 100%;
}

/* Slides */
.slides {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slides.active {
  opacity: 1;
  z-index: 1;
}

/* Dark overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Text Content */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 2;
  padding: 0 20px;
}

.content h1 {
  font-size: 70px;
  font-weight: 900;
  letter-spacing: 1px;
}

.content h1 span {
  color: var(--sand);
}

.content p {
  font-size: 18px;
  margin-top: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .content h1 {
    font-size: 34px;
  }

  .content p {
    font-size: 15px;
  }
}





.experience-section {
  padding: 80px 20px;
  text-align: center;
  /* background-color: #f9f7eb;  */
}

/* Headings */
.main-heading {
  font-family: var(--heading-font);
  font-size: 32px;
  color: #000;
  margin-bottom: 10px;
}

.sub-heading-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.sub-heading {
  font-family: var(--heading-font);
  font-size: 18px;
  color: var(--dark-gray);
  white-space: nowrap;
}

.line {
  height: 1px;
  background: #e0decb;
  flex-grow: 1;
  max-width: 150px;
}

/* Features Grid */
.features-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  flex: 1;
  min-width: 200px;
  padding: 40px 20px;
  border-left: 1px solid var(--border-light);
  transition: all 0.4s ease;
  /* Smooth animation */
}

.feature-item:last-child {
  border-right: 1px solid var(--border-light);
}

/* Icon Styles */
.icon-circle {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.icon-circle i {
  color: var(--accent-red);
  font-size: 24px;
}

.feature-item p {
  font-family: var(--text-font);
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark-gray);
  font-weight: 500;
}

/* Hover Animation */
.feature-item:hover {
  background-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-5px);
}

.feature-item:hover .icon-circle {
  transform: scale(1.1);
  background-color: var(--accent-red);
}

.feature-item:hover .icon-circle i {
  color: #fff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
  }

  .feature-item {
    border-left: none;
    border-bottom: 1px solid var(--border-light);
  }

  .line {
    display: none;
    /* Simplifies mobile view */
  }
}

.luxury-card-section {
  padding: 40px 20px;
  /* background-color: var(--bg-cream);  */
}

.card-container {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-light);
}

/* Banner Layout */
.banner-top {
  display: flex;
  min-height: 400px;
}

.banner-content {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.banner-image {
  flex: 1.2;
  background: url('https://images.unsplash.com/photo-1582268611958-ebfd161ef9cf?auto=format&fit=crop&w=800&q=80');
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Soft white fade from image to text */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(to right, #fff 0%, transparent 40%);
}

/* Typography & UI */
.badge {
  background: #fdf5e6;
  padding: 4px 12px;
  font-family: var(--text-font);
  font-size: 11px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.brand-logo img {
  height: 70px;
  margin-bottom: 5px;
  transform: scale(1.4);
}

.intro-title {
  font-family: var(--heading-font);
  font-size: 26px;
  color: #000;
  margin-bottom: 15px;
}

.intro-text {
  font-family: var(--text-font);
  color: var(--dark-gray);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Buttons */
.btn-primary {
  background: var(--accent-red);
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-family: var(--text-font);
  font-weight: 500;
  font-size: 14px;
  border-radius: 4px;
  transition: 0.3s ease;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Offers Section */
.offers-section {
  padding: 40px 50px;
}

.section-label {
  font-family: var(--heading-font);
  font-size: 20px;
  margin-bottom: 30px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.offer-item h4 {
  font-family: var(--heading-font);
  margin: 15px 0 5px;
  font-size: 16px;
}

.offer-item p {
  font-family: var(--text-font);
  font-size: 13px;
  color: var(--dark-gray);
  line-height: 1.4;
}

.icon-red {
  color: var(--accent-red);
  font-size: 28px;
}

/* Bottom Bar */
.bottom-bar {
  background: #f8fafb;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
}

.bottom-text {
  font-family: var(--heading-font);
  font-size: 20px;
  color: var(--dark-gray);
}

/* Mobile Responsive */
@media (max-width: 850px) {
  .banner-top {
    flex-direction: column;
  }

  .banner-image {
    min-height: 250px;
    order: -1;
  }

  .image-overlay {
    background: linear-gradient(to top, #fff 0%, transparent 40%);
  }

  .offers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bottom-bar {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.feedback-outer-wrapper {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  background-color: var(--bg-cream);
}

/* Boxed Container */
.feedback-boxed-container {
  max-width: 1100px;
  width: 100%;
  background: transparent;
  /* Changed from #ffffff */
  padding: 60px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible;
  /* Changed to visible so circles can be seen if they overlap */
  /* Border and shadow removed as requested */
}

/* Header Section */
.feedback-header {
  flex: 0 0 35%;
  z-index: 2;
  border-right: 1px solid var(--border-color);
  padding-right: 40px;
}

.feedback-header .title {
  font-family: var(--heading-font);
  font-size: 54px;
  line-height: 1.1;
  margin-bottom: 15px;
}

.feedback-header .subtitle {
  font-family: var(--text-font);
  color: var(--dark-gray);
  font-size: 15px;
  margin-bottom: 20px;
}

/* Testimonial Fader Centered */
.testimonial-fader {
  flex: 1;
  position: relative;
  height: 250px;
  /* Adjust height based on content */
  display: flex;
  align-items: center;
  /* Vertically centers the cards */
  justify-content: center;
  /* Horizontally centers the cards */
  padding-left: 40px;
}

.testimonial-card {
  position: absolute;
  width: 90%;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  /* Centers the text and user info */
  animation: fadeLoop 12s infinite;
  /* 4 items * 3s = 12s total */
}

/* Precise Staggered Delays for 4 items */
.item-1 {
  animation-delay: 0s;
}

.item-2 {
  animation-delay: 3s;
}

.item-3 {
  animation-delay: 6s;
}

.item-4 {
  animation-delay: 9s;
}

@keyframes fadeLoop {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }

  4% {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  25% {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  29% {
    opacity: 0;
    transform: translateY(-15px);
    pointer-events: none;
  }

  100% {
    opacity: 0;
  }
}

/* Text Styles */
.review-text {
  font-family: var(--text-font);
  font-size: 20px;
  line-height: 1.6;
  color: var(--dark-gray);
  margin-bottom: 25px;
  font-weight: 400;
  font-style: italic;
}

.user-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.stars {
  font-size: 14px;
  letter-spacing: 2px;
}

.username {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 18px;
  color: #333;
}

/* Decorative Ring */
.circle-decoration {
  position: absolute;
  top: 180px;
  left: -130px;
  /* Adjust this to move the set of circles left or right */
  transform: translateY(-50%);

  /* The main (outer) circle */
  width: 400px;
  height: 400px;
  border: 1px solid #e0decb;
  border-radius: 50%;
  z-index: -1;

  /* Using box-shadow to create two inner circles perfectly centered */
  /* shadow 1: middle circle | shadow 2: innermost circle */
  box-shadow:
    inset 0 0 0 40px transparent,
    /* The next two lines act as the inner 2 borders */
    0 0 0 -60px transparent,
    inset 0 0 0 1px #e0decb,
    0 0 0 0 transparent;
}

/* Alternative more robust way for the 3 circles using pseudo-elements */
.circle-decoration::before,
.circle-decoration::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid #e0decb;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* Middle Circle */
.circle-decoration::before {
  width: 300px;
  height: 300px;
}

/* Innermost Circle */
.circle-decoration::after {
  width: 200px;
  height: 200px;
}

/* Header border adjustment for transparent background */
.feedback-header {
  flex: 0 0 35%;
  z-index: 2;
  border-right: 1px solid rgba(224, 222, 203, 0.5);
  /* Made more subtle */
  padding-right: 40px;
}

/* Mobile Responsiveness */
@media (max-width: 850px) {
  .feedback-boxed-container {
    flex-direction: column;
    padding: 40px 20px;
  }

  .feedback-header {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 0 0 30px 0;
    margin-bottom: 30px;
    text-align: center;
  }

  .testimonial-fader {
    padding-left: 0;
    height: 300px;
  }

  .review-text {
    font-size: 18px;
    margin-top: 200px;
    margin-left: -150px;
    width: 300px;
  }
}



.collections-section {
  /* Updated padding as requested */
  padding: 80px 120px;
  background-color: var(--bg-cream);
}

.collections-header {
  margin-bottom: 40px;
}

.main-title {
  font-family: var(--heading-font);
  font-size: 32px;
  color: #000;
  margin: 0 0 10px 0;
}

.sub-title {
  font-family: var(--text-font);
  font-size: 16px;
  color: #555;
  margin: 0;
}

/* The Grid Container */
.collections-grid {
  display: grid;
  /* 4 columns for desktop */
  grid-template-columns: repeat(4, 1fr);
  /* Base height for each grid row */
  grid-auto-rows: 180px;
  gap: 15px;
  margin: 40px 0px;
}


.grid-item {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Masonry Height logic to match the image */
.tall {
  grid-row: span 2;
}

.tall-2 {
  grid-row: span 2;
}

.tall-3 {
  grid-row: span 2;
}

/* Event-friendly is often the tallest */


/* Overlay Styling */
.item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
}

.item-overlay h3 {
  font-family: var(--heading-font);
  font-size: 18px;
  margin: 0;
}

.badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 3px 8px;
  font-size: 10px;
  font-family: var(--text-font);
  border-radius: 4px;
  margin-bottom: 8px;
  width: fit-content;
}

.logo-text {
  font-family: var(--heading-font);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

/* Smooth Animation */
.grid-item:hover {
  transform: scale(1.02);
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
  .collections-section {
    padding: 60px 40px;
  }

  /* Reduce padding for smaller screens */
}

@media (max-width: 768px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on tablet */
  }
}

@media (max-width: 480px) {
  .collections-section {
    padding: 40px 20px;
  }

  .collections-grid {
    grid-template-columns: 1fr;
    /* 1 column on mobile */
    grid-auto-rows: 250px;
  }

  .tall,
  .tall-2,
  .tall-3 {
    grid-row: span 1;
  }

  /* Reset heights for mobile stack */
  .main-title {
    margin-top: 160px;
  }
}

.loyalty-banner {
  /* Replace with your actual dark villa image */
  background: url('image/loyel.png') no-repeat center center;
  background-size: cover;
  border-radius: 8px;
  margin: 40px 120px;
  /* Matching your previous section padding */
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

.loyalty-overlay {
  background: rgba(0, 0, 0, 0.7);
  /* Dark semi-transparent overlay */
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* Brand Typography */
.loyalty-brand {
  font-family: var(--heading-font);
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 24px;
}

.program-type {
  font-weight: 300;
  opacity: 0.8;
}

/* Content Typography */
.loyalty-title {
  font-family: var(--heading-font);
  color: var(--sand);
  font-size: 34px;
  margin-bottom: 15px;
}

.loyalty-text {
  font-family: var(--text-font);
  color: var(--white);
  font-size: 16px;
  line-height: 1.5;
  max-width: 500px;
  opacity: 0.9;
}

/* Button & Transitions */
.btn-know-more {
  display: inline-block;
  background-color: var(--accent-red);
  color: var(--white);
  padding: 15px 40px;
  text-decoration: none;
  font-family: var(--text-font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-know-more:hover {
  background-color: #a93226;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .loyalty-banner {
    margin: 40px 40px;
  }
}

@media (max-width: 768px) {
  .loyalty-overlay {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .loyalty-banner {
    margin: 20px 20px;
  }

  .loyalty-text {
    margin: 0 auto 20px;
  }

  .loyalty-title {
    font-size: 28px;
  }
}

/* ===== About Us Section ===== */
.about-section {
  padding: 80px 120px;
  background-color: var(--bg-cream);
  overflow: hidden;
}

.about-container {
  display: flex;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s forwards ease-out;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Left Content */
.about-content {
  flex: 1;
  position: relative;
}

.about-title {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.about-title-outline {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.1);
  text-stroke: 1px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  margin-top: 8px;
}

.about-text {
  font-family: var(--text-font);
  font-size: 15px;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-top: 30px;
  margin-bottom: 40px;
  text-align: justify;
  opacity: 0;
  animation: fadeIn 1s forwards ease-out 0.3s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Rotating Badge */
.rotating-badge {
  position: relative;
  width: 150px;
  height: 150px;
  opacity: 0;
  animation: fadeIn 1s forwards ease-out 0.6s;
}

.rotating-text {
  width: 100%;
  height: 100%;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.circle-text {
  font-family: var(--text-font);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  fill: var(--dark-gray);
  text-transform: uppercase;
}

.badge-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  color: var(--accent-red);
  font-weight: bold;
}

/* Right Image */
.about-image {
  flex: 1;
  opacity: 0;
  transform: scale(0.9);
  animation: zoomIn 1s forwards ease-out 0.4s;
}

@keyframes zoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.about-image img {
  width: 100%;
  height: 700px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.02);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .about-section {
    padding: 60px 40px;
  }

  .about-container {
    flex-direction: column;
    gap: 50px;
  }

  .about-image {
    order: -1;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 40px 20px;
  }

  .about-title,
  .about-title-outline {
    font-size: 36px;
  }

  .about-text {
    font-size: 14px;
    text-align: left;
  }

  .rotating-badge {
    display: none;
  }

  .circle-text {
    font-size: 15px;
  }

  .badge-arrow {
    font-size: 24px;
  }
}


.contact-section {
  padding: 80px 120px;
  background-color: var(--bg-cream);
  overflow: hidden;
}

.contact-flex-container {
  display: flex;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 40px auto;
}

/* --- Collage Gallery Styles --- */
.collage-gallery {
  flex: 1;
  position: relative;
  height: 600px;
}

.collage-bg-block {
  position: absolute;
  top: 15%;
  left: 20%;
  width: 50%;
  height: 70%;
  background-color: #433e3e;
  /* cite: 14 */
  z-index: 1;
}

.scroll-zoom {
  position: absolute;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
  opacity: 0;
  transform: scale(0.8);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-zoom.visible {
  opacity: 1;
  transform: scale(1);
}

.img-left {
  top: 0%;
  left: 200px;
  width: 65%;
  height: 350px;
}

.img-right {
  top: 20%;
  width: 65%;
  height: 350px;
  right: 200px;
}

.img-bottom {
  bottom: 25px;
  top: 296px;
  left: 40%;
  width: 65%;
  height: 350px;
  z-index: 4;
}

/* --- Form Styles --- */
.form-wrapper {
  flex: 1;
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s forwards ease-out;
  /* cite: 13 */
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.request-form {
  background-color: var(--accent-red);
  /* cite: 13 */
  padding: 40px;
  border-radius: 8px;
  color: white;
  font-family: var(--text-font);
}

.form-title {
  font-family: var(--heading-font);
  font-size: 28px;
  margin-bottom: 25px;
}

.form-row {
  margin-bottom: 15px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

label {
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.8);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 4px;
}

/* Desktop Sidebar Booking Form Fix */
.booking-form .contact-inputs input,
.booking-form .date-inputs input {
  color: #333 !important;
  background-color: #fff !important;
  border: 1px solid #ddd;
}

.booking-form .contact-inputs input::placeholder,
.booking-form .date-inputs input::placeholder {
  color: #999;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: white;
  color: var(--accent-red);
  border: none;
  font-weight: 600;
  margin-top: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #f2f2f2;
  transform: translateY(-2px);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
  .contact-section {
    padding: 40px 10px;
  }

  .contact-flex-container {
    flex-direction: column;
  }

  .collage-gallery {
    display: none;
  }

  .form-wrapper {
    width: 100%;
    order: 1;
  }
}

.main-footer {
  background-color: var(--accent-red);
  padding-top: 80px;
  color: white;
  overflow: hidden;
}

.footer-container {
  padding: 0 120px;
  max-width: 1400px;
  margin: 0 auto;
}

/* 4 Column Grid Logic */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  /* Wider ends for logo and contact */
  gap: 40px;
  padding-bottom: 60px;
}

.footer-col h3 {
  font-family: var(--heading-font);
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

/* Decorative line under headings */
.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
}

/* About Section */
.footer-logo img {
  height: 85px;
  margin-bottom: 20px;
  transform: scale(1.3);
}

.footer-desc {
  font-family: var(--text-font);
  font-size: 14px;
  line-height: 1.8;
  color: var(--footer-text-color);
}

/* Menu Links */
.footer-col ul {
  list-style: none;
  padding: 0;
  line-height: 23px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  text-decoration: none;
  font-family: var(--text-font);
  font-size: 14px;
  color: var(--footer-text-color);
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: white;
  padding-left: 8px;
  /* Smooth hover move */
}

/* Contact & Socials */
.contact-info p {
  font-family: var(--text-font);
  font-size: 14px;
  margin-bottom: 15px;
  display: flex;
  gap: 12px;
  color: var(--footer-text-color);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-links a {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.social-links a:hover {
  background: white;
  color: var(--accent-red);
  transform: translateY(-3px);
}

/* Large Bottom Text Section */
.footer-bottom-text {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  /* Removed padding to let text touch the bottom */
  padding: 0;
  text-align: center;
  overflow: hidden;
  /* Prevents unwanted scrollbars */
  line-height: 0.8;
  /* Pulls the text block tighter */
}

.scrolling-text {
  font-family: var(--heading-font);
  font-size: 12vw;
  /* margin-bottom: 0 ensures it sits on the floor */
  margin: 0;
  color: rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 10px;
  font-weight: 900;

  /* This pushes the actual letters to the bottom edge */
  display: block;
  transform: translateY(15%);
  /* Adjust this % if you want it even lower */
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .footer-container {
    padding: 0 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Switch to 2x2 grid */
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Stack vertically */
  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-info p,
  .social-links {
    justify-content: center;
  }

  .footer-bottom-text {
    padding: 30px 0;
  }

  .scrolling-text {
    font-size: 14vw;
    letter-spacing: 2px;
  }
}

.booking-search-section {
  position: relative;
  z-index: 10;
  margin-top: -60px;
  /* Adjust to overlap your hero banner */
  padding: 0 120px;
}

.booking-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Tab Styles */
.booking-tabs {
  display: flex;
  gap: 2px;
}

.tab-btn {
  padding: 12px 30px;
  border: none;
  font-family: var(--heading-font);
  cursor: pointer;
  background: var(--accent-red);
  color: #fff;
  border-radius: 10px 10px 0 0;
  transition: 0.3s;
}

.tab-btn.active {
  background: var(--bg-white);
  color: #000;
}

/* Search Bar Container */
.search-bar {
  background: var(--bg-white);
  display: flex;
  align-items: center;
  padding: 20px 30px;
  border-radius: 0 15px 15px 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.search-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 20px;
  border-right: 1px solid var(--border-light);
  position: relative;
}

.search-item:nth-last-child(2) {
  border-right: none;
}

.icon-red {
  color: var(--accent-red);
  font-size: 24px;
}

.search-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  cursor: pointer;
}

.search-text label {
  font-family: var(--text-font);
  font-size: 12px;
  color: #888;
  margin-bottom: 5px;
}

.search-text input,
.search-text span {
  border: none;
  font-family: var(--text-font);
  font-weight: 600;
  font-size: 15px;
  color: #333;
  outline: none;
  background: transparent;
}

/* Dropdown Menu Styles */
.counter-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 20px;
  width: 250px;
  display: none;
  z-index: 20;
}

.counter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.controls button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--accent-red);
  background: transparent;
  color: var(--accent-red);
  border-radius: 50%;
  cursor: pointer;
}

/* Button Style */
.search-btn {
  background: var(--accent-red);
  color: white;
  border: none;
  padding: 15px 45px;
  border-radius: 8px;
  font-family: var(--text-font);
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(163, 51, 51, 0.3);
}

/* Mobile View */
@media (max-width: 1024px) {
  .booking-search-section {
    padding: 0 20px;
    margin-top: 0;
  }

  .search-bar {
    flex-direction: column;
    gap: 20px;
    border-radius: 15px;
  }

  .search-item {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding: 15px 0;
    width: 100%;
  }

  .search-btn {
    width: 100%;
  }
}

/* ===== Sticky Image Section ===== */
.sticky-image-section {
  padding: 80px 120px;
  background-color: var(--bg-cream);
  min-height: 100vh;
}

.sticky-container {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s forwards ease-out;
}

/* Left Image - Sticky */
.sticky-image-wrapper {
  flex: 0 0 45%;
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sticky-img {
  width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Right Content - Scrollable */
.scrolling-content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-block {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* First content block visible by default */
.content-block:first-child {
  opacity: 1;
}

.content-block.active {
  opacity: 1;
}

.content-block h2 {
  font-family: var(--heading-font);
  font-size: 54px;
  color: #000;
  margin-bottom: 30px;
  position: relative;
}

.content-block h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background: var(--accent-red);
}

.content-block p {
  font-family: var(--text-font);
  font-size: 16px;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: 20px;
  text-align: justify;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .sticky-image-section {
    padding: 60px 40px;
    min-height: auto;
  }

  .sticky-container {
    flex-direction: column;
    gap: 40px;
  }

  .sticky-image-wrapper {
    position: relative;
    top: 0;
    flex: 1;
    width: 100%;
  }

  .sticky-img {
    height: 400px;
    width: 100%;
  }

  .scrolling-content-wrapper {
    gap: 50px;
    padding: 0;
  }

  .content-block {
    min-height: auto;
    padding: 30px 0;
    opacity: 1;
  }

  .content-block h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .sticky-image-section {
    padding: 40px 20px;
  }

  .sticky-img {
    height: 300px;
  }

  .scrolling-content-wrapper {
    gap: 40px;
  }

  .content-block {
    padding: 20px 0;
  }

  .content-block h2 {
    font-size: 28px;
  }

  .content-block p {
    font-size: 14px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .sticky-image-section {
    padding: 30px 15px;
  }

  .sticky-img {
    height: 250px;
  }

  .content-block h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .content-block p {
    font-size: 13px;
    margin-bottom: 15px;
  }
}

/* ===== Reverse Sticky Section - Images on Left, Content on Right ===== */
.reverse-sticky-section {
  padding: 80px 120px;
  background-color: var(--bg-cream);
  min-height: 100vh;
}

.reverse-sticky-container {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s forwards ease-out;
}

/* Left Images - Scrollable */
.scrolling-images-wrapper {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.image-block {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* First image starts from top */
.image-block:first-child {
  align-items: flex-start;
  padding-top: 0;
}

.scroll-image {
  width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* First image visible on load with reveal animation */
.image-block:first-child .scroll-image {
  opacity: 1;
  transform: scale(1);
  animation: revealImage 1.2s ease-out forwards;
}

@keyframes revealImage {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.image-block.active .scroll-image {
  opacity: 1;
  transform: scale(1);
}

/* Right Content - Sticky */
.sticky-content-wrapper {
  flex: 1;
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
  height: fit-content;
  display: flex;
  align-items: center;
}

.sticky-content-inner {
  width: 100%;
}

.sticky-content-inner h2 {
  font-family: var(--heading-font);
  font-size: 54px;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.2;
  position: relative;
}

.sticky-content-inner h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background: var(--accent-red);
}

.sticky-content-inner p {
  font-family: var(--text-font);
  font-size: 16px;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: 20px;
  text-align: justify;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .reverse-sticky-section {
    padding: 60px 40px;
    min-height: auto;
  }

  .reverse-sticky-container {
    flex-direction: column;
    gap: 40px;
  }

  .scrolling-images-wrapper {
    flex: 1;
    gap: 30px;
  }

  .image-block {
    min-height: auto;
  }

  .image-block:first-child {
    align-items: flex-start;
  }

  .scroll-image {
    height: 400px;
    opacity: 1;
    transform: scale(1);
  }

  .image-block:first-child .scroll-image {
    animation: revealImageMobile 1s ease-out forwards;
  }

  @keyframes revealImageMobile {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .sticky-content-wrapper {
    position: relative;
    top: 0;
    transform: none;
  }

  .sticky-content-inner h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .reverse-sticky-section {
    padding: 40px 20px;
  }

  .scrolling-images-wrapper {
    gap: 20px;
  }

  .scroll-image {
    height: 300px;
  }

  .sticky-content-inner h2 {
    font-size: 28px;
  }

  .sticky-content-inner p {
    font-size: 14px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .reverse-sticky-section {
    padding: 30px 15px;
  }

  .scroll-image {
    height: 250px;
  }

  .sticky-content-inner h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .sticky-content-inner p {
    font-size: 13px;
    margin-bottom: 15px;
  }
}

/* New Testimonial Section with Images */
.testimonial-section {
  padding: 80px 20px;
}

/* Testimonial Container - Masonry Layout */
.testimonial-container {
  max-width: 1200px;
  margin: 0 auto;
  column-count: 3;
  column-gap: 20px;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 60px;
  column-span: all;
}

.testimonial-header .main-heading {
  font-family: var(--heading-font);
  font-size: 42px;
  color: #000;
  margin-bottom: 15px;
}

.testimonial-header .sub-text {
  font-family: var(--text-font);
  font-size: 16px;
  color: var(--dark-gray);
}

/* Testimonial Row - No longer needed for layout but keep for animation */
.testimonial-row {
  display: contents;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-row.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* Testimonial Box */
.testimonial-box {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  break-inside: avoid;
  margin-bottom: 30px;
  display: inline-block;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
}

.testimonial-box.reveal {
  animation: revealBox 0.6s ease forwards;
}

/* Staggered animation delays for each column */
.testimonial-box:nth-child(3n+1).reveal {
  animation-delay: 0s;
}

.testimonial-box:nth-child(3n+2).reveal {
  animation-delay: 0.2s;
}

.testimonial-box:nth-child(3n+3).reveal {
  animation-delay: 0.4s;
}

@keyframes revealBox {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Quote Icon */
.quote-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.quote-icon i {
  color: #fff;
  font-size: 20px;
}

/* Testimonial Text */
.testimonial-text {
  font-family: var(--text-font);
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark-gray);
  margin-bottom: 25px;
  font-style: italic;
}

/* Author Section */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-red);
}

.author-info h4 {
  font-family: var(--heading-font);
  font-size: 16px;
  color: #000;
  margin: 0 0 3px 0;
}

.author-info p {
  font-family: var(--text-font);
  font-size: 13px;
  color: #666;
  margin: 0;
}

.author-info .location {
  font-size: 12px;
  color: #999;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .testimonial-container {
    column-count: 1;
  }

  .testimonial-header .main-heading {
    font-size: 32px;
  }

  .testimonial-box {
    padding: 25px;
  }
}

@media (max-width: 600px) {
  .testimonial-section {
    padding: 60px 15px;
  }

  .testimonial-header .main-heading {
    font-size: 28px;
  }

  .testimonial-text {
    font-size: 14px;
  }
}








/* Additional mobile fixes for very small screens */
@media (max-width: 400px) {
  .modal-content {
    max-height: 95vh;
    border-radius: 16px 16px 0 0;
  }

  .modal-header {
    padding: 15px;
  }

  .modal-header h3 {
    font-size: 18px;
  }

  .modal-body {
    padding: 15px;
  }

  .modal-price-amount {
    font-size: 24px;
  }

  .modal-price-symbol {
    font-size: 16px;
  }

  .modal-price-period {
    font-size: 10px;
  }

  .modal-date-inputs {
    gap: 10px;
  }

  .modal-date-input input {
    padding: 10px 10px 10px 35px;
    font-size: 13px;
  }

  .modal-date-input i {
    left: 10px;
    font-size: 13px;
  }

  .modal-guest-display {
    padding: 10px;
    font-size: 13px;
  }

  .modal-guest-dropdown-menu {
    padding: 12px;
  }

  .modal-guest-counter-row {
    padding: 12px 0;
  }

  .modal-label-title {
    font-size: 13px;
  }

  .modal-label-subtitle {
    font-size: 11px;
  }

  .modal-counter-btn {
    width: 30px;
    height: 30px;
  }

  .modal-counter-controls {
    gap: 12px;
  }

  .modal-submit-btn {
    padding: 14px;
    font-size: 15px;
  }

  .modal-exclusive-offers {
    padding-top: 15px;
    margin-top: 15px;
  }

  .modal-exclusive-offers h4 {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .modal-coupon-input {
    gap: 8px;
  }

  .modal-coupon-input input {
    padding: 9px 10px;
    font-size: 13px;
  }

  .modal-coupon-input button {
    padding: 9px 16px;
    font-size: 13px;
  }
}

/* Fix for horizontal overflow */
@media (max-width: 768px) {
  .modal-content {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .modal-body {
    width: 100%;
    box-sizing: border-box;
  }

  .modal-booking-form {
    width: 100%;
    box-sizing: border-box;
  }

  .modal-date-inputs {
    width: 100%;
    box-sizing: border-box;
  }

  .modal-input-group {
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
  }

  .modal-date-input {
    width: 100%;
    box-sizing: border-box;
  }

  .modal-date-input input {
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
  }

  .modal-guest-input-dropdown {
    width: 100%;
    box-sizing: border-box;
  }

  .modal-guest-display {
    width: 100%;
    box-sizing: border-box;
  }

  .modal-price-display {
    flex-wrap: wrap;
  }
}

/* Image Modal / Lightbox */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  animation: fadeIn 0.3s ease;
}

.image-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-content {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  animation: zoomIn 0.3s ease;
  border-radius: 8px;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #fff;
  font-size: 45px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10000;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  font-size: 30px;
  padding: 20px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  z-index: 10000;
}

.modal-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.modal-prev {
  left: 30px;
}

.modal-next {
  right: 30px;
}

.modal-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-family: var(--text-font);
  font-size: 16px;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 15px 30px;
  border-radius: 30px;
  max-width: 80%;
}

@media (max-width: 768px) {
  .modal-close {
    top: 15px;
    right: 15px;
    font-size: 35px;
    width: 40px;
    height: 40px;
  }

  .modal-nav {
    font-size: 24px;
    padding: 15px 12px;
  }

  .modal-prev {
    left: 15px;
  }

  .modal-next {
    right: 15px;
  }

  .modal-content {
    max-width: 95%;
    max-height: 80vh;
  }

  .modal-caption {
    bottom: 20px;
    font-size: 14px;
    padding: 12px 20px;
    max-width: 90%;
  }
}

/* Video Section */
.video-section {
  padding: 80px 20px;
  /* background: #fff; */
}

.video-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.video-header {
  text-align: center;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(30px);
  animation: revealHeader 0.8s ease forwards;
}

.video-title {
  font-family: var(--heading-font);
  font-size: 42px;
  font-weight: 600;
  color: #000;
  margin: 0 0 15px 0;
}

.video-subtitle {
  font-family: var(--text-font);
  font-size: 16px;
  color: #666;
  margin: 0;
}

.video-showcase {
  opacity: 0;
  transform: translateY(40px);
  animation: revealItem 0.8s ease 0.3s forwards;
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

/* Play Button with Wave Effect */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 10;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: var(--accent-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.play-icon i {
  color: #fff;
  font-size: 36px;
  margin-left: 6px;
}

.video-play-btn:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.1);
  background: #c41e3a;
}

/* Wave Circles */
.wave-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 2px solid var(--accent-red);
  border-radius: 50%;
  opacity: 0;
  animation: wave 2s ease-out infinite;
}

.wave-1 {
  animation-delay: 0s;
}

.wave-2 {
  animation-delay: 0.6s;
}

.wave-3 {
  animation-delay: 1.2s;
}

@keyframes wave {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
}

.video-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  animation: zoomIn 0.3s ease;
}

.video-modal-content video,
.video-modal-content iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
}

.video-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: #fff;
  font-size: 45px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.video-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

/* Video Section Mobile Responsive */
@media (max-width: 1024px) {
  .video-container {
    padding: 0 40px;
  }

  .video-thumbnail {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .video-section {
    padding: 60px 20px;
  }

  .video-container {
    padding: 0 30px;
  }

  .video-title {
    font-size: 32px;
  }

  .video-subtitle {
    font-size: 14px;
  }

  .video-thumbnail {
    height: 400px;
  }

  .video-play-btn {
    width: 80px;
    height: 80px;
  }

  .play-icon {
    width: 80px;
    height: 80px;
  }

  .play-icon i {
    font-size: 28px;
  }

  .wave-circle {
    width: 80px;
    height: 80px;
  }

  .video-close {
    top: -45px;
    font-size: 35px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .video-section {
    padding: 120px 15px;
  }

  .video-container {
    padding: 0 20px;
  }

  .video-title {
    font-size: 28px;
  }

  .video-header {
    margin-bottom: 35px;
  }

  .video-thumbnail {
    height: 300px;
    border-radius: 12px;
  }

  .video-play-btn {
    width: 70px;
    height: 70px;
  }

  .play-icon {
    width: 70px;
    height: 70px;
  }

  .play-icon i {
    font-size: 24px;
  }

  .wave-circle {
    width: 70px;
    height: 70px;
  }

  .video-modal-content {
    width: 95%;
  }

  .video-close {
    top: -40px;
    right: 0;
  }
}

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  /* Offset for fixed header */
}

/* Villa Details Section */
.villa-details-section {
  /* background: #fff; */
  padding: 0 0 60px 0;
}

.villa-details-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 60px;
  box-sizing: border-box;
}

/* Navigation Tabs */
.villa-tabs {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.villa-tabs::-webkit-scrollbar {
  display: none;
}

.tab-link {
  font-family: var(--text-font);
  font-size: 14px;
  color: #666;
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 15px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.tab-link:hover {
  color: var(--accent-red);
}

.tab-link.active {
  color: #000;
  font-weight: 600;
  border-bottom-color: var(--accent-red);
}

/* Content Wrapper */
.villa-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  margin-top: 40px;
}

/* Main Content */
.villa-main-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 860px;
}

/* Villa Header */
.villa-info-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.villa-title {
  font-family: var(--heading-font);
  font-size: 32px;
  color: #000;
  margin: 0 0 8px 0;
}

.villa-location-text {
  font-family: var(--text-font);
  font-size: 15px;
  color: #666;
  margin: 0;
}

.map-link {
  color: var(--accent-red);
  text-decoration: underline;
  margin-left: 5px;
}

/* Rating and Reviews */
.villa-rating-reviews {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: right;
}

.rating-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rating-number {
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 600;
  color: #000;
}

.stars-display {
  font-size: 14px;
  color: #ffc107;
}

.reviews-count {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-number {
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 600;
  color: #000;
}

.review-label {
  font-family: var(--text-font);
  font-size: 13px;
  color: #666;
}

/* Villa Capacity */
.villa-capacity-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--text-font);
  font-size: 15px;
  color: #333;
}

.separator {
  color: #999;
}

/* Amenities Badges */
.villa-amenities-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.amenity-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #f5f5f5;
  border-radius: 6px;
  font-family: var(--text-font);
  font-size: 14px;
  color: #333;
}

.amenity-badge i {
  color: var(--accent-red);
  font-size: 16px;
}

/* Check-in Info */
.checkin-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  font-family: var(--text-font);
  font-size: 14px;
  color: #333;
}

.checkin-info i {
  color: #666;
  font-size: 16px;
}

/* Villa Description */
.villa-description {
  font-family: var(--text-font);
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.read-more-link {
  color: var(--accent-red);
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin-top: 10px;
}

.read-more-link:hover {
  text-decoration: underline;
}

.more-description {
  margin-top: 15px;
}

/* Booking Sidebar */
.booking-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
  max-height: calc(100vh - 140px);

}

.booking-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
}

/* Price Header */
.price-header {
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 20px;
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 8px;
}

.price-symbol {
  font-family: var(--heading-font);
  font-size: 20px;
  color: #000;
}

.price-amount {
  font-family: var(--heading-font);
  font-size: 32px;
  font-weight: 600;
  color: #000;
}

.price-period {
  font-family: var(--text-font);
  font-size: 12px;
  color: #666;
  margin-left: 5px;
}

.total-price {
  font-family: var(--text-font);
  font-size: 14px;
  color: #333;
  margin: 0;
}

.total-price span {
  font-weight: 600;
}

.total-price i {
  color: #999;
  font-size: 12px;
  margin-left: 5px;
}

/* Booking Form */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.date-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group label {
  font-family: var(--text-font);
  font-size: 13px;
  color: #666;
}

.input-group input:not([type="date"]) {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: var(--text-font);
  font-size: 14px;
  color: #333;
}

.input-group input:focus {
  outline: none;
  border-color: var(--accent-red);
}

.contact-inputs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.date-input {
  position: relative;
  display: flex;
  align-items: center;
}

.date-input i {
  position: absolute;
  left: 12px;
  color: #999;
  font-size: 14px;
}

.date-input input {
  width: 100%;
  padding: 12px 12px 12px 38px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: var(--text-font);
  font-size: 14px;
  color: #333;
  cursor: pointer;
  background: #fff;
}

.date-input input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.date-input input[type="date"]:focus {
  outline: none;
  border-color: var(--accent-red);
}

.date-input input[type="date"]::-webkit-datetime-edit-text,
.date-input input[type="date"]::-webkit-datetime-edit-month-field,
.date-input input[type="date"]::-webkit-datetime-edit-day-field,
.date-input input[type="date"]::-webkit-datetime-edit-year-field {
  color: #333;
}

.date-input input[type="date"]:invalid {
  color: #999;
}

.date-input input::placeholder {
  color: #999;
  font-size: 14px;
}

.date-input input[type="text"] {
  color: #999;
}

.check-label {
  font-family: var(--text-font);
  font-size: 12px;
  color: #999;
}

/* Guest Input Dropdown */
.guest-input-dropdown {
  position: relative;
}

.guest-input-dropdown label {
  font-family: var(--text-font);
  font-size: 13px;
  color: #666;
  display: block;
  margin-bottom: 8px;
}

.guest-display {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: var(--text-font);
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.guest-display:hover {
  border-color: var(--accent-red);
}

.guest-display i:first-child {
  color: #999;
  font-size: 14px;
}

.guest-display span {
  flex: 1;
}

.dropdown-arrow {
  color: #666;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.guest-display.active .dropdown-arrow {
  transform: rotate(180deg);
}

/* Guest Dropdown Menu */
.guest-dropdown-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.guest-dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Guest Counter Row */
.guest-counter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.guest-counter-row:last-of-type {
  border-bottom: none;
  margin-bottom: 15px;
}

.guest-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.label-title {
  font-family: var(--text-font);
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.label-subtitle {
  font-family: var(--text-font);
  font-size: 12px;
  color: #999;
}

/* Counter Controls */
.counter-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.counter-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
}

.counter-btn.minus {
  background: #e0e0e0;
  color: #666;
}

.counter-btn.minus:hover {
  background: #d0d0d0;
}

.counter-btn.minus:disabled {
  background: #f5f5f5;
  color: #ccc;
  cursor: not-allowed;
}

.counter-btn.plus {
  background: #333;
  color: #fff;
}

.counter-btn.plus:hover {
  background: #000;
}

.counter-value {
  font-family: var(--text-font);
  font-size: 16px;
  font-weight: 500;
  color: #333;
  min-width: 20px;
  text-align: center;
}

/* Done Button */
.done-btn {
  width: 100%;
  padding: 12px;
  background: #fff;
  border: 2px solid var(--accent-red);
  color: var(--accent-red);
  border-radius: 6px;
  font-family: var(--text-font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.done-btn:hover {
  background: var(--accent-red);
  color: #fff;
}

.select-dates-btn {
  width: 100%;
  padding: 14px;
  background: var(--accent-red);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: var(--text-font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.select-dates-btn:hover {
  background: #3d0e16;
  transform: translateY(-2px);
}

/* Exclusive Offers */
.exclusive-offers {
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
  margin-top: 20px;
}

.exclusive-offers h4 {
  font-family: var(--heading-font);
  font-size: 16px;
  color: #000;
  margin: 0 0 15px 0;
}

.coupon-input {
  display: flex;
  gap: 10px;
}

.coupon-input input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: var(--text-font);
  font-size: 14px;
  color: #333;
}

.coupon-input button {
  padding: 10px 20px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: var(--text-font);
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.coupon-input button:hover {
  background: #e0e0e0;
}

/* Contact Buttons */
.contact-buttons {
  display: flex;
  gap: 12px;
}

.contact-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--text-font);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.whatsapp-btn {
  background: #fff;
  color: #25D366;
  border-color: #25D366;
}

.whatsapp-btn:hover {
  background: #25D366;
  color: #fff;
}

.call-btn {
  background: #fff;
  color: var(--accent-red);
  border-color: var(--accent-red);
}

.call-btn:hover {
  background: var(--accent-red);
  color: #fff;
}

.contact-btn i {
  font-size: 16px;
}

/* Amenities Section */
.amenities-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
}

.amenities-header {
  margin-bottom: 30px;
}

.amenities-title {
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 600;
  color: #000;
  margin: 0 0 8px 0;
}

.amenities-subtitle {
  font-family: var(--text-font);
  font-size: 15px;
  color: #666;
  margin: 0 0 12px 0;
}

.amenities-preview {
  font-family: var(--text-font);
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin: 0;
  max-width: 800px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--text-font);
  font-size: 15px;
  color: #333;
}

.amenity-item i {
  color: var(--accent-red);
  font-size: 18px;
  width: 24px;
  flex-shrink: 0;
}

.amenity-item span {
  line-height: 1.4;
}

/* Bedroom Details Section */
.bedroom-details-section {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.section-title {
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 600;
  color: #000;
  margin: 0;
}

/* Scroll Navigation Buttons */
.scroll-navigation {
  display: flex;
  gap: 10px;
}

.scroll-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-btn:hover {
  background: var(--accent-red);
  color: #fff;
  border-color: var(--accent-red);
}

.scroll-btn i {
  font-size: 14px;
}

/* Bedroom Cards Container */
.bedroom-cards-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 20px;
  scrollbar-width: none;
  /* Firefox */
}

.bedroom-cards-container::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Edge */
}

/* Bedroom Card */
.bedroom-card {
  flex: 0 0 280px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.bedroom-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.bedroom-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.bedroom-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.bedroom-card:hover .bedroom-image img {
  transform: scale(1.1);
}

.bedroom-info {
  padding: 20px;
}

.bedroom-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.bedroom-type {
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin: 0;
}

.bedroom-floor {
  font-family: var(--text-font);
  font-size: 13px;
  color: #666;
  background: #f5f5f5;
  padding: 4px 10px;
  border-radius: 4px;
}

.bedroom-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bedroom-features li {
  font-family: var(--text-font);
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bedroom-features i {
  color: var(--accent-red);
  font-size: 12px;
}


/* Medium Screen Optimization (MacBook/Laptop) */
@media (max-width: 1280px) {
  .villa-details-container {
    max-width: 1100px;
    padding: 30px 30px;
    box-sizing: border-box;
  }

  .villa-content-wrapper {
    gap: 30px;
  }

  .villa-title {
    font-size: 28px;
  }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .villa-content-wrapper {
    grid-template-columns: 1fr;
  }

  .booking-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .villa-details-container {
    padding: 0 20px 0 20px;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .villa-main-content {
    max-width: 100%;
    overflow-x: hidden;
  }

  .villa-tabs {
    gap: 15px;
    padding: 15px 0;
    border-bottom: none;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .villa-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-link {
    font-size: 13px;
    padding-bottom: 10px;
    white-space: nowrap;
  }

  .villa-content-wrapper {
    margin-top: 20px;
  }

  .villa-info-header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .villa-title {
    font-size: 24px;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  .villa-location-text {
    font-size: 14px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .villa-rating-reviews {
    width: 100%;
    justify-content: space-between;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
  }

  .rating-box {
    align-items: flex-start;
  }

  .reviews-count {
    align-items: flex-end;
  }

  .villa-capacity-info {
    flex-wrap: wrap;
    font-size: 14px;
    gap: 8px;
    max-width: 100%;
    overflow-x: hidden;
  }

  .villa-amenities-badges {
    gap: 10px;
    flex-wrap: wrap;
    max-width: 100%;
  }

  .amenity-badge {
    font-size: 13px;
    padding: 8px 12px;
    white-space: nowrap;
  }

  .checkin-info {
    font-size: 13px;
    padding: 12px 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .villa-description {
    font-size: 14px;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  /* Amenities Section Mobile */
  .amenities-section {
    margin-top: 30px;
    padding-top: 25px;
  }

  .amenities-header {
    margin-bottom: 20px;
  }

  .amenities-title {
    font-size: 20px;
  }

  .amenities-subtitle {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .amenities-preview {
    font-size: 13px;
    line-height: 1.6;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .amenity-item {
    font-size: 14px;
    gap: 10px;
  }

  .amenity-item i {
    font-size: 16px;
    width: 20px;
  }

  /* Bedroom Section Mobile */
  .bedroom-details-section {
    margin-top: 30px;
    padding-top: 30px;
  }

  .section-header {
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 20px;
  }

  .scroll-btn {
    width: 36px;
    height: 36px;
  }

  .bedroom-card {
    flex: 0 0 260px;
  }

  .bedroom-image {
    height: 180px;
  }

  .bedroom-info {
    padding: 15px;
  }

  .bedroom-type {
    font-size: 16px;
  }

  .bedroom-floor {
    font-size: 12px;
  }

  .bedroom-features li {
    font-size: 13px;
  }

  /* Booking Sidebar Mobile */
  .booking-sidebar {
    position: static;
    margin-top: 30px;
  }

  .booking-card {
    padding: 20px;
  }

  .price-amount {
    font-size: 28px;
  }

  .date-inputs {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .guest-input-dropdown {
    margin-top: 5px;
  }

  .select-dates-btn {
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
  }

  .contact-buttons {
    flex-direction: row;
    gap: 10px;
  }

  .contact-btn {
    font-size: 13px;
    padding: 14px 10px;
  }
}

@media (max-width: 480px) {
  .villa-details-container {
    padding: 0 15px;
  }

  .villa-title {
    font-size: 22px;
  }

  .villa-tabs {
    gap: 12px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .tab-link {
    font-size: 12px;
  }

  .price-amount {
    font-size: 26px;
  }

  .amenity-badge {
    font-size: 12px;
    padding: 7px 10px;
  }

  .bedroom-card {
    flex: 0 0 240px;
  }

  .section-title {
    font-size: 18px;
  }

  .scroll-btn {
    width: 32px;
    height: 32px;
  }

  .scroll-btn i {
    font-size: 12px;
  }

  .contact-buttons {
    flex-direction: column;
  }

  .villa-rating-reviews {
    padding-left: 15px;
    padding-right: 15px;
  }
}


/* Client Reviews Section */
.reviews-scroll-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.reviews-track {
  display: flex;
  gap: 20px;
  animation: scrollReviews 30s linear infinite;
  width: fit-content;
}

.reviews-track:hover {
  animation-play-state: paused;
}

#reviews .bedroom-card {
  flex: 0 0 260px;
  min-height: 200px;
}

#reviews .bedroom-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

#reviews .review-text {
  font-family: var(--text-font);
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0;
  flex: 1;
  font-style: italic;
}

#reviews .bedroom-header {
  margin-bottom: 0;
}

@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  #reviews .bedroom-card {
    flex: 0 0 240px;
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  #reviews .bedroom-card {
    flex: 0 0 240px;
  }
}



/* Villa Map Section */
.villa-map-section {
  background: #f9f9f9;
  padding: 60px 0;
}

.map-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.map-header {
  text-align: center;
  margin-bottom: 40px;
}

.map-title {
  font-family: var(--heading-font);
  font-size: 36px;
  font-weight: 600;
  color: #000;
  margin: 0 0 10px 0;
}

.map-subtitle {
  font-family: var(--text-font);
  font-size: 16px;
  color: #666;
  margin: 0;
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
}

/* Mobile Responsive for Map Section */
@media (max-width: 768px) {
  .villa-map-section {
    padding: 40px 0;
  }

  .map-container {
    padding: 0 20px;
  }

  .map-title {
    font-size: 28px;
  }

  .map-subtitle {
    font-size: 14px;
  }

  .map-wrapper iframe {
    height: 300px;
  }
}

/* Villa Breadcrumb Section */
.villa-breadcrumb-section {
  /* background: #fff; */
  border-bottom: 1px solid #e0e0e0;
  padding: 15px 45px;
}

.breadcrumb-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--text-font);
  font-size: 14px;
}

.breadcrumb a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--accent-red);
}

.breadcrumb span {
  color: #999;
}

.breadcrumb .current {
  color: #000;
  font-weight: 500;
}

.share-villa-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #fff;
  border: 1px solid #333;
  border-radius: 8px;
  font-family: var(--text-font);
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.share-villa-btn:hover {
  background: #f5f5f5;
  border-color: #000;
}

.share-villa-btn i {
  font-size: 14px;
}

/* Villa Gallery Section */
.villa-gallery-section {
  /* background: #fff; */
  padding: 0;
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 60px;
}

.gallery-grid-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  height: 400px;
}

.gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: 12px 0 0 12px;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-main:hover img {
  transform: scale(1.05);
}

.gallery-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item:nth-child(2) {
  border-radius: 0 12px 0 0;
}

.gallery-item:nth-child(4) {
  border-radius: 0 0 12px 0;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* More Photos Overlay */
.gallery-more {
  cursor: pointer;
}

.more-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s ease;
}

.gallery-more:hover .more-overlay {
  background: rgba(0, 0, 0, 0.75);
}

.more-count {
  font-family: var(--heading-font);
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 5px;
}

.more-text {
  font-family: var(--text-font);
  font-size: 16px;
  font-weight: 500;
}

/* Gallery Dots Navigation */
.gallery-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 0;
  background: transparent;
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.gallery-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.gallery-dot.active {
  background: var(--accent-red);
  width: 8px;
  height: 8px;
  border-color: var(--accent-red);
}

.gallery-dot:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Responsive - 1280px */
@media (max-width: 1280px) {
  .gallery-container {
    max-width: 1100px;
    padding: 30px 30px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {

  /* Hide breadcrumb on mobile */
  .villa-breadcrumb-section {
    display: none;
  }

  .gallery-section {
    padding: 0;
    position: relative;
  }

  .gallery-container {
    padding: 0;
    overflow: hidden;
    max-width: 100%;
    position: relative;
  }

  .gallery-grid-1 {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    height: 270px;
  }

  .gallery-grid-1::-webkit-scrollbar {
    display: none;
  }

  .gallery-main,
  .gallery-item {
    flex: 0 0 100%;
    width: 100%;
    height: 280px;
    border-radius: 0;
    scroll-snap-align: start;
    position: relative;
  }

  .gallery-main {
    height: 280px;
  }

  .gallery-side {
    display: contents;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4) {
    border-radius: 0;
  }

  /* Show dots on mobile */
  .gallery-dots {
    display: flex;
  }

  /* Photo Count Overlay - positioned on last image */
  .gallery-item:last-child .more-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--text-font);
    font-size: 14px;
    font-weight: 500;
    z-index: 10;
  }

  .more-overlay .more-count,
  .more-overlay .more-text {
    display: inline;
    font-size: 14px;
    margin: 0;
  }

  .more-overlay .more-count {
    font-weight: 600;
  }
}

@media (max-width: 480px) {

  .gallery-main,
  .gallery-item {
    height: 260px;
  }

  .gallery-item:last-child .more-overlay {
    padding: 6px 12px;
    font-size: 13px;
    bottom: 12px;
    right: 12px;
  }

  .more-overlay .more-count,
  .more-overlay .more-text {
    font-size: 13px;
  }
}

/* Villa Listings Section */
.villa-listings-section {
  display: flex;
  gap: 30px;
  max-width: 1400px;
  margin: 60px auto;
  padding: 0 20px;
}

.villa-listings-section-1 {
  display: flex;
  gap: 30px;
  max-width: 1400px;
  margin: 60px auto;
  padding: 0 90px;
}

.listings-container {
  flex: 1;
}

.listings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.listings-title {
  font-family: var(--heading-font);
  font-size: 32px;
  color: #000;
  margin: 0 0 5px 0;
}

.properties-count {
  font-family: var(--text-font);
  font-size: 14px;
  color: #666;
  margin: 0;
}

.sort-dropdown {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--text-font);
  font-size: 14px;
}

.sort-dropdown i {
  color: var(--accent-red);
}

/* Villa Card */
.villa-card {
  display: flex;
  gap: 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
  transition: box-shadow 0.3s ease;
}

.villa-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Villa Image Slider */
.villa-image-slider {
  position: relative;
  width: 300px;
  height: 220px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.villa-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.villa-img.active {
  opacity: 1;
  pointer-events: auto;
}

.slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-dots .dot.active {
  background: #fff;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.slider-arrow:hover {
  background: #fff;
}

.slider-arrow.prev {
  left: 10px;
}

.slider-arrow.next {
  right: 10px;
}

.slider-arrow i {
  font-size: 14px;
  color: #333;
}

/* Villa Details */
.villa-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.villa-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.villa-name {
  font-family: var(--heading-font);
  font-size: 22px;
  color: #000;
  margin: 0 0 5px 0;
}

.villa-location {
  font-family: var(--text-font);
  font-size: 14px;
  color: #666;
  margin: 0;
}

.villa-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #fff3cd;
  padding: 5px 12px;
  border-radius: 20px;
}

.villa-rating i {
  color: #ffc107;
  font-size: 14px;
}

.villa-rating span {
  font-family: var(--text-font);
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

.villa-capacity {
  font-family: var(--text-font);
  font-size: 14px;
  color: #333;
  margin: 0;
}

.villa-amenities {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.amenity-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #f5f5f5;
  border-radius: 20px;
  font-family: var(--text-font);
  font-size: 13px;
  color: #555;
}

.amenity-tag i {
  font-size: 12px;
  color: var(--accent-red);
}

/* Villa Pricing */
.villa-pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  min-width: 200px;
}

.price-info {
  text-align: right;
}

.price-amount {
  font-family: var(--heading-font);
  font-size: 28px;
  color: #000;
  margin: 0 0 5px 0;
}

.price-label {
  font-family: var(--text-font);
  font-size: 12px;
  color: #666;
  margin: 0 0 3px 0;
}

.total-price {
  font-family: var(--text-font);
  font-size: 13px;
  color: #333;
  margin: 0;
}

.view-details-btn {
  padding: 12px 30px;
  background: #fff;
  border: 2px solid var(--accent-red);
  color: var(--accent-red);
  border-radius: 6px;
  font-family: var(--text-font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.view-details-btn:hover {
  background: var(--accent-red);
  color: #fff;
}

.view-details-btn i {
  font-size: 12px;
}

/* Sidebar */
.listings-sidebar {
  width: 320px;
  flex-shrink: 0;
}

.offers-widget,
.help-widget {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
}

.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.widget-header h3 {
  font-family: var(--heading-font);
  font-size: 18px;
  color: #000;
  margin: 0;
}

.view-all-link {
  font-family: var(--text-font);
  font-size: 13px;
  color: var(--accent-red);
  text-decoration: none;
  font-weight: 600;
}

.view-all-link:hover {
  text-decoration: underline;
}

/* Offer Card */
.offer-card {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: background 0.3s ease;
}

.offer-card:hover {
  background: #f0f0f0;
}

.offer-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.offer-icon.amex {
  background: #006fcf;
}

.offer-icon.stay {
  background: #ff9800;
}

.offer-icon.celebration {
  background: #4caf50;
}

.offer-icon i {
  font-size: 24px;
  color: #fff;
}

.offer-content h4 {
  font-family: var(--heading-font);
  font-size: 15px;
  color: #000;
  margin: 0 0 5px 0;
}

.offer-content p {
  font-family: var(--text-font);
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* Help Widget */
.help-widget h3 {
  font-family: var(--heading-font);
  font-size: 18px;
  color: #000;
  margin: 0 0 10px 0;
}

.help-widget>p {
  font-family: var(--text-font);
  font-size: 13px;
  color: #666;
  margin: 0 0 20px 0;
  line-height: 1.5;
}

.help-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.help-form input[type="text"],
.help-form input[type="tel"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: var(--text-font);
  font-size: 14px;
  color: var(--accent-red);
}

.phone-input-group {
  display: flex;
  gap: 10px;
}

.country-code {
  width: 120px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: var(--text-font);
  font-size: 14px;
  color: var(--accent-red);
}

.need-submit-btn {
  padding: 12px 30px;
  background: #fff;
  border: 2px solid var(--accent-red);
  color: var(--accent-red);
  border-radius: 6px;
  font-family: var(--text-font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.need-submit-btn:hover {
  background: var(--accent-red);
  color: #fff;
}

.guests-hosted {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
  font-family: var(--text-font);
  font-size: 13px;
  color: #666;
}

.guests-hosted i {
  color: var(--accent-red);
  font-size: 16px;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
  .villa-listings-section {
    flex-direction: column;
  }

  .villa-listings-section-1 {
    flex-direction: column;
    padding: 0 15px;
  }

  .listings-sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .villa-card {
    flex-direction: column;
  }

  .villa-image-slider {
    width: 100%;
    height: 250px;
  }

  .villa-pricing {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-width: auto;
  }

  .price-info {
    text-align: left;
  }

  .listings-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.preloader-logo {
  width: 200px;
  height: auto;
  animation: logoFadeIn 1s ease;
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loader Waves */
.loader-waves {
  position: relative;
  width: 80px;
  height: 80px;
}

.loader-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border: 3px solid var(--accent-red);
  border-radius: 50%;
  opacity: 0;
  animation: loaderWave 2s ease-out infinite;
}

.circle-1 {
  animation-delay: 0s;
}

.circle-2 {
  animation-delay: 0.6s;
}

.circle-3 {
  animation-delay: 1.2s;
}

@keyframes loaderWave {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .preloader-logo {
    width: 150px;
  }

  .loader-waves {
    width: 60px;
    height: 60px;
  }

  .loader-circle {
    width: 60px;
    height: 60px;
    border-width: 2px;
  }
}

@media (max-width: 480px) {
  .preloader-logo {
    width: 120px;
  }

  .preloader-content {
    gap: 30px;
  }

  .loader-waves {
    width: 50px;
    height: 50px;
  }

  .loader-circle {
    width: 50px;
    height: 50px;
  }
}


