:root {
  --background: hsl(0 0% 100%);
  --foreground: hsl(0 0% 23%);
  --primary: hsl(355 78% 55%);
  --primary-foreground: hsl(0 0% 98%);
  --accent: hsl(24 95% 53%);
  --fade-duration: 3s;
  --display-duration: 6s;
  --input: hsl(220 13% 91%);
  --card: hsl(0 0% 100%);
  --card-foreground: hsl(0 0% 23%);
  --card-bg-from: hsl(24 95% 53%);
  --card-bg-to: hsla(24 95% 53% / 0.8);
  --muted-foreground: hsl(0 0% 40%);
  --muted: hsl(217 12% 94%);
  --success: hsl(142 76% 36%);
  --shadow-soft: 0 4px 20px -8px hsl(355 78% 55% / 0.3);
  --ring: hsl(220 91% 32%);
}

/* General Reset */
body {
  margin: 0;
  font-family:
    ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";
  color: var(--foreground);
  background: var(--background);
}

/* Hero Section */
.hero-section {
  /* padding-top: 134px; */
  margin-top: 55px;
  position: relative;
  background: linear-gradient(
    to bottom right,
    var(--background),
    hsl(355 78% 95%)
  );
}

/* Mobile Only */
.hero-mobile {
  display: block;
  position: relative;
  height: 210px;
}

.slideshow {
  height: 100%;
}

.slideshow .owl-carousel.owl-loaded {
  height: 100%;
  margin-bottom: 0px;
}

.slideshow .owl-carousel .owl-stage-outer {
  height: 100%;
}

.slideshow img {
  width: 100%;
  height: auto;
}

.mobile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  z-index: 1;
  /* margin-bottom: 19.9px; */
}

.overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.4)
  );
}

.overlay-content {
  position: relative;
  z-index: 10;
  padding: 1.5rem;
  width: 100%;
}

.logo {
  height: 40px;
  margin-bottom: 1rem;
}

.hero-heading {
  color: white;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
}

.text-primary {
  color: var(--primary);
}

.footer {
  background: #e6e7e8;
  padding: 20px 0;
}

.social_icons ul {
  text-align: right;
  margin: 0;
  padding: 0;
}

.social_icons ul li {
  display: inline-block;
  margin: 5px;
  border-bottom: 0 !important;
}

/* Desktop Section */
.hero-desktop {
  margin-top: 55px;
  display: none;
  position: relative;
  padding: 5rem 2rem;
  color: white;
  /* background: url("your-desktop-bg.jpg") center/cover no-repeat; */
}

.gradient-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), transparent);
}

.gradient-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2));
}

.hero-container {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
}

.logo-large {
  height: 80px;
}

.hero-title {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
}

.hero-subtitle {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 3.2rem;
  margin-bottom: 30px;
  margin-top: 3rem;
}

.price {
  color: var(--primary);
  font-weight: 700;
  font-size: 2.4rem;
}

.hero-desc {
  font-size: 1.8rem;
  max-width: 672px;
  color: rgba(255, 255, 255, 0.9);
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  max-width: 600px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 500;
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  margin-right: 7px;
  margin-left: 0px;
}

.mumbai-banner {
  background: rgba(255, 255, 255, 0.95);
  color: var(--foreground);
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(220, 53, 69, 0.2);
  margin-top: 1rem;
}

.promo-banner-title {
  font-size: 1.4rem;
  color: gray;
  font-weight: 500;
  line-height: 2rem;
}

.banner-text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  color: hsl(var(--foreground));
}

/* Lead Form Placeholder */
.form-placeholder {
  background: #fffffff2;
  color: var(--foreground);
  border-radius: 16px;
  text-align: center;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile Content */
.mobile-content {
  display: block;
  padding: 2rem 32px;
  background: var(--background);
}

.mobile-line {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

.mobile-price {
  text-align: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 20px;
  margin-top: 0.5rem;
}

.mobile-desc {
  text-align: center;
  font-size: 16px;
  color: hsl(0 0% 40%);
  margin-top: 1rem;
}

.mobile-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0rem;
  margin-top: 1.5rem;
}

.slideshow-desktop {
  display: none;
  /* hidden on mobile */
}

.chat-with-us-div {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 2rem;
  gap: 10px;
}

.chat-with-us-div i {
  font-size: 25px;
  color: var(--primary);
}

.chat-with-us-form-div {
  padding: 0px 24px;
  padding-bottom: 24px;
}

.bar-code-pink-div {
  padding: 16px;
  background-color: #f8f0ef;
  border-radius: 8px;
}

.bar-code-div {
  padding: 12px;
  border-radius: 16px;
  border: 1px solid hsl(220 13% 91%);
  background: white;
  margin: 0 auto;
  display: inline-block;
}

.bar-code-img {
  width: 120px;
  height: 120px;
}

.scan-qr-text {
  font-size: 1.2rem;
  margin-top: 8px;
  font-weight: 400;
}

.help-us-div {
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 2rem;
  color: var(--foreground);
  margin-top: 20px;
  padding-top: 20px;
  gap: 10px;
}

.duration-minus-div {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--input);
  background-color: white;
  width: 35px;
  height: 35px;
  border-radius: 8px;
  cursor: pointer;
}

