.hero-section {
  position: relative;
  min-height: 100%;
}

.hero-fade-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: #222;
}

.hero-fade-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.hero-center-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-content-header {
  text-align: center;
  color: #fff;
}

.hero-content-header h1 {
  text-align: center;
  padding-bottom: 16px;
  max-width: 530px;
  margin: 0 auto;
  line-height: 1.2;
}

.hero-content-header h3 {
  text-align: center;
  max-width: 610px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.2;
}

.hero-content-bottom {
  display: flex;
  max-height: 118px;
  justify-content: space-between;
  gap: 84px;
  min-width: 100%;
  border: 1px solid #d2d2d266;
  border-radius: 100px;
  padding: 22px 16px 22px 40px;
  backdrop-filter: blur(40px);
}

.hero-content-one,
.hero-content-two,
.hero-content-three {
  cursor: pointer;
  padding: 10px 20px;
  min-width: 300px;
}

.hero-content-one h4,
.hero-content-two h4,
.hero-content-three h4 {
  letter-spacing: 0.02rem;
  color: var(--white);
}

.hero-content-one.active,
.hero-content-two.active,
.hero-content-three.active {
  background: #fff;
  border-radius: 8px 8px 0 0;
}

.hero-content-one.active h4,
.hero-content-two.active h4,
.hero-content-three.active h4 {
  color: var(--gray-1);
}

.hero-content-one.active svg,
.hero-content-two.active svg {
  stroke: var(--primary-color);
}

.search-circle {
  cursor: pointer;
  max-height: 64px;
  border-radius: 100px;
  padding: 16px;
  background-color: var(--primary-color);
}

/* location drop down */
.loc-dropdown {
  position: relative;
  width: 100%;
  font-family: inherit;
}

.loc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 0 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.loc-header input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 16px;
  color: var(--gray-3);
}


.loc-options li {
  padding: 0 4px 12px 0;
  font-size: 16px;
  cursor: pointer;
  border-bottom: 1px dotted var(--gray-5);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  transition: transform 0.3s ease-in-out;
}


.loc-selected::placeholder,
.attendees-selected::placeholder {
  color: var(--gray-3);
  font-size: 16px !important;
}

.side-scroll {
  padding: 16px 4px 16px 16px;
}

.loc-options::-webkit-scrollbar {
  width: 6px;
  overflow-x: hidden !important;
}

.loc-options::-webkit-scrollbar-track,
.loc-options-mobile::-webkit-scrollbar-track,
.seating-options-mobile::-webkit-scrollbar-track {
  border-radius: 2px;
}

.loc-options::-webkit-scrollbar-thumb,
.loc-options-mobile::-webkit-scrollbar-thumb,
.seating-options-mobile::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 4px;
}

/* attendee */
.attendees-dropdown {
  position: relative;
  width: 100%;
  font-family: inherit;
}

.attendees-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 0 0;
  background: transparent;
  cursor: pointer;
}

.attendees-header input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 16px;
  color: var(--gray-3);
}



.attendees-options {
  gap: 10px;
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 16px;
  max-height: 250px;
  overflow-y: auto;
}

.attendees-options::-webkit-scrollbar {
  width: 8px;
}

.attendees-options::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 4px;
}

.attendees-options::-webkit-scrollbar-track {
  background-color: var(--gray-5);
}

.range-label p {
  font-size: 18px;
  font-weight: 500;
}

.range-label span {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02rem;
  color: var(--primary-color);
  margin-left: 10px;
}

.range-slider {
  width: 90%;
  margin: 0 auto;
  position: relative;
  margin-top: 40px;
  margin-bottom: 12px;
}

.attendees-inputs span {
  color: var(--gray-5);
}

.attendees-min,
.attendees-max {
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid #E0E0E0;
  font-size: 18px;
  font-weight: 500;
}

#range,
#range-mobile {
  -webkit-appearance: none;
  width: 100%;
  margin-top: 20px;
}

#range:focus,
#range-mobile {
  outline: none;
}

#range::before,
#range::after,
#range-mobile::before,
#range-mobile::after {
  position: absolute;
  top: 2rem;
  color: #333;
  font-size: 14px;
  line-height: 1;
  padding: 3px 5px;
  background-color: rgba(0, 0, 0, .1);
  border-radius: 4px;
}

