body {
  /* background-color: #000; */
  color: #fff;
  overflow-x: hidden;
  font-family: 'Manrope', sans-serif;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
label,
input,
button {
  font-family: 'Manrope', sans-serif;
}

.custom-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Top Bar */
.top-bar {
  background-color: transparent;
  padding: 25px 0;
  border-bottom: 1px solid #434040;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.9rem;
}

.top-bar-left i,
.top-bar-right i {
  color: #fff;
}

.top-bar-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 200px;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-house {
  position: relative;
  width: 80px;
  height: 60px;
  border: 2px solid #fff;
  border-bottom: none;
  margin-bottom: 0.25rem;
}

.logo-house::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: -2px;
  width: 40px;
  height: 20px;
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.logo-house::before {
  content: 'RWZ';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: 1.2rem;
  color: #ff0000;
  z-index: 1;
}

.logo-text {
  font-size: 0.7rem;
  color: #ff0000;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Navigation Bar */
.nav-bar {
  background-color: transparent;
  padding: 1rem 0;
  /* border-bottom: 1px solid #333; */
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

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

.navbar-toggler {
  border: 1px solid #fff;
  padding: 0.25rem 0.5rem;
  background: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Top Drawer */
.top-drawer {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  background-color: transparent;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
  z-index: 1050;
  transition: top 0.4s ease-in-out;
  padding: 2rem 0;
  max-height: 80vh;
  overflow-y: auto;
}

.top-drawer.show {
  top: 0;
}

.drawer-content {
  padding: 1rem 2rem;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #333;
}

.drawer-header h4 {
  color: #fff;
  font-weight: 700;
}

.drawer-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #fff;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.drawer-close:hover {
  color: #ff0000;
}

.drawer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.drawer-menu li {
  margin-bottom: 1rem;
}

.drawer-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  display: block;
  padding: 0.75rem 0;
  transition: color 0.3s ease, padding-left 0.3s ease;
  border-bottom: 1px solid #333;
  letter-spacing: 0.05em;
}

.drawer-menu a:hover,
.drawer-menu a.active {
  color: #ff0000;
  padding-left: 1rem;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero-section {
  background-color: transparent;
  padding: 4rem 0 0;
  min-height: 70vh;
}

.hero-content {
  /* max-width: 600px; */
  padding-top: 40px;
  padding-left: 40px;
}

.hero-title {
  font-size: 82px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.2;
  width: 100%;
  /* opacity: 0; */
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.hero-title.fade-up {
  opacity: 1;
  transform: translateY(0);
}

.hero-tagline {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 25px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary-custom {
  background-color: #ff0000;
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  /* border-radius: 4px; */
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary-custom:hover {
  background-color: #cc0000;
  transform: translateY(-2px);
  color: #fff;
}

.btn-outline-custom {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  /* border-radius: 4px; */
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-custom:hover {
  background-color: #fff;
  color: #000;
  transform: translateY(-2px);
}

/* Content Section */
.content-section {
  position: relative;
  margin-top: -4rem;
  z-index: 10;
}

.content-box {
  display: flex;
  align-items: start;
  background-color: #1a1a1a;
  padding: 25px 30px;
  border-radius: 8px;
  margin-left: auto;
  max-width: 792px;
  height: 200px;
}

.content-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
}

.content-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.content-image {
  width: 196px;
  height: 136px;
  object-fit: cover;
  border-radius: 4px;
  background-color: #333;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .nav-menu {
    display: none;
  }

  .top-bar-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .top-bar-center {
    order: -1;
    width: 100%;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .content-box {
    /* margin: 2rem auto; */
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .navbar-toggler {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    width: 100%;
    text-align: center;
  }

  .content-images {
    grid-template-columns: 1fr;
  }
}
.logo-image {
  width: 179.15px;
  height: 100px;
}

.abccccc {
  margin-top: 60px;
}

.topSection {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Background slide container */
.topSection .bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Image layers for smooth crossfade */
.bg-slide .slide-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 2.5s ease-in-out;
  transform: scale(1);
  animation: zoomInOut 10s ease-in-out infinite;
  will-change: opacity, transform;
}

.bg-slide .slide-layer.active {
  opacity: 1;
  z-index: 1;
}

.bg-slide .slide-layer.fade-in {
  opacity: 1;
}

.bg-slide .slide-layer.fade-out {
  opacity: 0;
}

/* Smooth zoom animation */
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}


.gfjQHWDA {
  background: rgba(0, 0, 0, 0.45);
}


.topSection_Aboutus {
  background: rgba(0, 0, 0, 0.45);
}
/* Creative Concept Section */
.creative-concept-section {
  position: relative;
  height: 100vh; /* full screen height */
  background-image: url('/images/par.png');
  background-attachment: fixed; /* 🔥 the key line */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 30px;
}
.creative-concept-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* <-- the shadow/tint */
  z-index: 0;
}
.ghshasjd {
  position: relative;
  z-index: 0;
}
.text-content-wrapper {
  padding: 40px;
  max-width: 90%;
}

.section-subtitle {
  color: #999;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Manrope', sans-serif;
}

.section-main-title {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  font-family: 'Manrope', sans-serif;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.section-main-title.fade-up {
  opacity: 1;
  transform: translateY(0);
}

.section-paragraph {
  color: #fff;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-family: 'Manrope', sans-serif;
}

.btn-get-started {
  display: inline-block;
  background-color: #fff;
  color: #000;
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  /* border-radius: 4px; */
  transition: all 0.3s ease;
  margin-top: 20px;
  font-family: 'Manrope', sans-serif;
}

.btn-get-started:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  color: #000;
}

/* Image Slider Container */
.image-slider-container {
  padding: 20px;
  position: relative;
}

.image-slider-wrapper {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3 aspect ratio */
  border-radius: 30px;
  overflow: hidden;
  background-color: #1a1a1a;
}

.slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}

.slider-image.active {
  opacity: 1;
  z-index: 2;
}

.slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .creative-concept-section {
    padding: 60px 0;
  }

  .text-content-wrapper {
    padding: 20px;
    max-width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }

  .section-main-title {
    font-size: 2.5rem;
  }

  .image-slider-container {
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .section-main-title {
    font-size: 2rem;
  }

  .section-paragraph {
    font-size: 0.9rem;
  }

  .image-slider-wrapper {
    padding-top: 100%; /* Square on mobile */
    border-radius: 20px;
  }

  .slider-image img {
    border-radius: 20px;
  }
}
.sfdhjjk{
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 570px;
  width: 100%;
}
.sdfjkhhhkk{
  text-transform: uppercase;
  text-align: center;
  font-size: 22px;
  line-height: 40px;
  font-weight: 600;
}

/* Why Stay With Us Section */
.why-stay-section {
  background-color: #ffffff;
  padding: 80px 0;
  color: #000;
}

.properties-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 15px;
  font-family: 'Manrope', sans-serif;
}

.why-stay-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-bottom: 0;
  font-family: 'Manrope', sans-serif;
}

.why-stay-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
  font-family: 'Manrope', sans-serif;
}

.btn-view-all {
  display: inline-block;
  background-color: #ffffff;
  color: #000;
  border: 1px solid #000;
  padding: 12px 30px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-family: 'Manrope', sans-serif;
}

.btn-view-all:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

/* Slide-in Animations */
.slide-in-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.slide-in-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.slide-in-right.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Property Cards */
.property-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 450px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, background-position 0.6s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.property-card:hover {
  transform: translateY(-5px);
  background-position: center top;
}

.property-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.property-card:hover::before {
  opacity: 1;
}

.property-content {
  padding: 25px;
  background-color: #fff;
  position: relative;
  z-index: 2;
}

.property-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  gap: 15px;
}

