/* Reset & Base */
html, body {
  scroll-behavior: smooth;
}

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

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  background-color: #fff;
  padding-top: 145px;
}

/* Wrapper for Parallax Footer Effect */
.main-content-wrapper {
  background-color: #fff;
  position: relative;
  z-index: 1;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
}

a {
  text-decoration: none;
  color: inherit;
}

/* section:not(.hero-sayaji):not(.breadcrumb-section) {
  padding-top: 3vw !important;
  padding-bottom: 3vw !important;
} */

.container {
  max-width: 100%;
  margin: 0;
  padding-left: 30px;
  padding-right: 40px;
  width: 100%;
}

/* Top Header */
.top-header-wrapper {
  background-color: #fcfcfc;
  border-bottom: 1px solid #eaeaea;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  transition: transform 0.3s ease;
}

body.scrolled .top-header-wrapper {
  transform: translateY(-100%);
}

.top-header {
  display: flex;
  justify-content: center;
  align-items: stretch;
  font-size: 15px;
  color: #666;
  font-family: "Poppins", sans-serif;
}

.top-header-left {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 12px 0;
  margin-left: 3vw;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
  /* text-transform: uppercase; */
  font-weight: 500;
  color: #3a2e2b;
}

.info-item i,
.info-item img {
  color: #3a2e2b; /* Green forest color */
  font-size: 14px;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.top-header-right {
  display: flex;
}

.donate-btn {
  display: none;
  background-color: #3a2e2b;
  color: #fff;
  padding: 0 30px;
  /* display: flex; */
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  transition: background-color 0.3s;
}

.donate-btn:hover {
  background-color: #7a6e65;
}

/* Main Navbar */
.main-navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 10px 0;
  position: fixed;
  top: 45px; /* Adjust based on top-header height */
  left: 0;
  width: 100%;
  z-index: 1000;
  font-family: "Poppins", sans-serif;
  transition:
    top 0.3s ease,
    box-shadow 0.3s ease;
}

body.scrolled .main-navbar {
  top: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 80px; /* Adjust based on logo proportions */
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}

.nav-menu li a {
  font-size: 15px;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}

.nav-menu li a i {
  font-size: 10px;
  color: #111;
  transition: color 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: #3a2e2b;
}

.nav-menu li a:hover i,
.nav-menu li a.active i {
  color: #3a2e2b;
}

/* Dropdown Menu */
.nav-menu li.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  z-index: 1000;
  list-style: none;
  border-radius: 4px;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #333;
  font-size: 14px;
  text-transform: capitalize;
  transition: background-color 0.3s, color 0.3s;
}

.dropdown-menu li a:hover {
  background-color: #f5ede6;
  color: #b49354;
}

.nav-menu li.dropdown:hover .dropdown-menu {
  display: block;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

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

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #f5f5f5;
  color: #333;
  transition: all 0.3s;
  font-size: 14px;
}

.social-icons a:hover {
  background-color: #3a2e2b;
  color: #fff;
}

/* Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}

.mobile-menu-icon {
  width: 24px;
  height: 24px;
}


/* Hero Section */
.hero-sayaji {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slides::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.hero-btn:hover {
  background: rgba(255, 255, 255, 0.5);
}

.hero-btn.prev-btn {
  left: 40px;
}
.hero-btn.next-btn {
  right: 40px;
}

/* Breadcrumb Section (CasaHotel Style) */
.breadcrumb-section {
  position: relative;
  width: 100%;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* margin-bottom: 50px; */
}

/* =========================================
   PAGE-SPECIFIC BREADCRUMB IMAGES
   Replace the URLs below with your own images!
========================================= */
.breadcrumb-about       { background-image: url("../assets/Images/hero/hero-1.png"); }
.breadcrumb-rooms       { background-image: url("../assets/Images/rooms/room-breadcrumb.png"); }
.breadcrumb-restaurant  { background-image: url("../assets/Images/hero/hero-3.png"); }
.breadcrumb-gallery     { background-image: url("../assets/Images/banquet/customize-event.webp"); }
.breadcrumb-banquets    { background-image: url("../assets/Images/banquet/customize-event.webp"); }
.breadcrumb-contact     { background-image: url("../assets/Images/hero/hero-2.png"); }
.breadcrumb-corporate   { background-image: url("..//assets/Images/services/birthday-event.png"); }
.breadcrumb-wedding     { background-image: url("../assets/Images/wedding//imgi_206_3173ebcae17b11eb8fff0242ac110002.jpg"); }
.breadcrumb-explore     { background-image: url("../assets/Images/explore-vadodara/sardar-sarovar-dam.webp"); }
.breadcrumb-dine-in     { background-image: url("../assets/Images/hero/hero-2.png"); }
.breadcrumb-amenities   { background-image: url("../assets/Images/hero/hero-3.png"); }

.breadcrumb-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay */
  z-index: 1;
}