#range::-webkit-slider-runnable-track,
#range-mobile::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  background: linear-gradient(90deg, #A31170 var(--range-progress), #dee4ec var(--range-progress));
  border-radius: 1rem;
}

#range::-webkit-slider-thumb,
#range-mobile::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: 0.25rem solid var(--white);
  box-shadow: 0 0 0 4px #A3117033, 0 1px 3px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
  height: 22px;
  width: 22px;
  transform: translateY(calc(-50% + 4px));
}

#tooltip,
#tooltip-mobile {
  position: absolute;
  top: -2.25rem;
}

#tooltip span,
#tooltip-mobile span {
  display: flex;
  justify-content: center;
  height: 30px;
  width: 50px;
  position: absolute;
  text-align: center;
  /* display: block; */
  line-height: 1;
  padding: 6px 12px;
  color: #fff;
  border-radius: 8px;
  background: var(--primary-color);
  font-size: 16px;
  left: 50%;
  transform: translate(-40%, 0);
  bottom: -35px;
}

#tooltip span:before,
#tooltip-mobile span:before {
  position: absolute;
  content: url('../images/hero-section/tip.svg');
  left: 50%;
  bottom: -9px;
  transform: translateX(-50%);
  width: 24px;
}

/* seating setup */
.seating-dropdown {
  position: relative;
  width: 100%;
  font-family: inherit;
}

.seating-header {
  display: flex;
  align-items: center;
  padding: 12px 0 0 0;
  background: transparent;
  cursor: pointer;
}

.seating-selected-display {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  font-size: 16px;
  color: var(--gray-3);
}

.seating-selected-display img {
  width: 24px;
  height: 24px;
}

.seating-header input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 16px;
  color: var(--gray-3);
}

.seating-body,
.attendees-body,
.loc-body {
  position: absolute;
  top: 100%;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 6px 6px;
  display: none;
  flex-direction: column;
  z-index: 100;
  min-width: 300px;
  left: -20px;
  border-top: 2px solid var(--primary-color);

}

.seating-body.active,
.attendees-body.active,
.loc-body.active {
  display: flex;
}

.seating-options,
.loc-options {
  gap: 12px;
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 250px;
  overflow-y: auto;
  overflow-x: hidden;
}

.seating-options li {
  padding: 0 8px 12px 0px;
  font-size: 16px;
  cursor: pointer;
  border-bottom: 1px dashed var(--gray-5);
  font-weight: 400;
  transition: transform 0.3s ease-in-out;
}

.seating-options li:hover,
.loc-options li:hover {
  transform: translateX(2px);
  font-weight: 600;
}

.seating-options li div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.seating-options li img {
  width: 20px;
  height: 20px;
}

#seating-options::-webkit-scrollbar {
  width: 6px;
}

#seating-options::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 4px;
}

#seating-options::-webkit-scrollbar-track {
  background-color: var(--gray-5);
}


.hero-section-mobile {
  background: white;
  border: 1px solid var(--gray-5);
  border-radius: 4px;
  padding: 8px;
  position: relative;
  box-shadow: 0px 2px 16px 0px #00000026;

}

.hero-mobile-one {
  padding: 10px;
  border-bottom: 1px solid var(--gray-5);
}

.hero-section-mobile svg,
.hero-section-mobile img {
  height: 16px;
  width: 16px;
  stroke: var(--gray-4);
}

.hero-mobile-input input {
  border: none;
}

.hero-mobile-input input::placeholder {
  font-size: 12px;
  color: var(--gray-3);
}

.hero-section-mobile button {
  max-height: 36px;
  border: none;
  background: var(--primary-color);
  color: var(--white);
}

.hero-section-mobile h4 {
  font-weight: 600;
  color: var(--primary-color);
}

.hero-section-mobile .side-scroll {
  padding: 18px 0 0 0;
}

.seating-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: none;
  min-height: 30px;
  color: var(--gray-1);
}

.seating-display img {
  width: 20px;
  height: 20px;
}

/* placeholder color before selection */
/* .selected-text p {
  color: var(--white);
} */

/* After selection*/
.selected-text.filled p {
  color: var(--gray-3);
}

.seating-display .placeholder {
  /* color: var(--gray-3); */
  background: none;
  font-size: 12px;
}

.loc-options-mobile::-webkit-scrollbar,
.seating-options-mobile::-webkit-scrollbar {
  width: 6px;
}

