/* [project]/src/components/Navbar/Navbar.module.css [app-client] (css) */
.Navbar-module___rHu7W__navbar {
  z-index: 120;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
  position: sticky;
  top: 0;
}

.Navbar-module___rHu7W__inner {
  align-items: center;
  gap: 32px;
  height: 70px;
  display: flex;
}

.Navbar-module___rHu7W__logo {
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
  display: flex;
}

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

.Navbar-module___rHu7W__logoText {
  font-family: var(--font-heading);
  color: var(--text-main);
  letter-spacing: -.5px;
  font-size: 22px;
  font-weight: 700;
}

.Navbar-module___rHu7W__navLinks {
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 4px;
  display: flex;
}

.Navbar-module___rHu7W__navItem {
  position: relative;
}

.Navbar-module___rHu7W__navLink {
  color: var(--text-body);
  border-radius: var(--radius);
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
  display: inline-flex;
}

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

.Navbar-module___rHu7W__navLinkActive {
  color: var(--primary) !important;
}

.Navbar-module___rHu7W__megaMenu {
  z-index: 200;
  align-items: flex-start;
  gap: 6px;
  display: flex;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
}

.Navbar-module___rHu7W__megaLeft {
  border: 1.5px solid var(--border);
  background: #fafafa;
  border-radius: 14px;
  flex-shrink: 0;
  width: 220px;
  padding: 10px 0;
  box-shadow: 0 16px 48px #00000026;
}

.Navbar-module___rHu7W__megaHeading {
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #9ca3af;
  padding: 4px 16px 8px;
  font-size: 10px;
  font-weight: 700;
}

.Navbar-module___rHu7W__megaCatRow {
  cursor: pointer;
  color: #6b7280;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px 0 0;
  transition: background .15s;
  display: flex;
}

.Navbar-module___rHu7W__megaCatRow:hover, .Navbar-module___rHu7W__megaCatRowActive {
  color: var(--primary);
  background: #fff1f2;
}

.Navbar-module___rHu7W__megaCatRowActive {
  background: #fff1f2 !important;
}

.Navbar-module___rHu7W__megaCatLink {
  color: inherit;
  flex: 1;
  align-items: center;
  gap: 8px;
  padding: 9px 6px 9px 16px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
}

.Navbar-module___rHu7W__megaDivider {
  background: var(--border);
  height: 1px;
  margin: 6px 0;
}

.Navbar-module___rHu7W__megaAllLink {
  color: var(--primary);
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s;
  display: flex;
}

.Navbar-module___rHu7W__megaAllLink:hover {
  background: var(--bg-light);
}

.Navbar-module___rHu7W__megaRight {
  border: 1.5px solid var(--border);
  background: #fff;
  border-radius: 14px;
  flex-shrink: 0;
  width: 260px;
  padding: 10px 0 14px;
  box-shadow: 0 16px 48px #00000026;
}

.Navbar-module___rHu7W__megaSubGrid {
  flex-direction: column;
  gap: 2px;
  padding: 0 8px;
  display: flex;
}

.Navbar-module___rHu7W__megaSubItem {
  color: var(--text-body);
  border-radius: 8px;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background .15s, color .15s;
  display: flex;
}

.Navbar-module___rHu7W__megaSubItem:hover {
  color: var(--primary);
  background: #fff1f2;
}

.Navbar-module___rHu7W__megaSubIcon {
  color: #6b7280;
  background: #f3f4f6;
  border-radius: 7px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  transition: background .15s;
  display: flex;
}

.Navbar-module___rHu7W__megaSubItem:hover .Navbar-module___rHu7W__megaSubIcon {
  color: var(--primary);
  background: #ffe4e6;
}

.Navbar-module___rHu7W__soonBadge {
  color: #d97706;
  text-transform: uppercase;
  letter-spacing: .5px;
  background: #fef3c7;
  border-radius: 20px;
  margin-left: auto;
  padding: 2px 7px;
  font-size: 9px;
  font-weight: 700;
}

