/* Hotel Booking Page Styles */

@font-face {
  font-family: "LemonMilk";
  src: url("LEMONMILK-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.hotel-booking-hero {
  position: relative;
  min-height: 100vh;
  background-color: #2d3b43;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.hotel-booking-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3;
}

.hotel-booking-hero__background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hotel-booking-hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.hotel-booking-hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hotel-booking-hero__title {
  font-family: "LemonMilk", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hotel-booking-hero__description {
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
  max-width: 600px;
}

.hotel-booking-hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.hotel-booking-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0.5px;
}

.hotel-booking-hero__btn--primary {
  background-color: #f6941f;
  color: #ffffff;
}

.hotel-booking-hero__btn--primary:hover {
  background-color: #d47a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(246, 148, 31, 0.4);
}

.hotel-booking-hero__btn--secondary {
  background-color: #09e;
  color: #ffffff;
}

.hotel-booking-hero__btn--secondary:hover {
  background-color: #0077cc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 153, 238, 0.4);
}

.hotel-booking-hero__media {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hotel-booking-hero__media-wrapper {
  position: relative;
  width: 100%;
  max-width: 700px;
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hotel-booking-hero__laptop-image {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* What is Section */
.hotel-booking-hero__what-is {
  position: relative;
  z-index: 2;
  text-align: left;
  margin-top: 80px;
  padding: 0 20px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.hotel-booking-hero__what-is-title {
  font-family: "LemonMilk", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 36px;
  line-height: 100%;
  color: #ffffff;
  margin: 0 0 24px;
  max-width: 833px;
  text-transform: uppercase;
  letter-spacing: 0%;
  text-align: left;
  white-space: nowrap;
}

.hotel-booking-hero__what-is-description {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 100%;
  color: #ffffff;
  margin: 0;
  max-width: 834px;
  letter-spacing: 0%;
  text-align: left;
}

/* Features Section */
.hotel-booking-hero__features {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  padding: 0 20px;
}

.hotel-booking-hero__features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.hotel-booking-hero__feature-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px 32px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-booking-hero__feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hotel-booking-hero__feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 1;
}

.hotel-booking-hero__feature-icon svg,
.hotel-booking-hero__feature-icon .global-inventory-icon,
.hotel-booking-hero__feature-icon .multi-source-pricing-icon,
.hotel-booking-hero__feature-icon .real-time-booking-icon {
  width: 64px;
  height: 64px;
  display: block;
  margin: 0;
  flex-shrink: 0;
}

/* Ensure all SVG icons have consistent sizing regardless of viewBox */
.hotel-booking-hero__feature-icon svg {
  width: 64px !important;
  height: 64px !important;
  max-width: 64px !important;
  max-height: 64px !important;
  min-width: 64px;
  min-height: 64px;
  object-fit: contain;
}

/* Specific fix for multi-source-pricing icon to match others - scale to match visual size */
.hotel-booking-hero__feature-icon .multi-source-pricing-icon {
  width: 64px !important;
  height: 64px !important;
  max-width: 64px !important;
  max-height: 64px !important;
  min-width: 64px;
  min-height: 64px;
  transform: scale(1.15);
  transform-origin: center;
}

.hotel-booking-hero__feature-title {
  font-weight: 700;
  font-size: 20px;
  color: #2d3b43;
  margin: 0 0 12px;
  line-height: 1.3;
  text-align: left;
}

/* Register for Access modal */
.hotel-booking-register-modal {
  border-radius: 16px;
  border: none;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
}

.hotel-booking-register-modal .modal-header {
  border-bottom: 1px solid #eef1f5;
  padding: 1.25rem 1.5rem;
}

.hotel-booking-register-modal .modal-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #1f2933;
}

.hotel-booking-register-modal .modal-body {
  padding: 1.5rem;
}

.hotel-booking-register-form .form-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4b5563;
}

.hotel-booking-register-form .form-control {
  border-radius: 10px;
  border: 1px solid #d1d5db;
  padding: 0.65rem 0.85rem;
  font-size: 0.95rem;
}

.hotel-booking-register-form .form-control:focus {
  border-color: #0ba2df;
  box-shadow: 0 0 0 1px rgba(11, 162, 223, 0.2);
}

.hotel-booking-register-submit {
  padding-inline: 1.5rem;
  border-radius: 999px;
}

@media (max-width: 575.98px) {
  .hotel-booking-register-modal .modal-dialog {
    margin: 0.75rem;
  }
}

.hotel-booking-hero__feature-description {
  font-size: 16px;
  line-height: 1.5;
  color: #2d3b43;
  margin: 0;
  text-align: left;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hotel-booking-hero__container {
    gap: 40px;
  }
  
  .hotel-booking-hero__title {
    font-size: 40px;
  }
  
  .hotel-booking-hero__description {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .hotel-booking-hero {
    min-height: auto;
    padding: 60px 0;
  }
  
  .hotel-booking-hero__container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hotel-booking-hero__content {
    align-items: center;
  }
  
  .hotel-booking-hero__title {
    font-size: 36px;
  }
  
  .hotel-booking-hero__description {
    max-width: 100%;
  }
  
  .hotel-booking-hero__actions {
    justify-content: center;
  }
  
  .hotel-booking-hero__media-wrapper {
    transform: none;
    max-width: 600px;
  }
  
  .hotel-booking-hero__what-is {
    margin-top: 60px;
  }
  
  .hotel-booking-hero__what-is-title {
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
  }
  
  .hotel-booking-hero__what-is-description {
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
  }
  
  .hotel-booking-hero__features {
    margin-top: 50px;
  }
  
  .hotel-booking-hero__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hotel-booking-hero {
    padding: 40px 0;
  }
  
  .hotel-booking-hero__title {
    font-size: 28px;
  }
  
  .hotel-booking-hero__description {
    font-size: 15px;
  }
  
  .hotel-booking-hero__btn {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
    max-width: 280px;
  }
  
  .hotel-booking-hero__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hotel-booking-hero__what-is {
    margin-top: 50px;
  }
  
  .hotel-booking-hero__what-is-title {
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0%;
  }
  
  .hotel-booking-hero__what-is-description {
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
  }
  
  .hotel-booking-hero__features {
    margin-top: 40px;
  }
  
  .hotel-booking-hero__feature-card {
    padding: 32px 24px;
  }
  
  .hotel-booking-hero__feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
  }
  
  .hotel-booking-hero__feature-icon svg,
  .hotel-booking-hero__feature-icon .global-inventory-icon,
  .hotel-booking-hero__feature-icon .multi-source-pricing-icon,
  .hotel-booking-hero__feature-icon .real-time-booking-icon {
    width: 56px !important;
    height: 56px !important;
    max-width: 56px;
    max-height: 56px;
  }
  
  /* Ensure multi-source-pricing icon matches others on tablet */
  .hotel-booking-hero__feature-icon .multi-source-pricing-icon {
    width: 56px !important;
    height: 56px !important;
    transform: scale(1.15);
    transform-origin: center;
  }
  
  .hotel-booking-hero__feature-title {
    font-size: 18px;
  }
  
  .hotel-booking-hero__feature-description {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .hotel-booking-hero__container {
    padding: 0 15px;
  }
  
  .hotel-booking-hero__title {
    font-size: 24px;
  }
  
  .hotel-booking-hero__description {
    font-size: 14px;
  }
  
  .hotel-booking-hero__what-is {
    margin-top: 40px;
    padding: 0 15px;
  }
  
  .hotel-booking-hero__what-is-title {
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
  }
  
  .hotel-booking-hero__what-is-description {
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
  }
  
  .hotel-booking-hero__features {
    margin-top: 30px;
    padding: 0 15px;
  }
  
  .hotel-booking-hero__feature-card {
    padding: 28px 20px;
  }
  
  .hotel-booking-hero__feature-icon {
    font-size: 36px;
    margin-bottom: 12px;
  }
  
  .hotel-booking-hero__feature-icon svg,
  .hotel-booking-hero__feature-icon .global-inventory-icon,
  .hotel-booking-hero__feature-icon .multi-source-pricing-icon,
  .hotel-booking-hero__feature-icon .real-time-booking-icon {
    width: 48px !important;
    height: 48px !important;
    max-width: 48px;
    max-height: 48px;
  }
  
  /* Ensure multi-source-pricing icon matches others on mobile */
  .hotel-booking-hero__feature-icon .multi-source-pricing-icon {
    width: 48px !important;
    height: 48px !important;
    transform: scale(1.15);
    transform-origin: center;
  }
  
  .hotel-booking-hero__feature-title {
    font-size: 16px;
  }
  
  .hotel-booking-hero__feature-description {
    font-size: 14px;
  }
}

/* ===============================
   Who Can Access Section
   =============================== */

.hotel-booking-who-can-access {
  background-color: #f0f2f5;
  padding: 100px 0;
  position: relative;
}

.hotel-booking-who-can-access .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hotel-booking-who-can-access__title {
  font-family: "LemonMilk", sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 100%;
  color: #2d3b43;
  margin: 0 0 60px;
  text-transform: uppercase;
  letter-spacing: 0%;
  text-align: left;
}

.hotel-booking-who-can-access__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.hotel-booking-who-can-access__card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-booking-who-can-access__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.hotel-booking-who-can-access__card-icon {
  font-size: 56px;
  margin-bottom: 24px;
  display: block;
  line-height: 1;
  filter: grayscale(100%) brightness(0.3);
}

.hotel-booking-who-can-access__card-icon:has(svg) {
  filter: none !important;
}

.hotel-booking-who-can-access__card-icon svg {
  width: 56px;
  height: 56px;
  display: block;
  filter: none !important;
  margin: 0;
  isolation: isolate;
}

.hotel-booking-who-can-access__card-icon svg * {
  fill: #f6941f !important;
}

.hotel-booking-who-can-access__card-icon svg g {
  fill: #f6941f !important;
}

.hotel-booking-who-can-access__card-icon svg path {
  fill: #f6941f !important;
  stroke: #f6941f !important;
}

.hotel-booking-who-can-access__card-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #2d3b43;
  margin: 0 0 16px;
  line-height: 1.3;
  text-align: left;
}

.hotel-booking-who-can-access__card-description {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: #2d3b43;
  margin: 0;
  text-align: left;
}

.hotel-booking-who-can-access__info-banner {
  background-color: #e5f4ff;
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  border: none;
}

.hotel-booking-who-can-access__info-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background-color: #b3d9f2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* Speech bubble shape - rounded rectangle */
  border-radius: 8px;
}

.hotel-booking-who-can-access__info-icon::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 10px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #b3d9f2;
}