.loc-dropdown-mobile,
.attendees-dropdown-mobile,
.seating-dropdown-mobile {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: white;
  transition: bottom 0.3s ease;
  z-index: 9999;
  padding: 16px 4px 0 16px;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
  border-radius: 16px 16px 0 0;
}

.attendees-dropdown-mobile {
  padding: 16px;
}

.loc-dropdown-mobile .side-scroll,
.seating-dropdown-mobile .side-scroll {
  padding: 18px 4px 0 0;
}



.loc-dropdown-mobile.active,
.attendees-dropdown-mobile.active,
.seating-dropdown-mobile.active {
  bottom: 0;
}

.loc-options-mobile,
.attendees-options-mobile,
.seating-options-mobile {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 250px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.attendees-options-mobile {
  gap: 18px;
  overflow-y: visible;
}


.loc-options-mobile li,
.attendees-options-mobile li,
.seating-options-mobile li {
  font-size: 16px;
  padding-bottom: 10px;
  border-bottom: 1px dotted var(--gray-5);
  cursor: pointer;
  transition: transform 0.3s;
}

.loc-options-mobile li:hover,
.attendees-options-mobile li:hover,
.seating-options-mobile li:hover {
  font-weight: 600;
  transform: translateX(4px);
}

.seating-options-mobile li div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.seating-options-mobile li img {
  width: 20px;
  height: 20px;
}

/* occasion  */
.occasions-content {
  padding: 50px 0 60px 0;
}

.occasions-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.occasions-header h1 {
  color: var(--gray-3);
}

.occasions-header span {
  font-size: 40px;
  color: var(--gray-1);
}

.occasions-header h3 {
  color: var(--gray-3);
  margin-bottom: 50px;
}

.occasions-grid .gx-2 {
  --bs-gutter-x: 20px;
}

.occasions-grid .gy-2 {
  --bs-gutter-y: 20px;
}

/*  */
.occasion-card {
  border-radius: 12px;
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  cursor: pointer;
}

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



.occasion-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, #111111 0%, rgba(61, 6, 42, 0) 50%);
  opacity: 1;
  transition: opacity 0.4s linear;
  z-index: 1;
}

.occasions-grid {
  gap: 20px;
  display: flex;
  flex-direction: column;
}

.occasion-label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  transform: translate(0, 0);
  color: #ffffff;
  font-weight: 600;
  transition:
    left 0.3s linear,
    bottom 0.3s linear,
    transform 0.3s linear;
  z-index: 2;
}

.occasion-label h3 {
  font-size: 20px;
  transition: font-size 0.4s linear;
}