.Navbar-module___rHu7W__actions {
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
  display: flex;
}

.Navbar-module___rHu7W__searchBtn {
  color: var(--text-body);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  transition: background .2s;
  display: flex;
}

.Navbar-module___rHu7W__searchBtn:hover {
  background: var(--bg-light);
}

.Navbar-module___rHu7W__searchWrap {
  position: relative;
}

.Navbar-module___rHu7W__searchBar {
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  align-items: center;
  width: 260px;
  padding: 0 8px 0 36px;
  transition: border-color .2s, box-shadow .2s;
  display: flex;
  position: relative;
}

.Navbar-module___rHu7W__searchBar:focus-within {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px #d42b3a14;
}

.Navbar-module___rHu7W__searchBarIcon {
  pointer-events: none;
  flex-shrink: 0;
  position: absolute;
  left: 10px;
}

.Navbar-module___rHu7W__searchBarInput {
  height: 36px;
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--text-main);
  background: none;
  border: none;
  outline: none;
  flex: 1;
  min-width: 0;
}

.Navbar-module___rHu7W__searchBarInput::placeholder {
  color: #9ca3af;
}

.Navbar-module___rHu7W__searchBarClose {
  cursor: pointer;
  color: #9ca3af;
  background: none;
  border: none;
  border-radius: 50%;
  flex-shrink: 0;
  align-items: center;
  padding: 4px;
  transition: color .15s, background .15s;
  display: flex;
}

.Navbar-module___rHu7W__searchBarClose:hover {
  color: #374151;
  background: #f3f4f6;
}

.Navbar-module___rHu7W__quickDrop {
  z-index: 300;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  min-width: 320px;
  max-height: 420px;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  overflow: hidden auto;
  box-shadow: 0 12px 40px #00000024;
}

.Navbar-module___rHu7W__quickLoading {
  color: #9ca3af;
  align-items: center;
  gap: 10px;
  padding: 16px;
  font-size: 13px;
  display: flex;
}

.Navbar-module___rHu7W__quickSpinner {
  border: 2px solid #e5e7eb;
  border-top-color: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  animation: .7s linear infinite Navbar-module___rHu7W__spin;
}

@keyframes Navbar-module___rHu7W__spin {
  to {
    transform: rotate(360deg);
  }
}

.Navbar-module___rHu7W__quickEmpty {
  color: #9ca3af;
  text-align: center;
  padding: 20px 16px;
  font-size: 13px;
}

.Navbar-module___rHu7W__quickSection {
  border-bottom: 1px solid #f3f4f6;
  padding: 8px 0 4px;
}

.Navbar-module___rHu7W__quickSection:last-of-type {
  border-bottom: none;
}

.Navbar-module___rHu7W__quickSectionTitle {
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 4px 14px 6px;
  font-size: 10px;
  font-weight: 700;
}

.Navbar-module___rHu7W__quickItem {
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  text-decoration: none;
  transition: background .12s;
  display: flex;
}

.Navbar-module___rHu7W__quickItem:hover {
  background: #f9fafb;
}

.Navbar-module___rHu7W__quickItemIcon {
  background: #f3f4f6;
  border-radius: 7px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: flex;
  overflow: hidden;
}

.Navbar-module___rHu7W__quickItemBody {
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  display: flex;
}

.Navbar-module___rHu7W__quickItemTitle {
  color: var(--text-main);
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 13px;
  font-weight: 500;
  overflow: hidden;
}

.Navbar-module___rHu7W__quickItemSub {
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
}

.Navbar-module___rHu7W__quickSeeAll {
  width: 100%;
  color: var(--primary);
  cursor: pointer;
  text-align: left;
  background: #f9fafb;
  border: none;
  border-top: 1px solid #f0f0f5;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  transition: background .15s;
  display: flex;
}

.Navbar-module___rHu7W__quickSeeAll:hover {
  background: #fff1f2;
}