.hotel-booking-who-can-access__info-icon-inner {
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  font-style: italic;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  position: relative;
  z-index: 1;
}

.hotel-booking-who-can-access__info-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: #2d3b43;
  margin: 0;
  text-align: left;
  flex: 1;
  padding-top: 2px;
}

.hotel-booking-who-can-access__cta {
  text-align: center;
}

.hotel-booking-who-can-access__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 8px;
  background-color: #09e;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  outline: none;
}

.hotel-booking-who-can-access__cta-button:hover {
  background-color: #0077cc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 153, 238, 0.4);
  border: none;
  outline: none;
}

/* Responsive Design for Who Can Access Section */
@media (max-width: 992px) {
  .hotel-booking-who-can-access {
    padding: 80px 0;
  }
  
  .hotel-booking-who-can-access__title {
    font-size: 32px;
    margin-bottom: 48px;
  }
  
  .hotel-booking-who-can-access__cards {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  
  .hotel-booking-who-can-access__card {
    padding: 36px;
  }
  
  .hotel-booking-who-can-access__card-icon {
    font-size: 48px;
    margin-bottom: 20px;
  }
  
  .hotel-booking-who-can-access__info-banner {
    padding: 22px 24px;
    margin-bottom: 36px;
  }
}

@media (max-width: 768px) {
  .hotel-booking-who-can-access {
    padding: 60px 0;
  }
  
  .hotel-booking-who-can-access__title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .hotel-booking-who-can-access__cards {
    gap: 20px;
    margin-bottom: 36px;
  }
  
  .hotel-booking-who-can-access__card {
    padding: 32px 28px;
  }
  
  .hotel-booking-who-can-access__card-icon {
    font-size: 44px;
    margin-bottom: 20px;
  }
  
  .hotel-booking-who-can-access__card-title {
    font-size: 20px;
    margin-bottom: 14px;
  }
  
  .hotel-booking-who-can-access__card-description {
    font-size: 15px;
  }
  
  .hotel-booking-who-can-access__info-banner {
    padding: 20px 22px;
    margin-bottom: 32px;
    gap: 16px;
  }
  
  .hotel-booking-who-can-access__info-text {
    font-size: 15px;
  }
  
  .hotel-booking-who-can-access__cta-button {
    padding: 14px 32px;
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .hotel-booking-who-can-access {
    padding: 50px 0;
  }
  
  .hotel-booking-who-can-access .container {
    padding: 0 15px;
  }
  
  .hotel-booking-who-can-access__title {
    font-size: 24px;
    margin-bottom: 32px;
  }
  
  .hotel-booking-who-can-access__cards {
    gap: 16px;
    margin-bottom: 32px;
  }
  
  .hotel-booking-who-can-access__card {
    padding: 28px 24px;
  }
  
  .hotel-booking-who-can-access__card-icon {
    font-size: 40px;
    margin-bottom: 16px;
  }
  
  .hotel-booking-who-can-access__card-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .hotel-booking-who-can-access__card-description {
    font-size: 14px;
  }
  
  .hotel-booking-who-can-access__info-banner {
    padding: 18px 20px;
    margin-bottom: 28px;
    gap: 14px;
  }
  
  .hotel-booking-who-can-access__info-icon {
    width: 32px;
    height: 32px;
  }
  
  .hotel-booking-who-can-access__info-icon-inner {
    font-size: 18px;
  }
  
  .hotel-booking-who-can-access__info-text {
    font-size: 14px;
  }
  
  .hotel-booking-who-can-access__cta-button {
    padding: 12px 28px;
    font-size: 14px;
    width: 100%;
    max-width: 320px;
  }
}

/* ===============================
   Onboarding Process Section
   =============================== */

.hotel-booking-onboarding {
  background-color: #626262;
  padding: 100px 0;
  position: relative;
}

.hotel-booking-onboarding .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.hotel-booking-onboarding__title {
  font-family: "LemonMilk", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
  line-height: 100%;
  color: #ffffff;
  margin: 0 auto 24px;
  text-transform: uppercase;
  letter-spacing: 0%;
  text-align: center;
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hotel-booking-onboarding__subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 100%;
  color: #ffffff;
  margin: 0 auto 60px;
  text-align: center;
  letter-spacing: 0%;
  max-width: 443px;
}

.hotel-booking-onboarding__steps {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.hotel-booking-onboarding__connector {
  position: absolute;
  top: 40px;
  left: 40px;
  height: 2px;
  width: calc(100% - 80px);
  border-top: 2px dashed rgba(255, 255, 255, 0.3);
  z-index: 1;
  /* Start from center of first circle (40px from left) and end at center of last circle (40px from right) */
}

.hotel-booking-onboarding__step {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 250px;
}

.hotel-booking-onboarding__step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #f6941f;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(246, 148, 31, 0.3);
}

.hotel-booking-onboarding__step-number {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  color: #ffffff;
}

.hotel-booking-onboarding__step-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
  color: #ffffff;
  margin: 0 0 12px;
  text-align: center;
  letter-spacing: 0%;
}

.hotel-booking-onboarding__step-description {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
  margin: 0;
  text-align: center;
}

/* Responsive Design for Onboarding Section */
@media (max-width: 1200px) {
  .hotel-booking-onboarding__steps {
    padding: 0 20px;
  }
  
  .hotel-booking-onboarding__connector {
    left: 8%;
    right: 8%;
  }
}

@media (max-width: 992px) {
  .hotel-booking-onboarding {
    padding: 80px 0;
  }
  
  .hotel-booking-onboarding__title {
    font-size: 24px;
    margin-bottom: 20px;
    white-space: normal;
  }
  
  .hotel-booking-onboarding__subtitle {
    font-size: 14px;
    margin-bottom: 50px;
  }
  
  .hotel-booking-onboarding__steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 0;
  }
  
  .hotel-booking-onboarding__connector {
    display: none;
  }
  
  .hotel-booking-onboarding__step {
    max-width: 220px;
  }
  
  .hotel-booking-onboarding__step-circle {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .hotel-booking-onboarding__step-number {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .hotel-booking-onboarding {
    padding: 60px 0;
  }
  
  .hotel-booking-onboarding__title {
    font-size: 22px;
    margin-bottom: 18px;
    white-space: normal;
  }
  
  .hotel-booking-onboarding__subtitle {
    font-size: 13px;
    margin-bottom: 40px;
  }
  
  .hotel-booking-onboarding__steps {
    gap: 32px;
  }
  
  .hotel-booking-onboarding__step {
    max-width: 200px;
  }
  
  .hotel-booking-onboarding__step-circle {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
  }
  
  .hotel-booking-onboarding__step-number {
    font-size: 24px;
  }
  
  .hotel-booking-onboarding__step-title {
    font-size: 15px;
    margin-bottom: 10px;
  }
  
  .hotel-booking-onboarding__step-description {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .hotel-booking-onboarding {
    padding: 50px 0;
  }
  
  .hotel-booking-onboarding .container {
    padding: 0 15px;
  }
  
  .hotel-booking-onboarding__title {
    font-size: 20px;
    margin-bottom: 16px;
    white-space: normal;
  }
  
  .hotel-booking-onboarding__subtitle {
    font-size: 12px;
    margin-bottom: 36px;
  }
  
  .hotel-booking-onboarding__steps {
    gap: 28px;
  }
  
  .hotel-booking-onboarding__step {
    max-width: 100%;
    width: 100%;
  }
  
  .hotel-booking-onboarding__step-circle {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }
  
  .hotel-booking-onboarding__step-number {
    font-size: 22px;
  }
  
  .hotel-booking-onboarding__step-title {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .hotel-booking-onboarding__step-description {
    font-size: 12px;
  }
}

/* ===============================
   Platform Features Section
   =============================== */

.hotel-booking-platform-features {
  background-color: #f0f2f5;
  padding: 100px 0;
  position: relative;
}

.hotel-booking-platform-features .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.hotel-booking-platform-features__title {
  font-family: "LemonMilk", sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 100%;
  color: #2d3b43;
  margin: 0 0 60px;
  text-transform: uppercase;
  letter-spacing: 0%;
  text-align: left;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.hotel-booking-platform-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.hotel-booking-platform-features__card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 357px;
  height: 214px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.hotel-booking-platform-features__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.hotel-booking-platform-features__icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 1;
  filter: grayscale(0%);
}

.hotel-booking-platform-features__icon svg,
.hotel-booking-platform-features__icon .powerful-search-icon,
.hotel-booking-platform-features__icon .real-time-availability-icon,
.hotel-booking-platform-features__icon .multi-source-rate-comparison-icon,
.hotel-booking-platform-features__icon .detailed-hotel-profiles-icon,
.hotel-booking-platform-features__icon .booking-management-icon,
.hotel-booking-platform-features__icon .multi-currency-support-icon {
  width: 64px;
  height: 64px;
  display: block;
  margin: 0;
}

.hotel-booking-platform-features__card-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
  color: #2d3b43;
  margin: 0 0 12px;
  text-align: left;
  letter-spacing: 0%;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hotel-booking-platform-features__card-description {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 100%;
  color: #2d3b43;
  margin: 0;
  text-align: left;
  letter-spacing: 0%;
  flex: 1;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Responsive Design for Platform Features Section */
@media (max-width: 1200px) {
  .hotel-booking-platform-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hotel-booking-platform-features__card {
    width: 100%;
    max-width: 357px;
    height: auto;
    min-height: 214px;
  }
}

/* Intermediate breakpoint for smoother transitions */
@media (max-width: 950px) {
  .hotel-booking-platform-features__grid {
    gap: 20px;
  }
  
  .hotel-booking-featured-hotels__grid {
    gap: 18px;
  }
  
  .hotel-booking-what-our-users-say__testimonials {
    gap: 18px;
  }
}

@media (max-width: 992px) {
  .hotel-booking-platform-features {
    padding: 80px 0;
  }
  
  .hotel-booking-platform-features__title {
    font-size: 32px;
    margin-bottom: 48px;
  }
  
  .hotel-booking-platform-features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .hotel-booking-platform-features__card {
    width: 100%;
    max-width: 357px;
    padding: 28px;
    min-height: 200px;
  }
  
  .hotel-booking-platform-features__icon {
    font-size: 44px;
    margin-bottom: 18px;
  }
  
  .hotel-booking-platform-features__icon svg,
  .hotel-booking-platform-features__icon .powerful-search-icon,
  .hotel-booking-platform-features__icon .real-time-availability-icon,
  .hotel-booking-platform-features__icon .multi-source-rate-comparison-icon,
  .hotel-booking-platform-features__icon .detailed-hotel-profiles-icon,
  .hotel-booking-platform-features__icon .booking-management-icon,
  .hotel-booking-platform-features__icon .multi-currency-support-icon {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 768px) {
  .hotel-booking-platform-features {
    padding: 60px 0;
  }
  
  .hotel-booking-platform-features__title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .hotel-booking-platform-features__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .hotel-booking-platform-features__card {
    width: 100%;
    max-width: 100%;
    padding: 28px 24px;
    min-height: auto;
  }
  
  .hotel-booking-platform-features__icon {
    font-size: 40px;
    margin-bottom: 16px;
  }
  
  .hotel-booking-platform-features__icon svg,
  .hotel-booking-platform-features__icon .powerful-search-icon,
  .hotel-booking-platform-features__icon .real-time-availability-icon,
  .hotel-booking-platform-features__icon .multi-source-rate-comparison-icon,
  .hotel-booking-platform-features__icon .detailed-hotel-profiles-icon,
  .hotel-booking-platform-features__icon .booking-management-icon,
  .hotel-booking-platform-features__icon .multi-currency-support-icon {
    width: 52px;
    height: 52px;
  }
  
  .hotel-booking-platform-features__card-title {
    font-size: 15px;
    margin-bottom: 10px;
  }
  
  .hotel-booking-platform-features__card-description {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .hotel-booking-platform-features {
    padding: 50px 0;
  }
  
  .hotel-booking-platform-features .container {
    padding: 0 15px;
  }
  
  .hotel-booking-platform-features__title {
    font-size: 24px;
    margin-bottom: 32px;
  }
  
  .hotel-booking-platform-features__card {
    padding: 24px 20px;
  }
  
  .hotel-booking-platform-features__icon {
    font-size: 36px;
    margin-bottom: 14px;
  }
  
  .hotel-booking-platform-features__icon svg,
  .hotel-booking-platform-features__icon .powerful-search-icon,
  .hotel-booking-platform-features__icon .real-time-availability-icon,
  .hotel-booking-platform-features__icon .multi-source-rate-comparison-icon,
  .hotel-booking-platform-features__icon .detailed-hotel-profiles-icon,
  .hotel-booking-platform-features__icon .booking-management-icon,
  .hotel-booking-platform-features__icon .multi-currency-support-icon {
    width: 48px;
    height: 48px;
  }
  
  .hotel-booking-platform-features__card-title {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .hotel-booking-platform-features__card-description {
    font-size: 12px;
  }
}

/* Featured Hotels Section */
.hotel-booking-featured-hotels {
  background-color: #2d3b43;
  padding: 80px 0;
}

.hotel-booking-featured-hotels .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hotel-booking-featured-hotels__header {
  margin-bottom: 48px;
  text-align: left;
}

.hotel-booking-featured-hotels__title {
  font-family: "LemonMilk", "LEMON MILK", sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #ffffff !important;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.hotel-booking-featured-hotels__subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #ffffff !important;
  margin: 0;
  max-width: 834px;
}

.hotel-booking-featured-hotels__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hotel-booking-featured-hotels__card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.hotel-booking-featured-hotels__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.hotel-booking-featured-hotels__card-image-wrapper {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: #f0f0f0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-sizing: border-box;
}

.hotel-booking-featured-hotels__card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  transition: transform 0.3s ease;
}

.hotel-booking-featured-hotels__card:hover .hotel-booking-featured-hotels__card-image {
  transform: scale(1.05);
}

.hotel-booking-featured-hotels__card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hotel-booking-featured-hotels__card-name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #2d3b43;
  margin: 0 0 8px;
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hotel-booking-featured-hotels__card-location {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #656d78;
  margin: 0 0 8px;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
}

.hotel-booking-featured-hotels__card-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: #e8e8e8;
  color: #3b3e47;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 12px;
  margin-top: auto;
  width: fit-content;
}

/* Responsive Design for Featured Hotels */
@media (max-width: 1200px) {
  .hotel-booking-featured-hotels__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hotel-booking-featured-hotels {
    padding: 60px 0;
  }

  .hotel-booking-featured-hotels__title {
    font-size: 28px;
  }

  .hotel-booking-featured-hotels__subtitle {
    font-size: 13px;
  }

  .hotel-booking-featured-hotels__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hotel-booking-featured-hotels__card-image-wrapper {
    height: 240px;
    padding: 8px;
  }
  
  .hotel-booking-featured-hotels__card-image {
    object-fit: contain;
    object-position: center center;
  }
}

@media (max-width: 576px) {
  .hotel-booking-featured-hotels__card-image-wrapper {
    height: 220px;
    padding: 6px;
  }
  
  .hotel-booking-featured-hotels__card-image {
    object-fit: contain;
    object-position: center center;
  }
}

/* ===============================
   Why Travel Agents Love It Section
   =============================== */

.hotel-booking-why-travel-agents-love-it {
  background-color: #e8e8e8;
  padding: 100px 0 60px 0;
  position: relative;
}

.hotel-booking-why-travel-agents-love-it .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.hotel-booking-why-travel-agents-love-it__title {
  font-family: "LemonMilk", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0%;
  color: #2d3b43;
  margin: 0 0 50px;
  text-transform: uppercase;
  text-align: left;
  border-bottom: none;
  padding-bottom: 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.hotel-booking-why-travel-agents-love-it__title::after {
  display: none;
}

.hotel-booking-why-travel-agents-love-it__content {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 40px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hotel-booking-why-travel-agents-love-it__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hotel-booking-why-travel-agents-love-it__feature-item {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.hotel-booking-why-travel-agents-love-it__feature-item.active {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.hotel-booking-why-travel-agents-love-it__feature-header {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  position: relative;
}

.hotel-booking-why-travel-agents-love-it__feature-icon-wrapper {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotel-booking-why-travel-agents-love-it__feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #E5F4FF;
}

.hotel-booking-why-travel-agents-love-it__feature-icon svg {
  width: 100%;
  height: 100%;
}

.hotel-booking-why-travel-agents-love-it__feature-title-wrapper {
  flex: 1;
  position: relative;
  min-width: 0;
  padding-bottom: 4px;
}

.hotel-booking-why-travel-agents-love-it__feature-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: #2d3b43;
  margin: 0;
  padding: 0;
  transition: color 0.3s ease;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hotel-booking-why-travel-agents-love-it__feature-title.active {
  color: #f6941f;
}

.hotel-booking-why-travel-agents-love-it__feature-line {
  display: none;
}

.hotel-booking-why-travel-agents-love-it__feature-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #656d78;
  font-size: 20px;
  font-weight: 300;
  transition: color 0.3s ease;
}

.hotel-booking-why-travel-agents-love-it__feature-item.active .hotel-booking-why-travel-agents-love-it__feature-toggle {
  color: #09e;
}

.hotel-booking-why-travel-agents-love-it__feature-description {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease, margin 0.4s ease, visibility 0.4s ease;
  padding: 0;
  margin: 0;
  margin-left: 64px;
  visibility: hidden;
}

.hotel-booking-why-travel-agents-love-it__feature-item.active .hotel-booking-why-travel-agents-love-it__feature-description {
  padding-top: 12px;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  margin-top: 4px;
  margin-left: 64px;
  margin-right: 0;
  margin-bottom: 0;
  visibility: visible;
  overflow: visible;
  max-height: 500px;
}

.hotel-booking-why-travel-agents-love-it__feature-description p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #2d3b43;
  margin: 0;
  padding: 0;
  text-align: left;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hotel-booking-why-travel-agents-love-it__image-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  position: relative;
}

.hotel-booking-why-travel-agents-love-it__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.hotel-booking-why-travel-agents-love-it__video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
  border-radius: 12px;
  overflow: hidden;
}

.hotel-booking-why-travel-agents-love-it__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive Design for Why Travel Agents Love It */
@media (max-width: 992px) {
  .hotel-booking-why-travel-agents-love-it {
    padding: 80px 0;
  }
  
  .hotel-booking-why-travel-agents-love-it__title {
    font-size: 32px;
    margin-bottom: 48px;
  }
  
  .hotel-booking-why-travel-agents-love-it__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hotel-booking-why-travel-agents-love-it {
    padding: 60px 0;
  }
  
  .hotel-booking-why-travel-agents-love-it__title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .hotel-booking-why-travel-agents-love-it__content {
    gap: 32px;
  }
  
  .hotel-booking-why-travel-agents-love-it__feature-item {
    padding: 16px 20px;
  }
  
  .hotel-booking-why-travel-agents-love-it__feature-title {
    font-size: 16px;
  }
  
  .hotel-booking-why-travel-agents-love-it__feature-description p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .hotel-booking-why-travel-agents-love-it {
    padding: 50px 0;
  }
  
  .hotel-booking-why-travel-agents-love-it .container {
    padding: 0 15px;
  }
  
  .hotel-booking-why-travel-agents-love-it__title {
    font-size: 24px;
    margin-bottom: 32px;
  }
  
  .hotel-booking-why-travel-agents-love-it__feature-icon-wrapper {
    width: 48px;
    height: 48px;
  }
  
  .hotel-booking-why-travel-agents-love-it__feature-icon {
    width: 48px;
    height: 48px;
  }
  
  .hotel-booking-why-travel-agents-love-it__image-wrapper {
    height: 250px;
  }
}

/* ===============================
   What Our Users Say Section
   =============================== */

.hotel-booking-what-our-users-say {
  background-color: #e8e8e8;
  padding: 60px 0 100px 0;
  position: relative;
}

.hotel-booking-what-our-users-say .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.hotel-booking-what-our-users-say__title {
  font-family: "LemonMilk", sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0%;
  color: #2d3b43;
  margin: 0 0 60px;
  text-transform: uppercase;
  text-align: center;
}

.hotel-booking-what-our-users-say__testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.hotel-booking-what-our-users-say__card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 357px;
  height: 244px;
  margin: 0 auto;
}

.hotel-booking-what-our-users-say__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.hotel-booking-what-our-users-say__quote {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #2d3b43;
  margin: 0 0 20px;
  flex: 1;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hotel-booking-what-our-users-say__author {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: #2d3b43;
  margin: 0;
  margin-top: auto;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Responsive Design for What Our Users Say */
@media (max-width: 992px) {
  .hotel-booking-what-our-users-say {
    padding: 80px 0;
  }
  
  .hotel-booking-what-our-users-say__title {
    font-size: 32px;
    margin-bottom: 48px;
  }
  
  .hotel-booking-what-our-users-say__testimonials {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .hotel-booking-what-our-users-say__card {
    width: 100%;
    max-width: 357px;
    height: auto;
    min-height: 244px;
  }
}

@media (max-width: 768px) {
  .hotel-booking-what-our-users-say {
    padding: 60px 0;
  }
  
  .hotel-booking-what-our-users-say__title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .hotel-booking-what-our-users-say__testimonials {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .hotel-booking-what-our-users-say__card {
    width: 100%;
    max-width: 100%;
    padding: 28px 24px;
    min-height: auto;
  }
  
  .hotel-booking-what-our-users-say__quote {
    font-size: 15px;
  }
  
  .hotel-booking-what-our-users-say__author {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .hotel-booking-what-our-users-say {
    padding: 50px 0;
  }
  
  .hotel-booking-what-our-users-say .container {
    padding: 0 15px;
  }
  
  .hotel-booking-what-our-users-say__title {
    font-size: 24px;
    margin-bottom: 32px;
  }
  
  .hotel-booking-what-our-users-say__card {
    padding: 24px 20px;
  }
  
  .hotel-booking-what-our-users-say__quote {
    font-size: 14px;
  }
  
  .hotel-booking-what-our-users-say__author {
    font-size: 12px;
  }
}

/* ===============================
   Statistics Banner Section
   =============================== */

.hotel-booking-statistics-banner {
  background-color: #2d3b43;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hotel-booking-statistics-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Plane path: top-right (normal) */
  background-image: url("../images/Hotel Booking/blueplane2.png");
  background-repeat: no-repeat;
  background-position: right 0 top 10px;
  background-size: 260px auto;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

.hotel-booking-statistics-banner::after {
  content: '';
  position: absolute;
  /* Plane path: bottom-left */
  left: 0;
  bottom: 10px;
  width: 260px;
  height: 89px; /* approximate aspect ratio of asset */
  background-image: url("../images/Hotel Booking/downblueimage.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 260px auto;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

.hotel-booking-statistics-banner__container {
  max-width: 1440px;
  height: 206px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-items: center;
  position: relative;
  padding: 0 40px;
}

.hotel-booking-statistics-banner__stat {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hotel-booking-statistics-banner__content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hotel-booking-statistics-banner__number {
  font-family: "LemonMilk", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.2;
  color: #f6941f;
  margin: 0 0 8px;
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hotel-booking-statistics-banner__number-value {
  display: inline-block;
  transition: all 0.1s ease;
}

.hotel-booking-statistics-banner__number-suffix {
  display: inline-block;
}

/* Loading animation state */
.hotel-booking-statistics-banner__number--animating {
  animation: numberPulse 1.5s ease-in-out infinite;
}

.hotel-booking-statistics-banner__number--animating .hotel-booking-statistics-banner__number-value {
  animation: numberShimmer 1.5s ease-in-out infinite;
}

/* Keyframe animations */
@keyframes numberPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

@keyframes numberShimmer {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Final animated state */
.hotel-booking-statistics-banner__number--animated {
  animation: numberComplete 0.5s ease-out;
}

@keyframes numberComplete {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.hotel-booking-statistics-banner__label {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  margin: 0;
}

/* Responsive Design for Statistics Banner */
@media (max-width: 1200px) {
  .hotel-booking-statistics-banner__container {
    height: 180px;
    padding: 0 30px;
  }
  
  .hotel-booking-statistics-banner__number {
    font-size: 40px;
  }
  
  .hotel-booking-statistics-banner__label {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .hotel-booking-statistics-banner__container {
    grid-template-columns: 1fr;
    height: auto;
    padding: 40px 20px;
    gap: 30px;
  }
  
  .hotel-booking-statistics-banner__stat {
    height: auto;
    min-height: 100px;
  }
  
  .hotel-booking-statistics-banner__number {
    font-size: 36px;
  }
  
  .hotel-booking-statistics-banner__label {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .hotel-booking-statistics-banner__container {
    padding: 30px 15px;
    gap: 25px;
  }
  
  .hotel-booking-statistics-banner__number {
    font-size: 32px;
  }
  
  .hotel-booking-statistics-banner__label {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .hotel-booking-statistics-banner__container {
    padding: 25px 15px;
    gap: 20px;
  }
  
  .hotel-booking-statistics-banner__number {
    font-size: 28px;
  }
  
  .hotel-booking-statistics-banner__label {
    font-size: 12px;
  }
}

/* ===============================
   FAQ Section
   =============================== */

.hotel-booking-faq {
  background-color: #e8e8e8;
  padding: 100px 0;
  position: relative;
}

.hotel-booking-faq .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.hotel-booking-faq__title {
  font-family: "LemonMilk", sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0%;
  color: #2d3b43;
  margin: 0 0 60px;
  text-transform: uppercase;
  text-align: center;
}

.hotel-booking-faq__container {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.hotel-booking-faq__item {
  border-bottom: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.hotel-booking-faq__item:last-child {
  border-bottom: none;
}

.hotel-booking-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hotel-booking-faq__question:hover {
  background-color: #f8f9fa;
}

.hotel-booking-faq__question-text {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: #2d3b43;
  margin: 0;
  flex: 1;
  padding-right: 20px;
}

.hotel-booking-faq__toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotel-booking-faq__toggle-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  stroke: #2d3b43;
}

.hotel-booking-faq__item.active .hotel-booking-faq__toggle-icon {
  transform: rotate(180deg);
}

.hotel-booking-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 32px;
}

.hotel-booking-faq__item.active .hotel-booking-faq__answer {
  padding-top: 0;
  padding-bottom: 24px;
}

.hotel-booking-faq__answer p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #2d3b43;
  margin: 0;
  padding-top: 8px;
}

/* Responsive Design for FAQ */
@media (max-width: 992px) {
  .hotel-booking-faq {
    padding: 80px 0;
  }
  
  .hotel-booking-faq__title {
    font-size: 32px;
    margin-bottom: 48px;
  }
  
  .hotel-booking-faq__question {
    padding: 20px 24px;
  }
  
  .hotel-booking-faq__question-text {
    font-size: 16px;
  }
  
  .hotel-booking-faq__answer {
    padding: 0 24px;
  }
  
  .hotel-booking-faq__item.active .hotel-booking-faq__answer {
    padding-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .hotel-booking-faq {
    padding: 60px 0;
  }
  
  .hotel-booking-faq__title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .hotel-booking-faq__container {
    border-radius: 8px;
  }
  
  .hotel-booking-faq__question {
    padding: 18px 20px;
  }
  
  .hotel-booking-faq__question-text {
    font-size: 15px;
  }
  
  .hotel-booking-faq__answer {
    padding: 0 20px;
  }
  
  .hotel-booking-faq__answer p {
    font-size: 14px;
  }
  
  .hotel-booking-faq__item.active .hotel-booking-faq__answer {
    padding-bottom: 18px;
  }
}

@media (max-width: 576px) {
  .hotel-booking-faq {
    padding: 50px 0;
  }
  
  .hotel-booking-faq .container {
    padding: 0 15px;
  }
  
  .hotel-booking-faq__title {
    font-size: 24px;
    margin-bottom: 32px;
  }
  
  .hotel-booking-faq__question {
    padding: 16px 18px;
  }
  
  .hotel-booking-faq__question-text {
    font-size: 14px;
    padding-right: 15px;
  }
  
  .hotel-booking-faq__toggle {
    width: 28px;
    height: 28px;
  }
  
  .hotel-booking-faq__toggle-icon {
    width: 18px;
    height: 18px;
  }
  
  .hotel-booking-faq__answer {
    padding: 0 18px;
  }
  
  .hotel-booking-faq__answer p {
    font-size: 13px;
  }
  
  .hotel-booking-faq__item.active .hotel-booking-faq__answer {
    padding-bottom: 16px;
  }
}

/* ===============================
   Final CTA Section
   =============================== */

.hotel-booking-final-cta {
  position: relative;
  width: 100%;
  height: 550px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0;
}

.hotel-booking-final-cta__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hotel-booking-final-cta__background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hotel-booking-final-cta__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45, 59, 67, 0.4) 0%, rgba(45, 59, 67, 0.6) 100%);
  z-index: 2;
}

.hotel-booking-final-cta__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0;
  max-width: 1000px;
}

.hotel-booking-final-cta__headline {
  font-family: "LemonMilk", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.3;
  letter-spacing: 1px;
  color: #ffffff;
  margin: 0 0 24px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hotel-booking-final-cta__subheadline {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
  margin: 0 0 40px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hotel-booking-final-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hotel-booking-final-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none !important;
  outline: none !important;
  cursor: pointer;
}

.hotel-booking-final-cta__button--primary {
  background-color: #f6941f;
  color: #ffffff;
}

.hotel-booking-final-cta__button--primary:hover {
  background-color: #d47a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(246, 148, 31, 0.4);
  border: none !important;
  outline: none !important;
}

.hotel-booking-final-cta__button--secondary {
  background-color: #09e;
  color: #ffffff;
}

.hotel-booking-final-cta__button--secondary:hover {
  background-color: #0077cc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 153, 238, 0.4);
  border: none !important;
  outline: none !important;
}

/* Responsive Design for Final CTA */
@media (max-width: 1200px) {
  .hotel-booking-final-cta {
    height: 450px;
    margin: 80px 0;
  }
  
  .hotel-booking-final-cta__headline {
    font-size: 40px;
  }
  
  .hotel-booking-final-cta__subheadline {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .hotel-booking-final-cta {
    height: 400px;
    margin: 60px 0;
  }
  
  .hotel-booking-final-cta__headline {
    font-size: 36px;
  }
  
  .hotel-booking-final-cta__subheadline {
    font-size: 15px;
    margin-bottom: 32px;
  }
  
  .hotel-booking-final-cta__button {
    padding: 14px 28px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .hotel-booking-final-cta {
    height: 350px;
    margin: 50px 0;
  }
  
  .hotel-booking-final-cta__content {
    padding: 0 20px;
  }
  
  .hotel-booking-final-cta__headline {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .hotel-booking-final-cta__subheadline {
    font-size: 14px;
    margin-bottom: 28px;
  }
  
  .hotel-booking-final-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hotel-booking-final-cta__button {
    width: 100%;
    max-width: 300px;
    padding: 12px 24px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .hotel-booking-final-cta {
    height: 300px;
    margin: 40px 0;
  }
  
  .hotel-booking-final-cta__content {
    padding: 0 15px;
  }
  
  .hotel-booking-final-cta__headline {
    font-size: 24px;
    margin-bottom: 16px;
    line-height: 1.3;
  }
  
  .hotel-booking-final-cta__subheadline {
    font-size: 13px;
    margin-bottom: 24px;
  }
  
  .hotel-booking-final-cta__button {
    padding: 12px 20px;
    font-size: 13px;
  }
}

/* ===============================
   Animation Classes
   =============================== */

/* Base animation state - hidden initially */
.hotel-booking-animate-fade-in,
.hotel-booking-animate-slide-up {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.7s ease-out;
}

.hotel-booking-animate-fade-in {
  will-change: opacity;
}

.hotel-booking-animate-slide-up {
  transform: translateY(30px);
  will-change: opacity, transform;
}

/* Animated state - visible */
.hotel-booking-animate-fade-in.hotel-booking-animated,
.hotel-booking-animate-slide-up.hotel-booking-animated {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation container */
.hotel-booking-animate-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.7s ease-out;
  will-change: opacity, transform;
}

.hotel-booking-animate-stagger > *.hotel-booking-animated {
  opacity: 1;
  transform: translateY(0);
}

/* Hero section immediate animations */
.hotel-booking-hero__title,
.hotel-booking-hero__description,
.hotel-booking-hero__actions,
.hotel-booking-hero__media {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.7s ease-out;
}

.hotel-booking-hero__title.hotel-booking-animated,
.hotel-booking-hero__description.hotel-booking-animated,
.hotel-booking-hero__actions.hotel-booking-animated {
  opacity: 1;
}

.hotel-booking-hero__media {
  transform: translateX(30px);
}

.hotel-booking-hero__media.hotel-booking-animated {
  transform: translateX(0);
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .hotel-booking-animate-fade-in,
  .hotel-booking-animate-slide-up,
  .hotel-booking-animate-stagger > *,
  .hotel-booking-hero__title,
  .hotel-booking-hero__description,
  .hotel-booking-hero__actions,
  .hotel-booking-hero__media {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ===============================
   Skeleton Loaders
   =============================== */

.hotel-booking-skeleton {
  position: relative;
  background: linear-gradient(
    90deg,
    #f0f0f0 25%,
    #e0e0e0 50%,
    #f0f0f0 75%
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
  border-radius: 4px;
  overflow: hidden;
}

.hotel-booking-skeleton-hidden {
  display: none !important;
}

/* Skeleton shimmer animation */
@keyframes skeleton-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Hero skeleton styles */
.hotel-booking-skeleton-title {
  height: 48px;
  width: 80%;
  max-width: 600px;
  margin-bottom: 16px;
}

.hotel-booking-skeleton-text {
  height: 20px;
  width: 100%;
  max-width: 500px;
  margin-bottom: 12px;
}

.hotel-booking-skeleton-text--short {
  width: 70%;
}

.hotel-booking-skeleton-button {
  height: 48px;
  width: 180px;
  border-radius: 6px;
  margin-right: 16px;
}

.hotel-booking-skeleton-image {
  width: 100%;
  height: 400px;
  border-radius: 8px;
}

/* Card skeleton styles */
.hotel-booking-skeleton-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hotel-booking-skeleton-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.hotel-booking-skeleton-card-title {
  height: 24px;
  width: 70%;
  margin-bottom: 12px;
}

.hotel-booking-skeleton-card-text {
  height: 16px;
  width: 100%;
  margin-bottom: 8px;
}

.hotel-booking-skeleton-card-text--last {
  width: 85%;
  margin-bottom: 0;
}

/* Hotel card skeleton */
.hotel-booking-skeleton-hotel-image {
  width: 100%;
  height: 200px;
  border-radius: 8px 8px 0 0;
}

.hotel-booking-skeleton-hotel-content {
  padding: 20px;
}

.hotel-booking-skeleton-hotel-title {
  height: 20px;
  width: 80%;
  margin-bottom: 8px;
}

.hotel-booking-skeleton-hotel-location {
  height: 16px;
  width: 60%;
  margin-bottom: 16px;
}

.hotel-booking-skeleton-hotel-tag {
  height: 24px;
  width: 100px;
  border-radius: 999px;
}

/* Testimonial skeleton */
.hotel-booking-skeleton-testimonial {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  height: 244px;
}

.hotel-booking-skeleton-testimonial-text {
  height: 16px;
  width: 100%;
  margin-bottom: 12px;
}

.hotel-booking-skeleton-testimonial-author {
  height: 18px;
  width: 40%;
  margin-top: auto;
}

/* FAQ skeleton */
.hotel-booking-skeleton-faq-item {
  padding: 24px 32px;
  border-bottom: 1px solid #e8e8e8;
}

.hotel-booking-skeleton-faq-question {
  height: 22px;
  width: 85%;
}

/* Skeleton wrapper for images */
.hotel-booking-skeleton-wrapper {
  position: relative;
}

.hotel-booking-skeleton-wrapper .hotel-booking-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hotel-booking-skeleton-wrapper img {
  position: relative;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease-in;
}

.hotel-booking-skeleton-wrapper img.loaded {
  opacity: 1;
}

.hotel-booking-skeleton-wrapper.hotel-booking-skeleton-hidden .hotel-booking-skeleton {
  display: none;
}

/* Responsive skeleton adjustments */
@media (max-width: 768px) {
  .hotel-booking-skeleton-title {
    height: 36px;
  }
  
  .hotel-booking-skeleton-text {
    height: 18px;
  }
  
  .hotel-booking-skeleton-button {
    width: 100%;
    max-width: 280px;
  }
  
  .hotel-booking-skeleton-image {
    height: 300px;
  }
}

/* ===============================
   Video Demo Modal
   =============================== */

#hotelBookingVideoModal .modal-dialog {
  max-width: 960px;
  width: 100%;
  margin: 1.75rem auto;
}

.hotel-booking-video-modal {
  border-radius: 16px;
  border: none;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
  background-color: #000;
  overflow: hidden;
}

.hotel-booking-video-modal .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.25rem;
  background-color: #000;
}

.hotel-booking-video-modal .modal-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #ffffff;
}

.hotel-booking-video-modal .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.hotel-booking-video-modal .modal-body {
  padding: 0;
  background-color: #000;
}

.hotel-booking-video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  background-color: #000;
}

.hotel-booking-video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 575.98px) {
  #hotelBookingVideoModal .modal-dialog {
    margin: 0.75rem;
  }
  
  .hotel-booking-video-modal .modal-header {
    padding: 1rem;
  }
  
  .hotel-booking-video-modal .modal-title {
    font-size: 1rem;
  }
}