.property-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin: 0;
  flex: 1;
  font-family: 'Manrope', sans-serif;
}

.property-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: #e76f51;
  margin: 0;
  white-space: nowrap;
  font-family: 'Manrope', sans-serif;
}

.property-link {
  color: #e76f51;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
  font-family: 'Manrope', sans-serif;
}

.property-link:hover {
  color: #c75236;
}

/* Responsive Styles for Why Stay Section */
@media (max-width: 991px) {
  .why-stay-section {
    padding: 60px 0;
  }

  .why-stay-title {
    font-size: 2.5rem;
  }

  .property-card {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .why-stay-title {
    font-size: 2rem;
  }

  .why-stay-description {
    font-size: 0.9rem;
  }

  .property-card {
    height: 300px;
  }

  .property-title {
    font-size: 1.25rem;
  }
  
  .property-price {
    font-size: 1.1rem;
  }
}

/* Create Home Section */
.create-home-section {
  background-color: #ffffff;
  padding: 100px 0px 0px 0px;
  overflow: hidden;
}

.video-frame-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 640px;
  min-height: 600px;
}

.video-frame {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 640px;
  min-height: 600px;
  overflow: hidden;
}

.video-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.play-button:hover {
  background-color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.play-button i {
  color: #000;
  font-size: 24px;
  margin-left: 4px;
}
.topppppp {
  position: relative;
  z-index: 1;
  margin-left: -300px;
}

.content-box-overlay {
  max-width: 504px;
  width: 100%;
  max-height: 422px;
  height: 100%;
  background-color: #1a1a1a;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.content-box-inner {
  max-width: 100%;
}

.facilities-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 15px;
  font-family: 'Manrope', sans-serif;
}