.breadcrumb-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.breadcrumb-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.breadcrumb-path {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #f1f1f1;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.breadcrumb-path a {
  color: #d4c295;
  transition: color 0.3s;
}

.breadcrumb-path a:hover {
  color: #fff;
}

.breadcrumb-path span.sep {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.6);
}

/* Booking Widget */
.booking-widget {
  /* position: relative; */
  z-index: 10;
  /* display: flex; */
  display: none;
  align-items: center;
  background: rgba(60, 50, 45, 0.9); /* Dark brownish tone */
  backdrop-filter: blur(10px);
  border-radius: 40px;
  padding: 8px 10px 8px 30px;
  margin-bottom: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.widget-field {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  padding: 10px 20px;
}

.widget-field i {
  font-size: 16px;
  opacity: 0.8;
}

.widget-field .small-icon {
  font-size: 10px;
  margin-left: 5px;
}

.widget-divider {
  width: 1px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.2);
}

.widget-action {
  margin-left: 10px;
}

.btn-reserve {
  background-color: #5c4c43; /* Lighter brown/grey */
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-reserve:hover {
  background-color: #725f54;
}

/* Introduction Section */
.intro-section {
  background-color: #fcfbf7; /* Off-white background */
  background-image:
    url("../assets/Images/patterns/galleryPatternTopLeft.webp"),
    url("../assets/Images/patterns/galleryPatternRight.webp");
  background-size: 350px, 350px;
  background-position:
    top left,
    bottom right;
  background-repeat: no-repeat, no-repeat;
  padding: 3rem 40px;
  display: flex;
  justify-content: center;
  position: relative;
}

.intro-container {
  width: 100%;
  background-color: transparent;
  display: flex;
  align-items: stretch;
  box-shadow: none;
  overflow: hidden;
}

.intro-content {
  flex: 1;
  padding: 30px 30px 30px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro-heading {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.intro-divider-elegant {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 250px;
  margin: 0 0 20px 0;
}

.intro-divider-elegant .line {
  flex: 1;
  height: 1px;
  background-color: #d6caaa; /* Soft gold line */
}

.intro-divider-elegant .icon {
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-text {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 25px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.intro-text p {
  margin-bottom: 15px;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

.btn-read-more {
  display: inline-block;
  border: 1.5px solid #7a6e65;
  border-radius: 0 20px 0 20px;
  background-color: transparent;
  color: #7a6e65;
  padding: 12px 35px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.btn-read-more:hover {
  background-color: #7a6e65;
  color: #fff;
  border-color: #7a6e65;
  border-radius: 20px 0 20px 0;
}

.btn-view-menu {
  display: inline-block;
  border: 1.5px solid #7a6e65;
  border-radius: 0 20px 0 20px;
  background-color: transparent;
  color: #7a6e65;
  padding: 12px 35px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 25px;
  margin-bottom: 25px;
}

.btn-view-menu:hover {
  background-color: #7a6e65;
  color: #fff;
  border-color: #7a6e65;
  border-radius: 20px 0 20px 0;
}

.intro-image {
  flex: 1;
  min-height: 100%;
  display: flex;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Events Section */
.events-section {
  padding: 3rem 40px;
  background-color: #fcfbf7; /* matching theme off-white */
  background-image: url("../assets/Images/patterns/experienceLeftPattern.webp");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 300px;
}

.events-header {
  text-align: center;
  margin-bottom: 50px;
}

.events-heading {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.events-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}

.events-divider .line {
  flex: 1;
  height: 1px;
  background-color: #d6caaa;
}

.events-divider .icon {
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.event-card {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.event-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* .event-card:hover .event-img {
  transform: scale(1.05);
} */

.event-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.1) 60%
  );
  z-index: 1;
}

.event-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  color: #fff;
  width: 70%;
}

.event-title {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 10px;
}

.event-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #eee;
}

.event-actions {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.btn-event-action {
  border: 1.5px solid #ffffff;
  border-radius: 0px 20px 0 20px;
  background: transparent;
  color: #fff;
  padding: 12px 30px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-event-action:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
  border-radius: 20px 0 20px 0;
}

.link-factsheet {
  display: none;
  font-size: 14px;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s;
}

.link-factsheet:hover {
  color: #d6caaa;
}
/* Memories Section */
.memories-section {
  padding: 3rem 40px;
  background-color: #fffaf6;
  background-image: url("../assets/Images/patterns/introPattern.webp");
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: 350px;
  text-align: center;
  overflow: hidden;
}

.memories-carousel-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.memories-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 40px;
}

.memory-item {
  position: relative;
  display: flex;
  transition: all 0.5s ease;
}

.memory-item img {
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: opacity 0.5s;
}

.memory-item.center {
  flex-direction: column;
  width: 50%;
  z-index: 2;
}

.memory-item.center img {
  width: 100%;
  height: 400px;
}

.memory-label-bottom {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: #4a4036;
  letter-spacing: 2px;
  margin-top: 25px;
  text-transform: uppercase;
  font-weight: 500;
}

.memory-item.left,
.memory-item.right {
  width: 25%;
  align-items: center;
  opacity: 0.6;
}

.memory-item.left img,
.memory-item.right img {
  width: 100%;
  height: 280px;
}

.memory-label-vertical {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  color: #a39587;
  letter-spacing: 4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.memory-label-vertical.left-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-left: 20px;
}

.memory-label-vertical.right-label {
  writing-mode: vertical-rl;
  margin-right: 15px;
}

.footer-icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  filter: brightness(0) invert(1);
}

.memories-btn {
  background-color: #fff;
  border: 1px solid #ddd;
  color: #7a6e65;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
}

.memories-btn:hover {
  background-color: #7a6e65;
  color: #fff;
}

.memories-btn.prev-btn {
  left: 0;
}
.memories-btn.next-btn {
  right: 0;
}

/* Amenities Section */
.amenities-section {
  padding: 3rem 40px;
  background-color: #ffffff;
  background-image: url("../assets/Images/patterns/gold-line-pattern-removebg-preview.webp"), url("../assets/Images/patterns/gold-line-pattern-removebg-preview.webp");
  background-position: top left, top right;
  background-repeat: no-repeat, no-repeat;
  background-size: 350px, 350px;
  text-align: center;
}

.amenities-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.stay-amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.amenity-item-new {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.amenity-item-new img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(65%) sepia(51%) saturate(526%) hue-rotate(358deg) brightness(77%) contrast(75%);
}

.amenity-item-new span {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s;
}

.amenity-item:hover {
  transform: translateY(-5px);
}

.amenity-item img {
  width: 65px;
  height: 65px;
}

.amenity-item span {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

/* Gallery Section */
.gallery-section {
  padding: 3rem 40px;
  background-color: #fffaf6;
  background-image:
    url("../assets/Images/patterns/galleryPatternleft.webp"),
    url("../assets/Images/patterns/galleryPatternRight.webp");
  background-position:
    top left,
    bottom right;
  background-repeat: no-repeat, no-repeat;
  background-size: 250px, 300px;
  text-align: center;
  overflow: hidden;
}

.gallery-heading {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: #7a6e65;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  margin-top: 15px;
}

.gallery-divider {
  width: 80px;
  height: 1.5px;
  background-color: #e3a976;
  margin: 0 auto 20px auto;
}

.gallery-subheading {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: #555;
  font-style: italic;
  margin-bottom: 50px;
}

.gallery-carousel {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  flex: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.5s ease-in-out;
}

.gallery-item img.fade-out {
  opacity: 0.3; /* Fades out slightly before switching */
}

.gallery-item.center {
  flex: 1.3;
  height: 450px;
  z-index: 2;
}

.gallery-item.side {
  height: 320px;
}

.gallery-frame {
  position: absolute;
  top: -25px;
  bottom: -25px;
  left: 40px;
  right: 40px;
  border: 2px solid #e3a976;
  z-index: -1;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  color: #7a6e65;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 10;
  transition: all 0.3s ease;
}

.gallery-btn:hover {
  background-color: #7a6e65;
  color: #fff;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

/* Testimonial Section */
.testimonial-section {
  position: relative;
  padding: 6rem 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
}

.testimonial-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/Images/hero/hero-4.png");
  background-size: cover;
  background-position: center;
  filter: blur(4px) brightness(0.6);
  z-index: 1;
}

.testimonial-slider {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
}

.testimonial-slide {
  display: none;
  width: 100%;
  animation: fadeTestimonial 1s;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fadeTestimonial {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 60px 80px;
  border-radius: 4px;
}

.testimonial-heading {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: #4a4036;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.testimonial-divider {
  width: 60px;
  height: 1.5px;
  background-color: #88958d;
  margin: 0 auto 20px auto;
}

.testimonial-text {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 25px;
}

.testimonial-author {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.testimonial-dots {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  display: flex;
  gap: 12px;
}

.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.testimonial-dots .dot.active,
.testimonial-dots .dot:hover {
  background-color: #fff;
}
/* Contact Section */
.contact-section {
  padding: 40px 0;
  background-color: #fffaf6;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-map {
  width: 100%;
  height: 450px;
  display: block;
  background-color: #fff;
  border: 1px solid #d6caaa;
  padding: 15px;
  border-radius: 4px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.contact-details {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  border-left: 1px solid rgba(227, 169, 118, 0.4);
}

.contact-heading {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #4a4036;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contact-divider {
  width: 50px;
  height: 1.5px;
  background-color: #e3a976;
  margin: 0 auto 30px auto;
}

.contact-subheading {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  font-weight: 500;
}

.contact-hotel-name {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #333;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-info-text {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.contact-info-text span {
  font-weight: 600;
  color: #333;
}

.contact-info-text a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info-text a:hover {
  text-decoration: underline;
}

.btn-availability {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 35px;
  border: 1px solid #333;
  background-color: transparent;
  color: #333;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-availability:hover {
  background-color: #333;
  color: #fff;
}

/* Footer Section */
.footer-tulsi {
  position: relative;
  /* background-image: url("../assets/Images/hero/hero-3.png"); */
  background-image: url("../assets/Images/nightview/imgi_38_6bf253143de459b6613f9233d8384598ccac2c25.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect on footer image only */
  color: #d8d8d8;
  padding: 60px 40px 20px 40px;
  font-family: "Poppins", sans-serif;
}

.footer-tulsi::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(20, 15, 10, 0.6), rgba(10, 5, 0, 0.85));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1;
}

.footer-main,
.footer-bottom-divider,
.footer-bottom {
  position: relative;
  z-index: 2;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column h4 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul:not(.contact-info-list) > li {
  margin-bottom: 14px;
  font-size: 15px;
  color: #bbb;
  display: flex;
  align-items: center;
}

.footer-link-icon {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-column ul:not(.contact-info-list) > li a {
  color: #bbb;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-column ul:not(.contact-info-list) > li:hover .footer-link-icon {
  transform: translateX(4px);
}

.footer-column ul:not(.contact-info-list) > li:hover a {
  color: #fff;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  /* margin-bottom: 20px; */
  filter: brightness(0) invert(1);
}

.footer-brand-desc {
  font-size: 15px;
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 25px;
}

.connect-heading {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.footer-socials-new {
  display: flex;
  gap: 12px;
}

.footer-socials-new a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 14px;
  transition: all 0.3s;
}

.footer-socials-new a:hover {
  background-color: #b49354;
  border-color: #b49354;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 15px;
  color: #bbb;
  align-items: flex-start;
  line-height: 1.6;
}

.contact-info-list li i {
  color: #fff;
  font-size: 18px;
  margin-top: 2px;
}

.contact-info-list li a {
  color: #bbb;
  transition: color 0.3s;
}

.contact-info-list li a:hover {
  color: #fff;
}

.footer-bottom-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 50px 0 20px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright-text {
  font-size: 13px;
  color: #888;
}

.footer-legal {
  display: flex;
  gap: 5px;
  font-size: 13px;
  color: #888;
}

.footer-legal a {
  color: #888;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: #fff;
}



/* Lightbox Styles */
.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10000;
  transition: 0.3s;
}
.lightbox-close:hover {
  color: #d4af37;
}

.lightbox-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  position: relative;
}

.lightbox-main-img {
  max-width: 80%;
  max-height: 75vh;
  object-fit: contain;
  /* border-radius: 8px; */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease-in-out;
}

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

.lightbox-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 5px;
  transition: 0.3s;
}

.lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #d4af37;
}

.lightbox-thumbnails {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  padding-bottom: 20px;
}

.lightbox-thumbnails img {
  width: 90px;
  height: 60px;
  object-fit: cover;
  /* border-radius: 4px; */
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s;
  border: 2px solid transparent;
}

.lightbox-thumbnails img:hover {
  opacity: 0.8;
}

.lightbox-thumbnails img.active {
  opacity: 1;
  border-color: #d4af37;
}

.gallery-item img {
  cursor: pointer;
}

/* Contact Info Cards Section */
.contact-info-cards {
  display: none;
  background-color: #2b221e; /* Theme dark brown */
  padding: 80px 40px;
}

.contact-info-cards .container {
  padding: 0;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-card {
  background-color: #382c27; /* Slightly lighter than background */
  border: 1px dashed rgba(201, 160, 99, 0.2); /* Subtle gold dashed border */
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-icon-box {
  background-color: #fff;
  border-left: 2px solid #5c4c43;
  border-right: 2px solid #5c4c43;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.info-icon-box i {
  color: #5c4c43;
  font-size: 20px;
}

.info-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 500;
}

.info-desc {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #a39587;
  line-height: 1.6;
}

/* Get In Touch Section */
.get-in-touch-section {
  background-color: #fcfbf7; /* Theme off-white */
  padding: 3vw 40px;
}

.get-in-touch-section .container {
  padding: 0;
}

.text-center {
  text-align: center;
}

.section-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #c9a063; /* Theme gold */
  text-transform: uppercase;
  margin-bottom: 15px;
}

.contact-form-container {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.contact-form-col {
  flex: 0 0 calc(50% - 15px);
  background-color: #fff;
  border: 1px dashed rgba(92, 76, 67, 0.3);
  padding: 50px;
}

.contact-map-col {
  flex: 0 0 calc(50% - 15px);
  display: flex;
  min-height: 400px;
}

.contact-map-col .contact-map {
  height: 100%;
}

.contact-map-col iframe {
  width: 100%;
  height: 100%;
  flex: 1;
}

.form-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: #c9a063;
  margin-bottom: 30px;
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-input {
  width: 100%;
  padding: 15px 0;
  margin-bottom: 25px;
  border: none;
  border-bottom: 1px dashed #d8d4d0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #666;
  background-color: transparent;
  outline: none;
}

.form-input::placeholder {
  color: #999;
}

.form-input:focus {
  border-bottom-color: #c9a063;
}

.form-input.textarea {
  resize: vertical;
}

.btn-submit {
  display: inline-block;
  border: 1.5px solid #7a6e65;
  border-radius: 0 20px 0 20px;
  background-color: transparent;
  color: #7a6e65;
  padding: 12px 35px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
}

.btn-submit:hover {
  background-color: #7a6e65; 
  color: #fff;
  border-color: #7a6e65;
  border-radius: 20px 0 20px 0;
}

.form-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
}

.form-actions .btn-submit {
  margin-top: 0;
}

.form-actions form {
  margin: 0;
  display: flex;
  align-items: center;
}

.form-actions .razorpay-payment-button {
  margin: 0 !important;
}

/* Bank Details Card */
.bank-details-container {
  margin-top: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.bank-details-card {
  background-color: #382c27;
  color: #fff;
  padding: 40px;
  border-radius: 4px;
  border: 1.5px solid #c9a063;
  display: none;
  flex-direction: column;
  gap: 20px;
}

.bank-details-header {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px dashed rgba(201, 160, 99, 0.4);
  padding-bottom: 15px;
}

.bank-details-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: #c9a063;
  margin: 0;
  font-weight: 500;
  letter-spacing: 1px;
}

.bank-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  font-family: 'Poppins', sans-serif;
}

.bank-detail-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.detail-label {
  font-size: 12px;
  color: #a39587;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-value {
  font-size: 15px;
  font-weight: 500;
  color: #fcfbf7;
}

.detail-value.highlight {
  font-weight: 600;
  color: #c9a063;
}

/* Services Section */
.services-section {
  background-color: #fcfbf7;
  padding: 3vw 40px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  /* max-width: 1200px; */
  /* margin: 40px auto 0 auto; */
}

.service-card-new {
  background-color: #ffffff;
  border: 1px solid #eef0eb;
  padding: 20px 20px;
  text-align: center;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
/* 
.service-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(122, 110, 101, 0.08);
  border-color: #c9a063;
} */

.service-img-wrapper {
  width: 100%;
  height: 180px;
  overflow: hidden;
  /* border-radius: 4px; */
  margin-bottom: 5px;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* transition: transform 0.5s ease; */
}
/* 
.service-card-new:hover .service-card-img {
  transform: scale(1.08);
} */

.service-card-new h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #382c27;
  font-weight: 600;
  margin: 0;
}

.service-card-new p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
