@charset "UTF-8";

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-VariableFont.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Italic-VariableFont.ttf") format("truetype");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #8259ff;
  --primary-bg: #f2eeff;
  --dark: #282828;
  --white: #fff;
  --d-gray: #575757;
  --off-white: #f1f1f1;
  --green: #2ab47c;
  --orange:#FF8D28;
}

html,
body {
  color: var(--d-gray);
  font-family: "Inter";
  font-size: 16px;
  line-height: 1.5;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "inter";
  font-weight: 700;
}

button {
  border: none;
  outline: none;
}
img {
  width: 100%;
}
.btn-base {
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s linear;
}
.btn-base:hover {
  transform: translateY(-1px);
}
.primary-btn {
  background-color: var(--primary);
  border-radius: 100px;
  color: var(--white);
}
.primary-btn:hover {
  background-color: #633ed1;
}
/* =============================================== */
.main {
  overflow: hidden;
}

.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: transparent;
  padding: 14px;
}
.main-header.sticky {
  position: fixed;
  top: 0;
  background-color: var(--white);
  padding: 0;
  box-shadow: 1px 1px 10px #0000001f;
}
.navbar {
  padding: 15px 24px;
  background-color: var(--white);
  border-radius: 24px;
}
  .navbar-brand{
    max-width: 200px;
  }
.logo {
  height: 100%;
}
.navbar-toggler {
  width: 44px;
  height: 44px;
  background-color: var(--primary-bg);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
}
.nav-link {
  font-weight: 500;
  color: var(--d-gray);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.offcanvas {
  width: 280px;
}

.offcanvas .nav-link {
  font-size: 18px;
}

/* Loader============== */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}
.loader-container {
  width: 200px;
  text-align: center;
}
.loader_line {
  width: 100%;
  height: 4px;
  background: #f0eeff;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.loader_line::after {
  content: "";
  position: absolute;
  left: -50%;
  height: 100%;
  width: 50%;
  background: #8a70ff;
  animation: loading 1.5s infinite linear;
}
.loader-text {
  margin-top: 15px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #8a70ff;
  font-weight: 500;
  letter-spacing: 1px;
}
@keyframes loading {
  0% {
    left: -50%;
  }
  100% {
    left: 100%;
  }
}
.loader-hidden {
  opacity: 0;
  visibility: hidden;
}
.highlight {
  color: var(--primary);
}
/* ==================== */
.hero-banner {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  padding-top: 180px;
  position: relative;
  overflow: hidden;
}
.hero-banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background:
    linear-gradient(
      270deg,
      rgba(242, 238, 255, 0.808) 0%,
      rgba(242, 238, 255, 0.911) 100%
    ),
    url(../img/hero-bg.avif);
  z-index: -1;
}
.hero-container {
  margin: 0 auto;
  max-width: 1420px;
}
.user-count-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  padding: 10px 16px;
  border-radius: 50px;
  color: var(--white);
  font-size: 16px;
  gap: 12px;
  margin: 0 auto;
  max-width: fit-content;
  width: 100%;
}

.blink-dot {
  height: 14px;
  width: 14px;
  background-color: var(--green);
  border-radius: 50%;
  display: inline-block;
  position: relative;
}
.blink-dot::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--green);
  border-radius: 50%;
  z-index: 1;
  animation: pulse-green 1s infinite ease-out;
}
@keyframes pulse-green {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
.hero-title {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  margin: 24px 0;
}
.section-heading {
  margin-bottom: 64px;
}
.section-title {
  font-size: clamp(30px, 5vw, 60px);
  font-weight: 600;
  color: var(--dark);
}
.hero-description {
  font-size: clamp(18px, 4vw, 24px);
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.4;
}
.section-decp {
  font-size: clamp(16px, 4vw, 20px);
  margin-bottom: 0;
  line-height: 1.4;
}
.hero-image-wrapper {
  width: 100%;
  min-height: 500px;
  margin-top: 20px;
  background-image: url(../img/curve.svg);
  background-size: 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.mobile-mockups {
  max-width: 368px;
  width: 100%;
  margin: 0px auto;
  position: relative;
  z-index: 2;
}
.cards {
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
  bottom: -100px;
  min-width: 1200px;
  animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
  0% {
    transform: translate(-50%, 0px);
  }
  50% {
    transform: translate(-50%, -20px);
  }
  100% {
    transform: translate(-50%, 0px);
  }
}
.cta-banner {
  padding: 40px 0px;
  background-image: url(../img/bg-pattern.svg);
  background-position: center;
  background-size: 200%;
  background-repeat: no-repeat;
  background-color: var(--primary);
}
.banner-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
}

.ms-n3 {
  margin-left: -15px !important;
}
.stars {
  max-width: 148px;
}
.cta-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: var(--white);
  box-shadow: 0px 20px 20px rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  color: var(--primary);
  font-weight: 600;
  font-size: 16px;
}
.why-bonjorni {
  background-color: var(--white);
}
.section-padding {
  padding-top: 84px;
  padding-bottom: 84px;
}
.feature-card {
  padding: 18px;
  border-radius: 18px;
  background-color: var(--off-white);
  height: 100%;
}
.feature-card .img-container {
  border-radius: 18px;
  overflow: hidden;
}
.feature-card h4 {
  font-size: 24px;
  color: var(--dark);
  font-weight: 600;
}
.feature-card p {
  font-size: 16px;
  margin-bottom: 0;
}
.stat-icon {
  background-color: var(--primary);
  border-radius: 20px;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: end;
  justify-content: center;
}
.stat-icon img {
  width: 42px;
  height: 42px;
  animation: flip-x 4s infinite ease-in-out;
}
.stat-item:nth-child(2) .stat-icon img {
  animation-delay: 1s;
}
@keyframes flip-x {
  0%,
  100% {
    transform: rotateY(0deg);
  }
  20%,
  50% {
    transform: rotateY(180deg);
  }
}
.stat-item .count {
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0;
  line-height: 1.2;
}
.how-it-works {
  background-image: url(../img/bg-pattern-dark.svg);
  background-size: 200%;
  background-repeat: no-repeat;
  background-color: var(--primary-bg);
}