.create-home-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 100%;
  margin-bottom: 20px;
  font-family: 'Manrope', sans-serif;
}

.create-home-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  margin: 0;
}
.hgdsghdga {
  padding-left: 80px;
  display: flex;
  flex-direction: row;
}
.ashfgqwwqd{
  width: 100%;
}

/* Responsive Styles for Create Home Section */
@media (max-width: 1199px) {
  .content-box-overlay {
    padding: 50px 35px;
  }
  .topppppp {
    margin-left: -250px;
  }

  .create-home-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 991px) {
  .create-home-section {
    padding: 60px 0 0 0;
  }
  .creative-concept-section {
    height: unset;
    min-height: unset;
  }

  .video-frame-wrapper,
  .video-frame {
    min-height: 500px;
  }

  .content-box-overlay {
    max-width: 100%;
    padding: 50px 30px;
  }
  .topppppp {
    margin-left: 0px;
  }
  .hgdsghdga {
    padding-left: 0px;
    flex-direction: column-reverse;
  }

  .create-home-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .create-home-section {
    padding: 40px 0 0 0;
  }

  .video-frame-wrapper,
  .video-frame {
    min-height: 400px;
  }

  .content-box-overlay {
    padding: 40px 25px;
  }

  .create-home-title {
    font-size: 1.75rem;
  }

  .create-home-description {
    font-size: 0.9rem;
  }

  .play-button {
    width: 60px;
    height: 60px;
  }

  .play-button i {
    font-size: 18px;
  }
}

/* About Host Section */
.about-host-section {
  background-color: #fcf9f0;
  background-image: url('/images/hostbg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 250px 0px 50px 0px;
  margin-top: -150px;
  display: flex;
  align-items: center;
}

.about-host-content {
  text-align: center;
  max-width: 900px;
}

.works-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 25px;
  font-family: 'Manrope', sans-serif;
}

.about-host-title {
  font-size: 4rem;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-bottom: 40px;
  font-family: 'Manrope', sans-serif;
}

.about-host-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  font-family: 'Manrope', sans-serif;
  margin: 0;
  text-align: center;
}

/* Responsive Styles for About Host Section */
@media (max-width: 991px) {
  .about-host-section {
    padding: 80px 0;
  }

  .about-host-title {
    font-size: 3rem;
  }

  .about-host-description {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .about-host-section {
    padding: 60px 0;
  }

  .about-host-title {
    font-size: 2.5rem;
  }

  .about-host-description {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .works-label {
    font-size: 0.8rem;
    margin-bottom: 20px;
  }
}

.gggggshshfebs {
  padding-left: 100px;
}
.rhefbrsndk {
  display: flex;
  justify-content: end;
  width: full;
}

/* Things to Do Section */
.things-to-do-section {
  background-color: #ffffff;
  padding: 100px 0;
}

/* Zen Home Buttons */
.zen-home-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  justify-content: center;
}

.zen-home-btn {
  background-color: transparent;
  color: #000;
  border: 1px solid #000;
  padding: 12px 30px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  /* border-radius: 4px; */
  transition: all 0.3s ease;
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
}

.zen-home-btn:hover {
  background-color: red;
  color: #fff;
  border-color: red;
}

.zen-home-btn.active {
  background-color: red;
  color: #fff;
  border-color: red;
}

.things-to-do-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
}

.header-left {
  display: flex;
  flex-direction: column;
}

.zen-home-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
  font-family: 'Manrope', sans-serif;
}

.things-to-do-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #000;
  margin: 0;
  line-height: 1.2;
  font-family: 'Manrope', sans-serif;
}

.header-right {
  display: flex;
  align-items: center;
}

.btn-view-all-things {
  display: inline-block;
  background-color: #ffffff;
  color: #000;
  border: 1px solid #000;
  padding: 12px 30px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-family: 'Manrope', sans-serif;
}

.btn-view-all-things:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

/* Content Area with Vertical Line */
.things-to-do-content {
  position: relative;
  padding: 40px 0;
}


/* Thing Item */
.thing-item {
  display: flex;
  align-items: center;
  margin-bottom: 120px;
  position: relative;
  z-index: 2;
}

.thing-item:last-child {
  margin-bottom: 0;
}

/* Right Side Item (01 Places to Eat) */
.thing-item-right {
  justify-content: flex-start;
  /* padding-left: 20%; */
}

.thing-item-right .thing-images {
  display: flex;
  gap: 20px;
  margin-right: 40px;
  position: relative;
  z-index: 3;
}