.duration-minus-div img {
  width: 16px;
  height: 16px;
}

.duration-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 5px;
}

.duration-input-div {
  border: 1px solid var(--input);
  flex: 1;
  height: 35px;
  background: white;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.help-us-div i {
  color: var(--primary);
  font-size: 20px;
}

.promo-form-input-div {
  margin-top: 15px;
}

.promo-form-input-div p img {
  width: 12px;
  height: 12px;
}

.promo-mobile-form-input-div {
  margin-top: 10px;
}

.promo-form-input-div p {
  margin-bottom: 2px;
  text-align: start;
  font-size: 1.2rem;
  font-weight: 500;
}

.promo-form-input-div input:focus-visible {
  outline: 2px solid var(--ring);
  /* border: 2px solid var(--ring); */
  outline-offset: 2px;
}

.promo-mobile-form-input-div p {
  margin-bottom: 2px;
  text-align: start;
  font-size: 1.2rem;
  font-weight: 500;
}

.promo-mobile-form-input-div p img {
  width: 12px;
  height: 12px;
}

.promo-form-input-div select {
  background-color: var(--background);
  font-size: 1.4rem;
  border: 1px solid var(--input) !important;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
}

.promo-mobile-form-input-div select {
  background-color: var(--background);
  font-size: 1.4rem;
  border: 1px solid var(--input) !important;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
}

.mobile-visit-div {
  margin-top: 20px !important;
}

.promo-form-input-div input {
  background-color: var(--background);
  font-size: 1.4rem;
  border: 1px solid var(--input) !important;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
}

.left-slider-icon {
  background-color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.gradient-text {
  /* Use your defined design tokens for primary and accent */
  background: linear-gradient(to right, var(--primary), var(--accent));

  /* Make text use the background as its fill */
  -webkit-background-clip: text;
  background-clip: text;

  /* Hide the normal text color to show the gradient */
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.left-slider-icon:hover {
  background-color: #f97015;
}

.left-slider-icon:hover img {
  filter: brightness(0) invert(1);
}

.left-slider-icon img {
  width: 15px;
  height: 15px;
}

.promo-mobile-form-input-div input {
  background-color: var(--background);
  font-size: 1.4rem;
  border: 1px solid var(--input) !important;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
}

.visit-div {
  margin-top: 8px;
  padding: 1.2rem;
  border-radius: 16px;
  background-color: #f7edea;
  font-size: 1.2rem;
}

.schedule-visit-div {
  display: flex;
  align-items: center;
  cursor: pointer;
  width: max-content;
}

.circle-schedule-not-selected {
  border: 1px solid var(--primary);
  border-radius: 50%;
  width: 1.6rem;
  height: 1.6rem;
  cursor: pointer;
}

.select-date-div {
  padding-left: 20px;
}

.schedule-visit-text {
  font-weight: 500;
  font-size: 1.2rem;
  margin-left: 10px;
}

.select-date-text {
  text-align: start;
  margin: 10px 0px;
}

.date-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.margin-top-10 {
  margin-top: 10px;
}

.custom-date-div {
  padding: 1.2rem 0;
  margin-left: 20px;
  border-top: 1px solid var(--primary);
  margin-top: 1.2rem;
  position: relative;
}

.custom-date-div label {
  position: relative;
}

.custom-datepicker {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0 !important;
  z-index: -1;
}

.select-custom-date-text {
  text-align: start;
}

.custom-date-div label {
  display: flex;
  align-items: center;
  justify-content: start;
  background-color: white;
  width: 100%;
  padding: 1.2rem;
  margin-top: 10px;
  border-radius: 16px;
  gap: 12px;
  cursor: pointer;
}

.time-preference-div {
  margin-top: 1.2rem;
  margin-left: 20px;
  border-top: 1px solid var(--primary);
}

.submit-promo-enquiry {
  margin-top: 18px;
  width: 100%;
  background-color: var(--primary);
  outline: none;
  border: 1px solid var(--primary);
  color: white;
  font-weight: 500;
  font-size: 1.4rem;
  padding: 1.2rem 2.4rem;
  border-radius: 16px;
}

.disable-btn {
  opacity: 0.5 !important;
}

.info-text {
  font-size: 1.2rem;
  margin-top: 12px;
  color: hsl(0 0% 40%);
  font-weight: 500;
}

.mobile-info-text {
  font-size: 1.2rem;
  margin-top: 12px;
  color: hsl(0 0% 40%);
  font-weight: 500;
  text-align: center;
}

.promo-service-section {
  padding: 64px 0px;
  background: var(--background);
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
}

.service-container {
  padding-left: 16px;
  padding-right: 16px;
}

.promo-service-section-heading-div {
  text-align: center;
  margin-bottom: 48px;
}

.promo-service-section-heading-div h2 {
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--foreground);
}

.promo-service-section-heading-div p {
  font-size: 18px;
  line-height: 28px;
  max-width: 768px;
  margin: 0 auto;
  color: var(--muted-foreground);
}

.promo-inventories-div {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-up {
  animation: slide-up 0.6s ease-out;
}

.promo-inventories-card {
  background-color: #fff9f9;
  border-radius: 8px;
  border-width: 1px;
  position: relative;
  overflow: hidden;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-duration: 300ms;
  animation-duration: 300ms;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-shadow: var(--shadow-soft);
}

.promo-inventory-offer {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: var(--primary);
  padding: 8px 12px;
  border-radius: 12px;
  font-weight: 700;
  color: var(--primary-foreground);
  font-size: 12px;
  text-align: center;
  min-width: 95px;
}

.scroll-top-div {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0 !important;
  transform: translateY(20px);
  /* Start off-screen */
  transition:
    opacity 0.4s ease,
    transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
  pointer-events: none;
  /* Prevent click when hidden */
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.scroll-top-div.show {
  opacity: 1 !important;
  transform: translateY(0);
  /* Slide up into view */
  pointer-events: all;
  display: flex !important;
  justify-content: center !important;
  align-items: center;
}

.scroll-top-div i {
  font-size: 20px;
}

.promo-inventories-card:hover {
  background-color: #fff2e9;
}

.promo-inventories-card:hover h3 {
  color: var(--primary);
  transition: color 0.3s ease;
}

.promo-inventories-card:hover a {
  border: 1px solid var(--primary);
}

.promo-inventories-card-header {
  padding: 24px;
}

.promo-inventories-card-header h3 {
  font-size: 20px;
  color: var(--foreground);
  font-weight: 700;
}

.promo-inventories-card-header p {
  color: var(--primary);
  font-weight: 700;
  font-size: 2.4rem;
}

.promo-inventories-card-content {
  color: var(--muted-foreground);
  margin-bottom: 16px;
  padding: 0px 24px;
  font-size: 16px;
}

.promo-inventories-card-content-list {
  color: var(--muted-foreground);
  list-style: none;
  padding-left: 25px;
}

.promo-inventories-card-content-list li {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.promo-inventories-card-content-list li::before {
  content: "";
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 12px;
}

.promo-inventories-card-button-div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 24px 24px 24px;
  margin-top: 20px;
}

.promo-inventories-card-button-div a:hover {
  background-color: var(--accent);
  color: white;
  transition: all 0.5s ease;
}

.promo-inventories-card-button-div a {
  width: 100%;
  padding: 12px 24px;
  background-color: white;
  outline: none;
  border: 1px solid var(--input);
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
  color: var(--foreground);
  text-decoration: none;
}

.promo-amenities-section {
  padding: 64px 0px;
  background-color: #fcfbfb;
}

.amenities-grid {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: repeat(1, 1fr);
}

.amenity-card {
  border-radius: 8px;
  color: var(--foreground);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  animation-duration: 300ms;
  animation: fade-in 0.6s ease-out;
  background-color: rgb(255 255 255 / 0.8);
}

.amenity-card-content:hover .amenity-icon-div div {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.amenity-card-content:hover h3 {
  color: var(--primary);
  transition: color 0.3s ease;
}

@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.amenity-card-content {
  padding: 24px;
}

.amenity-icon-div {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.amenity-icon-div div {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  animation-duration: 300ms;
  background-color: #f0f1f3;
}

.amenity-card-content h3 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--foreground);
}

.amenity-card-content p {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.625;
}

.amenity-icon-div div img {
  font-size: 27px;
  width: 32px;
  height: 32px;
}

.amenity-icon-div div .fa-coffee {
  color: var(--card-bg-from);
}

.amenity-icon-div div .fa-wifi {
  color: var(--primary);
}

.amenity-icon-div div .fa-users {
  color: var(--success);
}

.amenity-icon-div div .fa-wrench {
  color: var(--primary);
}

.amenity-icon-div div .fa-print {
  color: var(--card-bg-from);
}

.amenity-icon-div div .fa-building {
  color: var(--success);
}

.amenity-icon-div div .fa-car {
  color: var(--primary);
}

.amenity-icon-div div .fa-map-marker {
  color: var(--card-bg-from);
}

.promo-network-section {
  padding: 64px 0px;
  background: var(--background);
}

.promo-network-heading-div {
  text-align: center;
  margin-bottom: 48px;
}

.promo-network-heading-div h2 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 1.6rem;
  color: var(--foreground);
}

.promo-network-heading-div div {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}

.promo-network-heading-div p {
  font-size: 18px;
  line-height: 28px;
  color: var(--muted-foreground);
  white-space: normal;
}

.promo-city-networks-div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.promo-city-networks-div a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 8px;
  text-decoration: none;
  background-color: var(--card);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
  animation-duration: 200ms;
  animation: fade-in 0.6s ease-out;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.promo-city-networks-div a img {
  width: 32px;
  height: 32px;
}

.promo-city-networks-div a div {
  font-size: 12px;
  line-height: 16px;
  color: var(--muted-foreground);
}

.promo-city-networks-div a div :first-child {
  font-weight: 600;
  color: var(--foreground);
  font-size: 16px;
  line-height: 24px;
}

.promo-footer-section {
  padding: 80px 0px;
  background-color: var(--background);
  color: var(--foreground);
  position: relative;
  overflow: hidden;
}

.footer-container {
  text-align: center;
  position: relative;
  z-index: 10;
}

.footer-container div {
  max-width: 896px;
  margin: 0 auto;
}

.footer-container div h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.25;
}

.footer-container div h2 span {
  color: var(--primary);
}

.footer-container div p {
  font-size: 20px;
  line-height: 1.625;
  color: var(--muted-foreground);
  max-width: 768px;
  margin: 0 auto;
  margin-bottom: 32px;
}

.promo-gallery-section {
  padding: 64px 0px;
  background-color: #f9fafa;
}

.promo-gallery-heading-div {
  text-align: center;
  margin-bottom: 48px;
}

.promo-gallery-heading-div h2 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--foreground);
}

