/* [project]/src/components/Navbar.module.css [app-client] (css) */
.Navbar-module__cJzEcG__header {
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  height: 76px;
  transition: var(--transition);
  background-color: #fffffff2;
  border-bottom: 1px solid #e2e8f0cc;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.Navbar-module__cJzEcG__scrolled {
  box-shadow: 0 4px 20px #0f172a08;
}

.Navbar-module__cJzEcG__headerOpen {
  background-color: #fff !important;
}

.Navbar-module__cJzEcG__container {
  justify-content: space-between;
  align-items: center;
  height: 100%;
  display: flex;
}

.Navbar-module__cJzEcG__logoArea {
  align-items: center;
  display: flex;
}

.Navbar-module__cJzEcG__nav {
  display: none;
}

@media (min-width: 992px) {
  .Navbar-module__cJzEcG__nav {
    display: block;
  }
}

.Navbar-module__cJzEcG__navList {
  align-items: center;
  gap: 32px;
  display: flex;
}

.Navbar-module__cJzEcG__navItem {
  position: relative;
}

.Navbar-module__cJzEcG__navLink {
  color: var(--foreground-muted);
  border-bottom: 2px solid #0000;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 500;
  display: flex;
}

.Navbar-module__cJzEcG__navLink:hover {
  color: var(--primary);
}

.Navbar-module__cJzEcG__dropdownTrigger {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.Navbar-module__cJzEcG__dropdownIcon {
  transition: transform .2s;
}

.Navbar-module__cJzEcG__dropdownContainer:hover .Navbar-module__cJzEcG__dropdownIcon {
  transform: rotate(180deg);
}

.Navbar-module__cJzEcG__dropdownMenu {
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  gap: 4px;
  min-width: 180px;
  padding: 8px;
  animation: .2s Navbar-module__cJzEcG__fadeIn;
  display: flex;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes Navbar-module__cJzEcG__fadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%)translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%)translateY(0);
  }
}

.Navbar-module__cJzEcG__dropdownItem {
  color: var(--foreground-muted);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
}

.Navbar-module__cJzEcG__dropdownItem:hover {
  background-color: var(--background-alt);
  color: var(--primary);
}

.Navbar-module__cJzEcG__actions {
  align-items: center;
  gap: 16px;
  display: none;
}

@media (min-width: 992px) {
  .Navbar-module__cJzEcG__actions {
    display: flex;
  }
}

.Navbar-module__cJzEcG__btnLogin {
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  background-color: #0000;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
}

.Navbar-module__cJzEcG__btnLogin:hover {
  background-color: var(--primary-light);
  color: var(--primary-hover);
}

.Navbar-module__cJzEcG__btnDemo {
  color: #fff;
  border-radius: var(--radius-sm);
  background-color: var(--primary);
  transition: var(--transition-fast);
  padding: 11px 24px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 14px #3b46f140;
}

.Navbar-module__cJzEcG__btnDemo:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px #3b46f159;
}

.Navbar-module__cJzEcG__btnDemo:active {
  transform: translateY(0);
}

.Navbar-module__cJzEcG__mobileToggle {
  color: var(--foreground);
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  display: block;
}

@media (min-width: 992px) {
  .Navbar-module__cJzEcG__mobileToggle {
    display: none;
  }
}

.Navbar-module__cJzEcG__mobileMenu {
  background-color: var(--background);
  z-index: 999;
  border-top: 1px solid var(--border);
  padding: 24px;
  transition: transform .3s ease-in-out;
  position: fixed;
  inset: 76px 0 0;
  overflow-y: auto;
  transform: translateX(100%);
}

.Navbar-module__cJzEcG__mobileMenuOpen {
  transform: translateX(0);
}