.thing-item-right .thing-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.thing-item-right .thing-number {
  order: 1;
}

.thing-item-right .thing-title {
  order: 2;
}

/* Left Side Item (02 Place to visit) */
.thing-item-left {
  justify-content: flex-start;
  /* padding-right: 50%; */
}

.thing-item-left .thing-images {
  display: flex;
  gap: 20px;
  margin-left: 40px;
  position: relative;
  z-index: 3;
}

.thing-item-left .thing-content {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-direction: row-reverse;
}

.thing-item-left .thing-number {
  order: 2;
}

.thing-item-left .thing-title {
  order: 1;
}

/* Thing Images */
.thing-images {
  display: flex;
  gap: 20px;
  width: 100%;
}

/* Image Carousel Box */
.image-carousel-box {
  width: 348px;
  max-width: 348px;
  height: 348px;
  max-height: 348px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.carousel-track {
  position: relative;
  width: 100%;

  height: 100%;
}

.carousel-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 348px;
  height: 348px;
  object-fit: cover;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 2s ease-in-out, transform 2s ease-in-out;
  display: block;
}

.carousel-image:first-child {
  opacity: 1;
  transform: translateX(0);
}

/* Animation for carousel 1 */
.carousel-track[data-carousel="1"] .carousel-image:nth-child(1) {
  animation: slide-fade-carousel-1 9s infinite;
}

.carousel-track[data-carousel="1"] .carousel-image:nth-child(2) {
  animation: slide-fade-carousel-1 9s infinite 3s;
}

.carousel-track[data-carousel="1"] .carousel-image:nth-child(3) {
  animation: slide-fade-carousel-1 9s infinite 6s;
}

/* Animation for carousel 2 */
.carousel-track[data-carousel="2"] .carousel-image:nth-child(1) {
  animation: slide-fade-carousel-2 9s infinite 1.5s;
}

.carousel-track[data-carousel="2"] .carousel-image:nth-child(2) {
  animation: slide-fade-carousel-2 9s infinite 4.5s;
}

.carousel-track[data-carousel="2"] .carousel-image:nth-child(3) {
  animation: slide-fade-carousel-2 9s infinite 7.5s;
}

/* Animation for carousel 3 */
.carousel-track[data-carousel="3"] .carousel-image:nth-child(1) {
  animation: slide-fade-carousel-3 9s infinite 0.75s;
}

.carousel-track[data-carousel="3"] .carousel-image:nth-child(2) {
  animation: slide-fade-carousel-3 9s infinite 3.75s;
}

.carousel-track[data-carousel="3"] .carousel-image:nth-child(3) {
  animation: slide-fade-carousel-3 9s infinite 6.75s;
}

/* Animation for carousel 4 */
.carousel-track[data-carousel="4"] .carousel-image:nth-child(1) {
  animation: slide-fade-carousel-4 9s infinite 2.25s;
}

.carousel-track[data-carousel="4"] .carousel-image:nth-child(2) {
  animation: slide-fade-carousel-4 9s infinite 5.25s;
}

.carousel-track[data-carousel="4"] .carousel-image:nth-child(3) {
  animation: slide-fade-carousel-4 9s infinite 8.25s;
}

.carousel-track:hover .carousel-image {
  animation-play-state: paused;
}

@keyframes slide-fade-carousel-1 {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  5% {
    opacity: 1;
    transform: translateX(0);
  }
  33.333% {
    opacity: 1;
    transform: translateX(0);
  }
  38.333% {
    opacity: 0;
    transform: translateX(-50px);
  }
  38.334%, 100% {
    opacity: 0;
    transform: translateX(50px);
  }
}

@keyframes slide-fade-carousel-2 {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  5% {
    opacity: 1;
    transform: translateX(0);
  }
  33.333% {
    opacity: 1;
    transform: translateX(0);
  }
  38.333% {
    opacity: 0;
    transform: translateX(-50px);
  }
  38.334%, 100% {
    opacity: 0;
    transform: translateX(50px);
  }
}

@keyframes slide-fade-carousel-3 {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  5% {
    opacity: 1;
    transform: translateX(0);
  }
  33.333% {
    opacity: 1;
    transform: translateX(0);
  }
  38.333% {
    opacity: 0;
    transform: translateX(-50px);
  }
  38.334%, 100% {
    opacity: 0;
    transform: translateX(50px);
  }
}

@keyframes slide-fade-carousel-4 {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  5% {
    opacity: 1;
    transform: translateX(0);
  }
  33.333% {
    opacity: 1;
    transform: translateX(0);
  }
  38.333% {
    opacity: 0;
    transform: translateX(-50px);
  }
  38.334%, 100% {
    opacity: 0;
    transform: translateX(50px);
  }
}