.promo-gallery-heading-div p {
  font-size: 18px;
  line-height: 28px;
  color: var(--muted-foreground);
  max-width: 672px;
  margin: 0 auto;
}

.promo-tabs {
  width: 100%;
}

.promo-tabs-list {
  display: inline-flex;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: var(--muted);
  padding: 4px;
  color: var(--muted-foreground);

  display: grid;
  width: 100%;
  max-width: 448px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 32px;
}

.active {
  padding-bottom: 16px;
}

.active-trigger-tab {
  color: var(--foreground);
  background-color: var(--background);
  box-shadow: var(--shadow-soft);
}

.promo-tab-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  cursor: pointer;
}

.promo-tab-content {
  margin-top: 0;
}

.schedule-visit-div i {
  font-size: 20px;
  color: var(--primary);
}

.lead-form-mobile {
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
  border-radius: 18px;
}

.active .icon {
  transform: rotate(180deg);
}

.icon {
  transition: transform 0.3s ease;
}

.promo-accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  text-decoration: none;
  border-bottom: 1px solid var(--input);
  color: var(--muted-foreground);
}

.lead-form-mobile-header {
  padding: 16px;
  font-size: 20px;
  line-height: 28px;
  color: var(--foreground);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.lead-form-mobile-header i {
  font-size: 25px;
  color: var(--primary);
}

.lead-form-mobile-content {
  margin-top: 16px;
  padding: 0px 16px;
  padding-bottom: 16px;
}

.promo-contact-section {
  border-radius: 16px;
  padding: 16px;
  background-color: #f8efef;
}

.promo-contact-section a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  background-color: #f0fdf4;
  color: #15803d;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.help-us-reach-you {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: var(--foreground);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0px;
  padding-top: 20px;
}

