*,
*::before,
*::after {
  box-sizing: border-box;
}

#root {
  padding-top: 0 !important;
  background-color: #F4F2F1;
  overflow-x: hidden;
}

.hero-content-wrapper {
  visibility: hidden;
}

/* ============================================= */
/*           Custom Font Definitions             */
/* ============================================= */

/* --- Poppins Regular --- */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

/* --- Poppins Bold --- */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* --- Poppins ExtraBold  */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

/* --- Poppins Black --- */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

/* ============================================= */
/*           Hero Section Styles                 */
/* ============================================= */

.container-bg {
  background-image: url('../medias/home/Background_mask-group.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 15% 85%;
}

.CTA-bg {
  background-image: url('../medias/home/CTA_bg.png');
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-section {
  padding: 8.25rem 1rem 5rem 1rem;
}

.hero-content-wrapper {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.hero-text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.hero-title {
  padding-top: 49px;
  padding-bottom: 21px;
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: 900;
  font-family: 'poppins';
}

.hero-description {
  color: #4a5568;
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 500;
}

.hero-description strong {
  font-weight: 700;
  color: #000000;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}

.hero-video-placeholder-desktop {
  /* display: none; */
  width: 100%;
  max-width: 24rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  margin-top: 1rem;
  position: relative;
  border: 3px solid transparent;
  background:
    linear-gradient(white, white),
    linear-gradient(to right, #F17225, #E49639, #918EB1, #649EAB);
  background-clip:
    padding-box,
    border-box;
  background-origin: border-box;
  /* max-height: 480px; */
  overflow: hidden;
}

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

.hero-video-placeholder-mobile {
  width: 100%;
  max-width: 11.4rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  margin-top: 1rem;
  position: relative;
  border: 3px solid transparent;
  background:
    linear-gradient(white, white),
    linear-gradient(to right, #F17225, #E49639, #918EB1, #649EAB);
  background-clip:
    padding-box,
    border-box;
  background-origin: border-box;
  height: 401px;
  overflow: hidden;
}

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

/* ============================================= */
/*           Responsive Styles                   */
/* ============================================= */

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 768px) {

  .container-bg {

    background-position: unset;
  }

  .hero-section {
    padding: 10rem 1.5rem 5rem;
  }

  .hero-content-wrapper {
    gap: 3rem;
  }

  .hero-video-placeholder-desktop {
    display: block;
    max-width: 42rem;
    border-width: 3px;
  }
  .hero-video-placeholder-mobile {
    display: none;
  }
}

@media (min-width: 1024px) {

  .hero-section {
    padding: 6rem 2rem;
  }

  .hero-text-block {
    max-width: 800px;
  }

  .hero-video-placeholder-desktop {
    max-width: 56rem;
  }
}

@media (min-width: 1280px) {

  .hero-title {
    font-size: 59px;
  }
}

/* ============================================= */
/*           AI Assist Section Styles            */
/* ============================================= */

.ai-assist-section {
  font-family: 'Poppins', sans-serif;
  padding: 1rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.ai-assist-wrapper {
  margin-left: auto;
  margin-right: auto;
}

.ai-assist-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 20px;
  color: white;
  width: 100%;
}

.ai-assist-bg {
  background-image: url('../medias/home/BG.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.ai-assist-content {
  position: relative;
  z-index: 10;
}

.ai-assist-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.ai-assist-header span {
  font-weight: 600;
  font-size: 1.125rem;
}

.ai-assist-title {
  padding-bottom: 14px;
  color: white;
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 700;
}

.ai-assist-description {
  padding-bottom: 65px;
  color: white;
  line-height: 1.6;
}

.ai-assist-description strong {
  font-weight: 700;
  color: white;
}

.ai-assist-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ai-assist-button-desktop-only {
  display: none;
}


/* ============================================= */
/*           Responsive Styles                   */
/* ============================================= */


@media (min-width: 768px) {
  .ai-assist-section {
    padding: 2rem;
  }

  .ai-assist-card {
    padding: 4rem;

  }

  .ai-assist-button-desktop-only {
    display: block;
  }
}

@media (min-width: 1024px) {
  .ai-assist-title {
    font-size: 40px;
  }
}

@media (min-width: 1280px) {
  .ai-assist-card {
    min-width: 1051px;
  }
}

/* ============================================= */
/*       Disconnected Journeys Section Styles    */
/* ============================================= */

.journeys-section {
  padding: 5rem 1rem;
  font-family: 'Poppins', sans-serif;
}

.journeys-wrapper {
  margin-left: auto;
  margin-right: auto;
}

.journeys-main-layout {
  display: flex;
  flex-direction: column-reverse;
  gap: 60px;
  align-items: center;
}

.journeys-image-column {
  position: relative;
  border: 24px solid white;
  border-radius: 20px;
}

.journeys-main-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0.5rem;
}

.journeys-main-image {
  border-radius: 0.5rem;
  width: 100%;
}

.journeys-annotation {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  color: #1f2937;
}

.annotation-1 {
  top: -1rem;
  right: -2rem;
  transform: rotate(3deg);
}

.annotation-2 {
  bottom: 5rem;
  left: -3rem;
  transform: rotate(5deg);
}

.annotation-3 {
  bottom: -1rem;
  right: 2.5rem;
  transform: rotate(-7deg);
}

@keyframes scroll-icons {
  from {
    transform: translateX(0);
  }

  to {
    /* 
      Calculation: 8 icons * (36px width + 6px gap) = 336px 
    */
    transform: translateX(-336px);
  }
}

.journeys-icon-bar {

  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  padding-block: 2px;
  max-width: 178px;
  overflow: hidden;
  z-index: 10;

  border-radius: 9999px;
  border: 2px solid transparent;

  background:

    linear-gradient(rgba(20, 20, 20, 0.8), rgba(20, 20, 20, 0.8)),

    linear-gradient(to right, #F17225, #918EB1, #649EAB);

  background-clip: padding-box, border-box;
  background-origin: border-box;

  backdrop-filter: blur(8px);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.icon-carousel-track {
  display: flex;
  align-items: center;
  gap: 6px;

  animation: scroll-icons 15s linear infinite;
}

/* Inner Shadow */
.journeys-icon-bar::before,
.journeys-icon-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30px;
  z-index: 2;
  pointer-events: none;
}

/* Left-side fade */
.journeys-icon-bar::before {
  left: 0;
  background: linear-gradient(to right, rgb(20, 20, 20), transparent);
}

/* Right-side fade */
.journeys-icon-bar::after {
  right: 0;
  background: linear-gradient(to left, rgb(20, 20, 20), transparent);
}


.journeys-icon-bar img {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  flex-shrink: 0;
}

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

.journeys-title {
  font-size: 1.875rem;
  font-weight: 900;
  color: #111827;
  line-height: 1.2;
}

.journeys-subtitle {
  margin-top: 10px;
  font-size: 14.74px;
  color: #4b5563;
}

.journeys-subtitle strong {
  font-weight: 700;
}

.journeys-pain-points-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  font-size: 15.75px;
  font-weight: 500;
}

.journeys-pain-point-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pain-point-icon-wrapper {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: #1f2937;
  border-radius: 0.5rem;
  border: 2px solid white;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
}

.pain-point-icon-wrapper svg {
  color: white;
}

.journeys-pain-point-item span {
  color: #374151;
  margin-top: 3px;
}

.journeys-cta-banner {
  margin-top: 5rem;
  width: 100%;
  background-color: #E8E4E2;
  border-radius: 10px;
  padding: 10px 20px 10px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.journeys-cta-banner p {
  color: #1f2937;
  font-weight: 600;
  font-size: 15px;
}

.journeys-cta-link {
  background-image: linear-gradient(to right, #E49639, #918EB1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-left: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s ease-in-out;
}

.journeys-cta-link:hover {
  opacity: 0.8;
}

.journeys-cta-link:hover {
  text-decoration: underline;
}

.journeys-features-list {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0.5rem;
  font-size: 15px;
  color: #4b5563;
}

.journeys-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.journeys-feature-separator {
  color: #d1d5db;
  display: none;
}

/* ============================================= */
/*           Responsive Styles                   */
/* ============================================= */

@media (min-width: 320px) {
  .journeys-feature-separator {
    display: block;
  }

  .journeys-annotation {
    font-size: 10px;
  }

  .journeys-image-column {
    border-left: 0;
    border-right: 0;
    border-radius: 20px;
    width: 90%;
  }

  .annotation-1 {
    top: -1rem;
    right: 0rem;
    transform: rotate(3deg);
  }

  .annotation-2 {
    left: 0rem;
  }

  .journeys-features-list {
    font-size: 13px;
  }

}

@media (min-width: 640px) {
  .journeys-feature-separator {
    display: block;
  }
}

@media (min-width: 768px) {
  .journeys-text-column {
    max-width: 570px;
  }

  .journeys-title {
    font-size: 2.25rem;
  }

  .journeys-cta-banner {
    flex-direction: row;
  }

  .journeys-features-list {
    gap: 0.5rem 2rem;
    font-size: 15px;
  }

  .journeys-image-column {
    border: 24px solid white;
    border-radius: 20px;
    width: unset;
    max-width: 570px;
  }

  .annotation-2 {
    left: -3rem;
  }

}

@media (min-width: 1024px) {
  .journeys-main-layout {
    flex-direction: row;
  }

  .journeys-text-column {
    text-align: left;
  }

  .journeys-pain-points-list {
    margin-left: 0;
    margin-right: 0;
  }

  .journeys-title {
    font-size: 40.5px;
  }

  .journeys-annotation {
    font-size: 15px;
  }
}

@media (min-width: 1280px) {
  .journeys-wrapper {
    max-width: 1200px;
  }
}

/* ============================================= */
/*       Wave Goodbye Section Styles             */
/* ============================================= */

.wave-goodbye-section {
  padding: 100px 1rem;
  font-family: 'Poppins', sans-serif;
}

.wave-goodbye-wrapper {
  margin-left: auto;
  margin-right: auto;
}

.wave-goodbye-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.intro-heading-wrapper {
  position: relative;
  flex-shrink: 0;
}

.intro-heading {
  font-size: 39px;
  font-weight: 600;

}

.intro-wave-icon {
  position: absolute;
  left: -2rem;
  top: -0.5rem;
  width: 1.5rem;
  height: 1.5rem;
}

.intro-arrow-icon {
  display: none;
  position: absolute;
  right: 0.5rem;
  bottom: 3.5rem;
  width: 5.1rem;
  height: 3rem;
}

.problems-viewport {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to bottom,
      transparent,
      black 25%,
      black 75%,
      transparent);
  mask-image: linear-gradient(to bottom,
      transparent,
      black 25%,
      black 75%,
      transparent);
}



.problem-item {
  font-weight: 600;
  line-height: 50px;
  text-align: left;
  white-space: nowrap;
  color: #c7c7c7;
  opacity: 0.5;
  transition: all 0.5s ease;
}

.problem-item.active {
  opacity: 1;
  background: linear-gradient(to right, #F17225, #E49639, #918EB1, #649EAB);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}


/* --- Timeline Section --- */
.wave-goodbye-timeline {
  position: relative;
  width: 100%;
  padding: 0 1rem;
}

.wave-goodbye-timeline::before {
  content: '';
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #e5e7eb;
  top: 37px;
  z-index: 1;
}

.timeline-dot {
  display: none;
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #d1d5db;
  border-radius: 9999px;
  z-index: 2;
  top: 33px;
}

.timeline-dot-left {
  left: 33.3333%;
}

.timeline-dot-right {
  right: 33.3333%;
}

.timeline-items-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.timeline-item:nth-child(1) .timeline-item-icon-wrapper,
.timeline-item:nth-child(2) .timeline-item-icon-wrapper {
  opacity: 0;
  transform: scale(0.8);
}


.timeline-item-icon-wrapper {
  position: relative;
  z-index: 10;
  padding: 0.5rem;
}

#increased_engagement-wrapper {
  padding: 0.8rem 0.5rem;
}

.timeline-item-icon {
  width: 74px;
  height: 74px;
}

.timeline-item-img {
  width: 84px;
  height: 60px;
}

.timeline-item-title {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: #1f2937;
}

.timeline-item-description {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.625;
}


/* ============================================= */
/*           Responsive Styles                   */
/* ============================================= */
@media (min-width: 320px) {
  .intro-heading {
    font-size: 26px;
    font-weight: 600;
  }

  .intro-heading-wrapper {
    margin-left: 3rem;
  }

  .intro-problems-image-wrapper {
    display: flex;
    gap: 20px;
    align-items: start;
  }

  .intro-problems-image-wrapper>img {
    max-width: 255px;
    max-height: 240px;
  }

  .intro-arrow-icon-mobile {
    transform: rotate(-100deg) scaleX(-1);
    margin-top: 2rem;
  }


  .wave-goodbye-section {
    padding: 74px 0rem;
    font-family: 'Poppins', sans-serif;
  }

  .wave-goodbye-intro {
    align-items: flex-start;
    margin-bottom: 3rem;
  }

  .intro-problems-image-wrapper {
    align-self: center;
  }

  .problem-item {
    font-size: 1.2rem;
    height: 35px;
  }

  .problems-viewport {
    height: 200px;
    min-width: 230px;
  }

}

@media (min-width: 768px) {

  .intro-heading {
    font-size: 39px;
    font-weight: 600;
  }

  .wave-goodbye-timeline::before,
  .timeline-dot {
    display: block;
  }

  .timeline-items-container {
    flex-direction: row;
    gap: 50px;
    align-items: flex-start;
  }

  .timeline-item {
    width: 185.75px;
  }

  .intro-problems-image-wrapper>img {
    max-width: 337px;
    max-height: unset;
  }

  .problem-item {
    font-size: 1.7rem;
    height: 40px;
  }
}

@media (min-width: 1024px) {
  .wave-goodbye-intro {
    flex-direction: row;
    align-items: center;
    margin-bottom: 6rem;
  }

  .intro-heading-wrapper {
    margin-left: 0;
  }

  .intro-arrow-icon {
    display: block;
  }

  .wave-goodbye-timeline {
    min-width: 100%;
  }

  .timeline-item {
    width: 249.5px;
  }

  .problems-viewport {
    height: 297px;
    min-width: 576px;
  }

  .problem-item {
    font-size: 3rem;
    height: 58px;
  }


  .intro-problems-image-wrapper>img {
    max-width: 655px;
  }

  .intro-arrow-icon-mobile {
    display: none;
  }
}

@media (min-width: 1280px) {
  .timeline-items-container {
    gap: 145.62px;
  }
}

/* ============================================= */
/*           How It Works Section Styles         */
/* ============================================= */

.how-it-works-section {
  position: relative;
  padding: 6rem 0rem;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.bg-decorations-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bg-blob {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 9999px;
  filter: blur(96px);
  opacity: 0.3;
}

.blob-1 {
  top: 25%;
  left: 15%;
  background-color: #F19924;
}

.blob-2 {
  top: 40%;
  right: 35%;
  background-color: #8A92C8;
}

.blob-3 {
  top: 65%;
  right: 15%;
  background-color: #F19924;
}


.bg-mask-image {
  position: absolute;
  top: 0;
  right: -19rem;
  height: 100%;
  width: 100%;
  background-image: url('../medias/home/globe.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.how-it-works-wrapper {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;

}

.how-it-works-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #111827;
  text-align: center;
  margin-bottom: 4rem;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  width: 100%;
}

.how-it-works-button-wrapper {
  text-align: center;
  margin-top: 5rem;
}

/* --- Step Card Component Styles --- */
.step-card {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  padding: 24px;
  border-radius: 11px;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  height: 282px;
  border: 2px solid white;
}

.step-card-number-wrapper {
  background-image: linear-gradient(to bottom right, rgba(66, 168, 195, 0.7), rgba(138, 146, 200, 0.7));
  border: 2px solid white;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.step-card-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.step-card-text-content {
  text-align: left;
}

.step-card-title {
  font-size: 17.5px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 22px;
}

.step-card-description {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.625;
}

/* modal styles */

body.modal-open {
  overflow: hidden;
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 1rem;
  cursor: pointer;
}

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

.video-modal-content-desktop {
  display: none;
}

.video-modal-content-mobile {
  position: relative;
  width: 100%;
  max-width: 400px; 
  background-color: #000000;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  cursor: default;
  height: 80%;
}

 .video-modal-content-mobile .video-wrapper {
  height: 100%;
}

.video-wrapper video,
.video-wrapper iframe {
  width: 100%;
  height: 100%;
}



.close-modal-button {
  position: absolute;
  top: -2.8rem;
  right: 0rem;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
  padding: 0;
  z-index: 1010;
}

@media (min-width: 768px) {
  .video-modal-content-mobile {
    display: none;
  }
  .video-modal-content-desktop {
    display: block;
    position: relative;
    width: 100%;
    max-width: 1100px; 
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    cursor: default;
    height: 80%;
  }

  .video-modal-content-desktop .video-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 0.75rem;
  }

  .close-modal-button {
    top: -40px;
    right: 0;
    background: transparent;
    width: auto;
    height: auto;
    font-size: 2rem;
  }
}

.close-modal-button:hover {
  color: #CCCCCC;
}


/* ============================================= */
/*           Responsive Styles                   */
/* ============================================= */

@media (max-width: 768px) {
  .bg-mask-image {
    right: -5rem;
  }

  .how-it-works-section {
    padding: 5rem 0rem;
  }
}

@media (min-width: 768px) {
  .how-it-works-wrapper {
    padding: 0 3.5rem;
  }

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

  .bg-mask-image {
    right: -19rem;
  }

  .blob-1 {
    top: 25%;
    left: 5%;
    background-color: #F19924;
  }

  .blob-2 {
    top: 40%;
    right: 25%;
    background-color: #8A92C8;
  }

  .blob-3 {
    top: 25%;
    right: 0;
    background-color: #F19924;
  }
}

@media (min-width: 1024px) {
  .how-it-works-wrapper {
    padding: 0 1rem;
  }

  .how-it-works-grid {
    gap: 2rem;
  }

  .blob-1 {
    top: 25%;
    left: 15%;
    background-color: #F19924;
  }

  .blob-2 {
    top: 40%;
    right: 35%;
    background-color: #8A92C8;
  }

  .blob-3 {
    top: 25%;
    right: 15%;
    background-color: #F19924;
  }
}

@media (min-width: 1280px) {
  .how-it-works-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================= */
/*       Seamless Booking Section Styles  */
/* ============================================= */

.seamless-booking-section {
  background-color: #F6F5F4;
}

.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.booking-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.booking-text-content {
  text-align: center;
  max-width: 550px;
}

.booking-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.booking-description {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 2rem;
}



/* ============================================= */
/*           Responsive Styles                   */
/* ============================================= */
@media (min-width: 320px) {
  .seamless-booking-section {
    padding: 5rem 1rem;
  }

  .booking-title {
    font-size: 1.25rem;
  }

  .booking-layout {
    gap: 8rem;
  }

}

@media (min-width: 768px) {
  .seamless-booking-section {
    padding: 7rem 1rem;
  }

  .booking-title {
    font-size: 2.75rem;
  }

  .booking-button-wrapper>a {
    width: unset;
  }
}

@media (min-width: 1024px) {
  .seamless-booking-section {
    padding: 8rem 1rem;
  }

  .booking-layout {
    flex-direction: row;
    gap: 5rem;
  }

  .booking-text-content {
    flex: 1;
    text-align: left;
    max-width: none;
  }

}

/* ============================================= */
/*       Rebuilding Travel Section Styles        */
/* ============================================= */

.rebuilding-travel-section {
  padding: 100px 1rem;
  font-family: 'Poppins', sans-serif;
}

.rebuilding-travel-header {
  text-align: center;
  margin-bottom: 4rem;
}

.rebuilding-travel-title {
  font-size: 27px;
  font-weight: 800;
  color: #111827;
}

.rebuilding-travel-description {
  margin-top: 1rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  color: #4b5563;
  font-size: 1.125rem;
  font-weight: 500;
}

/* --- The Grid --- */
/* Mobile: simple flex column stack */
.rebuilding-travel-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.grid-item {
  width: 100%;
  max-width: 28rem;
  padding: 2rem;
  border-radius: 30px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* --- Reusable Card Component Styles --- */
.card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.title-line {
  display: block;
}

.card-description {
  font-size: 0.875rem;
  line-height: 1.625;
  font-weight: 500;
}

.card-description b,
.card-description strong {
  font-weight: 700;
}

.card-split-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  height: 100%;
}

.card-spacer,
.card-content-wrapper {
  width: 100%;
}

.card-spacer img {
  display: block;
  max-width: 300px;
  margin: 0 auto;
}

.card-title.text-sm {
  font-size: 0.875rem;
}

.card-description.text-sm {
  font-size: 0.875rem;
}

.card-description.text-xs {
  font-size: 0.75rem;
}

/* --- Individual Card Styles --- */
.item-1 {
  background-image: linear-gradient(to bottom, #F2F0EE, #F58D50);
  color: #1f2937;
  justify-content: flex-start;
  min-height: 566px;

}

.item-1>img {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
}

.item-2,
.item-5 {
  background-color: white;
  color: #1f2937;
}

.item-3 {
  background-color: #D9EEF3;
  color: #111827;
}

.item-4 {
  background-image: linear-gradient(to bottom right, #B7BCDD, #8A92C8);
  color: #111827;
}

.rebuilding-travel-button-wrapper {
  text-align: center;
  margin-top: 4rem;
}


/* ============================================= */
/*           Responsive Styles    */
/* ============================================= */
@media (min-width: 768px) {

  .rebuilding-travel-title {
    font-size: 2.25rem;
  }

  .rebuilding-travel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    width: 100%;
  }

  .grid-item {
    max-width: none;
    padding: 1.5rem;
    border-radius: 15px;
    height: 100%;
    min-height: 0;
  }

  .card-title {
    font-size: 25px;
  }

  .item-1 {
    display: block;
    padding: 2rem;
    padding-bottom: 320px;
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
  }

  .card-split-layout {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .card-split-layout>.card-content-wrapper {
    flex: 1 1 55%;
  }

  .card-split-layout>.card-spacer {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }


  .card-split-layout>.card-spacer img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .card-spacer:has(.bento-img-left) {
    flex-basis: 39%;
    flex-shrink: 0;
  }

  .card-content-wrapper:has(+ .card-spacer .bento-img-left),
  .card-spacer:has(.bento-img-left)+.card-content-wrapper {
    flex-basis: 65%;
    flex-shrink: 0;
  }

  .bento-img-left {
    position: absolute;
    left: -4rem;
    bottom: 0.3rem;
    width: 277px;
    max-width: none;
    max-height: none;
  }

  .bento-img-left {
    position: absolute;
    left: -2rem;
    bottom: 5.3rem;
    width: 180px;
    margin: 0;
  }

  .item-2 {
    grid-column: span 2 / span 2;
  }

  .item-3 {
    grid-column: span 2 / span 2;
    padding-left: 0 !important;
  }

  .item-4 {
    grid-column: span 3 / span 3;
    padding-right: 0;
  }

  .item-5 {
    grid-column: span 1 / span 1;
  }
}

@media (min-width: 1024px) {
  .bento-img-left {
    bottom: 4rem;
  }

  .item-1 {
    padding-bottom: 400px;
  }
}

@media (min-width: 1200px) {


  .rebuilding-travel-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .card-title {
    font-size: 30px;
  }

  .item-2 {
    grid-column: span 1 / span 1;
  }

  .item-4 {
    grid-column: span 2 / span 2;
  }

  .bento-img-left {
    left: -4rem;
    bottom: 0.3rem;
    width: 277px;
  }

}