.occasion-card:hover .occasion-overlay {
  background: linear-gradient(0deg, #A31170 27.15%, rgba(61, 6, 42, 0) 103.13%);
}

.occasion-card:hover .occasion-label {
  left: 50%;
  bottom: 50%;
  transform: translate(-50%, 50%);
}

.occasion-card:hover .occasion-label h3 {
  font-size: 24px;
}


/* feature */
.feature-section {
  background-color: var(--gray-6);
}

/* .wishlist-circle {
  justify-content: center;
  align-items: center;
  display: flex;
  background: #111111B2;
  border-radius: 100px;
  height: 44px;
  width: 44px;
  padding: 10px;
} */

.feature-content {
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.see-all-btn {
  border: none;
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
}

.feature-card {
  padding: 12px;
  background-color: white;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-card:hover {
  box-shadow: 0px 7px 29px 0px #64646F33;
}

.feature-images {
  position: relative;
  aspect-ratio: 1.342;
  width: 100%;
  overflow: hidden;
}

.feature-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
}

/*  */


/*  */
.feature-distance {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: linear-gradient(98.56deg, #D0B503 0%, #AD6102 108.86%);
  border: 1.1px solid #AD6102;
  display: flex;
  border-radius: 10px;
  padding: 12px;
  color: var(--white);
}

.feature-rating {
  position: absolute;
  right: 10px;
  bottom: 14px;
  background-color: var(--primary-color);
  padding: 6px 8px;
  display: flex;
  gap: 4px;
  border-radius: 100px;
  align-items: center;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.feature-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.feature-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-title h4 {
  font-weight: 500;
  color: var(--primary-color);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feature-title h5 {
  font-weight: 500;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* .feature-pills {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.feature-pills::-webkit-scrollbar {
  display: none;
}

.single-pill {
  white-space: nowrap;
  flex-shrink: 0;
  background-color: var(--gray-6);
  padding: 4px 12px;
  border-radius: 100px;
}

.single-pill h6 {
  font-weight: 500;
} */

/* .feature-buttons {
  display: flex;
  justify-content: space-between;
  gap: 16px;
} */

.feature-btn {
  width: 100%;
  border: 1px solid var(--gray-5);
  color: var(--gray-1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-btn-purple {
  width: 100%;
  height: 44px;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}


.feature-btn-purple a:hover {
  color: var(--white) !important;
}



/* Swiper */
.feature-section .swiper-wrapper-relative {
  position: relative;
  padding: 0;
  padding-bottom: 60px;
}


/* Nav buttons absolute center-bottom */
.swiper-nav-buttons {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.feature-swiper-prev,
.feature-swiper-next {
  width: 40px;
  height: 40px;
  background-color: white;
  border: none;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
}

.feature-swiper-prev svg,
.feature-swiper-next svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-color);

  stroke-width: 2;
}

/* Disabled state */
.feature-swiper-prev:disabled svg,
.feature-swiper-next:disabled svg {
  stroke: var(--gray-4);
}

.feature-swiper-prev:disabled,
.feature-swiper-next:disabled {
  cursor: default;
  pointer-events: none;
  opacity: 1;
}






/* choose-us */
.choose-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 50px 0;
  background: linear-gradient(#111827E5, #111827E5), url('../images/choose-us/choose-us-bg.jpg');
  background-size: cover;
  background-position: center;
}

.choose-header h1 {
  text-align: center;
  color: var(--white);
}

.choose-header span {
  color: var(--gray-4);
  margin-right: 6px;
}

.white-circle {
  background: var(--white);
  border-radius: 100px;
  padding: 20px;
}

.choose-body {
  display: flex;
  justify-content: center;
  color: var(--white);
  /* gap: 60px; */
}

.choose-part-one {
  display: flex;
}

.choose-part-two {
  display: flex;
}

.dashed-line {
  border: 1px dashed var(--gray-4);
  margin: 0 60px;
}

.choose-us-single {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

.choose-us-single h4 {
  font-weight: 600;
  text-align: center;
  max-width: 136px;
}

.easy {
  max-width: 118px !important;
}


/* destination */
.destination-section .occasion-card:hover .occasion-overlay {
  background: none;
}

.destination-section .occasion-image {
  transition: transform 0.3s ease;
}

.destination-section .occasion-card:hover .occasion-image {
  transform: translateY(-5px) scale(1.5);
}

.destination-section .occasions-header span {
  margin-right: 8px;
}

/* event */
.ees-section {
  padding: 50px 0 0 60px;
  overflow-x: hidden;
}

.ees-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ees-left h1 {
  line-height: 1.3;
  font-weight: 600;
}

.ees-left h3 {
  color: var(--gray-3, #6c6c6c);
  line-height: 1.35;
  /* margin-top: 10px; */
}

.ees-btn {
  width: 100%;
  min-height: 44px;
  padding: 12px 20px;
  background: var(--primary-color, #a60063);
  color: #fff;
  margin-top: 32px;
}

.ees-btn-mobile {
  /* max-width: 140px; */
  padding: 6px 12px;
  margin: 32px auto 24px auto;
  /* margin-top: 32px !important; */
}

.ees-btn svg {
  width: 16px;
  height: 16px;
}

.ees-desktop-controls {
  justify-content: center;
  /* margin-top: 80px; */
  margin-top: 40px;
  max-width: 156px;
  margin: 0 auto;
  margin-top: 40px;
}

.ees-desktop-prev,
.ees-desktop-next,
.ees-mobile-prev,
.ees-mobile-next {
  padding: 8px;
  border: 1px solid var(--gray-5);
  border-radius: 4px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s;
}

.ees-desktop-prev:hover,
.ees-desktop-next:hover,
.ees-mobile-prev:hover,
.ees-mobile-next:hover {
  background: var(--primary-color);
}

.ees-desktop-prev:hover svg,
.ees-desktop-next:hover svg,
.ees-mobile-prev:hover svg,
.ees-mobile-next:hover svg {
  stroke: #fff;
}

.ees-desktop-counter,
.ees-mobile-counter {
  width: auto;
  min-width: 60px;
  text-align: center;
  font-weight: 600;
  color: var(--gray-3) !important;
}


.ees-counter {
  min-width: 60px;
  text-align: center;
  font-weight: 600;
  color: var(--gray-3) !important;
}

.ees-controls {
  justify-content: center;
  padding-top: 60px;
  max-width: 156px;
  margin: 0 auto;
}



.ees-swiper .swiper-slide {
  flex-shrink: 0;
  display: flex;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 320px;
  transition: width 1s cubic-bezier(.25, .85, .45, 1), transform 1s;
}


.ees-swiper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ees-swiper .swiper-slide-active img {
  transform: scale(1.18);

}

.ees-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* .ees-swiper .swiper-slide:not(.swiper-slide-active)::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45.31%, #000000 100%);

  mix-blend-mode: multiply;
} */

.ees-swiper .swiper-slide::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45.31%, #000000 100%);

  mix-blend-mode: multiply;
}

.ees-label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  color: #fff;
  pointer-events: none;
}

.ees-label h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 4px;
}

.ees-label h5 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 1s cubic-bezier(.25, .85, .45, 1), transform 1s;
  height: 0;
}

.ees-swiper .swiper-slide-active .ees-label h5 {
  opacity: 1;
  visibility: visible;
  height: 16px;
  /*  */
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* mobile */
.ees-mobile-swiper {
  width: 100%;
  overflow: hidden;
}

.ees-mobile-swiper .swiper-slide {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
}

.ees-mobile-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ees-mobile-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
  mix-blend-mode: multiply;
  z-index: 1;
}




/* get in touch */
/* .getin-touch-section {
  background-color: var(--gray-6);
} */

.getin-content {
  padding: 60px;
}





.getin-text h4 {
  max-width: 518px;
}




/* testimonial */
.testimonial-wrapper {
  padding: 50px 0;
}

.testimonial-header span {
  color: #000;
}

.testimonial-header h1,
.testimonial-header h3 {
  color: var(--gray-3);
  text-align: center;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-profile img {
  height: 50px;
  width: 50px;
  border-radius: 100%;
}

.testimonial-rating {
  display: flex;
  gap: 8px;
}

.testimonial-rating .wishlist-icon {
  color: #F0B429;
  stroke: currentColor;
  fill: currentColor;
}

.testimonial-swiper {
  width: 100%;
}

.swiper-slide {
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  background: var(--gray-6);
  box-shadow: 0px 7px 29px 0px #64646F33;
  padding: 24px;
  border-radius: 16px;
  gap: 16px !important;
  height: 100%;
  min-height: 235px;
}

.testimonial-card h4 {
  font-weight: 600;
}

.testimonial-content {
  color: var(--gray-1);
  font-weight: 500;
  font-style: italic;
}

.testimonial-content h5 {
  font-weight: 500;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* === Swiper and Button Styling (from feature section) === */

.swiper-wrapper-relative {
  position: relative;
  padding: 50px 0 60px 0;
}

.swiper-nav-buttons {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.feature-swiper-prev,
.feature-swiper-next {
  width: 40px;
  height: 40px;
  background-color: white;
  border: none;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
}

.feature-swiper-prev svg,
.feature-swiper-next svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-color);
  stroke-width: 2;
}

.feature-swiper-prev:disabled svg,
.feature-swiper-next:disabled svg {
  stroke: var(--gray-4);
}

.feature-swiper-prev:disabled,
.feature-swiper-next:disabled {
  cursor: default;
  pointer-events: none;
  opacity: 1;
}


/* form */
.form-section {
  position: relative;
  overflow: hidden;
}















.main-page .form-section::after {
  width: 70% !important;
}

.home-form .form-right {
  margin: 0 !important;
}











.contact-input::placeholder,
.contact-textarea::placeholder {
  color: var(--gray-3);
  font-size: 16px;
  font-weight: 500;
  opacity: 1;
  transition: color 0.3s ease;
}

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





/*  */
/* stack input + error vertically, even inside flex two‑column row */
.form-control.is-valid, .was-validated .form-control:valid,
.form-control.is-invalid, .was-validated .form-control:invalid{
  background-image: none;
}

/* green / red underline feedback */
.contact-input.is-valid,
.contact-textarea.is-valid {
  border-bottom-color: #4CAF50;
}

.contact-input.is-invalid,
.contact-textarea.is-invalid {
  border-bottom-color: #F44336;
}

/* error text */
.error-message {
  font-size: 13px;
  margin: 4px 0 0 10px;
  color: #F44336;
  display: none;
}



















































@media (min-width:1399px) {
  .occasion-card:hover .occasion-label h3 {
    white-space: nowrap;
  }
}



@media (max-width:1399px) {

  .hero-content-one,
  .hero-content-two,
  .hero-content-three {
    min-width: 256px;
  }

  .loc-body,
  .attendees-body,
  .seating-body {
    min-width: 256px;
  }


}

@media (min-width:1199px) {
  .ees-swiper .swiper-slide-active {
    width: 44% !important;
  }

  .ees-swiper .swiper-slide-prev {
    width: 27% !important;
  }

  .ees-swiper .swiper-slide-next {
    width: 28% !important;
  }

}


@media (max-width:1199px) {
  .hero-content-header h1 {
    font-size: 32px;
  }

  .hero-content-header h3 {
    font-size: 22px
  }

  .dashed-line {
    display: none;
  }

  .choose-wrapper {
    padding: 36px;
  }

  .choose-header h1 {
    font-size: 18px;
  }

  .choose-wrapper {
    gap: 30px;
  }

  .choose-part-one,
  .choose-part-two {
    gap: 40px;
  }


  .choose-body {
    flex-direction: column;
    margin: 0 auto;
    gap: 28px;
  }

  .choose-us-single {
    width: 142px;
  }

  .destination-section .occasions-grid .gx-2 {
    --bs-gutter-x: 18px;
  }

  .destination-section .occasions-grid {
    gap: 16px;
  }

  .destination-section .occasions-content {
    padding: 20px 0;
  }

  .destination-section .col-3 {
    width: 30%;
  }

  .destination-section .col-9 {
    width: 70%;
  }

  .choose-us-single h4 {
    max-width: 136px;
  }

  .ees-section .col-md-3 {
    width: 33%;
  }

  .ees-section .col-md-9 {
    width: 67%;
  }

  .ees-section {
    padding: 20px 0 0 60px;
  }
}

@media (max-width: 991px) {

  .hero-content {
    height: inherit;
    padding: 36px 36px 16px 36px;
  }

  .hero-content-header {
    position: relative;
    height: inherit;
  }

  .hero-section {
    min-height: 70%;
  }

  .hero-center-box {
    gap: 18px;
  }

  .hero-fade-wrapper {
    height: 70%;
  }

  .occasions-content {
    padding: 0 0 60px 0;
  }

  .occasion-label h3 {
    font-size: 16px;
  }

  .occasions-grid .gx-2 {
    --bs-gutter-x: 12px;
  }

  .occasions-grid .gy-2 {
    --bs-gutter-y: 12px;
  }

  .white-circle {
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .white-circle img {
    height: 28px;
    width: 28px;
  }

  .feature-content {
    padding: 20px 0;
  }

  .choose-us-single h4 {
    font-size: 18px;
    max-width: 124px;
  }



  .getin-text h2 {
    font-size: 22px;
    text-align: center;
  }

  .getin-text {
    gap: 12px;
  }

  /* .getin-text h4 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 26px;
  } */

  .getin-wrapper {
    padding: 20px 16px;
  }

  .testimonial-wrapper {
    padding: 30px 16px 20px 16px;
  }

  .swiper-wrapper-relative {
    padding: 20px 0 0 0;
  }

  .testimonial-card {
    box-shadow: none;
  }

  .testimonial-header h1 {
    font-size: 16px;
  }

  .testimonial-header span {
    font-size: 20px;
  }

  .testimonial-header h3 {
    font-size: 16px;
  }

  .swiper-nav-buttons {
    display: none;
  }

  .main-page .form-section::after {
    width: 100% !important;
  }

  .form-wrapper {
    padding: 20px 0;
  }

  .form-section::before {
    display: none;
  }

  .form-left img {
    height: 60px;
    width: 60px;
    margin-bottom: 12px;
  }

  .form-left span {
    font-size: 16px;
  }

  .form-left h1 {
    font-size: 20px;
  }

  .form-left h3 {
    font-size: 16px;
  }

  .form-left {
    margin-bottom: 32px;
  }

  .contact-form {
    gap: 16px;
  }

  .form-btn {
    max-height: 44px;
    max-width: 168px;
    padding: 6px 12px;
  }

  .feature-header h2 {
    font-size: 20px;
  }

  .feature-content {
    gap: 20px;
  }

  .see-all-btn {
    font-size: 16px;
  }

  .feature-section .swiper-wrapper-relative {
    padding-bottom: 0;
  }

  .easy {
    max-width: 104px !important;
  }

  .ees-section {
    padding: 20px 0px 16px 20px;
  }

  .event-left-top h1 {
    text-align: center;
    font-size: 20px;
  }

  .ees-left {
    margin: 0 auto;
  }

  .event-left-top span {
    font-size: 16px;
    color: var(--gray-3);
    margin-left: 8px;
  }

  .event-left-top h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-3);
    text-align: center;
  }

  .ees-swiper .swiper-slide-active {
    width: 70% !important;
  }

  .ees-desktop-controls {
    justify-content: center;
    max-width: 156px;
    margin: 0 auto;
    margin-top: 24px;
  }

  .ees-btn {
    width: auto;
  }

}

@media (max-width: 767px) {
  .hero-content-header h1 {
    font-size: 22px;
  }

  .hero-content-header h3 {
    font-size: 16px;
  }

  .hero-content {
    height: inherit;
  }

  .occasions-header h1 {
    font-size: 18px;
  }

  .occasions-header span {
    font-size: 22px;
  }

  .occasions-header h3 {
    font-size: 18px;
    margin-bottom: 30px;
  }


  .occasion-card {
    height: 180px;
  }

  .choose-header h1 {
    font-size: 16px;
  }



  .ees-section .row {
    flex-direction: column;
  }

  .ees-left {
    text-align: center;
    margin-bottom: 32px;
  }

  .ees-btn {
    width: auto;
    padding: 10px 24px;
    margin-inline: auto;
  }

  .ees-swiper .swiper-slide {}

  .ees-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    min-width: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1s;
    display: block;
  }

  .ees-label h5 {
    opacity: 1;
    transform: none;
  }

  .ees-counter {
    font-size: 1rem;
  }

  .ees-swiper .swiper-slide-active {
    width: 70% !important;
  }

}

@media (max-width: 575px) {
  .hero-content-header h1 {
    font-size: 20px;
    max-width: 270px;
    padding-bottom: 12px;
  }

  .hero-content-header h3 {
    font-size: 14px;
    max-width: 350px;
  }

  .occasions-header h1 {
    font-size: 16px;
  }

  .occasions-header span {
    font-size: 22px;
  }

  .occasions-header h3 {
    font-size: 16px;
  }

  .occasion-card {
    height: 136px;
  }

  .occasion-label h3 {
    font-size: 12px;
  }

  .choose-us-single h4 {
    font-size: 16px;
  }



  .swiper-nav-buttons {
    display: none;
  }

  .testimonial-header h3 {
    font-size: 16px;
    text-align: center;
    max-width: 298px;
    margin: 0 auto;
  }

  .feature-btn-purple {
    /* height: 32px; */
    font-size: 14px;
  }

  .feature-btn {
    max-height: 44px;
    font-size: 14px;
  }

  .choose-part-one {
    display: flex;
    flex-direction: column;
  }

  .choose-part-two {
    display: flex;
    flex-direction: column;
  }

  #tooltip-mobile span {
    height: 30px;
    width: 50px;
  }

  #range-mobile::-webkit-slider-thumb {
    height: 20px;
    width: 20px;
  }

  #range-mobile::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
  }

  .occasion-card:hover .occasion-label h3 {
    font-size: 15px;
  }

  .occasion-label {
    left: 10px;
  }

  .choose-us-single h4 {
    max-width: 108px;
  }

  .easy {
    max-width: 80px !important;
  }

  .choose-body {
    flex-direction: row;
    gap: 0;
  }

  .choose-us-single {
    width: 126px;
  }


  .ees-swiper .swiper-slide-active {
    width: 90% !important;
  }

  .ees-label h5 {
    font-size: 14px;
  }


}

@media (max-width: 390px) {
  .feature-rating {
    display: none;
  }

  .wishlist-circle {
    height: 30px;
    width: 30px;
    padding: 6px;
  }

}