.help-us-reach-you i {
  font-size: 20px;
  color: var(--primary);
}

.promo-faq-section {
  position: fixed;
  right: 0;
  top: 200px;
  z-index: 50;
}

.promo-faq-trigger-btn {
  background-color: #ef4444;
  color: white;
  border: 1px solid #ef4444;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  padding: 32px 0px;
  width: 32px;
  font-weight: 500;
  font-size: 12px;
  cursor: pointer;
  height: 10px;
  display: flex;
}

.promo-faq-trigger-btn div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transform: rotate(-90deg);
  white-space: nowrap;
}

.promo-faq-trigger-btn div img {
  /* font-size: 16px; */
  width: 14px;
  height: 14px;
}

.promo-faq-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 9999;
  display: grid;
  width: 100%;
  max-width: 512px;
  transform: translate(-50%, -50%);
  gap: 16px;
  background-color: var(--background);
  padding: 24px;
  border-radius: 16px;

  max-width: 768px;
  max-height: 80vh;
  overflow-y: auto;
}

/* .promo-accordion-item {
  border-bottom: 1px solid var(--input);
  padding: 16px 0;
  cursor: pointer;
} */

.promo-faq-modal-overlay {
  position: fixed;
  inset: 0px;
  z-index: 9999;
  background-color: rgb(0 0 0 / 0.8);
}