.Navbar-module__cJzEcG__mobileNavList {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.Navbar-module__cJzEcG__mobileNavLink {
  color: var(--foreground);
  padding: 8px 0;
  font-size: 18px;
  font-weight: 600;
  display: block;
}

.Navbar-module__cJzEcG__mobileDropdown {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.Navbar-module__cJzEcG__mobileDropdownHeader {
  color: var(--foreground);
  padding: 8px 0;
  font-size: 18px;
  font-weight: 600;
}

.Navbar-module__cJzEcG__mobileDropdownSub {
  border-left: 2px solid var(--border);
  flex-direction: column;
  gap: 12px;
  padding-left: 16px;
  display: flex;
}

.Navbar-module__cJzEcG__mobileNavLinkSub {
  color: var(--foreground-muted);
  font-size: 16px;
  font-weight: 500;
}

.Navbar-module__cJzEcG__mobileActions {
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  display: flex;
}

.Navbar-module__cJzEcG__mobileBtnLogin {
  color: var(--primary);
  text-align: center;
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  display: block;
}

.Navbar-module__cJzEcG__mobileBtnDemo {
  color: #fff;
  text-align: center;
  border-radius: var(--radius-sm);
  background-color: var(--primary);
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  display: block;
  box-shadow: 0 4px 14px #3b46f133;
}

.Navbar-module__cJzEcG__blogTransparent {
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  background-color: #0000 !important;
  border-bottom: 1px solid #ffffff1f !important;
}

.Navbar-module__cJzEcG__blogTransparent .Navbar-module__cJzEcG__navLink {
  color: #fffffff2 !important;
}

.Navbar-module__cJzEcG__blogTransparent .Navbar-module__cJzEcG__navLink:hover {
  color: #fff !important;
}

.Navbar-module__cJzEcG__blogTransparent .Navbar-module__cJzEcG__btnLogin {
  color: #fff !important;
  border-color: #ffffff80 !important;
}

.Navbar-module__cJzEcG__blogTransparent .Navbar-module__cJzEcG__btnLogin:hover {
  color: #fff !important;
  background-color: #ffffff1a !important;
}

.Navbar-module__cJzEcG__blogTransparent .Navbar-module__cJzEcG__mobileToggle {
  color: #fff !important;
}

/* [project]/src/components/Hero.module.css [app-client] (css) */
.Hero-module__ZARIfG__hero {
  background-color: #fafbfc;
  background-image: linear-gradient(#e2e8f066 1px, #0000 1px), linear-gradient(90deg, #e2e8f066 1px, #0000 1px);
  background-position: 0 0, 0 0, 0 0;
  background-repeat: repeat, repeat, repeat;
  background-size: 40px 40px;
  background-attachment: scroll, scroll, scroll;
  background-origin: padding-box, padding-box, padding-box;
  background-clip: border-box, border-box, border-box;
  padding-top: 160px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.Hero-module__ZARIfG__blurBlob1 {
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle, #3b46f11f 0%, #3b46f100 70%);
  width: 450px;
  height: 450px;
  animation: 22s ease-in-out infinite Hero-module__ZARIfG__floatBlob;
  position: absolute;
  top: 10%;
  left: 5%;
}

.Hero-module__ZARIfG__blurBlob2 {
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle, #ec489914 0%, #ec489900 70%);
  width: 550px;
  height: 550px;
  animation: 28s ease-in-out infinite reverse Hero-module__ZARIfG__floatBlob;
  position: absolute;
  top: 30%;
  right: 5%;
}

@keyframes Hero-module__ZARIfG__floatBlob {
  0% {
    transform: translate(0)scale(1);
  }

  50% {
    transform: translate(40px, -60px)scale(1.1);
  }

  100% {
    transform: translate(0)scale(1);
  }
}

.Hero-module__ZARIfG__container {
  z-index: 2;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 48px;
  display: grid;
  position: relative;
}

@media (min-width: 992px) {
  .Hero-module__ZARIfG__container {
    grid-template-columns: 1.15fr 1.15fr;
    gap: 48px;
  }
}

.Hero-module__ZARIfG__content {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.Hero-module__ZARIfG__tag {
  margin-bottom: 20px;
}

.Hero-module__ZARIfG__title {
  color: var(--foreground);
  letter-spacing: -.02em;
  margin-bottom: 24px;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
}

@media (min-width: 576px) {
  .Hero-module__ZARIfG__title {
    font-size: 48px;
  }
}

@media (min-width: 1200px) {
  .Hero-module__ZARIfG__title {
    font-size: 56px;
  }
}

.Hero-module__ZARIfG__description {
  color: var(--foreground-muted);
  max-width: 540px;
  margin-bottom: 36px;
  font-size: 16px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .Hero-module__ZARIfG__description {
    font-size: 17px;
  }
}

.Hero-module__ZARIfG__ctaGroup {
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-bottom: 36px;
  display: flex;
}

@media (min-width: 480px) {
  .Hero-module__ZARIfG__ctaGroup {
    flex-direction: row;
    align-items: center;
    width: auto;
  }
}

.Hero-module__ZARIfG__btnPrimary {
  color: #fff;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-align: center;
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  box-shadow: 0 8px 24px #4f46e540;
}

.Hero-module__ZARIfG__btnPrimary:hover {
  background: linear-gradient(135deg, #4338ca 0%, #4f46e5 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px #4f46e559;
}

.Hero-module__ZARIfG__btnPrimary:active {
  transform: translateY(0);
}

.Hero-module__ZARIfG__btnSecondary {
  -webkit-backdrop-filter: blur(8px);
  color: var(--foreground);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  background-color: #ffffffb3;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
}

.Hero-module__ZARIfG__btnSecondary:hover {
  background-color: #fff;
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px #0000000d;
}

.Hero-module__ZARIfG__btnSecondary:active {
  transform: translateY(0);
}

.Hero-module__ZARIfG__playIconWrapper {
  width: 24px;
  height: 24px;
  color: var(--primary);
  transition: var(--transition);
  background-color: #4f46e514;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding-left: 2px;
  display: inline-flex;
}

.Hero-module__ZARIfG__btnSecondary:hover .Hero-module__ZARIfG__playIconWrapper {
  background-color: var(--primary);
  color: #fff;
  transform: scale(1.1);
}

.Hero-module__ZARIfG__featuresList {
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  display: flex;
}

.Hero-module__ZARIfG__featureItem {
  color: #475569;
  cursor: default;
  -webkit-user-select: none;
  user-select: none;
  background-color: #fff;
  border: 1px solid #e2e8f0cc;
  border-radius: 20px;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 600;
  transition: all .25s;
  display: flex;
  box-shadow: 0 2px 6px #0f172a05;
}

.Hero-module__ZARIfG__featureItem:hover {
  color: #0f172a;
  border-color: #6366f140;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px #6366f10f;
}

.Hero-module__ZARIfG__checkIcon {
  color: #10b981;
  flex-shrink: 0;
}

.Hero-module__ZARIfG__visual {
  perspective: 1000px;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.Hero-module__ZARIfG__mockupImage {
  object-fit: contain;
  filter: drop-shadow(0 20px 40px #0f172a26);
  will-change: transform;
  border-radius: 12px;
  width: 100%;
  max-width: 720px;
  height: auto;
  transition: transform .5s cubic-bezier(.2, .8, .2, 1);
  transform: translateY(0);
}

.Hero-module__ZARIfG__visual:hover .Hero-module__ZARIfG__mockupImage {
  transform: translateY(-8px);
}

@media (max-width: 991px) {
  .Hero-module__ZARIfG__mockupImage {
    max-width: 100%;
    margin-top: 20px;
  }
}

/* [project]/src/components/TrustedBy.module.css [app-client] (css) */
.TrustedBy-module__3ag6Fa__trusted {
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
  background-color: #fff;
  padding: 40px 0;
}

.TrustedBy-module__3ag6Fa__container {
  flex-direction: column;
  align-items: center;
  gap: 24px;
  display: flex;
}

.TrustedBy-module__3ag6Fa__title {
  color: var(--foreground-light);
  text-transform: uppercase;
  letter-spacing: .1em;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.TrustedBy-module__3ag6Fa__grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  display: grid;
}

@media (min-width: 576px) {
  .TrustedBy-module__3ag6Fa__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .TrustedBy-module__3ag6Fa__grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }
}

.TrustedBy-module__3ag6Fa__card {
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  cursor: pointer;
  border: 1px solid #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 16px;
  display: flex;
}

.TrustedBy-module__3ag6Fa__card:hover {
  background-color: var(--background-alt);
  border-color: var(--border-light);
}

.TrustedBy-module__3ag6Fa__iconWrapper {
  background-color: var(--background-alt);
  width: 48px;
  height: 48px;
  color: var(--foreground-muted);
  transition: var(--transition);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.TrustedBy-module__3ag6Fa__card:hover .TrustedBy-module__3ag6Fa__iconWrapper {
  background-color: var(--primary-light);
  color: var(--primary);
  transform: translateY(-2px);
}

.TrustedBy-module__3ag6Fa__name {
  color: var(--foreground-muted);
  text-align: center;
  transition: var(--transition-fast);
  font-size: 14px;
  font-weight: 600;
}

.TrustedBy-module__3ag6Fa__card:hover .TrustedBy-module__3ag6Fa__name {
  color: var(--foreground);
}

/* [project]/src/components/WebsiteBuilderSection.module.css [app-client] (css) */
.WebsiteBuilderSection-module__daGsJW__builder {
  background-color: #fff;
  padding: 80px 0;
}

.WebsiteBuilderSection-module__daGsJW__wrapper {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, #eef2ff 0%, #f5f3ff 100%);
  border: 1px solid #3b46f10d;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 48px;
  padding: 40px 24px;
  display: grid;
  overflow: hidden;
}

@media (min-width: 992px) {
  .WebsiteBuilderSection-module__daGsJW__wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 50px;
  }
}

.WebsiteBuilderSection-module__daGsJW__content {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.WebsiteBuilderSection-module__daGsJW__tag {
  margin-bottom: 20px;
}

.WebsiteBuilderSection-module__daGsJW__title {
  color: var(--foreground);
  letter-spacing: -.02em;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
}

@media (min-width: 576px) {
  .WebsiteBuilderSection-module__daGsJW__title {
    font-size: 38px;
  }
}

.WebsiteBuilderSection-module__daGsJW__description {
  color: var(--foreground-muted);
  max-width: 500px;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
}

.WebsiteBuilderSection-module__daGsJW__listGrid {
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  margin-bottom: 36px;
  display: grid;
}

@media (min-width: 480px) {
  .WebsiteBuilderSection-module__daGsJW__listGrid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.WebsiteBuilderSection-module__daGsJW__listItem {
  color: var(--foreground-muted);
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
}

.WebsiteBuilderSection-module__daGsJW__checkIcon {
  color: var(--green);
  flex-shrink: 0;
}

.WebsiteBuilderSection-module__daGsJW__btnBuilder {
  background-color: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  box-shadow: 0 8px 24px #3b46f133;
}

@media (min-width: 480px) {
  .WebsiteBuilderSection-module__daGsJW__btnBuilder {
    width: auto;
  }
}

.WebsiteBuilderSection-module__daGsJW__btnBuilder:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px #3b46f159;
}

.WebsiteBuilderSection-module__daGsJW__visual {
  perspective: 1000px;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.WebsiteBuilderSection-module__daGsJW__mockupImage {
  object-fit: contain;
  filter: drop-shadow(0 20px 40px #0f172a26);
  will-change: transform;
  border-radius: 12px;
  width: 100%;
  max-width: 720px;
  height: auto;
  transition: transform .5s cubic-bezier(.2, .8, .2, 1);
  transform: translateY(0);
}

.WebsiteBuilderSection-module__daGsJW__visual:hover .WebsiteBuilderSection-module__daGsJW__mockupImage {
  transform: translateY(-8px);
}

@media (max-width: 991px) {
  .WebsiteBuilderSection-module__daGsJW__mockupImage {
    max-width: 100%;
    margin-top: 20px;
  }
}

/* [project]/src/components/BookingEngineSection.module.css [app-client] (css) */
.BookingEngineSection-module__qCK8vG__booking {
  background: linear-gradient(#fff 0%, #f4f6ff 100%);
  padding: 80px 0;
}

.BookingEngineSection-module__qCK8vG__grid {
  grid-template-columns: 1fr;
  align-items: center;
  gap: 48px;
  display: grid;
}

@media (min-width: 992px) {
  .BookingEngineSection-module__qCK8vG__grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
  }
}

.BookingEngineSection-module__qCK8vG__content {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.BookingEngineSection-module__qCK8vG__tag {
  margin-bottom: 20px;
}

.BookingEngineSection-module__qCK8vG__title {
  color: var(--foreground);
  letter-spacing: -.02em;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
}

@media (min-width: 576px) {
  .BookingEngineSection-module__qCK8vG__title {
    font-size: 38px;
  }
}

.BookingEngineSection-module__qCK8vG__description {
  color: var(--foreground-muted);
  max-width: 500px;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
}

.BookingEngineSection-module__qCK8vG__features {
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  margin-bottom: 36px;
  display: grid;
}

@media (min-width: 480px) {
  .BookingEngineSection-module__qCK8vG__features {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.BookingEngineSection-module__qCK8vG__featureItem {
  color: var(--foreground-muted);
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
}

.BookingEngineSection-module__qCK8vG__checkIcon {
  color: var(--green);
  flex-shrink: 0;
}

.BookingEngineSection-module__qCK8vG__btnAction {
  background-color: var(--green);
  color: #fff;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  box-shadow: 0 8px 24px #10b98133;
}

@media (min-width: 480px) {
  .BookingEngineSection-module__qCK8vG__btnAction {
    width: auto;
  }
}

.BookingEngineSection-module__qCK8vG__btnAction:hover {
  background-color: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px #10b98159;
}

.BookingEngineSection-module__qCK8vG__visual {
  width: 100%;
}

.BookingEngineSection-module__qCK8vG__widgetCard {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  background-color: #fff;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  display: flex;
}

@media (min-width: 576px) {
  .BookingEngineSection-module__qCK8vG__widgetCard {
    padding: 30px;
  }
}

.BookingEngineSection-module__qCK8vG__widgetTitle {
  color: var(--foreground);
  font-size: 16px;
  font-weight: 700;
}

.BookingEngineSection-module__qCK8vG__searchForm {
  background-color: var(--background-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 16px;
  display: grid;
}

@media (min-width: 576px) {
  .BookingEngineSection-module__qCK8vG__searchForm {
    grid-template-columns: repeat(3, 1fr) auto;
    align-items: flex-end;
    gap: 12px;
    padding: 12px;
  }
}

.BookingEngineSection-module__qCK8vG__inputWrapper {
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.BookingEngineSection-module__qCK8vG__label {
  color: var(--foreground-muted);
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
}

.BookingEngineSection-module__qCK8vG__input, .BookingEngineSection-module__qCK8vG__select {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--foreground);
  width: 100%;
  transition: var(--transition-fast);
  background-color: #fff;
  outline: none;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
}

.BookingEngineSection-module__qCK8vG__input:focus, .BookingEngineSection-module__qCK8vG__select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-light);
}

.BookingEngineSection-module__qCK8vG__btnSearch {
  background-color: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
}

.BookingEngineSection-module__qCK8vG__btnSearch:hover {
  background-color: var(--primary-hover);
}

.BookingEngineSection-module__qCK8vG__btnSearch:disabled {
  opacity: .7;
  cursor: not-allowed;
}

.BookingEngineSection-module__qCK8vG__spinner {
  animation: 1s linear infinite BookingEngineSection-module__qCK8vG__spin;
}

@keyframes BookingEngineSection-module__qCK8vG__spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.BookingEngineSection-module__qCK8vG__roomsGrid {
  grid-template-columns: 1fr;
  gap: 16px;
  transition: opacity .2s;
  display: grid;
}

@media (min-width: 480px) {
  .BookingEngineSection-module__qCK8vG__roomsGrid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

.BookingEngineSection-module__qCK8vG__searchingOpacity {
  opacity: .4;
  pointer-events: none;
}

.BookingEngineSection-module__qCK8vG__roomCard {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  background-color: #fff;
  overflow: hidden;
}

.BookingEngineSection-module__qCK8vG__roomCard:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  transform: translateY(-4px);
}

.BookingEngineSection-module__qCK8vG__roomImageWrapper {
  aspect-ratio: 4 / 3;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.BookingEngineSection-module__qCK8vG__roomBadge {
  background-color: var(--primary);
  color: #fff;
  z-index: 2;
  border-radius: 100px;
  padding: 2px 8px;
  font-size: 9px;
  font-weight: 700;
  position: absolute;
  top: 8px;
  left: 8px;
}

.BookingEngineSection-module__qCK8vG__roomDetails {
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  display: flex;
}

.BookingEngineSection-module__qCK8vG__roomName {
  color: var(--foreground);
  font-size: 13px;
  font-weight: 700;
}

.BookingEngineSection-module__qCK8vG__roomPriceRow {
  align-items: baseline;
  gap: 2px;
  display: flex;
}

.BookingEngineSection-module__qCK8vG__roomPrice {
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
}

.BookingEngineSection-module__qCK8vG__roomNight {
  color: var(--foreground-light);
  font-size: 10px;
}

.BookingEngineSection-module__qCK8vG__successToast {
  background-color: var(--green-light);
  color: var(--green-hover);
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px solid #10b98133;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  animation: .3s ease-out BookingEngineSection-module__qCK8vG__slideIn;
}

@keyframes BookingEngineSection-module__qCK8vG__slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* [project]/src/components/CoreValues.module.css [app-client] (css) */
.CoreValues-module__RQygIq__values {
  border-bottom: 1px solid var(--border-light);
  background-color: #fff;
  padding: 60px 0;
}

.CoreValues-module__RQygIq__grid {
  grid-template-columns: 1fr;
  gap: 32px;
  display: grid;
}

@media (min-width: 576px) {
  .CoreValues-module__RQygIq__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .CoreValues-module__RQygIq__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
  }
}

.CoreValues-module__RQygIq__card {
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border-radius: var(--radius-md);
  flex-direction: column;
  align-items: center;
  padding: 16px;
  display: flex;
}

.CoreValues-module__RQygIq__card:hover {
  transform: translateY(-4px);
}

.CoreValues-module__RQygIq__iconWrapper {
  background-color: var(--primary-light);
  width: 54px;
  height: 54px;
  color: var(--primary);
  transition: var(--transition);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
  box-shadow: 0 4px 10px #3b46f10d;
}

.CoreValues-module__RQygIq__card:hover .CoreValues-module__RQygIq__iconWrapper {
  background-color: var(--primary);
  color: #fff;
  transform: scale(1.05)rotate(5deg);
  box-shadow: 0 8px 20px #3b46f140;
}

.CoreValues-module__RQygIq__title {
  color: var(--foreground);
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
}

.CoreValues-module__RQygIq__description {
  color: var(--foreground-muted);
  max-width: 200px;
  font-size: 13px;
  line-height: 1.5;
}

/* [project]/src/components/StatsAndTestimonials.module.css [app-client] (css) */
.StatsAndTestimonials-module__snT9oG__statsSection {
  background: linear-gradient(#f4f6ff 0%, #fff 100%);
  padding: 80px 0;
}

.StatsAndTestimonials-module__snT9oG__grid {
  grid-template-columns: 1fr;
  align-items: center;
  gap: 48px;
  display: grid;
}

@media (min-width: 992px) {
  .StatsAndTestimonials-module__snT9oG__grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
  }
}

.StatsAndTestimonials-module__snT9oG__dashboardCard {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  background-color: #fff;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  display: flex;
}

@media (min-width: 576px) {
  .StatsAndTestimonials-module__snT9oG__dashboardCard {
    padding: 30px;
  }
}

.StatsAndTestimonials-module__snT9oG__cardTitle {
  color: var(--foreground);
  font-size: 16px;
  font-weight: 700;
}

.StatsAndTestimonials-module__snT9oG__statsRow {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  display: grid;
}

@media (min-width: 480px) {
  .StatsAndTestimonials-module__snT9oG__statsRow {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
}

.StatsAndTestimonials-module__snT9oG__statCell {
  background-color: var(--background-alt);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  display: flex;
}

.StatsAndTestimonials-module__snT9oG__statLabel {
  color: var(--foreground-light);
  font-size: 11px;
  font-weight: 600;
}

.StatsAndTestimonials-module__snT9oG__statVal {
  color: var(--foreground);
  font-size: 16px;
  font-weight: 700;
}

.StatsAndTestimonials-module__snT9oG__statTrend {
  align-items: center;
  gap: 2px;
  font-size: 10px;
  font-weight: 600;
  display: flex;
}

.StatsAndTestimonials-module__snT9oG__trendUp {
  color: var(--green);
}

.StatsAndTestimonials-module__snT9oG__chartWrapper {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
}

.StatsAndTestimonials-module__snT9oG__chartHeader {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.StatsAndTestimonials-module__snT9oG__chartHeader h4 {
  color: var(--foreground);
  font-size: 13px;
  font-weight: 700;
}

.StatsAndTestimonials-module__snT9oG__chartDropdown {
  color: var(--primary);
  background-color: var(--primary-light);
  cursor: pointer;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
}

.StatsAndTestimonials-module__snT9oG__svgContainer {
  width: 100%;
  height: 120px;
  position: relative;
}

.StatsAndTestimonials-module__snT9oG__chartSvg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.StatsAndTestimonials-module__snT9oG__chartXLabels {
  color: var(--foreground-light);
  justify-content: space-between;
  padding: 8px 10px 0;
  font-size: 11px;
  font-weight: 500;
  display: flex;
}

.StatsAndTestimonials-module__snT9oG__progressSection {
  border-top: 1px solid var(--border-light);
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  display: flex;
}

.StatsAndTestimonials-module__snT9oG__progressSection h4 {
  color: var(--foreground);
  font-size: 13px;
  font-weight: 700;
}

.StatsAndTestimonials-module__snT9oG__progressGrid {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.StatsAndTestimonials-module__snT9oG__progressRow {
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.StatsAndTestimonials-module__snT9oG__progressInfo {
  color: var(--foreground-muted);
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  display: flex;
}

.StatsAndTestimonials-module__snT9oG__barContainer {
  background-color: var(--border-light);
  border-radius: 100px;
  height: 6px;
  overflow: hidden;
}

.StatsAndTestimonials-module__snT9oG__barFill {
  border-radius: 100px;
  height: 100%;
}

.StatsAndTestimonials-module__snT9oG__fillPrimary {
  background-color: var(--primary);
}

.StatsAndTestimonials-module__snT9oG__fillGreen {
  background-color: var(--green);
}

.StatsAndTestimonials-module__snT9oG__fillPurple {
  background-color: var(--purple);
}

.StatsAndTestimonials-module__snT9oG__testimonialColumn {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.StatsAndTestimonials-module__snT9oG__quoteCard {
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  display: flex;
  position: relative;
}

.StatsAndTestimonials-module__snT9oG__quoteIconWrapper {
  color: var(--primary-light);
  opacity: .8;
}

.StatsAndTestimonials-module__snT9oG__sliderContainer {
  width: 100%;
  min-height: 160px;
  position: relative;
}

.StatsAndTestimonials-module__snT9oG__slide {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  height: 100%;
  transition: opacity .5s, visibility .5s;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.StatsAndTestimonials-module__snT9oG__slideActive {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  position: relative;
}

.StatsAndTestimonials-module__snT9oG__quoteText {
  color: var(--foreground-muted);
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

@media (min-width: 576px) {
  .StatsAndTestimonials-module__snT9oG__quoteText {
    font-size: 24px;
  }
}

.StatsAndTestimonials-module__snT9oG__authorRow {
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  display: flex;
}

.StatsAndTestimonials-module__snT9oG__authorAvatar {
  width: 48px;
  height: 48px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-light);
  border-radius: 50%;
  overflow: hidden;
}

.StatsAndTestimonials-module__snT9oG__authorMeta {
  flex-direction: column;
  display: flex;
}

.StatsAndTestimonials-module__snT9oG__authorName {
  color: var(--foreground);
  font-size: 16px;
  font-weight: 700;
}

.StatsAndTestimonials-module__snT9oG__authorRole {
  color: var(--foreground-light);
  font-size: 13px;
  font-weight: 500;
}

.StatsAndTestimonials-module__snT9oG__hotelName {
  color: var(--primary);
  font-weight: 600;
}

.StatsAndTestimonials-module__snT9oG__dots {
  gap: 8px;
  margin-top: 12px;
  display: flex;
}

.StatsAndTestimonials-module__snT9oG__dot {
  background-color: var(--border);
  width: 8px;
  height: 8px;
  transition: var(--transition-fast);
  border-radius: 50%;
}

.StatsAndTestimonials-module__snT9oG__dotActive {
  background-color: var(--primary);
  border-radius: 100px;
  width: 20px;
}

/* [project]/src/components/TopBlogPosts.module.css [app-client] (css) */
.TopBlogPosts-module__yVJihW__ctaSection {
  background-color: #fff;
  padding: 60px 0;
}

.TopBlogPosts-module__yVJihW__banner {
  background: linear-gradient(135deg, var(--primary) 0%, #0c0a3e 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid #ffffff1a;
  flex-direction: column;
  gap: 32px;
  padding: 40px 24px;
  display: flex;
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .TopBlogPosts-module__yVJihW__banner {
    padding: 56px 60px;
  }
}

.TopBlogPosts-module__yVJihW__glowBlob1 {
  filter: blur(30px);
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle, #6366f126 0%, #6366f100 70%);
  width: 250px;
  height: 250px;
  position: absolute;
  top: -20%;
  left: -10%;
}

.TopBlogPosts-module__yVJihW__glowBlob2 {
  filter: blur(30px);
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle, #3b46f126 0%, #3b46f100 70%);
  width: 250px;
  height: 250px;
  position: absolute;
  bottom: -20%;
  right: -10%;
}

.TopBlogPosts-module__yVJihW__header {
  z-index: 2;
  text-align: center;
  margin-bottom: 10px;
  position: relative;
}

.TopBlogPosts-module__yVJihW__title {
  color: #fff;
  letter-spacing: -.5px;
  margin-bottom: 12px;
  font-size: 28px;
  font-weight: 700;
}

.TopBlogPosts-module__yVJihW__subtitle {
  color: #fffc;
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
}

@media (min-width: 768px) {
  .TopBlogPosts-module__yVJihW__title {
    font-size: 36px;
  }

  .TopBlogPosts-module__yVJihW__subtitle {
    font-size: 18px;
  }
}

.TopBlogPosts-module__yVJihW__blogGrid {
  z-index: 2;
  grid-template-columns: 1fr;
  gap: 24px;
  display: grid;
  position: relative;
}

@media (min-width: 768px) {
  .TopBlogPosts-module__yVJihW__blogGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .TopBlogPosts-module__yVJihW__blogGrid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.TopBlogPosts-module__yVJihW__blogCard {
  border-radius: var(--radius-md);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  flex-direction: column;
  text-decoration: none;
  transition: transform .3s, background .3s, border-color .3s;
  display: flex;
  overflow: hidden;
}

.TopBlogPosts-module__yVJihW__blogCard:hover {
  background: #ffffff1a;
  border-color: #ffffff4d;
  transform: translateY(-5px);
}

.TopBlogPosts-module__yVJihW__imageWrapper {
  aspect-ratio: 16 / 9;
  background-color: #ffffff0d;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.TopBlogPosts-module__yVJihW__blogImage {
  object-fit: cover;
  transition: transform .5s;
}

.TopBlogPosts-module__yVJihW__blogCard:hover .TopBlogPosts-module__yVJihW__blogImage {
  transform: scale(1.05);
}

.TopBlogPosts-module__yVJihW__categoryBadge {
  background: var(--primary);
  color: #fff;
  z-index: 2;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  top: 12px;
  left: 12px;
  box-shadow: 0 4px 10px #0003;
}

.TopBlogPosts-module__yVJihW__content {
  flex-direction: column;
  flex-grow: 1;
  padding: 20px;
  display: flex;
}

.TopBlogPosts-module__yVJihW__date {
  color: #fff9;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 13px;
  display: flex;
}

.TopBlogPosts-module__yVJihW__blogTitle {
  color: #fff;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
}

.TopBlogPosts-module__yVJihW__excerpt {
  color: #ffffffb3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  flex-grow: 1;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
}

.TopBlogPosts-module__yVJihW__readMore {
  color: #818cf8;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: gap .3s;
  display: flex;
}

.TopBlogPosts-module__yVJihW__blogCard:hover .TopBlogPosts-module__yVJihW__readMore {
  gap: 10px;
}

/* [project]/src/components/Footer.module.css [app-client] (css) */
.Footer-module__S6Hkya__footer {
  color: var(--foreground-muted);
  border-top: 1px solid var(--border);
  background-color: #fff;
  padding: 80px 0 30px;
}

.Footer-module__S6Hkya__container {
  flex-direction: column;
  display: flex;
}

.Footer-module__S6Hkya__grid {
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 50px;
  display: grid;
}

@media (min-width: 576px) {
  .Footer-module__S6Hkya__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .Footer-module__S6Hkya__grid {
    grid-template-columns: 2.2fr 1fr 1fr 1.1fr 1.8fr;
    gap: 32px;
  }
}

.Footer-module__S6Hkya__brandCol {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.Footer-module__S6Hkya__brandDesc {
  color: var(--foreground-muted);
  max-width: 290px;
  font-size: 14.5px;
  line-height: 1.6;
}

.Footer-module__S6Hkya__socials {
  gap: 12px;
  display: flex;
}

.Footer-module__S6Hkya__socialCard {
  border: 1.5px solid var(--border);
  color: #64748b;
  background-color: #fff;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  transition: all .25s;
  display: flex;
}

.Footer-module__S6Hkya__socialCard:hover {
  background-color: var(--primary-light);
  color: var(--primary);
  border-color: #6366f14d;
  transform: translateY(-2px);
}

.Footer-module__S6Hkya__column {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.Footer-module__S6Hkya__title {
  color: var(--foreground-dark);
  letter-spacing: .05em;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 800;
}

.Footer-module__S6Hkya__links {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.Footer-module__S6Hkya__links a {
  color: var(--foreground-muted);
  transition: var(--transition-fast);
  font-size: 14px;
  display: inline-block;
}

.Footer-module__S6Hkya__links a:hover {
  color: var(--primary);
  transform: translateX(3px);
}

.Footer-module__S6Hkya__contactInfo {
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.Footer-module__S6Hkya__contactLabel {
  color: var(--foreground-dark);
  font-size: 14px;
  font-weight: 800;
}

.Footer-module__S6Hkya__contactValue {
  color: var(--foreground-muted);
  font-size: 14px;
  line-height: 1.5;
}

.Footer-module__S6Hkya__phoneLink {
  color: var(--foreground-muted);
  transition: var(--transition-fast);
  font-weight: 600;
}

.Footer-module__S6Hkya__phoneLink:hover {
  color: var(--primary);
}

.Footer-module__S6Hkya__divider {
  background-color: var(--border);
  border: none;
  height: 1px;
  margin-bottom: 24px;
}

.Footer-module__S6Hkya__bottom {
  flex-direction: column;
  align-items: center;
  gap: 16px;
  display: flex;
}

@media (min-width: 768px) {
  .Footer-module__S6Hkya__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.Footer-module__S6Hkya__copyright {
  color: var(--foreground-light);
  font-size: 13.5px;
}

.Footer-module__S6Hkya__copyright strong {
  color: var(--foreground-dark);
  font-weight: 750;
}

.Footer-module__S6Hkya__scrizaLink {
  color: var(--foreground-dark);
  transition: var(--transition-fast);
  font-weight: 750;
  text-decoration: none;
}

.Footer-module__S6Hkya__scrizaLink:hover {
  color: var(--primary);
  text-decoration: underline;
}

.Footer-module__S6Hkya__heart {
  color: #ef4444;
  margin: 0 4px;
}

.Footer-module__S6Hkya__bottomLinks {
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  display: flex;
}

.Footer-module__S6Hkya__bottomLink {
  color: var(--foreground-light);
  transition: var(--transition-fast);
  font-size: 13.5px;
}

.Footer-module__S6Hkya__bottomLink:hover {
  color: var(--primary);
}

.Footer-module__S6Hkya__bottomRight {
  flex-direction: column;
  align-items: center;
  gap: 20px;
  display: flex;
}

@media (min-width: 992px) {
  .Footer-module__S6Hkya__bottomRight {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
}

/*# sourceMappingURL=src_components_1bbb8tb._.css.map*/