.Navbar-module___rHu7W__btnExpert {
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 300;
  font-family: var(--font-heading);
  white-space: nowrap;
  border-radius: 50px;
  padding: 9px 20px;
  transition: background .2s;
}

.Navbar-module___rHu7W__btnExpert:hover {
  background: var(--primary-dark);
}

.Navbar-module___rHu7W__btnLogin {
  color: var(--text-main);
  font-size: 13px;
  font-weight: 300;
  font-family: var(--font-heading);
  border: 1.5px solid var(--border);
  white-space: nowrap;
  background: none;
  border-radius: 50px;
  padding: 9px 20px;
  transition: all .2s;
}

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

.Navbar-module___rHu7W__avatarWrap {
  justify-content: center;
  align-items: center;
  gap: .5rem;
  display: flex;
  position: relative;
}

.Navbar-module___rHu7W__avatarBtn {
  border: 1.5px solid var(--border);
  cursor: pointer;
  background: none;
  border-radius: 50px;
  align-items: center;
  gap: 8px;
  padding: 5px;
  transition: border-color .2s;
  display: flex;
}

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

.Navbar-module___rHu7W__avatarImg {
  object-fit: cover;
  border: 2px solid #e5e7eb;
  border-radius: 50%;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: block;
}

.Navbar-module___rHu7W__avatarCircle {
  background: var(--primary);
  color: #fff;
  width: 28px;
  height: 28px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-heading);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.Navbar-module___rHu7W__avatarName {
  color: var(--text-main);
  font-size: 13px;
  font-weight: 600;
}

.Navbar-module___rHu7W__dropdown {
  border: 1.5px solid var(--border);
  z-index: 200;
  background: #fff;
  border-radius: 12px;
  min-width: 200px;
  padding: 12px 0 8px;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  box-shadow: 0 8px 32px #0000001f;
}

.Navbar-module___rHu7W__dropName {
  color: var(--text-main);
  padding: 0 14px;
  font-size: 13px;
  font-weight: 600;
}

.Navbar-module___rHu7W__dropEmail {
  color: #9ca3af;
  padding: 2px 14px 8px;
  font-size: 11px;
}

.Navbar-module___rHu7W__dropDivider {
  background: var(--border);
  height: 1px;
  margin: 4px 0;
}

.Navbar-module___rHu7W__dropItem {
  color: var(--text-body);
  cursor: pointer;
  width: 100%;
  font-size: 13px;
  font-family: var(--font-body);
  text-align: left;
  background: none;
  border: none;
  padding: 9px 14px;
  text-decoration: none;
  transition: background .15s;
  display: block;
}

.Navbar-module___rHu7W__dropItem:hover {
  background: var(--bg-light);
  color: var(--text-main);
}

.Navbar-module___rHu7W__dropLogout {
  color: #dc2626;
}

.Navbar-module___rHu7W__dropLogout:hover {
  color: #dc2626;
  background: #fef2f2;
}

.Navbar-module___rHu7W__hamburger {
  cursor: pointer;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
  display: none;
}

.Navbar-module___rHu7W__hamburger span {
  background: var(--text-main);
  border-radius: 2px;
  width: 22px;
  height: 2px;
  display: block;
}

.Navbar-module___rHu7W__mobileMenu {
  display: none;
}