.promo-faq-modal-header {
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
}

.promo-faq-modal-header .close-icon {
  position: absolute;
  top: 0;
  right: 0;
  height: 16px;
  width: 16px;
  cursor: pointer;
}

.promo-faq-modal-header div {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.promo-faq-modal-header div i {
  font-size: 24px;
}

.promo-accordion-container hr {
  border: 1px solid var(--input);
  margin: 0px;
}

.promo-accordion-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 0;
  cursor: pointer;
}

.promo-accordion-button:hover span {
  text-decoration: underline;
  color: var(--primary);
}

.promo-accordion-button:hover i {
  color: var(--primary);
}

.promo-accordion-button:hover .icon {
  text-decoration: none;
}

.promo-rotate {
  animation: spin 2s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}

@media (max-width: 768px) {
  .promo-faq-modal {
    border-radius: 0px;
  }

  .promo-faq-modal-header .close-icon {
    top: 0px;
    right: 0px;
    width: 16px;
    height: 16px;
  }

  .promo-inventory-offer {
    top: 5px;
    right: 5px;
    padding: 5px 11px;
  }

  .promo-inventories-card-header {
    padding: 20px;
  }

  .promo-service-section-heading-div h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .social_icons ul {
    text-align: center;
  }

  .foot_last p {
    text-align: center;
    font-size: 12px;
  }
}

@media (min-width: 768px) {
  .promo-faq-trigger-btn {
    width: 40px;
  }

  .promo-faq-section {
    top: 50%;
    transform: translateY(-50%);
  }

  /* .hero-section {
    padding-top: 145px;
  } */

  .promo-gallery-heading-div h2 {
    font-size: 36px;
    line-height: 40px;
  }

  .footer-container div p {
    font-size: 24px;
    line-height: 32px;
  }

  .footer-container div h2 {
    font-size: 48px;
    line-height: 1;
  }

  .promo-city-networks-div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .promo-network-heading-div h2 {
    font-size: 36px;
    line-height: 40px;
  }

  /* .social_icons ul {
    text-align: center;
  } */

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-inventories-div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .footer-container div h2 {
    font-size: 60px;
    line-height: 1;
  }

  .promo-city-networks-div {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .promo-network-heading-div p {
    white-space: nowrap;
  }

  .amenities-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .promo-inventories-div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-desktop {
    display: block;
  }

  .mobile-content {
    display: none;
  }

  .hero-mobile {
    display: none;
  }

  .slideshow-desktop {
    display: block;
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
  }

  .slides-bg {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeSlideDesktop calc(var(--display-duration) * 3) infinite;
  }

  .bg:nth-child(1) {
    animation-delay: 0s;
  }

  .bg:nth-child(2) {
    animation-delay: var(--display-duration);
  }

  .bg:nth-child(3) {
    animation-delay: calc(var(--display-duration) * 2);
  }

  @keyframes fadeSlideDesktop {
    0% {
      opacity: 0;
    }

    5% {
      opacity: 1;
    }

    30% {
      opacity: 1;
    }

    35% {
      opacity: 0;
    }

    100% {
      opacity: 0;
    }
  }
}