.step-number {
  position: absolute;
  right: 16px;
  bottom: 16px;
  font-size: 48px;
  font-weight: 600;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
  z-index: 0;
  user-select: none;
}

.work-card .card-body {
  z-index: 1;
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: var(--white);
  border-radius: 24px;
  padding: 24px;
}
.content-inner {
  max-width: 190px;
}
.content-inner h5 {
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
.content-inner img {
  height: 60px;
  width: 60px;
  margin-bottom: 6px;
}

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

.floating-animation {
  animation: floatHandshake 4s ease-in-out infinite;
  max-width: 300px; /* Adjust based on image size */
}

@keyframes floatHandshake {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.app-btn-wrapper {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.host-badge {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
width: 90%;
  z-index: 2;
margin: 0 auto;
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: var(--white);
  font-size: 24px;
}
.image-stack{
  max-width: 570px;
width: 100%;
aspect-ratio:570/563;
}
.host-img-wrapper{
width: 100%;
height: 100%;
}
.host-img-wrapper img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.host-badge .badge-avatar{
  width: 68px;
  height: 68px;
}
.host-badge h6{
  font-size:22px;
  font-weight: 600;
}
.image-stack::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #ffedda;
  border-radius: 1.5rem;
  z-index: -1;
  transform: rotate(-5deg);
}
.section-badge {
  background: rgba(130, 89, 255, 0.2);
  border-radius: 12px;
  color: var(--primary);
  padding: 8px 14px;
  margin-bottom: 16px;
  display: inline-block;
}
.benefit-item {
  width: 100%;
  max-width: 411px;
  transition: transform 0.3s ease;
  box-shadow: 0px 5px 10px rgba(18, 18, 18, 0.2);
  padding: 10px;
  border-radius: 24px;
  color: var(--dark);
  position: relative;
}
.benefit-item::after{
  content: "";
  width: 27px;
  height: 40px;
  background-image: url(../img/flex.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 8px;
  right: -32px;
}
.benefit-item:hover {
  transform: rotate(0deg) scale(1.05);
}
.tilted-1 {
  transform: rotate(-4deg) translateY(-8px);
}
.tilted-3 {
  transform: rotate(4deg) translateY(8px);
}
.bg-orange-light{
  background-color: #FFA45A;
}
.bg-pink-light{
  background-color: #FFADD1;
}
.bg-peach-light {
  background-color: #FFA597;
}
.testimonial-section{
padding-top: 70px;
padding-bottom: 250px;
background-color: var(--primary);
background-image: url(../img/bg-pattern.svg);
background-size:cover;
background-position: center;
background-repeat: no-repeat;
}
.swipper-container{
  background-color: var(--primary);
  border-radius: 30px;
  border: 1px solid var(--white);
  padding: 40px;

}
.swipper-btn{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.stars{
  color:var(--orange);
  font-size: 24px;
}
.testimonial-text{
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
}
.testimonoial-avatar{
  width:60px;
  height: 60px;
  border-radius: 60px;
  border: 2px solid var(--white);
  overflow: hidden;
  background-color: var(--white);
}
.testimonial-card h6{
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}
.testimonial-image-circle{
  width: 100%;
  height: 100%;
}
.ready-to-travel{
  margin-top: -170px;
  padding-bottom: 180px;
}
.cta-container{
  border-radius: 24px;
  background-color: var(--primary-bg);
  padding: 40px;
  overflow: hidden;
}
.cta-title{
   font-size: clamp(32px, 5vw, 68px);
  font-weight: 600;
}
.cta-container p{
  font-size: 20px;
}
.store-btn{
  max-width: 210px;
  display: inline-flex;
}
.ready-to-travel .mockup-container{
  width: 100%;
}
.footer-section {
  padding: 50px 0;
}
.btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none; 
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  border: none;
  z-index: 1000;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
}

.btn-back-to-top:hover {
  background-color: #5a44cc;
  transform: translateY(-5px);
  color: white;
}

.btn-back-to-top i {
  font-size: 1.5rem;
}

.comming-soon{
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background-image: url(../img/coming-soon-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}


.status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--off-white);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: var(--green);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(42, 180, 124, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(42, 180, 124, 0); }
    100% { box-shadow: 0 0 0 0 rgba(42, 180, 124, 0); }
}
.title {
    color: var(--primary);
    font-size:44px;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.description {
    color: var(--white);
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 840px;
}