/* Legacy support */
.thing-image {
  width: 200px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Thing Content */
.thing-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.thing-number {
  font-size: 5rem;
  font-weight: 700;
  color: #000;
  line-height: 1;
  font-family: 'Manrope', sans-serif;
}

.thing-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin: 0;
  line-height: 1.2;
  font-family: 'Manrope', sans-serif;
}

/* Responsive Styles for Things to Do Section */
@media (max-width: 1199px) {
  .thing-number {
    font-size: 4rem;
  }

  .thing-title {
    font-size: 2rem;
  }

  .image-carousel-box {
    width: 280px;
    max-width: 280px;
    height: 280px;
    max-height: 280px;
  }

  .carousel-image {
    width: 280px;
    height: 280px;
  }

  .thing-image {
    width: 180px;
    height: 220px;
  }
}

@media (max-width: 991px) {
  .things-to-do-section {
    padding: 60px 0;
  }

  .zen-home-buttons {
    justify-content: center;
    margin-bottom: 30px;
  }

  .things-to-do-header {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
  }

  .things-to-do-title {
    font-size: 2.5rem;
  }

  .vertical-separator {
    display: none;
  }

  .thing-item {
    flex-direction: column;
    margin-bottom: 60px;
    padding: 0 !important;
  }

  .thing-item-right,
  .thing-item-left {
    padding-left: 0;
    padding-right: 0;
  }

  .thing-item-right .thing-images,
  .thing-item-left .thing-images {
    margin: 0 0 30px 0;
    order: 1;
  }

  .thing-item-right .thing-content,
  .thing-item-left .thing-content {
    order: 2;
    flex-direction: row !important;
    justify-content: center;
  }

  .thing-item-left .thing-content {
    flex-direction: row !important;
  }

  .thing-item-left .thing-number {
    order: 1 !important;
  }

  .thing-item-left .thing-title {
    order: 2 !important;
  }

  .thing-number {
    font-size: 3.5rem;
  }

  .thing-title {
    font-size: 1.75rem;
  }

  .thing-images {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .image-carousel-box {
    width: 100%;
    max-width: 300px;
    height: 300px;
    max-height: 300px;
  }

  .carousel-image {
    width: 100%;
    max-width: 300px;
    height: 300px;
  }

  .thing-image {
    width: 160px;
    height: 200px;
  }
}

@media (max-width: 576px) {
  .things-to-do-section {
    padding: 40px 0;
  }

  .zen-home-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .zen-home-btn {
    width: 100%;
    text-align: center;
  }

  .things-to-do-title {
    font-size: 2rem;
  }

  .thing-item {
    margin-bottom: 40px;
  }

  .thing-content {
    flex-direction: column !important;
    gap: 15px;
    text-align: center;
  }

  .thing-item-right .thing-content,
  .thing-item-left .thing-content {
    flex-direction: column !important;
  }

  .thing-number {
    font-size: 3rem;
  }

  .thing-title {
    font-size: 1.5rem;
  }

  .thing-images {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .image-carousel-box {
    width: 100%;
    max-width: 100%;
    height: 250px;
    max-height: 250px;
  }

  .carousel-image {
    width: 100%;
    height: 250px;
  }

  .thing-image {
    width: 100%;
    max-width: 300px;
    height: 200px;
  }
}


/* Testimonials Section */
.testimonials-section {
  position: relative;
  padding: 120px 0px 0px 0px;
  width: 100%;
  margin-bottom: 200px;
  background-image: url('/images/pbg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.testimonials-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}


.testimonials-header {
  margin-bottom: 80px;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

.testimonials-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  font-family: 'Manrope', sans-serif;
}

.testimonials-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0;
  font-family: 'Manrope', sans-serif;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.testimonials-title.fade-up {
  opacity: 1;
  transform: translateY(0);
}

.cardssss{
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 8px;
  width: 100%;
  max-width: 327px;
  height: auto;
  margin-bottom: -166px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 1s ease-out, transform 1s ease-out;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(50px);
}

.testimonial-card.fade-up {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card.fade-up:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.testimonial-rating {
  margin-bottom: 20px;
}

.testimonial-rating i {
  color: #ffa500;
  font-size: 1.2rem;
  margin: 0 2px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
  font-family: 'Manrope', sans-serif;
  flex-grow: 1;
}

.testimonial-profile {
  margin-top: auto;
}

.testimonial-image {
  width: 80px;
  height: 80px;
  /* border-radius: 50%; */
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #f0f0f0;
}

.testimonial-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
  font-family: 'Manrope', sans-serif;
}

.testimonial-role {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  font-family: 'Manrope', sans-serif;
}

/* Responsive Styles for Testimonials Section */
@media (max-width: 991px) {
  .testimonials-section {
    padding: 80px 0;
    overflow: visible;
  }

  .testimonials-title {
    font-size: 2.5rem;
  }

  .testimonials-header {
    margin-bottom: 50px;
  }

  .testimonial-card {
    width: 100%;
    max-width: 327px;
    /* height: 360px; */
    margin-bottom: 0px;
  }
}

@media (max-width: 576px) {
  .testimonials-section {
    padding: 60px 0;
    overflow: visible;
  }

  .testimonials-title {
    font-size: 2rem;
  }

  .testimonials-subtitle {
    font-size: 0.8rem;
    margin-bottom: 15px;
  }

  .testimonials-header {
    margin-bottom: 40px;
  }

  .testimonial-card {
    width: 100%;
    max-width: 327px;
    /* height: 360px; */
    padding: 30px 20px;
    /* margin-bottom: -166px; */
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .testimonial-image {
    width: 70px;
    height: 70px;
  }

  .testimonial-name {
    font-size: 1rem;
  }

  .testimonial-role {
    font-size: 0.85rem;
  }
}

/* Blogs Section */
.blogs-section {
  background-color: #ffffff;
  padding: 80px 0;
  color: #000;
}

.blog-label {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 10px;
  font-family: 'Manrope', sans-serif;
}

.blog-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin: 0;
  font-family: 'Manrope', sans-serif;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.blog-title.fade-up {
  opacity: 1;
  transform: translateY(0);
}

.blog-header-left {
  flex: 1;
}

.blog-header-right {
  margin-bottom: 0;
}

.btn-view-all-blogs {
  display: inline-block;
  background-color: #ffffff;
  color: #000;
  border: 1px solid #000;
  padding: 12px 30px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  font-family: 'Manrope', sans-serif;
}

.btn-view-all-blogs:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

.blog-card {
  background-color: #ffffff;
  border: none;
  transition: transform 0.3s ease;
  max-width: 360px;
  opacity: 1;
  transform: none;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image-wrapper {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

.blog-content {
  padding: 18px 6px 6px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #131714;
  margin-bottom: 15px;
  line-height: 1.4;
  text-align: center;
  font-family: 'Manrope', sans-serif;
}

.blog-card-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  text-align: center;
  margin: 0 0 16px 0;
  font-family: 'Manrope', sans-serif;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-weight: 600;
  color: #e76f51;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.blog-read-more:hover {
  color: #c75236;
  transform: translateX(2px);
}

.blog-pagination .pagination {
  gap: 0.5rem;
}

.blog-pagination .page-item .page-link {
  border-radius: 999px;
  min-width: 42px;
  text-align: center;
  font-weight: 600;
  color: #333;
  border: 1px solid rgba(148, 163, 184, 0.4);
  transition: all 0.2s ease-in-out;
}

.blog-pagination .page-item.active .page-link {
  background-color: #ff0000;
  border-color: #ff0000;
  color: #fff;
  box-shadow: 0 12px 25px rgba(255, 0, 0, 0.25);
}

.blog-pagination .page-item .page-link:hover {
  background-color: rgba(255, 0, 0, 0.08);
  border-color: rgba(255, 0, 0, 0.4);
  color: #ff0000;
}

.blog-pagination .page-item.disabled .page-link {
  color: #94a3b8;
  border-color: rgba(148, 163, 184, 0.3);
  background-color: rgba(148, 163, 184, 0.08);
  cursor: not-allowed;
}

.admin-pagination .pagination {
  gap: 0.35rem;
}

.admin-pagination .page-item .page-link {
  border-radius: 0.75rem;
  min-width: 40px;
  text-align: center;
  font-weight: 500;
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #1f2937;
}

.admin-pagination .page-item.active .page-link {
  background-color: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
}

.admin-pagination .page-item .page-link:hover {
  background-color: rgba(13, 110, 253, 0.1);
  border-color: rgba(13, 110, 253, 0.6);
  color: #0d6efd;
}

.admin-pagination .page-item.disabled .page-link {
  color: #9ca3af;
  background-color: rgba(148, 163, 184, 0.08);
  border-color: rgba(148, 163, 184, 0.2);
}

/* Responsive Styles for Blogs Section */
@media (max-width: 991px) {
  .blogs-section {
    padding: 60px 0;
  }

  .blog-title {
    font-size: 2.5rem;
  }

  .blog-header-left,
  .blog-header-right {
    margin-bottom: 20px;
  }

  .blog-header-right {
    width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .blogs-section {
    padding: 50px 0;
  }

  .blog-title {
    font-size: 2rem;
  }

  .blog-image {
    height: 270px;
    max-width: 360px;
    width: 100%;
  }

  .blog-image-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .blogs-section {
    padding: 40px 0;
  }

  .blog-label {
    font-size: 0.8rem;
  }

  .blog-title {
    font-size: 1.75rem;
  }

  .btn-view-all-blogs {
    width: 100%;
    text-align: center;
  }

  .blog-card-title {
    font-size: 1.1rem;
  }

  .blog-card-description {
    font-size: 0.9rem;
  }

  .blog-image {
    height: 270px;
    max-width: 360px;
    width: 100%;
  }

  .blog-image-wrapper {
    max-width: 100%;
  }
}

/* Footer Section */
.footer-section {
  background-color: #1a1a1a;
  padding: 60px 0 40px 0;
  color: #fff;
}

.footer-logo-wrapper {
  margin-bottom: 20px;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo-house {
  position: relative;
  width: 80px;
  height: 60px;
  border: 2px solid #fff;
  border-bottom: none;
  margin-bottom: 0.5rem;
}

.footer-logo-house::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: -2px;
  width: 40px;
  height: 20px;
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.footer-logo-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: 1.2rem;
  color: #ff0000;
  z-index: 1;
}

.footer-logo-name {
  font-size: 0.85rem;
  color: #ff0000;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 25px;
  font-family: 'Manrope', sans-serif;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
  color: #ff0000;
  transform: translateY(-3px);
}

.footer-column {
  margin-bottom: 20px;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
  font-family: 'Manrope', sans-serif;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
  font-family: 'Manrope', sans-serif;
}

.footer-links a:hover {
  color: #ff0000;
  padding-left: 5px;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
  font-family: 'Manrope', sans-serif;
}

.contact-icon {
  color: #ff0000;
  margin-right: 12px;
  margin-top: 3px;
  font-size: 1rem;
  min-width: 20px;
}

.footer-contact li span {
  flex: 1;
}

.newsletter-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 20px;
  font-family: 'Manrope', sans-serif;
}

.newsletter-form {
  width: 100%;
}

.newsletter-input {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 4px;
  background-color: #fff;
  color: #000;
  font-size: 0.95rem;
  font-family: 'Manrope', sans-serif;
  margin-bottom: 15px;
}

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

.newsletter-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2);
}

.newsletter-subscribe-btn {
  width: 100%;
  background-color: #ff0000;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
}

.newsletter-subscribe-btn:hover {
  background-color: #cc0000;
  transform: translateY(-2px);
  color: #fff;
}

.footerlogg{
  max-width: 256px;
  max-height: 164px;
}

/* FAQ Recommended Section */
.faq-recommended-section {
  background-color: #ffffff;
  padding: 80px 0;
  color: #333;
}

.faq-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-intro-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
}

.faq-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #6B8E6B;
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Manrope', sans-serif;
}

.recommended-heading {
  font-size: 3.5rem;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.2;
  font-family: 'Manrope', sans-serif;
}

/* FAQ Accordion Styling */
.faq-accordion {
  border: 1px solid #e0e0e0;
  border-radius: 0;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  border-top: none;
  border-left: none;
  border-right: none;
  background-color: #ffffff;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  background-color: #ffffff;
  border: none;
  padding: 20px 15px 20px 50px;
  color: #000;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  width: 100%;
  position: relative;
  box-shadow: none;
  font-family: 'Manrope', sans-serif;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #fafafa;
}

.faq-question:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-question:not(.collapsed) {
  background-color: #ffffff;
  box-shadow: none;
}

.faq-question::after {
  display: none;
}

/* Plus/Minus Icons */
.faq-icon-minus,
.faq-icon-plus {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: #000;
  line-height: 1;
  font-family: 'Arial', sans-serif;
}

/* Default state: show plus, hide minus (collapsed state) */
.faq-icon-plus {
  display: inline-block;
}

.faq-icon-minus {
  display: none;
}

/* When accordion is open (not collapsed): hide plus, show minus */
.faq-question:not(.collapsed) .faq-icon-plus {
  display: none !important;
}

.faq-question:not(.collapsed) .faq-icon-minus {
  display: inline-block !important;
}

/* When accordion is closed (collapsed): show plus, hide minus */
.faq-question.collapsed .faq-icon-plus {
  display: inline-block !important;
}

.faq-question.collapsed .faq-icon-minus {
  display: none !important;
}

.faq-question-text {
  display: inline-block;
  padding-left: 10px;
}

.faq-answer {
  padding: 15px 15px 25px 50px;
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
  font-family: 'Manrope', sans-serif;
  background-color: #ffffff;
}

/* Responsive Styles for FAQ Section */
@media (max-width: 991px) {
  .faq-recommended-section {
    padding: 60px 0;
  }

  .recommended-heading {
    font-size: 2.5rem;
  }

  .faq-question {
    padding: 18px 15px 18px 50px;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 15px 15px 20px 50px;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .faq-recommended-section {
    padding: 40px 0;
  }

  .faq-intro-text {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .faq-label {
    font-size: 0.8rem;
    margin-bottom: 15px;
  }

  .recommended-heading {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .faq-question {
    padding: 15px 15px 15px 45px;
    font-size: 0.95rem;
  }

  .faq-icon-minus,
  .faq-icon-plus {
    left: 12px;
    font-size: 1.3rem;
  }

  .faq-answer {
    padding: 15px 15px 20px 45px;
    font-size: 0.9rem;
  }

  .faq-content-wrapper {
    padding: 0 15px;
  }
}

/* Responsive Styles for Footer */
@media (max-width: 991px) {
  .footer-section {
    padding: 50px 0 30px 0;
  }

  .footer-column {
    margin-bottom: 40px;
  }

  .footer-logo-wrapper {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .footer-section {
    padding: 40px 0 25px 0;
  }

  .footer-heading {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .footer-description {
    font-size: 0.9rem;
  }

  .footer-links a,
  .footer-contact li {
    font-size: 0.9rem;
  }

  .social-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .newsletter-input,
  .newsletter-subscribe-btn {
    font-size: 0.9rem;
    padding: 10px 15px;
  }
}

/* Contact Section */
.contact-section {
  background-color: #ffffff;
  padding: 80px 0;
  color: #000;
}

.contact-left-column {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.contact-image-wrapper {
  width: 100%;
  height: auto;
  margin-bottom: 0;
}

.contact-interior-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.contact-map-wrapper {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.contact-google-map {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-right-column {
  background-color: #ffffff;
  padding: 60px 50px;
  display: flex;
  align-items: flex-start;
}

.contact-content-wrapper {
  width: 100%;
}

.contact-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 10px;
  font-family: 'Manrope', sans-serif;
}

.contact-main-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-bottom: 40px;
  font-family: 'Manrope', sans-serif;
}

.contact-info-section {
  margin-bottom: 50px;
}

.contact-info-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 25px;
  font-family: 'Manrope', sans-serif;
}

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

.contact-info-list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: #000;
  font-size: 1rem;
  font-family: 'Manrope', sans-serif;
}

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

.contact-info-icon {
  color: #000;
  margin-right: 15px;
  font-size: 1.1rem;
  min-width: 20px;
  text-align: center;
}

.contact-info-list li span {
  color: #000;
  line-height: 1.5;
}

.contact-form-section {
  margin-top: 50px;
}

.contact-form-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-bottom: 30px;
  font-family: 'Manrope', sans-serif;
}

.contact-form {
  width: 100%;
}

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

.contact-form .form-group:last-of-type {
  margin-bottom: 30px;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #d0d0d0;
  background-color: #ffffff;
  color: #000;
  font-size: 1rem;
  font-family: 'Manrope', sans-serif;
  border-radius: 0;
  transition: border-color 0.3s ease;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: #666;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #999;
}

.contact-textarea {
  resize: vertical;
  min-height: 150px;
  font-family: 'Manrope', sans-serif;
}

.contact-submit-btn {
  background-color: #ff0000;
  color: #ffffff;
  border: none;
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-family: 'Manrope', sans-serif;
  width: 100%;
}

.contact-submit-btn:hover {
  background-color: #cc0000;
  transform: translateY(-2px);
  color: #ffffff;
}

.contact-submit-btn:active {
  transform: translateY(0);
}

/* Responsive Styles for Contact Section */
@media (max-width: 991px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-right-column {
    padding: 40px 30px;
  }

  .contact-main-title {
    font-size: 2.5rem;
  }

  .contact-form-title {
    font-size: 2rem;
  }

  .contact-map-wrapper {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 40px 0;
  }

  .contact-right-column {
    padding: 30px 20px;
  }

  .contact-main-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .contact-form-title {
    font-size: 1.75rem;
    margin-bottom: 25px;
  }

  .contact-info-section {
    margin-bottom: 40px;
  }

  .contact-form-section {
    margin-top: 40px;
  }

  .contact-map-wrapper {
    height: 300px;
  }

  .contact-info-list li {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }

  .contact-input,
  .contact-textarea {
    font-size: 0.95rem;
    padding: 10px 12px;
  }
}