@media (max-width: 900px) {
  .Navbar-module___rHu7W__hamburger {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .Navbar-module___rHu7W__navLinks {
    display: none;
  }

  .Navbar-module___rHu7W__actions {
    gap: 8px;
  }

  .Navbar-module___rHu7W__searchBtn {
    display: none;
  }

  .Navbar-module___rHu7W__mobileMenu {
    background: var(--white);
    border-top: 1px solid var(--border);
    z-index: 110;
    width: 100%;
    max-height: calc(100vh - 70px);
    padding: 20px;
    display: block;
    position: absolute;
    top: 70px;
    left: 0;
    overflow-y: auto;
    box-shadow: 0 10px 30px #0000001a;
  }

  .Navbar-module___rHu7W__mobileNavLinks {
    flex-direction: column;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
  }

  .Navbar-module___rHu7W__mobileNavItem {
    font-family: var(--font-body);
  }

  .Navbar-module___rHu7W__mobileNavItem > a {
    color: var(--text-main);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: block;
  }

  .Navbar-module___rHu7W__mobileNavHeading {
    color: var(--text-main);
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
  }

  .Navbar-module___rHu7W__mobileSubList {
    border-left: 2px solid var(--border);
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0 0 0 16px;
    list-style: none;
    display: flex;
  }

  .Navbar-module___rHu7W__mobileSubItem > a {
    color: var(--text-body);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: block;
  }

  .Navbar-module___rHu7W__mobileSubItem > a:hover {
    color: var(--primary);
  }

  .Navbar-module___rHu7W__mobileCatRow {
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .Navbar-module___rHu7W__mobileCatLink {
    color: var(--text-body);
    flex: 1;
    padding: 4px 0;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
  }

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

  .Navbar-module___rHu7W__mobileCatToggle {
    cursor: pointer;
    color: #9ca3af;
    background: none;
    border: none;
    justify-content: center;
    align-items: center;
    padding: 4px;
    transition: color .2s;
    display: flex;
  }

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

  .Navbar-module___rHu7W__mobileNestedWrap {
    grid-template-rows: 0fr;
    transition: grid-template-rows .3s ease-in-out;
    display: grid;
  }

  .Navbar-module___rHu7W__mobileNestedWrap.Navbar-module___rHu7W__expanded {
    grid-template-rows: 1fr;
  }

  .Navbar-module___rHu7W__mobileNestedInner {
    overflow: hidden;
  }

  .Navbar-module___rHu7W__mobileNestedList {
    border-left: 1.5px dashed var(--border);
    flex-direction: column;
    gap: 12px;
    margin: 4px 0 4px 8px;
    padding: 6px 0 2px 14px;
    list-style: none;
    display: flex;
  }

  .Navbar-module___rHu7W__mobileNestedItem > a {
    color: #6b7280;
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    transition: color .15s;
    display: block;
  }

  .Navbar-module___rHu7W__mobileNestedItem > a:hover {
    color: var(--primary);
  }

  .Navbar-module___rHu7W__avatarName {
    display: none;
  }
}

@media (max-width: 600px) {
  .Navbar-module___rHu7W__btnLogin {
    display: none;
  }
}

/* [project]/src/components/Footer/Footer.module.css [app-client] (css) */
.Footer-module__Grjkva__footer {
  color: var(--text-body, #6b7280);
  background: #f8f9fc;
  border-top: 1px solid #0000000a;
  position: relative;
  overflow: hidden;
}

.Footer-module__Grjkva__footer:before {
  content: "";
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(100% 100% at 20% 90%, #00000005 0%, #0000 60%), radial-gradient(100% 100% at 80% 90%, #00000005 0%, #0000 60%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.Footer-module__Grjkva__inner {
  z-index: 1;
  grid-template-columns: 1.5fr 1fr 1fr 2.5fr;
  gap: 40px;
  padding-top: 70px;
  padding-bottom: 50px;
  display: grid;
  position: relative;
}

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

.Footer-module__Grjkva__colTitle {
  font-family: var(--font-heading, inherit);
  color: #1a1a2e;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 800;
}

.Footer-module__Grjkva__waveSvg {
  opacity: .6;
  margin-bottom: 20px;
}

.Footer-module__Grjkva__aboutText {
  color: #6b7280;
  text-align: justify;
  font-size: 13px;
  line-height: 1.8;
}

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

.Footer-module__Grjkva__link {
  color: #6b7280;
  font-size: 13px;
  text-decoration: none;
  transition: color .2s;
}

.Footer-module__Grjkva__link:hover {
  color: var(--primary, #d1122a);
}

.Footer-module__Grjkva__followWrap {
  gap: 30px;
  display: flex;
}

.Footer-module__Grjkva__followDetails {
  flex-direction: column;
  flex: 1;
  display: flex;
}

.Footer-module__Grjkva__contactList {
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  display: flex;
}

.Footer-module__Grjkva__contactList li {
  color: #6b7280;
  font-size: 13px;
  line-height: 1.6;
}

.Footer-module__Grjkva__labelRed {
  color: #e0464f;
  margin-right: 4px;
  font-weight: 500;
}

.Footer-module__Grjkva__mapContainer {
  border-radius: 8px;
  flex: 1;
  max-width: 180px;
  height: 110px;
  overflow: hidden;
  box-shadow: 0 4px 10px #0000000d;
}

.Footer-module__Grjkva__socialsRow {
  align-items: center;
  gap: 12px;
  display: flex;
}

.Footer-module__Grjkva__followLabel {
  color: #6b7280;
  font-size: 13px;
}

.Footer-module__Grjkva__socialBtn {
  color: #4b5563;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  transition: all .2s;
  display: flex;
}

.Footer-module__Grjkva__socialBtn:hover {
  color: var(--primary, #d1122a);
}

.Footer-module__Grjkva__bottomBar {
  z-index: 1;
  border-top: 1px solid #00000014;
  padding: 20px 0;
  position: relative;
}

.Footer-module__Grjkva__bottomBarInner {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.Footer-module__Grjkva__logoArea {
  align-items: center;
  gap: 10px;
  display: flex;
}

.Footer-module__Grjkva__logoIcon {
  mix-blend-mode: multiply;
  justify-content: center;
  align-items: center;
  max-width: 120px;
  display: flex;
}

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

.Footer-module__Grjkva__logoMain {
  font-family: var(--font-heading, inherit);
  color: #1a1a2e;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.Footer-module__Grjkva__logoSub {
  letter-spacing: 2px;
  color: var(--primary, #d1122a);
  text-transform: uppercase;
  margin-top: 2px;
  font-size: 8px;
  font-weight: 700;
}

.Footer-module__Grjkva__copyright {
  color: #6b7280;
  font-size: 13px;
}

@media (max-width: 1000px) {
  .Footer-module__Grjkva__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
  }
}

@media (max-width: 640px) {
  .Footer-module__Grjkva__inner {
    grid-template-columns: 1fr;
  }

  .Footer-module__Grjkva__followWrap {
    flex-direction: column;
  }

  .Footer-module__Grjkva__bottomBarInner {
    text-align: center;
    flex-direction: column;
    gap: 16px;
  }
}

/* [project]/src/app/demo-booking/demo-booking.module.css [app-client] (css) */
.demo-booking-module__mA48xa__page {
  background: #f4f5fa;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 70px);
  padding: 0 24px;
  display: flex;
}

.demo-booking-module__mA48xa__container {
  border-radius: 24px;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1160px;
  height: 80vh;
  max-height: 820px;
  display: grid;
  overflow: hidden;
  box-shadow: 0 24px 80px #00000024;
}

.demo-booking-module__mA48xa__leftPanel {
  position: relative;
  overflow: hidden;
}

.demo-booking-module__mA48xa__bgImage {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.demo-booking-module__mA48xa__imageOverlay {
  z-index: 1;
  background: linear-gradient(340deg, #0a0a1ed1 0%, #d42b3a8c 100%);
  position: absolute;
  inset: 0;
}

.demo-booking-module__mA48xa__leftContent {
  z-index: 2;
  color: #fff;
  flex-direction: column;
  height: 100%;
  padding: 32px 36px;
  display: flex;
  position: relative;
}

.demo-booking-module__mA48xa__leftLogo {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  font-family: var(--font-heading);
  align-items: center;
  gap: 10px;
  text-decoration: none;
  display: flex;
}

.demo-booking-module__mA48xa__leftBody {
  margin-top: auto;
  padding-top: 16px;
}

.demo-booking-module__mA48xa__leftTag {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #ffffff26;
  border: 1px solid #ffffff40;
  border-radius: 20px;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
}

.demo-booking-module__mA48xa__leftTitle {
  font-family: var(--font-heading);
  color: #fff;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.demo-booking-module__mA48xa__leftSub {
  color: #fffc;
  margin-bottom: 18px;
  font-size: 13px;
  line-height: 1.6;
}

.demo-booking-module__mA48xa__features {
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
  display: flex;
}

.demo-booking-module__mA48xa__featureRow {
  color: #ffffffe6;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  display: flex;
}

.demo-booking-module__mA48xa__featureIcon {
  background: #ffffff1f;
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 18px;
  display: flex;
}

.demo-booking-module__mA48xa__trustRow {
  border-top: 1px solid #fff3;
  align-items: center;
  gap: 0;
  padding: 14px 0 0;
  display: flex;
}

.demo-booking-module__mA48xa__trustItem {
  text-align: center;
  flex: 1;
}

.demo-booking-module__mA48xa__trustNum {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.demo-booking-module__mA48xa__trustLabel {
  color: #ffffffa6;
  margin-top: 4px;
  font-size: 11px;
  display: block;
}

.demo-booking-module__mA48xa__trustDivider {
  background: #fff3;
  width: 1px;
  height: 36px;
}

.demo-booking-module__mA48xa__rightPanel {
  background: #fff;
  flex-direction: column;
  padding: 28px 36px 24px;
  display: flex;
  overflow-y: auto;
}

.demo-booking-module__mA48xa__formHeader {
  margin-bottom: 16px;
}

.demo-booking-module__mA48xa__formTitle {
  font-family: var(--font-heading);
  color: var(--text-main);
  margin-bottom: 4px;
  font-size: 23px;
  font-weight: 800;
}

.demo-booking-module__mA48xa__formSub {
  color: #6b7280;
  font-size: 13px;
  line-height: 1.4;
}

.demo-booking-module__mA48xa__errorBox {
  color: #dc2626;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  margin-bottom: 18px;
  padding: 12px 16px;
  font-size: 13px;
}

.demo-booking-module__mA48xa__form {
  flex-direction: column;
  gap: 11px;
  display: flex;
}

.demo-booking-module__mA48xa__formRow {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  display: grid;
}

.demo-booking-module__mA48xa__formGroup {
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.demo-booking-module__mA48xa__label {
  color: #374151;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 12px;
  font-weight: 700;
}

.demo-booking-module__mA48xa__req {
  color: #d42b3a;
}

.demo-booking-module__mA48xa__optional {
  color: #9ca3af;
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
  font-weight: 400;
}

.demo-booking-module__mA48xa__inputWrap {
  position: relative;
}

.demo-booking-module__mA48xa__inputIcon {
  color: #9ca3af;
  pointer-events: none;
  align-items: center;
  display: flex;
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
}

.demo-booking-module__mA48xa__input {
  width: 100%;
  color: var(--text-main);
  font-size: 13px;
  font-family: var(--font-body);
  box-sizing: border-box;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  outline: none;
  padding: 9px 14px 9px 36px;
  transition: border-color .2s, box-shadow .2s;
}

.demo-booking-module__mA48xa__input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px #d42b3a14;
}

.demo-booking-module__mA48xa__input::placeholder {
  color: #d1d5db;
}

.demo-booking-module__mA48xa__select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-position: right 12px center;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.demo-booking-module__mA48xa__textarea {
  width: 100%;
  color: var(--text-main);
  font-size: 13px;
  font-family: var(--font-body);
  resize: vertical;
  box-sizing: border-box;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  outline: none;
  min-height: 68px;
  padding: 9px 14px;
  transition: border-color .2s, box-shadow .2s;
}

.demo-booking-module__mA48xa__textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px #d42b3a14;
}

.demo-booking-module__mA48xa__textarea::placeholder {
  color: #d1d5db;
}

.demo-booking-module__mA48xa__submitBtn {
  background: var(--primary);
  color: #fff;
  width: 100%;
  font-family: var(--font-heading);
  cursor: pointer;
  border: none;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 12px;
  font-size: 15px;
  font-weight: 700;
  transition: background .2s, transform .1s;
  display: flex;
}

.demo-booking-module__mA48xa__submitBtn:hover:not(:disabled) {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.demo-booking-module__mA48xa__submitBtn:disabled {
  opacity: .7;
  cursor: not-allowed;
}

.demo-booking-module__mA48xa__spinner {
  border: 2px solid #fff6;
  border-top-color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  animation: .7s linear infinite demo-booking-module__mA48xa__spin;
}

@keyframes demo-booking-module__mA48xa__spin {
  to {
    transform: rotate(360deg);
  }
}

.demo-booking-module__mA48xa__privacyNote {
  color: #9ca3af;
  text-align: center;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.5;
}

.demo-booking-module__mA48xa__successBox {
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  display: flex;
}

.demo-booking-module__mA48xa__successIcon {
  background: #f0fdf4;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  display: flex;
}

.demo-booking-module__mA48xa__successTitle {
  font-family: var(--font-heading);
  color: var(--text-main);
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 800;
}

.demo-booking-module__mA48xa__successSub {
  color: #6b7280;
  max-width: 380px;
  margin-bottom: 28px;
  font-size: 14px;
  line-height: 1.6;
}

.demo-booking-module__mA48xa__successDetails {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  width: 100%;
  margin-bottom: 28px;
  overflow: hidden;
}

.demo-booking-module__mA48xa__successRow {
  border-bottom: 1px solid #f0f0f5;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  font-size: 13px;
  display: flex;
}

.demo-booking-module__mA48xa__successRow:last-child {
  border-bottom: none;
}

.demo-booking-module__mA48xa__successLabel {
  color: #6b7280;
  font-weight: 500;
}

.demo-booking-module__mA48xa__successValue {
  color: var(--text-main);
  text-align: right;
  font-weight: 600;
}

.demo-booking-module__mA48xa__successActions {
  gap: 12px;
  width: 100%;
  display: flex;
}

.demo-booking-module__mA48xa__successPrimaryBtn {
  background: var(--primary);
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-heading);
  border-radius: 10px;
  flex: 1;
  padding: 12px;
  text-decoration: none;
  transition: background .2s;
}

.demo-booking-module__mA48xa__successPrimaryBtn:hover {
  background: var(--primary-dark);
}

.demo-booking-module__mA48xa__successSecondaryBtn {
  color: var(--text-main);
  cursor: pointer;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  flex: 1;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: border-color .2s;
}

.demo-booking-module__mA48xa__successSecondaryBtn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

@media (max-width: 900px) {
  .demo-booking-module__mA48xa__page {
    align-items: flex-start;
    height: auto;
    min-height: 100vh;
    padding: 0;
  }

  .demo-booking-module__mA48xa__container {
    border-radius: 0;
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
  }

  .demo-booking-module__mA48xa__leftPanel {
    min-height: 300px;
  }

  .demo-booking-module__mA48xa__leftTitle {
    font-size: 22px;
  }

  .demo-booking-module__mA48xa__leftBody {
    margin-top: 16px;
    padding-top: 0;
  }

  .demo-booking-module__mA48xa__leftContent {
    padding: 26px 24px;
  }

  .demo-booking-module__mA48xa__rightPanel {
    padding: 28px 24px 32px;
  }

  .demo-booking-module__mA48xa__formRow {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .demo-booking-module__mA48xa__page {
    background: #fff;
  }

  .demo-booking-module__mA48xa__leftPanel {
    min-height: 240px;
  }

  .demo-booking-module__mA48xa__leftTitle {
    font-size: 19px;
  }

  .demo-booking-module__mA48xa__features {
    display: none;
  }

  .demo-booking-module__mA48xa__trustRow {
    gap: 0;
  }

  .demo-booking-module__mA48xa__trustNum {
    font-size: 17px;
  }

  .demo-booking-module__mA48xa__rightPanel {
    padding: 22px 16px 28px;
  }
}

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