* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Inter", sans-serif !important;
  color: #111827;
  background:#efefef;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
}

:root{
  --primary: linear-gradient(90deg, rgba(51, 45, 108, 1) 0%, rgba(142, 42, 129, 1) 100%);   /* teal */
 --secondary-color :linear-gradient(90deg, rgb(165, 75, 153) 100%, rgb(119, 112, 182) 0%);
  /* Full-width layout on large displays (was ~1180px capped sections) */
  --site-container-max: 100%;
}
.btn-primary {
  background: var(--primary);
}
.gradient-text{
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.heroMain {
  padding: clamp(12px, 2.5vw, 20px) clamp(12px, 3vw, 20px) 20px;
  scroll-margin-top: 100px;
}
.demo-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100svh;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Fixed nav / absolute copy sit out of flow — centering one flex child left huge empty bands */
  justify-content: flex-start;
  padding-top: clamp(84px, 11vw, 120px);
  padding-bottom: clamp(88px, 12vw, 120px);
  padding-left: clamp(12px, 3vw, 20px);
  padding-right: clamp(12px, 3vw, 20px);
  box-sizing: border-box;
  /* not hidden: fixed .mobile-panel lives under .navbar-wrap inside this section and would be clipped */
  overflow: visible;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(17, 24, 39, 0.08);
  color: #4b5563;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.scroll-note {
  margin-top: 44px;
  color: #6b7280;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: floatNote 2.2s ease-in-out infinite;
}

@keyframes floatNote {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

.navbar-wrap {
  position: fixed;
  left: 22px;
  top: 42px;
  right: 22px;
  z-index: 5000;
  pointer-events: none;
}

.navbar {
  --nav-w: calc(100vw - 44px);
  --nav-h: 84px;
  --nav-r: 15px;
  width: var(--nav-w);
  max-width: var(--site-container-max);
  height: var(--nav-h);
  pointer-events: auto;
  margin: 0 auto;
  display: flex;
  flex-wrap: unset !important;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 14px !important;
  border-radius: var(--nav-r);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(17, 24, 39, 0.07);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  /* overflow visible when menus open so fixed .mobile-panel / .compact-menu-panel are not clipped */
  overflow: hidden;
  transition:
    width 1.15s cubic-bezier(0.16, 1, 0.3, 1),
    max-width 1.15s cubic-bezier(0.16, 1, 0.3, 1),
    height 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    padding 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    gap 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.navbar.is-open,
.navbar.is-open-compact {
  overflow: visible;
}

.navbar.is-compact {
  margin-left: 14px !important;
  --nav-w: 111px;
  top: -22px;
  --nav-h: 60px;
  --nav-r: 999px;
  margin: 0;
  max-width: 154px;
  gap: 0;
  padding: 6px !important;
  justify-content: flex-start;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.12);
}

.navbar.is-open-compact {
  --nav-w: 292px;
  --nav-r: 26px;
  max-width: 337px;
  min-height: 0;
  height: auto;
  border-radius: 26px;
  padding: 10px !important;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  background: #fff;
  box-shadow: 0 22px 54px rgba(17, 24, 39, 0.16);
  transition: unset;
}

.navbar.is-open-compact .nav-left {
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.navbar.is-open-compact .nav-right,
.navbar.is-open-compact .nav-center {
  display: none;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  transition: gap 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-btn,
.cta-btn,
.icon-badge,
.mobile-toggle {
  border: 0;
  outline: none;
  cursor: pointer;
  font: inherit;
}

.menu-btn {
  display: none;
}

.navbar.is-compact .menu-btn {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 14px;
  background: transparent;
  position: relative;
  /* box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7); */
  flex-shrink: 0;
  overflow: hidden;
  color: #111827;
  opacity: 1;
  visibility: visible;
  filter: blur(0);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 0.32s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.25s ease,
    width 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    height 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.25s ease,
    opacity 0.22s ease,
    filter 0.22s ease,
    box-shadow 0.25s ease;
  transform-origin: center;
}

.navbar.is-open-compact .menu-btn {
  /* width: 108px; */
  height: 46px;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  /* box-shadow: 0 8px 20px rgba(17, 24, 39, 0.08); */
}

.menu-btn__inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  transform: translateY(0);
  transition:
    transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.22s ease;
}

.navbar.is-compacting .menu-btn {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.96);
  filter: blur(1px);
  pointer-events: none;
}

.navbar.is-compact:not(.is-open-compact):not(.is-compacting) .menu-btn {
  /* opacity: 0; */
  /* visibility: hidden; */
  animation: menuFadeUp 0.28s ease forwards;
  /* animation-delay: 0.12s; */
}

.navbar.is-compact:not(.is-open-compact):not(.is-compacting)
  .menu-btn
  .menu-btn__inner {
  animation: menuInnerFadeUp 0.52s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.12s;
}

@keyframes menuFadeUp {
  from {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    filter: blur(0);
  }
  to {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes menuInnerFadeUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-lines {
  width: 30px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.menu-lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2.2px;
  border-radius: 999px;
  background: #8a2b80 !important;
  transition:
    transform 0.35s ease,
    top 0.35s ease,
    opacity 0.35s ease;
}

.menu-lines span:nth-child(1) {
  top: 1px;
}
.menu-lines span:nth-child(2) {
  top: 11px;
  width: 75%;
}
.menu-lines span:nth-child(3) {
  top: 20px;
}

.menu-label {
  display: none;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.2s ease,
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.is-compact .menu-label {
  display: inline-block;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #111827;
  min-width: 0;
  overflow: hidden;
  transition:
    width 0.88s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.34s ease 0.06s,
    transform 0.64s cubic-bezier(0.16, 1, 0.3, 1),
    margin 0.88s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.is-compact .brand {
  gap: 2px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #111827 0%, #2c3a47 100%);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.16);
  transition:
    width 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    height 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s ease;
}
.brand-mark img {
  width: 44px;
  border-radius: 14px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition:
    opacity 0.22s ease,
    transform 0.44s cubic-bezier(0.16, 1, 0.3, 1),
    width 0.58s cubic-bezier(0.16, 1, 0.3, 1),
    margin 0.58s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-copy strong {
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: left;
  background: #332d6c;
  background: linear-gradient(
    90deg,
    rgba(51, 45, 108, 1) 0%,
    rgba(142, 42, 129, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-copy span {
  margin-top: 4px;
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
  white-space: nowrap;
}

.nav-center {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 0 14px;
  overflow: hidden;
  transition:
    opacity 0.38s ease,
    transform 0.62s cubic-bezier(0.16, 1, 0.3, 1),
    width 0.82s cubic-bezier(0.16, 1, 0.3, 1),
    max-width 0.82s cubic-bezier(0.16, 1, 0.3, 1),
    margin 0.82s cubic-bezier(0.16, 1, 0.3, 1),
    padding 0.82s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: black !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}
.nav-link {
  position: relative;
  display: inline-block; /* 🔥 important */
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #333;
  padding-bottom: 6px; /* space for underline */
}

/* ACTIVE */
.nav-link.active {
  color: #8a2b80 !important;
  font-weight: 600;
}

/* UNDERLINE */
.nav-link.active::after {
  content: "";
  position: absolute;
  /* left: 0; */
  bottom: 0;
  width: 100%;
  height: 2px;
  background:#8a2b80;
  border-radius: 10px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: #111827;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-link:hover {
  transform: translateY(-1px);
  color: #000;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(17, 24, 39, 0.07);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1f2937;
  transition:
    transform 0.35s ease,
    opacity 0.28s ease,
    width 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    max-width 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    margin 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    padding 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  overflow: hidden;
  max-width: 48px;
}

.icon-badge svg {
  width: 18px;
  height: 18px;
}

.cta-btn {
  height: 58px;
  padding: 0 22px;
  border-radius: 18px;
  background: linear-gradient(
    90deg,
    rgba(51, 45, 108, 1) 0%,
    rgba(142, 42, 129, 1) 100%
  );
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition:
    transform 0.35s ease,
    background 0.3s ease,
    padding 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.28s ease,
    width 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    max-width 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    margin 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.18);
  white-space: nowrap;
  flex-shrink: 0;
  overflow: hidden;
  max-width: 190px;
}

.cta-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  background: #111827;
}

.cta-btn:hover svg {
  transform: translateX(3px);
}

.mobile-toggle {
  display: none;
}

.navbar.is-compact .menu-btn,
.navbar.is-compact .icon-badge,
.navbar.is-compact .cta-btn,
.navbar.is-compact .brand-mark,
.navbar.is-compact .brand-mark img {
  border-radius: 999px;
}

.navbar.is-compact .nav-left,
.navbar.is-compact .nav-right {
  gap: 0;
}

.navbar.is-compact .brand-copy {
  opacity: 0;
  transform: translateX(-10px);
  width: 0;
  overflow: hidden;
}

.navbar.is-compact .brand-mark {
  width: 50px;
  height: 50px;
  opacity: 1;
  box-shadow: none;
}
.navbar.is-compact .brand-mark img {
  width: 50px;
  height: 50px;
  opacity: 1;
  box-shadow: none;
}
.navbar.is-compact .nav-center,
.navbar.is-compact .icon-badge,
.navbar.is-compact .cta-btn {
  opacity: 0;
  width: 0;
  max-width: 0;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  transform: translateX(-18px) scale(0.94);
  pointer-events: none;
}

.navbar.is-open-compact .menu-label {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #111827;
}

.navbar.is-open-compact .menu-label span {
  visibility: hidden;
  position: relative;
}

.navbar.is-open-compact .menu-label span::after {
  content: "Close";
  visibility: visible;
  position: absolute;
  left: 0;
  top: 0;
}

.navbar.is-open-compact .menu-btn__inner {
  transform: translateY(0);
}

.navbar.is-open-compact .menu-lines span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.navbar.is-open-compact .menu-lines span:nth-child(2) {
  opacity: 0;
  transform: translateX(-6px);
}

.navbar.is-open-compact .menu-lines span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

/* Full-width mobile drawer — hamburger in .nav-right animates to X */
.navbar.is-open .mobile-toggle .menu-lines span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.navbar.is-open .mobile-toggle .menu-lines span:nth-child(2) {
  opacity: 0;
  transform: translateX(-6px);
}

.navbar.is-open .mobile-toggle .menu-lines span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

.navbar.is-compact.is-open-compact {
  /* transition: none !important; */
}

.mobile-overlay {
  position: fixed;
  border-radius: 26px;
  inset: 0;
  background: rgb(10 15 25 / 4%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  z-index: 5001;
}

.navbar.is-open-compact .mobile-overlay,
.navbar.is-open .mobile-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.compact-menu-panel {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 72px;
  z-index: 5002;
  border-radius: 22px;
  padding: 10px 6px 6px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.96);
  transform-origin: top left;
  transition:
    opacity 0.24s ease,
    visibility 0.24s ease,
    transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
}

.compact-menu-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.compact-menu-links a {
  text-decoration: none;
  color: #1b1b1b;
  font-size: 16px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  padding: 8px 8px;
  transform: translateY(8px);
  opacity: 0;
  transition:
    opacity 0.24s ease,
    transform 0.34s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.25s ease;
}

.compact-menu-links a:hover {
  color: #ff5fa2;
}
.compact-menu-links a.is-muted {
  color: rgba(27, 27, 27, 0.38);
}

.compact-menu-card {
  margin-top: 16px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #f3ece8 0%, #e6d6cf 100%);
  min-height: 92px;
  display: flex;
  align-items: end;
  padding: 12px;
  position: relative;
  transform: translateY(12px);
  opacity: 0;
  transition:
    opacity 0.28s ease 0.14s,
    transform 0.48s cubic-bezier(0.16, 1, 0.3, 1) 0.14s;
}

.compact-menu-card::after {
  content: "Join the Grand";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #7b5a4e;
  padding: 0 12px;
}

.compact-menu-foot {
  margin-top: 10px;
  font-size: 9px;
  color: rgba(17, 24, 39, 0.56);
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.28s ease 0.2s,
    transform 0.42s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.navbar.is-open-compact .compact-menu-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  /* In flow so the drawer height matches links + promo — avoids a tall empty white band */
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  width: 100%;
  margin-top: 6px;
  padding: 6px 0 6px;
  flex: 0 0 auto;
}

.navbar.is-open-compact .compact-menu-links a,
.navbar.is-open-compact .compact-menu-card,
.navbar.is-open-compact .compact-menu-foot {
  opacity: 1;
}

.navbar.is-open-compact .compact-menu-links a {
  transform: translateY(0);
}
.navbar.is-open-compact .compact-menu-links a:nth-child(1) {
  transition-delay: 0.08s;
}
.navbar.is-open-compact .compact-menu-links a:nth-child(2) {
  transition-delay: 0.12s;
}
.navbar.is-open-compact .compact-menu-links a:nth-child(3) {
  transition-delay: 0.16s;
}
.navbar.is-open-compact .compact-menu-links a:nth-child(4) {
  transition-delay: 0.2s;
}
.navbar.is-open-compact .compact-menu-links a:nth-child(5) {
  transition-delay: 0.24s;
}

.mobile-panel {
  position: fixed;
  left: 16px;
  top: 96px;
  height: fit-content;
  bottom: 16px;
  width: min(360px, calc(100vw - 32px));
  padding: 18px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-108%) scale(0.98);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  z-index: 5002;
}

.mobile-panel a {
  display: block;
  padding: 16px 14px;
  text-decoration: none;
  color: #111827;
  font-weight: 600;
  border-radius: 16px;
  transform: translateX(-16px);
  opacity: 0;
  transition:
    background 0.25s ease,
    transform 0.48s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.32s ease;
}

.mobile-panel a:hover {
  background: rgba(17, 24, 39, 0.04);
}

.navbar.is-open .mobile-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}

.navbar.is-open .mobile-panel a {
  transform: translateX(0);
  opacity: 1;
}

.navbar.is-open .mobile-panel a:nth-child(1) {
  transition-delay: 0.08s;
}
.navbar.is-open .mobile-panel a:nth-child(2) {
  transition-delay: 0.12s;
}
.navbar.is-open .mobile-panel a:nth-child(3) {
  transition-delay: 0.16s;
}
.navbar.is-open .mobile-panel a:nth-child(4) {
  transition-delay: 0.2s;
}
.navbar.is-open .mobile-panel a:nth-child(5) {
  transition-delay: 0.24s;
}

.section {
  min-height: 100vh;
  padding: 90px 20px;
  max-width: var(--site-container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  min-height: 280px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.05);
}

@media (max-width: 1100px) {
  .nav-center {
    gap: 24px;
  }
  .brand-copy span {
    display: none;
  }
}

@media (max-width: 920px) {
  /* Symmetric horizontal insets + bar fills wrap — was left 12px / right 22px so nav was wider than wrap and clipped the hamburger */
  .navbar-wrap {
    left: 10px;
    right: 10px;
    top: 12px;
  }

  .navbar {
    --nav-w: 100%;
    width: 100%;
    max-width: none;
    --nav-h: 86px;
    --nav-r: 26px;
    padding: 10px 14px;
    gap: 12px;
  }

  /* Larger logo + menu (reference: chunky pill on phones) — compact scroll pill unchanged */
  .navbar:not(.is-compact) .brand-mark,
  .navbar:not(.is-compact) .brand-mark img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
  }

  .navbar:not(.is-compact) .brand-mark img {
    object-fit: cover;
  }

  .navbar.is-compact {
    --nav-w: 110px;
    --nav-h: 74px;
    max-width:120px;
    padding: 6px;
  }

  .brand-copy,
  .nav-center,
  .icon-badge,
  .cta-btn.desktop-only {
    display: none;
  }

  .navbar.is-compact .menu-btn {
    width: 50px;
    height: 50px;
    padding: 0;
    justify-content: center;
  }

  .navbar.is-compact .menu-label,
  .navbar.is-open-compact .menu-label {
    display: none;
  }

  .navbar.is-open-compact {
    --nav-w: 100%;
    max-width: none;
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .navbar.is-open-compact .menu-btn {
    width: 50px;
  }

  .mobile-toggle {
    display: inline-flex;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    border: 1px solid rgba(17, 24, 39, 0.07);
    background: rgba(255, 255, 255, 0.78);
    align-items: center;
    justify-content: center;
    color: #111827;
    transition:
      opacity 0.2s ease,
      width 0.4s ease,
      margin 0.4s ease;
  }

  .mobile-toggle .menu-lines {
    width: 26px;
    height: 22px;
  }

  .mobile-toggle .menu-lines span {
    height: 2.6px;
  }

  .mobile-toggle .menu-lines span:nth-child(1) {
    top: 0;
  }

  .mobile-toggle .menu-lines span:nth-child(2) {
    top: 10px;
    width: 78%;
  }

  .mobile-toggle .menu-lines span:nth-child(3) {
    top: 20px;
  }

  .navbar.is-open .mobile-toggle .menu-lines span:nth-child(1),
  .navbar.is-open .mobile-toggle .menu-lines span:nth-child(3) {
    top: 10px;
  }

  .navbar.is-compact .mobile-toggle {
    opacity: 0;
    width: 0;
    margin: 0;
    border-width: 0;
    padding: 0;
    pointer-events: none;
  }

  .compact-menu-panel {
    top: calc(var(--nav-h) + 10px);
  }

  /* Home hero: full-bleed video — cap height (100lvh / stacked full-viewport mins felt too tall on phones) */
  .demo-hero {
    padding: 0;
    min-height: min(86svh, 760px);
    background: #0b1220;
  }

  .demo-hero .hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 0;
    margin: 0;
    flex: none;
    aspect-ratio: unset;
    max-height: none;
    border-radius: 0;
    z-index: 0;
  }

  /* Portrait phones: bias crop so more of the frame (e.g. car / scene) reads vertically */
  .demo-hero .hero-media .hero-video {
    object-position: center 36%;
  }

  /* Stack copy under the nav — extra top padding so eyebrow/headline clear the fixed bar (12px + ~86px nav + gap) */
  .demo-hero .content-box {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: none;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    padding: calc(186px + env(safe-area-inset-top, 0px)) 16px calc(76px + env(safe-area-inset-bottom, 0px));
    /* Above .hero-media (z-index: 0) — same DOM order would otherwise paint video on top */
    z-index: 20;
    text-align: center;
    pointer-events: none;
  }

  .demo-hero .hero-eyebrow {
    margin-bottom: 14px;
    align-self: center;
    text-align: center;
  }

  .demo-hero .hero-content-inner {
    width: 100%;
    max-width: 100%;
    align-items: center;
    text-align: center;
    gap: clamp(6px, 2vw, 12px);
  }

  .demo-hero .content-box .hero-headline {
    font-size: clamp(1.45rem, 5.2vw + 0.6rem, 2.35rem);
    line-height: 1.14;
    text-align: center;
    align-self: center;
  }

  .demo-hero .hero-auth-cta {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    align-self: center;
  }

  .hero-scroll-cue {
    bottom: max(16px, env(safe-area-inset-bottom, 0px));
  }

  .section {
    grid-template-columns: 1fr;
  }
}

/* Hero video fills .hero-media frame (aspect ratio set on .hero-media) */
.hero-media .hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: heroKenBurns 28s ease-in-out infinite alternate;
}

@media (min-width: 921px) {
  .demo-hero .content-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(var(--site-container-max), calc(100% - 40px));
    text-align: center;
    z-index: 20;
    pointer-events: none;
    transform: translate(-50%, -50%);
    padding: 0 16px;
  }
}

.hero-content-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 2vw, 22px);
}

.hero-auth-cta {
  pointer-events: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(8px, 2vw, 16px);
  opacity: 0;
  animation: heroRevealIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.75s forwards;
}

.home-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.home-hero-btn:hover {
  transform: translateY(-2px);
  color: inherit;
}

.home-hero-btn--outline {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #332d6c;
  box-shadow: 0 8px 28px rgba(17, 24, 39, 0.12);
}

.home-hero-btn--outline:hover {
  background: #fff;
  color: #332d6c;
}

.home-hero-btn--primary {
  background: linear-gradient(
    90deg,
    rgba(51, 45, 108, 1) 0%,
    rgba(142, 42, 129, 1) 100%
  );
  color: #fff !important;
  border: none;
  box-shadow: 0 12px 32px rgba(51, 45, 108, 0.35);
}

.home-hero-btn--primary:hover {
  filter: brightness(1.06);
  color: #fff !important;
}

/* Home: account strip below stats */
.home-account-banner {
  padding: 0 20px 28px;
  margin-top: -24px;
  position: relative;
  z-index: 12;
}

.home-account-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 16px 40px rgba(51, 45, 108, 0.1);
  max-width: var(--site-container-max);
  margin: 0 auto;
}

.home-account-banner__title {
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  font-weight: 800;
  color: #111827;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}

.home-account-banner__sub {
  font-size: 14px;
  color: #6b7280;
  max-width: 520px;
}

.home-account-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .home-account-banner__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .home-account-banner__actions {
    justify-content: center;
  }
}

.demo-hero .content-box .hero-eyebrow,
.demo-hero .content-box .hero-headline {
  opacity: 0;
  will-change: transform, opacity;
}

.demo-hero .content-box .hero-eyebrow {
  animation: heroRevealIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.demo-hero .content-box .hero-headline {
  line-height: 1.12;
  font-size: clamp(1.75rem, 4.5vw, 3.2rem);
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  font-weight: 800;
  letter-spacing: -0.045em;
  text-transform: capitalize;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(230, 224, 255, 0.92) 35%,
    rgba(255, 255, 255, 0.95) 55%,
    rgba(248, 236, 255, 0.9) 75%,
    rgba(255, 255, 255, 0.96) 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 40px rgba(51, 45, 108, 0.15);
  animation:
    heroRevealIn 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards,
    heroHeadlineShimmer 9s ease-in-out 1.6s infinite;
}

/* Phones / tablets: gradient + background-clip:text often renders invisible; keep copy above video */
@media (max-width: 1199px) {
  .demo-hero .hero-content-inner {
    width: 100%;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .demo-hero .hero-eyebrow {
    align-self: center;
    text-align: center;
  }

  .demo-hero .hero-auth-cta {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    align-self: center;
  }

  .demo-hero .content-box .hero-headline {
    background: none;
    background-image: none;
    background-size: auto;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: #fff;
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 32px rgba(0, 0, 0, 0.55);
    animation: heroRevealIn 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
  }
}

.demo-hero .content-box .hero-eyebrow {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 32px rgba(17, 24, 39, 0.06);
}

@keyframes heroRevealIn {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroHeadlineShimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1.04) translate(0, 0);
  }
  100% {
    transform: scale(1.1) translate(-1.2%, -0.8%);
  }
}

/* Service */

.services-section {
  max-width: var(--site-container-max);
  margin: 0 auto;
  padding: 30px 20px 30px;
}

.section-head {
  text-align: center;
  margin-bottom: 42px;
}

.section-head p {
  font-size: 15px;
  color: #555;
}

.cards-wrap {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.service-card {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 388px;
  overflow: hidden;
  border: 1px solid #d9d9d9;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;

   /* Smooth transition */
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* .service-card:hover {
  flex: 1.8;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
} */

.card-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 165px);
  padding: 18px;
  background: #fff;
  z-index: 2;

  transition:
    width 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.6s ease;
}

.card-label {
  font-size: 13px;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.card-content h3 {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 10px;
      background: linear-gradient(90deg, rgba(51, 45, 108, 1) 0%, rgba(142, 42, 129, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    
}

.card-content p {
  font-size: 13px;
  line-height: 1.55;
  color: #555;
  max-width: 240px;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  background: linear-gradient(
    90deg,
    rgba(51, 45, 108, 1) 0%,
    rgba(142, 42, 129, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

.card-link span {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.service-card:hover .card-link span {
  transform: translateX(4px);
}


.service-card.active .card-link {
  background: #57b7d9;
  background: linear-gradient(
    90deg,
    rgba(51, 45, 108, 1) 0%,
    rgba(142, 42, 129, 1) 100%
  );
  padding: 5px 10px;
  color: #fff !important;
  border-radius: 4px;
  min-width: 80px;
  -webkit-text-fill-color: unset;
}

.card-media {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  width: 100%;
  height: 165px;
  background: #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    left 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    right 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    top 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    bottom 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}


.service-card .media-icon {
  width: 64px;
  height: 64px;
  opacity: 0.65;
  transition: transform 0.45s ease;
}
.service-card .media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-card:hover .media-icon {
  transform: scale(1.05);
}


.service-card {
  flex-direction: column;
}

/* .service-card:hover .card-content {
  width: 50%;
  height: 100%;
  padding: 26px 20px;
} */

/* .service-card:hover .card-media {
  left: 50%;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
} */

.service-card:hover .card-content p {
  max-width: 100%;
}

.cards-wrap:hover .service-card:not(:hover) {
  flex: 0.85;
}

.service-card {
  flex: 1;
  transition:
    flex 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    transform 0.4s ease;
}

.service-card.active {
  flex: 1.8;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}
.promo-feature-ui {
  display: flex;
  flex-wrap: wrap;          /* Mobile me bhi sahi ho */
  gap: 20px;
  align-items: center;      /* Vertical align */
  justify-content: space-between;
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.promo-copy-ui {
  flex: 1;
  min-width: 280px;        /* Mobile friendly */
}

.promo-media-ui {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

.promo-media-ui img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;        /* Image properly fill kare without stretching */
}
.service-card.active .card-content {
  width: 50%;
  height: 100%;
  padding: 26px 20px;
}

.service-card.active .card-media {
  left: 50%;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
}

.cards-wrap .service-card:not(.active) {
  flex: 0.9;
}

@media (max-width: 991px) {
  .section-head h2 {
    font-size: clamp(1.35rem, 5vw, 40px);
  }

  .services-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cards-wrap {
    flex-direction: column;
    gap: 14px;
  }

  .service-card,
  .service-card:hover,
  .service-card.active,
  .cards-wrap:hover .service-card:not(:hover) {
    flex: unset !important;
    flex-grow: 0;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
  }

  /* Absolute children + height:auto collapsed each card to ~0 (three “lines”) */
  .service-card,
  .service-card:hover,
  .service-card.active {
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    overflow: hidden;
  }

  .service-card .card-content,
  .service-card:hover .card-content,
  .service-card.active .card-content {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    height: auto !important;
    flex: 1 1 auto;
    order: 1;
    padding: 18px 18px 14px;
    z-index: 2;
    text-align: center;
  }

  .service-card .card-label {
    justify-content: center;
  }

  .service-card .card-content p {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .service-card .card-media,
  .service-card:hover .card-media,
  .service-card.active .card-media {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: min(200px, 42vw) !important;
    min-height: 160px;
    flex-shrink: 0;
    order: 2;
    border-radius: 0;
  }

  .service-card .media-img {
    border-radius: 0 0 12px 12px;
  }
}

/* Offer CSS */

.promo-shell-ui {
  max-width: var(--site-container-max);
  margin: 0 auto;
  padding: 30px 20px 30px;
}

.promo-head-ui {
  text-align: center;
  margin-bottom: 38px;
}

.promo-tag-ui {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

.promo-head-ui p {
  margin: 0;
  font-size: 14px;
  color: #5f5f5f;
  line-height: 1.6;
}

.promo-feature-ui {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  min-height: 430px;
  border: 1px solid #dddddd;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 35px rgba(17, 24, 39, 0.04);
}

.promo-copy-ui {
  border-radius: 10px;
  padding: 54px 48px;
  background: #efefef;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-mini-ui {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(
    90deg,
    rgba(51, 45, 108, 1) 0%,
    rgba(142, 42, 129, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.promo-copy-ui h3 {
  margin: 0 0 16px;
  max-width: 420px;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.05;
  font-weight: 600;
    background: #332d6c;
  background: linear-gradient(
    90deg,
    rgba(51, 45, 108, 1) 0%,
    rgba(142, 42, 129, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1.4px;
}

.promo-copy-ui p {
  max-width: 430px;
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.7;
  color: #5d5d5d;
}

.promo-actions-ui {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.promo-btn-ui {
  text-decoration: none;
  transition: all 0.25s ease;
}

.promo-btn-primary-ui {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  height: 38px;
  padding: 0 16px;
  border: 1px solid #d4d4d4;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(51, 45, 108, 1) 0%,
    rgba(142, 42, 129, 1) 100%
  );
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 600;
}

.promo-btn-primary-ui:hover {
  /* border-color: #; */
  background: linear-gradient(
    90deg,
    rgba(51, 45, 108, 1) 0%,
    rgba(142, 42, 129, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: 1px solid #8e2a81;
}

.promo-btn-link-ui {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #222;
  font-size: 13px;
  font-weight: 500;
}
.promo-btn-link-ui p {
  /* font-size: 13px; */
}

.promo-btn-link-ui span {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.promo-btn-link-ui:hover span {
  transform: translateX(4px);
}

.promo-media-ui {
  border-radius: 10px;
  background: #efefef;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.promo-image-card-ui {
  width: 132px;
  height: 106px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-image-icon-ui {
  width: 88px;
  height: 88px;
  opacity: 0.95;
}

@media (max-width: 991.98px) {
  .promo-feature-ui {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  /* Food block: visuals first; replace absolute fan (470px+) with flex row so nothing clips */
  .promo-feature-ui:has(> .food-pro-visual) .food-pro-visual {
    order: -1;
    position: relative;
    height: auto;
    min-height: 0;
    max-width: 100%;
    margin: 0;
    padding: clamp(12px, 3vw, 20px) clamp(8px, 2vw, 14px) clamp(16px, 4vw, 24px);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
    gap: clamp(4px, 1.5vw, 10px);
    overflow: hidden;
  }

  .promo-feature-ui:has(> .food-pro-visual) .food-stack-card {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: clamp(96px, 28vw, 148px) !important;
    height: clamp(128px, 36vw, 198px) !important;
    flex: 0 0 auto;
    transform: none !important;
    animation: none !important;
  }

  .promo-feature-ui:has(> .food-pro-visual) .food-pro-visual:hover .food-stack-card,
  .promo-feature-ui:has(> .food-pro-visual) .food-stack-card:hover {
    transform: none !important;
  }

  .promo-feature-ui:has(> .food-pro-visual) .overlay h5 {
    font-size: clamp(0.75rem, 2.8vw, 1rem);
  }

  .promo-feature-ui:has(> .food-pro-visual) .overlay span {
    font-size: clamp(0.65rem, 2.2vw, 0.8rem);
  }

  .promo-copy-ui {
    padding: 40px 28px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 0;
  }

  .promo-media-ui {
    min-height: 260px;
  }

  .promo-copy-ui h3 {
    max-width: 100%;
  }

  .promo-copy-ui p {
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .promo-shell-ui {
    padding: 56px 14px 30px;
  }

  .womensection {
    padding: 36px 14px 30px !important;
  }
  .promo-head-ui {
    margin-bottom: 24px;
  }

  .promo-copy-ui {
    padding: 28px 20px;
  }

  .promo-copy-ui h3 {
    font-size: 32px;
  }

  .promo-actions-ui {
    gap: 12px;
  }

  .promo-btn-primary-ui {
    min-width: 88px;
    height: 36px;
    font-size: 12px;
  }
}

/* Empowerment  CSS */

.empower-section-ui {
  padding: 30px 20px 30px;
  /* background: #f5f5f5; */
}

.empower-container-ui {
  max-width: var(--site-container-max);
  margin: 0 auto;
}

.empower-top-ui {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.empower-label-ui {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  color: #212121;
  letter-spacing: 0.2px;
}

.empower-title-ui {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.03;
  font-weight: 700;
  letter-spacing: -1.8px;
  color: #161616;
}

.empower-desc-ui {
  max-width: 660px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.75;
  color: #505050;
}

.empower-actions-ui {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.empower-btn-ui {
  text-decoration: none;
  transition: all 0.28s ease;
}

.empower-btn-solid-ui {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 34px;
  padding: 0 14px;
  border: 1px solid #d3d3d3;
  border-radius: 999px;
  background: #ffffff;
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 500;
}

.empower-btn-solid-ui:hover {
  background: #191919;
  color: #ffffff;
  border-color: #191919;
}

.empower-btn-text-ui {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #1d1d1d;
  font-size: 12px;
  font-weight: 500;
}

.empower-btn-text-ui span {
  font-size: 15px;
  transition: transform 0.25s ease;
}

.empower-btn-text-ui:hover span {
  transform: translateX(4px);
}

.empower-banner-ui {
  width: 100%;
  min-height: 420px;
  border-radius: 14px;
  background: #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.empower-placeholder-ui {
  width: 190px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empower-placeholder-icon-ui {
  width: 150px;
  height: 150px;
  opacity: 0.95;
}

@media (max-width: 991.98px) {
  .empower-section-ui {
    padding: 64px 18px 44px;
  }

  .empower-banner-ui {
    min-height: 340px;
  }
}

@media (max-width: 767.98px) {
  .empower-title-ui {
    font-size: 40px;
    line-height: 1.08;
    letter-spacing: -1.2px;
  }

  .empower-desc-ui {
    font-size: 13px;
    line-height: 1.7;
  }

  .empower-banner-ui {
    min-height: 260px;
    border-radius: 12px;
  }

  .empower-placeholder-ui {
    width: 130px;
    height: 110px;
  }

  .empower-placeholder-icon-ui {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 575.98px) {
  .empower-section-ui {
    padding: 54px 14px 34px;
  }

  .empower-top-ui {
    margin-bottom: 24px;
  }

  .empower-title-ui {
    font-size: 32px;
  }

  .empower-actions-ui {
    gap: 10px;
  }

  .empower-btn-solid-ui {
    height: 32px;
    min-width: 66px;
    font-size: 11px;
  }

  .empower-btn-text-ui {
    font-size: 11px;
  }
}

.mini-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  background: #57b7d9;
  background: linear-gradient(
    90deg,
    rgba(87, 183, 217, 1) 0%,
    rgba(47, 107, 173, 1) 100%
  );
  width: fit-content !important;
  padding: 5px 28px;
  border-radius: 20px;
  margin: 0 auto !important;
  margin-bottom: 12px !important;
  display: block;
}

.web-title {
  font-size: clamp(1.5rem, 3.5vw + 0.75rem, 42px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 8px;

  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Book room  */
/* SECTION */

/* SLIDER */
.promo-slider-ui{
  position: relative;
  width: 100%;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
}

/* IMAGE BASE */
.promo-slider-ui img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;

  opacity: 0;
  transform: scale(1.1);
  
  transition: opacity 1.5s ease, transform 6s ease;
}

/* ACTIVE IMAGE */
.promo-slider-ui img.active{
  opacity: 1;
  transform: scale(1); /* slow zoom out */
}

/* NEXT IMAGE PRELOAD SMOOTHNESS */
.promo-slider-ui img.next{
  opacity: 0;
  transform: scale(1.2);
}
/* ARROWS */
.slider-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
  transition: 0.3s;
}

.slider-btn:hover{
  background: rgba(0,0,0,0.7);
}

.slider-btn.prev{
  left: 10px;
}

.slider-btn.next{
  right: 10px;
}

/* DOTS */
.slider-dots{
  position: absolute;
  bottom: 12px;
  width: 100%;
  text-align: center;
}

.dot{
  height: 13px;
  width: 13px;
  margin: 0 4px;
  display: inline-block;
  background:#fff;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active{
  background: linear-gradient(90deg, rgba(51, 45, 108, 1) 0%, rgba(142, 42, 129, 1) 100%);
  transform: scale(1.2);
}

/* food order */
.food-pro-ui{
  max-width: var(--site-container-max);
  margin: auto;
  padding: 90px 20px;
}
.ratinffood {
  color: #f5b301;
  font-size: 20px;
  font-weight: 800;
}

.food-pro-wrapper{
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
  flex-wrap: wrap;
}

/* LEFT */
.food-pro-content{
  flex: 1;
}

.tag{
  background: #ffe9e9;
  color: #ff4d4d;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
}

.food-pro-content h3{
  font-size: 32px;
  margin: 15px 0;
}

.food-pro-content p{
  color: #666;
}

/* BUTTONS */
.food-pro-actions{
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.btn-main{
  background: #ff4d4d;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
}

.btn-light{
  background: #f5f5f5;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
}

/* RIGHT STACK */
.food-pro-visual{
  flex: 1;
  position: relative;
  height: 350px;
}

/* CARDS */
.food-stack-card{
  position: absolute;
  width: 230px;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: 0.4s;
}

.food-stack-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* POSITIONING */
.card-1{
  left: 0;
  top: 30px;
  transform: rotate(-8deg);
}

.card-2{
  left: 120px;
  top: 0;
  z-index: 2;
}

.card-3{
  left: 240px;
  top: 30px;
  transform: rotate(8deg);
}

/* HOVER EFFECT */
.food-pro-visual:hover .card-1{
  transform: rotate(-5deg) translateY(-10px);
}
.food-pro-visual:hover .card-2{
  transform: translateY(-15px);
}
.food-pro-visual:hover .card-3{
  transform: rotate(5deg) translateY(-10px);
}

/* OVERLAY */
.overlay{
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.food-stack-card{
  animation: floatCard 4s ease-in-out infinite;
}

.card-2{
  animation-delay: 0.5s;
}
.card-3{
  animation-delay: 1s;
}

@keyframes floatCard{
  0%,100%{ transform: translateY(0px); }
  50%{ transform: translateY(-20px); }
}
.food-stack-card:hover{
  transform: scale(1.06) !important;
  z-index: 5;
}

/* Rides */
/* IMAGE BASE */
.ride-card-modern img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* 🔥 1. HOVER ZOOM */
.ride-card-modern:hover img {
  transform: scale(1.1);
}

/* 🔥 2. FLOAT ANIMATION (auto subtle move) */
.ride-card-modern {
  animation: floatCard 5s ease-in-out infinite;
}

@keyframes floatCard {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

/* 🔥 3. SHINE EFFECT */
.ride-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transform: skewX(-25deg);
}

/* Shine on hover */
.ride-card-modern:hover::before {
  animation: shine 0.8s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.ride-card-modern:nth-child(1) {
  animation-delay: 0s;
}
.ride-card-modern:nth-child(2) {
  animation-delay: 0.5s;
}
.ride-card-modern:nth-child(3) {
  animation-delay: 1s;
}
.ride-card-modern:nth-child(4) {
  animation-delay: 1.5s;
}
.rides-modern-ui {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* CARD */
.ride-card-modern {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.4s ease;
}

.ride-card-modern img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.4s ease;
}

/* OVERLAY */
.ride-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px;
  background: linear-gradient(to top, rgb(9 18 36 / 83%), transparent);
  color: #fff;
}

.ride-content h4 {
  margin: 0;
  font-size: 14px;
}

.ride-content p {
  margin: 0px 0;
  font-size: 12px;
  opacity: 0.8;
}

.ride-content span {
  font-size: 12px;
}

/* HOVER EFFECT */
.ride-card-modern:hover img {
  transform: scale(1.01);
}

.ride-card-modern:hover {
  transform: translateY(-6px);
}

/* IMAGE BASE */
.ride-card-modern img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* 🔥 1. HOVER ZOOM */
.ride-card-modern:hover img {
  transform: scale(1.1);
}

/* 🔥 2. FLOAT ANIMATION (auto subtle move) */
.ride-card-modern {
  animation: floatCard 5s ease-in-out infinite;
}

@keyframes floatCard {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

/* 🔥 3. SHINE EFFECT */
.ride-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transform: skewX(-25deg);
}

/* Shine on hover */
.ride-card-modern:hover::before {
  animation: shine 0.8s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}
.ratinfrides {
      color: #f5b301;
    font-size: 16px;
    font-weight: 800;
}


/* ----------------- FAQ Section ----------------- */
/* SECTION */
.faq-section {
  /* padding: 80px 20px; */
      max-width: var(--site-container-max);
  margin: 0 auto;
  padding: 30px 20px 30px;
}

/* WRAP */
.faq-wrap {
  max-width: 800px;
  margin: 40px auto 0;
}

/* ITEM */
.faq-item {
  background: #f7f7f7;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* QUESTION */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
}

.faq-question h4 {
  margin: 0;
  
      
    color: #000;
    
    font-size: 20px;
    font-weight: 600;
}

.icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
}

.faq-answer p {
  margin: 0;
  padding-bottom: 0;
  color: #555;
}

/* ACTIVE STATE */
.faq-item.active {
  background: #fff;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 20px 18px;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

/* OPTIONAL HOVER */
.faq-item:hover {
  background: #e9e9e9;
}

/* Home filter */

.homeHero {
  min-height: 63vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #efefef;
  background-size: cover;
  background-position: center;
  padding: 20px 20px;
  border-radius: 20px;
}

.mainHeading {
  font-size: clamp(1.65rem, 4vw + 1rem, 50px);
  line-height: 1.12;
  color: #fff;
}



/* SEARCH BOX */
.searchBox {
  margin-top: 30px;
  padding: 25px;
  border-radius: 20px;
  background: #cdcdcd;
  backdrop-filter: blur(12px);
  max-width: var(--site-container-max);
  margin-left: auto;
  margin-right: auto;
}

/* TABS */
.searchTabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 18px;
}

.searchTabs span {
  cursor: pointer;
  color: black;
  opacity: 0.6;
  padding-bottom: 5px;
  transition:
    opacity 0.35s ease,
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.searchTabs span:active {
  transform: scale(0.97);
}

.searchTabs .active {
  font-weight: 700;
  position: relative;
  opacity: 1;
  background: linear-gradient(90deg, rgba(51, 45, 108, 1) 0%, rgba(142, 42, 129, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.searchTabs .active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(51, 45, 108, 1) 0%, rgba(142, 42, 129, 1) 100%);
  border-radius: 2px;
}

/* SEARCH ROW (MAIN FIX) */
.searchRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: end;
  justify-content: center;
  margin-bottom: 20px;
  width: 100%;
  min-width: 0;
}

/* INPUTS */
.searchRow input  {
  min-width: min(250px, 100%);
  height: 45px;
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 14px;
}

.searchRow input[type="date"] {
  min-width: auto;
  height: 45px;
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 14px;
}
.searchRow input[type="time"] {
  min-width: auto;
  height: 45px;
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 14px;
}

.searchRow select {
  min-width: auto;
  height: 45px;
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 14px;
}
/* LABEL */
.searchRow label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  /* color: black; */
      background: linear-gradient(90deg, rgba(51, 45, 108, 1) 0%, rgba(142, 42, 129, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
  opacity: 0.8;
  text-align: start;
}

/* LOCATION BOX */
.locationInput {
  /* flex: 1 1 220px; */
}

/* BUTTON */
.goBtn {
  height: 45px;
  padding: 0 18px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(90deg, rgba(51, 45, 108, 1) 0%, rgba(142, 42, 129, 1) 100%);
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
}

/* Single-line search on tablet/desktop — keep fields + Search on one row */
@media (min-width: 992px) {
  .searchRow {
    flex-wrap: nowrap;
    align-items: flex-end;
    gap: 12px;
  }

  .form-block {
    flex: 1 1 0%;
    min-width: 0;
    width: auto;
    max-width: none;
  }

  .form-block.active {
    flex-wrap: nowrap;
  }

  .searchRow .form-block > div {
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;
  }

  .searchRow .locationInput {
    flex: 1.2 1 0;
    min-width: min(220px, 22vw);
  }

  .searchRow input,
  .searchRow select {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .searchRow input[type="date"],
  .searchRow input[type="time"] {
    min-width: 9.5rem;
  }

  .goBtn {
    flex-shrink: 0;
    align-self: flex-end;
  }
}


.form-block{
  display: none;
  gap: 10px;
  flex-wrap: wrap;
  align-items: end;
  /* Share one row with .goBtn on desktop — 100% basis was forcing a wrap line */
  flex: 1 1 0%;
  min-width: 0;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
}

.form-block.active{
  display: flex;
}
/* ----------------- Trusted Users ----------------- */
/* SECTION */
.trusted-section{
    max-width: var(--site-container-max);
  margin: 0 auto;
  padding: 30px 20px 30px;

  /* padding: 90px 20px;
  text-align: center;
  background: #f9fafc; */
}

/* Trusted reviews — carousel: 3 cards visible (desktop), 1 on small screens; no arrows */
.trusted-carousel {
  margin-top: 50px;
  position: relative;
}

.trusted-carousel__viewport {
  overflow: hidden;
  width: 100%;
}

.trusted-carousel__track {
  display: flex;
  gap: 25px;
  align-items: stretch;
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .trusted-carousel__track {
    transition: none;
  }
}

.trusted-carousel .trusted-card {
  flex-shrink: 0;
  min-width: 0;
}

.trusted-carousel__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.trusted-carousel__dots[hidden] {
  display: none !important;
}

.trusted-carousel__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: #d1d5db;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.trusted-carousel__dot[aria-selected="true"] {
  background: linear-gradient(90deg, rgba(51, 45, 108, 1) 0%, rgba(142, 42, 129, 1) 100%);
  transform: scale(1.15);
}

.trusted-carousel__dot:focus-visible {
  outline: 2px solid rgba(99, 102, 241, 0.55);
  outline-offset: 2px;
}

/* CARD */
.trusted-card{
  background: #fdfeff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: box-shadow 0.35s ease;
  text-align: left;
}

.trusted-card:hover{
  box-shadow: 0 14px 36px rgba(51, 45, 108, 0.1);
}

.trusted-card__stars {
  color: #f5b301;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* Carousel slides: keep copy visible (scroll-anim .box-item not used on cards) */
.trusted-carousel .trusted-card .review-text,
.trusted-carousel .trusted-card .user-info {
  opacity: 1;
  transform: none;
}

/* RATING */
.rating{
  color: #f5b301;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(10px);
}

/* TEXT */
.review-text{
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(10px);
}

/* USER INFO */
.user-info{
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(10px);
}

.user-info img{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info h4{
  margin: 0;
  font-size: 16px;
}

.user-info span{
  font-size: 12px;
  color: #777;
}

/* =====================
   SMOOTH SCROLL ANIMATION
===================== */
.box-item{
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.box-item.show{
  opacity: 1;
  transform: translateY(0);
}

/* STAGGER INSIDE CARD (legacy: cards inside .trusted-carousel no longer use .box-item) */
.trusted-card.box-item.show .rating{
  opacity: 1;
  transform: translateY(0);
  transition: 0.4s ease 0.2s;
}

.trusted-card.box-item.show .review-text{
  opacity: 1;
  transform: translateY(0);
  transition: 0.4s ease 0.4s;
}

.trusted-card.box-item.show .user-info{
  opacity: 1;
  transform: translateY(0);
  transition: 0.4s ease 0.6s;
}

/* =====================
   BASE STATE (HIDDEN)
===================== */
.box-item{
  opacity: 0;
  transform: translateY(60px);
  transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

/* =====================
   ACTIVE STATE
===================== */
.box-item.show{
  opacity: 1;
  transform: translateY(0);
}

/* LEFT / RIGHT SMOOTH ENTRY */
.promo-copy-ui.box-item{
  transform: translateX(-70px);
}

.promo-media-ui.box-item{
  transform: translateX(70px);
}

.box-item.show.promo-copy-ui,
.box-item.show.promo-media-ui{
  transform: translateX(0);
}

/* =====================
   IMAGE FLOAT (VERY SOFT)
===================== */
.promo-media-ui img{
  width: 100%;
  border-radius: 16px;
  transition: transform 0.6s ease;
  animation: floatSoft 6s ease-in-out infinite;
}

.promo-media-ui img:hover{
  transform: scale(1.04);
}

/* =====================
   BUTTON (NO COLOR CHANGE)
===================== */
.promo-btn-ui{
  transition: transform 0.35s ease;
}

.promo-btn-ui:hover{
  transform: translateY(-5px);
}

/* =====================
   FLOAT ANIMATION
===================== */
@keyframes floatSoft{
  0%{ transform: translateY(0px); }
  50%{ transform: translateY(-8px); }
  100%{ transform: translateY(0px); }
}

/* total truseted */

/* ----------------- Footer ----------------- */
/* --- Global Footer Styles --- */
footer {
   
        max-width: var(--site-container-max);
    margin: 0 auto;
    padding: 30px 20px 0px;
}
.footer-bg{
  position: relative;
  overflow: hidden;
}




/* content always above bg */
.footer-bg .footer-top,
.footer-bg .row{
  position: relative;
  z-index: 1;
}
.footer-desc {
  font-size: 14px;
  line-height: 22px;
  color: #322f2f;
  font-weight: 600;
  margin-top: 10px;
}
/* 1. Red Marquee / Ticker */
.footer-ticker {
  margin-top: 30px;
    background-color: #E31E24;
    color: #fff;
    padding: 12px 0;
    overflow: hidden;
    margin-bottom: 50px;
}
.ticker-wrap {
  
    display: flex;
    white-space: nowrap;
    animation: ticker 40s linear infinite;
}
.ticker-item {
  
    display: inline-block;
    padding-right: 50px;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
}
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 2. Footer Widgets (Headings) */
.footer-widget h5 {
    color: #1B2132;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}
.footer-widget h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, rgba(51, 45, 108, 1) 0%, rgba(142, 42, 129, 1) 100%);
}

.footer-menu {
  
    list-style: none;
    padding: 0;
}
.footer-menu li {
    margin-bottom: 12px;
}
.footer-menu li a {
    text-decoration: none;
    color: #322f2f;
    font-weight: 500;
    font-size: 15px;
    transition: 0.3s;
}




.footer-menu.contact-info li a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-menu.contact-info i {
  font-size: 14px;
  background: linear-gradient(90deg, rgba(51,45,108,1), rgba(142,42,129,1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.footer-menu li a:hover {
    background: linear-gradient(90deg, rgba(51, 45, 108, 1) 0%, rgba(142, 42, 129, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-left: 5px;
}

/* 3. White Info Card (Floating Pill) */
.footer-wrap.bg-white {
    background: #fff !important;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 50px;
    position: relative;
    z-index: 5;
    border: 1px solid #edf2f7;
}

/* Support Icons (Circles) */
.avatar.bg-primary {
    background-color: #CF3425 !important; /* Light Red */
    color: #ffff !important;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.avatar.bg-secondary {
    background-color: #98AA30 !important; /* Light Green */
    color: black !important;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Logo Container Alignment */
.footer-logo-container {
  
    display: flex;
    align-items: center; /* Vertically center karega agar div bada hai */
    height: 100%;
}

/* Logo Image Styling */
.footer-main-logo {
    max-height: 45px; /* DreamsTour jaisa exact size */
    width: auto;      /* Aspect ratio maintain rakhega */
    display: block;
    transition: transform 0.3s ease;
}

/* Hover effect (Optional: jaisa badi sites par hota hai) */
.footer-logo-link:hover .footer-main-logo {
    transform: scale(1.05);
}

/* Mobile responsive alignment */
@media (max-width: 1199px) {
    .footer-logo-container {
        justify-content: center; /* Tablet/Mobile par center mein dikhega */
        margin-bottom: 20px;
    }
}

/* 4. Landmark Image (Skyline) */
.footer-img {
    text-align: center;
    
    position: relative;
    z-index: 1;
}
.footer-img img {
    max-width: 100%;
    height: auto;
}

/* 5. Footer Bottom Bar */
.footer-bottom {
   
    padding: 20px 0;
    border-top: 1px solid black;
}

.social-icon {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}
.social-icon li a {
    width: 40px;
    height: 40px;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    margin: 0 5px;
    transition: 0.3s;
    text-decoration: none;
     
}
.social-icon i {
  font-size: 21px;
}
.social-icon li a:hover {
    background: linear-gradient(90deg, rgba(51, 45, 108, 1) 0%, rgba(142, 42, 129, 1) 100%) !important;
    color: #fff !important;
    border-color: linear-gradient(90deg, rgba(51, 45, 108, 1) 0%, rgba(142, 42, 129, 1) 100%) !important;
}

/* Payment Icons */
.card-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}
/* Card Container */
.footer-wrap.bg-white {
    background: #ffffff !important;
    border-radius: 10px; /* Purra round pill shape jaisa site par hai */
    padding: 20px 45px;
    margin: 40px 0;
    border: 1px solid #f0f0f0;
}

/* Logo Size */
.footer-main-logo {
    max-height: 45px;
    width: auto;
}

/* Text Styles */
.fs-14 { font-size: 14px; }
.contact-label {
    font-size: 12px;
    color: #6B7385;
}
.contact-value {
    font-size: 15px;
    font-weight: 700;
    color: #1B2132;
}

/* Icon Circles */
.avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.bg-light-red {
    background-color: #FFF0F0 !important;
    color: #E31E24;
}
.bg-light-green {
    background-color: #F0FFF4 !important;
    color: #28A745;
}

/* Border between Support items */
.border-end-custom {
    border-right: 1px solid #eee;
}

/* Badges Hover effect */
.badge-hover img {
    height: 32px;
    transition: 0.3s;
}
.badge-hover:hover img {
    transform: translateY(-3px);
}

/* --- Mobile Fixes --- */
@media (max-width: 1199px) {
    .footer-wrap.bg-white {
        border-radius: 20px; /* Mobile par pill ki jagah thoda rectangle rakhte hain */
        padding: 25px;
    }
    .border-end-custom {
        border-right: none;
    }
}
.card-links li {
    margin-left: 15px;
}
.card-links img {
    height: 20px;
    filter: grayscale(1);
    opacity: 0.6;
}
.card-links img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Responsive Fix */
@media (max-width: 991px) {
    .border-end { border: none !important; }
    .footer-wrap.bg-white { border-radius: 10px; padding: 20px; }
}


/* staybooking */
/* STAY SECTION */


.stay-section{
    max-width: var(--site-container-max);
 
   margin: 0 auto;
  padding: 100px 20px 30px;
  
}
/* Inner pages: keep bar below viewport edge + notch (was top:0 and felt “stuck” to the top) */
.t-0 {
  top: max(18px, env(safe-area-inset-top, 0px));
}

@media (min-width: 921px) {
  .t-0 {
    top: max(28px, env(safe-area-inset-top, 0px));
  }
}

.navbar.is-compact.nav-top-fix {
  top: 0 !important;
}

/* Booking-style pages: cancel compact pill’s upward offset so it doesn’t ride into the status bar */
.booking-nav-section .navbar.is-compact {
  top: 0;
}
/* TITLE */
.stay-title h2{
  font-size:28px;
  font-weight:800;
  margin-bottom:20px;
}

/* LAYOUT */
.stay-layout{
  display:grid;
  /* grid-template-columns:280px 1fr; */
  gap:20px;
}

/* FILTER */
.filter{

  padding:18px;
  border-radius:16px;

}

.filter h3,
.filter h4{
  font-size:13px;
  font-weight:700;
  margin:15px 0 8px;
  color:#333;
}

.filter input[type="range"]{
  width:100%;
}

.price-box{
  display:flex;
  justify-content:space-between;
  margin-top:10px;
}

.price-box input{
  width:48%;
  padding:8px;
  border:1px solid rgba(17, 24, 39, 0.07);
  border-radius:8px;
}

/* CHECKBOX RADIO */
.filter label{
  display:block;
  font-size:13px;
  margin:5px 0;
}

/* CLEAR BUTTON */
.clear{
  width:100%;
  margin-top:15px;
  padding:10px;
  border:none;
  border-radius:12px;
  background:var(--primary);
  color:#fff;
  font-weight:600;
}

/* RIGHT SIDE */
.list-area{
  display:flex;
  flex-direction:column;
  gap:12px;
}

/* SEARCH */
.search-bar{
     border: 1px solid #e4e7e9;
    height: 40px;
    padding: 0 16px;
    border-radius: 2px;
    display: flex;
    align-items: center;
}

.search-bar input{
  width:100%;
  border:none;
  outline:none;
}

/* RESULT BAR */
.activeFilterDiv {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 3px 0;
    padding: 12px 24px;
    background-color: #efefef;
}
.filterCounts {
    color: #191c1f;
    font-weight: 600;
}
.productSidebar {
    margin-right: 24px;
    padding-bottom: 20px;
}
.priceFilterSection {
    padding: 20px 0;
}
.filterTitle {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.rangeSliderWrapper {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
}
.rangeSlider {
    width: 100%;
    -webkit-appearance: none;
    background: #ddd;
    height: 3px;
    border-radius: 3px;
    outline: none;
}

.minMaxInputs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.minMaxInputs input {
    width: 50%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}



.filterTitle {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.filterTab {
    margin-bottom: 10px;
}

.customCheckbox {
    display: flex;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    padding-left: 28px;
}

.customCheckbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.webCheckmark {
    position: absolute;
    left: 0;
    height: 18px;
    width: 18px;
    border: 2px solid #b7b7ff;
    border-radius: 50%;
    background: #fff;
    transition: all .2s ease-in-out;
}
.filterTab {
    margin-bottom: 10px;
}
.customCheckbox {
    display: flex;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    padding-left: 28px;
}

.categoryFilter {
    padding-bottom: 15px;
   
}
.themeBtn:hover {
    background: var(--secondary-color);
    color: #fff;
}
.rating-badge {
  background: var(--primary); /* yellow */
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.themeBtn {
    border: none;
    text-align: center;
    border-radius: 25px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    background: var(--primary);
    color: #fff;
}

.trivozoCard {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5d9ff;
    transition: .3s;
}


.productPageImg {
    background-color: #fafafa;
    border-bottom: 1px solid #e4e7e9;
    border-radius: 15px 15px 15px 15px;
    box-shadow: 0 2px 6.1px #0000000d;
    overflow: hidden;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.productPageImg img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}


.productPageCardData {
    margin: 10px 16px 5px;
}
.rating {
    color: #fff !important;
    font-weight: 600;
    font-size: 12px;
    display: inline-block;
    padding: 1px 6px;
    border-radius: 4px;
    background: var(--primary);
}
.hotelAddress {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}
.itemPrice {
    font-size: 20px;
    font-weight: 600;
}
small, .small {
    font-size: .875em;
}
.addToBtn {
    display: block;
    width: 80%;
    margin: 0 auto;
}
/* .productpageItem {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(261px, 1fr));
  gap: 20px;
} */
 .productpageItem {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(263px, 1fr));
  gap: 20px;
}
/* Card Fix */
.productPageCard {
  background: #efefef;
  border-radius: 12px;
  padding: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* Image Fix */
.productPageImg img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

/* Button full width */
.addToBtn {
  width: 100%;
  margin-top: 10px;
}
.productPageCard:hover .productPageImg img

 {
    transform: scale(1.08);
}

.productPageImg img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.productPageImg img {
    transition: transform .4s ease;
}

/* ried */
/* TEXT */




/* RATING BADGE */
.rating-badge {
  background: #0f9d58;
  color: #fff;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 12px;
}
.car-info {
  font-size: 15px;
  color: #666;
  margin-bottom: 5px;
}


.productSearchBar {
    width: 40%;
    border: 1px solid #e4e7e9;
    height: 40px;
    padding: 0 16px;
    border-radius: 2px;
    display: flex;
    align-items: center;
}
.productSearchInput {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #77878f;
    outline: none;
}


/* modal css */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 16px;

  width: 100%;
  max-width: 550px; /* aur chhota */

  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modal-content input {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
}


.closeBtn {
  float: right;
  font-size: 22px;
  cursor: pointer;
}

@keyframes fadeIn {
  from {transform: scale(0.8); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}


.seat-btn {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seat-input {
  height: 40px;
  width: 60px;
  font-weight: 600;
}

/* Modal Background */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

/* Modal Box */
.custom-modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 15px;
    width: min(430px, calc(100% - 32px));
    max-width: 100%;
    position: relative;
    animation: fadeIn 0.3s ease;
}

/* Close Button */
.closeBtn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

/* Success Circle */
.success-circle {
    width: 70px;
    height: 70px;
    background: #28a745;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 30px;
    animation: pop 0.4s ease;
}

/* Animations */
@keyframes pop {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
    from {opacity:0; transform: translateY(-20px);}
    to {opacity:1; transform: translateY(0);}
}

/* ========== Homepage: hero layers, stats, scroll cue, stagger, a11y ========== */

.hero-media {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  flex: 1 1 auto;
  min-height: min(46dvh, 620px);
  aspect-ratio: 16 / 9;
  max-height: min(78dvh, 900px);
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  isolation: isolate;
}

/* Full-width media inside centered flex hero (parent uses align-items: center) */
.demo-hero .hero-media {
  align-self: stretch;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
}

.hero-orbs::before,
.hero-orbs::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.5;
  mix-blend-mode: screen;
}

.hero-orbs::before {
  width: min(55%, 420px);
  height: min(65%, 480px);
  background: linear-gradient(
    145deg,
    rgba(142, 42, 129, 0.85) 0%,
    rgba(51, 45, 108, 0.55) 100%
  );
  top: -18%;
  left: -12%;
  animation: orbDriftA 20s ease-in-out infinite alternate;
}

.hero-orbs::after {
  width: min(48%, 380px);
  height: min(55%, 420px);
  background: linear-gradient(
    200deg,
    rgba(99, 102, 241, 0.55) 0%,
    rgba(236, 72, 153, 0.45) 100%
  );
  bottom: -22%;
  right: -8%;
  animation: orbDriftB 24s ease-in-out infinite alternate;
}

@keyframes orbDriftA {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(12%, 8%) scale(1.08);
  }
}

@keyframes orbDriftB {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-10%, -12%) scale(1.12);
  }
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(
      ellipse 85% 75% at 50% 45%,
      transparent 0%,
      rgba(17, 24, 39, 0.12) 55%,
      rgba(17, 24, 39, 0.45) 100%
    ),
    linear-gradient(to top, rgba(17, 24, 39, 0.35) 0%, transparent 42%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.07;
  border-radius: inherit;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 25;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  pointer-events: auto;
  animation: scrollCueFade 2.4s ease 1.2s both;
  transition: color 0.3s ease, transform 0.3s ease;
}

.hero-scroll-cue:hover {
  color: #fff;
  transform: translateX(-50%) translateY(-3px);
}

@keyframes scrollCueFade {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.scroll-cue-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.scroll-cue-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 3px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.35;
    transform: translateY(10px);
  }
}

.hero-stats {
  position: relative;
  z-index: 5;
  margin: 0px auto 0;
  max-width: min(var(--site-container-max), calc(100% - 40px));
  padding: 0 20px 28px;
}

.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 22px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow:
    0 4px 6px -1px rgba(17, 24, 39, 0.05),
    0 24px 48px -12px rgba(51, 45, 108, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.stat-item {
  text-align: center;
  padding: 8px 6px;
}

.stat-value {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, rgba(51, 45, 108, 1) 0%, rgba(142, 42, 129, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.stat-label {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.02em;
}

.homeHero .container > .box-item:nth-child(1) {
  transition-delay: 0.05s;
}

.homeHero .container > .box-item:nth-child(2) {
  transition-delay: 0.12s;
}

.homeHero .container > .box-item:nth-child(3) {
  transition-delay: 0.2s;
}

.cards-wrap .service-card.box-item:nth-child(1) {
  transition-delay: 0.04s;
}

.cards-wrap .service-card.box-item:nth-child(2) {
  transition-delay: 0.12s;
}

.cards-wrap .service-card.box-item:nth-child(3) {
  transition-delay: 0.2s;
}

.hero-stats .stat-item.box-item:nth-child(1) {
  transition-delay: 0.02s;
}

.hero-stats .stat-item.box-item:nth-child(2) {
  transition-delay: 0.08s;
}

.hero-stats .stat-item.box-item:nth-child(3) {
  transition-delay: 0.14s;
}

.hero-stats .stat-item.box-item:nth-child(4) {
  transition-delay: 0.2s;
}

@media (max-width: 900px) {
  .hero-stats-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 18px 14px;
  }

  .hero-scroll-cue {
    bottom: 18px;
  }

}

@media (max-width: 520px) {
  .hero-stats {
    margin-top: -36px;
  }

  .hero-stats-inner {
    gap: 8px;
    padding: 14px 12px;
  }

  .stat-label {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media .hero-video,
  .hero-orbs::before,
  .hero-orbs::after,
  .demo-hero .content-box .hero-headline,
  .scroll-cue-wheel,
  .promo-media-ui img {
    animation: none !important;
  }

  .hero-media .hero-video {
    transform: none;
  }

  .demo-hero .content-box .hero-eyebrow,
  .demo-hero .content-box .hero-headline,
  .hero-auth-cta {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .home-hero-btn:hover {
    transform: none !important;
  }

  .box-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero-scroll-cue {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* ========== Booking / checkout page ========== */

.booking-page {
  background: #efefef;
}

.booking-nav-section {
  position: relative;
  z-index: 100;
}

.booking-main {
  padding: 96px 0 48px;
  width: 100%;
  box-sizing: border-box;
}

.booking-container {
  max-width: var(--site-container-max);
}

.booking-page .booking-container {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(14px, 3.5vw, 40px);
  padding-right: clamp(14px, 3.5vw, 40px);
  box-sizing: border-box;
}
.container {
  width: 100% !important;
  max-width: var(--site-container-max) !important;
}

.booking-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 10px;
}

.booking-breadcrumb a {
  color: #4b5563;
  text-decoration: none;
  font-weight: 500;
}

.booking-breadcrumb a:hover {
  color: #332d6c;
  text-decoration: underline;
}

.booking-breadcrumb__sep {
  opacity: 0.45;
  user-select: none;
}

.booking-breadcrumb__current {
  color: #111827;
  font-weight: 600;
}

.booking-page-head {
  margin-bottom: 32px;
}

.booking-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8e2a81;
  margin-bottom: 8px;
}

.booking-page-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  margin: 0 0 8px;
}

.booking-page-sub {
  margin: 0;
  color: #6b7280;
  font-size: 15px;
  max-width: 520px;
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 28px;
  align-items: start;
}

.booking-page .booking-grid {
  width: 100%;
  min-width: 0;
}

.booking-page .booking-content {
  min-width: 0;
}

.booking-aside {
  position: sticky;
  top: 100px;
}

.booking-page .booking-aside {
  /* top: clamp(104px, 12vw, 132px); */
}

@media (max-width: 991px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .booking-aside {
    position: relative;
    top: auto;
  }

  .booking-page .booking-main {
    padding-bottom: 36px;
  }

  .booking-page .booking-container {
    padding-left: clamp(12px, 3vw, 24px);
    padding-right: clamp(12px, 3vw, 24px);
  }

  .booking-page .booking-page-head {
    margin-bottom: 22px;
  }

  .booking-panel {
    padding: 18px 16px 22px;
  }

  .food-cart-row {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: stretch;
  }

  .food-cart-row__qty {
    justify-content: flex-start;
  }

  .passenger-item {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .passenger-item__actions {
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .booking-promo__row {
    flex-direction: column;
  }

  .booking-bill__row,
  .booking-bill__total {
    flex-wrap: wrap;
    gap: 6px 12px;
  }

  .booking-modal {
    padding: 12px;
    align-items: center;
  }

  .booking-modal__dialog {
    max-height: min(92dvh, 720px);
  }

  .booking-modal__header,
  .booking-modal__body,
  .booking-modal__footer {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 575.98px) {
  .food-booking-stepper__label {
    max-width: none;
  }

  .booking-page .booking-pay-btn {
    width: 100%;
  }

  .food-step-actions,
  .food-step-actions--after {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .food-step-actions .btn-booking,
  .food-step-actions .themeBtn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .booking-modal__footer {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .booking-modal__footer .btn-booking {
    width: 100%;
    justify-content: center;
  }
}

.booking-trip-card {
  background: #fff;
  border: 1px solid rgba(51, 45, 108, 0.12);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.06);
}

.booking-trip-card__media {
  position: relative;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  background: #f3f4f6;
}

.booking-trip-card__media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.booking-trip-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.92);
  color: #332d6c;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.booking-trip-card__body {
  padding: 18px 18px 20px;
}

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

.booking-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.booking-stars {
  color: #f5b301;
  font-size: 12px;
  letter-spacing: 1px;
}

.booking-meta-line {
  font-size: 14px;
  color: #4b5563;
}

.booking-route {
  padding: 12px 0 16px;
  margin-bottom: 12px;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
}

.booking-route__row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.booking-route__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
}

.booking-route__dot--start {
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}

.booking-route__dot--end {
  background: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2);
}

.booking-route__line {
  width: 2px;
  height: 18px;
  margin-left: 5px;
  background: linear-gradient(180deg, #22c55e, #ef4444);
  border-radius: 2px;
  opacity: 0.5;
}

.booking-route__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
}

.booking-route__place {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.booking-driver-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(51, 45, 108, 0.06), rgba(142, 42, 129, 0.05));
  border: 1px solid rgba(51, 45, 108, 0.08);
  margin-bottom: 16px;
}

.booking-driver-chip__avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #332d6c, #8e2a81);
}

.booking-price-tag {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.booking-price-tag__amount {
  font-size: 1.75rem;
}

.booking-price-tag__unit {
  font-size: 13px;
  color: #6b7280;
  font-weight: 600;
}

.booking-trust-panel {
  margin-top: 16px;
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

.booking-trust-item i {
  width: 22px;
  text-align: center;
}

.booking-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-panel {
  background: #fff;
  border-radius: 18px;
  padding: 22px 22px 24px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 12px 36px rgba(17, 24, 39, 0.05);
}

.booking-panel__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.booking-panel__title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.booking-panel__hint {
  font-size: 13px;
  color: #6b7280;
}

.booking-empty {
  text-align: center;
  padding: 32px 16px;
  border: 2px dashed #e5e7eb;
  border-radius: 14px;
  background: #fafafa;
}

.booking-empty__icon {
  font-size: 2rem;
  color: #d1d5db;
  margin-bottom: 8px;
}

.booking-empty__title {
  font-weight: 700;
  margin-bottom: 4px;
  color: #374151;
}

.booking-empty__text {
  font-size: 14px;
  color: #9ca3af;
  margin: 0;
}

.booking-passenger-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.passenger-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #fafafa;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.passenger-item:hover {
  border-color: rgba(51, 45, 108, 0.2);
  box-shadow: 0 4px 16px rgba(17, 24, 39, 0.05);
}

.passenger-item__main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.passenger-avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  background: linear-gradient(145deg, #6366f1, #8e2a81);
  flex-shrink: 0;
}

.passenger-item__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.btn-booking {
  border: none;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-booking:active {
  transform: scale(0.98);
}

.btn-booking--primary {
  background: linear-gradient(90deg, rgba(51, 45, 108, 1) 0%, rgba(142, 42, 129, 1) 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(51, 45, 108, 0.25);
}

.btn-booking--primary:hover {
  filter: brightness(1.05);
}

.btn-booking--ghost {
  background: #fff;
  color: #374151;
  border: 1px solid #e5e7eb;
}

.btn-booking--ghost:hover {
  background: #f9fafb;
}

.btn-booking--danger {
  background: #fff;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.btn-booking--danger:hover {
  background: #fef2f2;
}

.btn-booking--outline {
  background: #fff;
  color: #332d6c;
  border: 1px solid rgba(51, 45, 108, 0.35);
  font-weight: 700;
}

.btn-booking--outline:hover {
  background: rgba(51, 45, 108, 0.06);
}

.btn-booking.btn-sm {
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 10px;
}

.booking-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 6px;
}

.booking-input,
.booking-panel .form-select {
  border-radius: 12px !important;
  border: 1px solid #e5e7eb !important;
  padding: 10px 14px !important;
  font-size: 14px;
}

.booking-input:focus,
.booking-panel .form-select:focus {
  border-color: rgba(51, 45, 108, 0.45) !important;
  box-shadow: 0 0 0 3px rgba(51, 45, 108, 0.12) !important;
}

.booking-promo__row {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.booking-promo__row .booking-input {
  flex: 1;
}

.booking-bill {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
}

.booking-bill__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
  color: #4b5563;
}

.booking-bill__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px dashed #e5e7eb;
}

.booking-pay-btn {
  margin-top: 8px;
  padding: 14px 20px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  border-radius: 14px !important;
}

.booking-secure-note {
  font-size: 12px;
  color: #6b7280;
  text-align: center;
}

/* Modals */
body.modal-open {
  overflow: hidden;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.booking-modal.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.booking-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: min(90vh, 640px);
  overflow: auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal.is-open .booking-modal__dialog {
  transform: translateY(0) scale(1);
}

.booking-modal__dialog--narrow {
  max-width: 400px;
}

.booking-modal__dialog--success {
  max-width: 420px;
}

.booking-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 0;
  border-bottom: none;
}

.booking-modal__title {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0;
  color: #111827;
}

.booking-modal__close {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 12px;
  background: #f3f4f6;
  color: #374151;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.booking-modal__close:hover {
  background: #e5e7eb;
}

.booking-modal__body {
  padding: 16px 20px 8px;
}

.booking-modal__footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px 20px 20px;
}

.booking-form-error {
  background: #fef2f2;
  color: #991b1b;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.booking-confirm-amount {
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(51, 45, 108, 0.06), rgba(142, 42, 129, 0.05));
  border: 1px solid rgba(51, 45, 108, 0.1);
  text-align: center;
}

.booking-confirm-amount__value {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(90deg, rgba(51, 45, 108, 1) 0%, rgba(142, 42, 129, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.booking-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(145deg, #22c55e, #16a34a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 12px 28px rgba(34, 197, 94, 0.35);
}

.booking-success-details {
  background: #fafafa;
  border-radius: 14px;
  padding: 4px 14px;
  border: 1px solid #f3f4f6;
}

@media (prefers-reduced-motion: reduce) {
  .booking-modal__dialog {
    transition: none;
  }
}

/* ========== Rider list (carpool search) ========== */

.riderlist-page {
  background: #efefef;
}

.riderlist-main {
  padding: 96px 0 48px;
  width: 100%;
  box-sizing: border-box;
}

.riderlist-page .riderlist-container {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(14px, 3.5vw, 40px);
  padding-right: clamp(14px, 3.5vw, 40px);
  box-sizing: border-box;
}

.riderlist-page .riderlist-layout.stay-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
  min-width: 0;
}

.riderlist-page .riderlist-layout .list-area {
  width: 100%;
  min-width: 0;
}

/* Cards fill row without forcing horizontal scroll on narrow phones */
.riderlist-page .riderlist-grid.productpageItem {
  width: 100%;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
}

.riderlist-head {
  margin-bottom: 24px;
  max-width: 72ch;
}

.riderlist-head .booking-page-sub {
  max-width: 62ch;
}

.riderlist-search-panel {
  background: #fff;
  border-radius: 18px;
  padding: 20px 22px 22px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 12px 36px rgba(17, 24, 39, 0.05);
  margin-bottom: 18px;
}

.riderlist-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 6px;
}

.riderlist-search-btn {
  min-height: 44px;
  border-radius: 14px !important;
  font-weight: 700 !important;
}

.riderlist-seat-wrap .productSearchInput.riderlist-seat-select {
  cursor: pointer;
  padding-right: 2rem;
  appearance: auto;
  background-image: none;
}

.riderlist-results-bar {
  border-radius: 12px !important;
  margin-bottom: 22px !important;
}

.riderlist-grid.productpageItem {
  gap: 22px !important;
}

.rider-ride-card {
  background: #fff !important;
  border: 1px solid rgba(51, 45, 108, 0.1) !important;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.04);
  transition:
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.28s ease;
}

.rider-ride-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(51, 45, 108, 0.12);
}

.rider-route-snippet {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: #4b5563;
}

.rider-route-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.rider-route-dot--from {
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.rider-route-dot--to {
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.rider-route-arrow {
  color: #9ca3af;
  padding: 0 2px;
}

.ride-modal-route {
  padding: 12px 14px;
  border-radius: 14px;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
}

.ride-seat-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  padding: 0 !important;
  border-radius: 12px !important;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.ride-seat-input {
  max-width: 88px;
  font-weight: 800;
  font-size: 1.15rem;
  border-radius: 12px !important;
  border: 1px solid #e5e7eb !important;
}

@media (prefers-reduced-motion: reduce) {
  .rider-ride-card {
    transition: none;
  }

  .rider-ride-card:hover {
    transform: none;
  }
}

/* ========== Stay / hotel list ========== */

.staylist-page {
  background: #efefef;
}

.staylist-main {
  padding: 96px 0 38px;
  width: 100%;
  box-sizing: border-box;
}

.staylist-container {
  max-width: var(--site-container-max);
}

.staylist-page .staylist-container {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(14px, 3.5vw, 40px);
  padding-right: clamp(14px, 3.5vw, 40px);
  box-sizing: border-box;
}

.staylist-head {
  margin-bottom: 28px;
  max-width: 72ch;
}

.staylist-head .booking-page-sub {
  max-width: 62ch;
}

.staylist-page .staylist-layout.stay-layout {
  width: 100%;
  min-width: 0;
}

.staylist-page .staylist-list {
  min-width: 0;
}

@media (max-width: 991.98px) {
  .staylist-page .staylist-container {
    padding-left: clamp(12px, 3vw, 24px);
    padding-right: clamp(12px, 3vw, 24px);
  }
}

.staylist-page .stay-section.staylist-section {
  padding: 0 0 40px;
  margin: 0 auto;
  max-width: 100%;
}

.staylist-layout.stay-layout {
  grid-template-columns: minmax(260px, 300px) 1fr;
  gap: 28px;
  align-items: start;
}

@media (max-width: 991px) {
  .staylist-layout.stay-layout {
    grid-template-columns: 1fr;
  }
}

.staylist-filter-panel.productSidebar {
  margin-right: 0;
  padding-bottom: 8px;
  background: #fff;
  border-radius: 18px;
  padding: 22px 20px 24px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 12px 36px rgba(17, 24, 39, 0.05);
  position: sticky;
  top: clamp(104px, 12vw, 132px);
}

@media (max-width: 991px) {
  .staylist-filter-panel.productSidebar {
    position: relative;
    top: auto;
  }
}

.staylist-filter-panel .filterTitle {
  letter-spacing: 0.04em;
}

.staylist-filter-panel .priceFilterSection {
  padding-top: 0;
}

.stay-clear-btn {
  border-radius: 14px !important;
  font-weight: 700 !important;
}

.staylist-search-wrap {
  margin-bottom: 0px;
}

.staylist-search-bar.search-bar {
  height: 48px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  padding: 0 16px 0 18px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(17, 24, 39, 0.04);
}

.staylist-search-bar input {
  font-size: 15px;
}

.staylist-search-icon {
  color: #6b7280;
  display: flex;
  align-items: center;
}

.staylist-results-bar.activeFilterDiv {
  border-radius: 12px;
  margin-top: 0px !important;
  margin-bottom: 3px !important;
  background: #fff;
  border: 1px solid #f3f4f6;
}

.staylist-grid.productpageItem {
  gap: 22px !important;
  width: 100%;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
}

.stay-hotel-card {
  background: #fff !important;
  border: 1px solid rgba(51, 45, 108, 0.1) !important;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.04);
  transition:
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.28s ease;
}

.stay-hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(51, 45, 108, 0.12);
}

.stay-hotel-card .stay-hotel-card__media {
  position: relative;
}

.stay-hotel-card .stay-hotel-card__rating {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 35px;
  padding: 5px 5px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  background: var(--primary);
  /* border: 1px solid rgba(255, 255, 255, 0.3); */
  border-radius: 0 0 8px 0;
  /* box-shadow: 0 6px 14px rgba(31, 23, 74, 0.28); */
  letter-spacing: 0.4px;
}

.stay-hotel-card .stay-hotel-card__rating-value {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 2px;
}

.stay-hotel-card .stay-hotel-card__rating-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

@media (max-width: 575px) {
  .stay-hotel-card .stay-hotel-card__rating {
    min-width: 38px;
    min-height: 34px;
    top: 0px;
    left: 0px;
  }

  .stay-hotel-card .stay-hotel-card__rating-value {
    font-size: 12px;
  }

  .stay-hotel-card .stay-hotel-card__rating-label {
    font-size: 8px;
  }
}

a.stay-detail-link.themeBtn {
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  color: #fff !important;
}

a.stay-detail-link.themeBtn:hover {
  color: #fff !important;
  filter: brightness(1.05);
}

@media (prefers-reduced-motion: reduce) {
  .stay-hotel-card {
    transition: none;
  }

  .stay-hotel-card:hover {
    transform: none;
  }
}

/* ========== Home: food spotlight ========== */

.home-food-spotlight {
  padding: 48px 20px 56px;
  background: linear-gradient(180deg, #f9fafb 0%, #efefef 100%);
}

.home-food-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--site-container-max);
  margin: 0 auto;
}

@media (max-width: 767px) {
  .home-food-spotlight-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

.home-food-spotlight-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.06);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.home-food-spotlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(51, 45, 108, 0.12);
  color: inherit;
}

.home-food-spotlight-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.home-food-spotlight-card__body {
  padding: 16px 18px 18px;
}

/* ========== Food listing badges ========== */

.food-diet-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 8px;
  border-radius: 8px;
  color: #fff;
}

.food-diet-badge--veg {
  background: #16a34a;
}

.food-diet-badge--mixed {
  background: #7c3aed;
}

.food-diet-badge--nonveg {
  background: #dc2626;
}

/* ========== Food booking checkout ========== */

.food-booking-stepper {
  margin-bottom: 28px;
}

.food-booking-stepper__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: flex-start;
}

@media (min-width: 576px) {
  .food-booking-stepper__list {
    gap: 0;
    justify-content: center;
  }
}

.food-booking-stepper__item {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  position: relative;
  padding: 0 8px;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 600;
}

@media (min-width: 576px) {
  .food-booking-stepper__item {
    flex: 0 1 160px;
  }

  .food-booking-stepper__item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 16px;
    left: calc(50% + 28px);
    width: calc(100% - 56px);
    height: 2px;
    background: #e5e7eb;
    z-index: 0;
  }

  .food-booking-stepper__item.is-done:not(:last-child)::after {
    background: linear-gradient(90deg, #8e2a81, #6366f1);
  }
}

.food-booking-stepper__num {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  background: #f3f4f6;
  color: #6b7280;
  border: 2px solid #e5e7eb;
  position: relative;
  z-index: 1;
}

.food-booking-stepper__item.is-active .food-booking-stepper__num {
  background: linear-gradient(135deg, #332d6c 0%, #8e2a81 55%, #6366f1 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(51, 45, 108, 0.25);
}

.food-booking-stepper__item.is-done .food-booking-stepper__num {
  background: #ecfdf5;
  color: #059669;
  border-color: #6ee7b7;
}

.food-booking-stepper__label {
  line-height: 1.3;
  max-width: 120px;
}

.food-booking-stepper__item.is-active .food-booking-stepper__label {
  color: #111827;
}

.food-booking-stepper__item.is-done .food-booking-stepper__label {
  color: #4b5563;
}

.food-cart-lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.food-cart-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px 16px;
  align-items: center;
  padding: 14px 16px;
  background: #fafafa;
  border: 1px solid rgba(51, 45, 108, 0.08);
  border-radius: 14px;
}

.food-cart-row__info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.food-cart-row__name {
  font-weight: 600;
  color: #111827;
  font-size: 15px;
  line-height: 1.35;
}

.food-mini-badge {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.food-mini-badge--veg {
  background: #16a34a;
}

.food-mini-badge--non {
  background: #dc2626;
}

.food-cart-row__qty {
  display: flex;
  align-items: center;
  gap: 6px;
}

.food-qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(51, 45, 108, 0.15);
  background: #fff;
  color: #332d6c;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.food-qty-btn:hover {
  background: #f5f3ff;
  border-color: rgba(99, 102, 241, 0.35);
}

.food-qty-val {
  min-width: 24px;
  text-align: center;
  font-weight: 700;
  color: #374151;
}

.food-cart-row__price {
  font-weight: 700;
  color: #332d6c;
  white-space: nowrap;
}

.food-cart-empty {
  text-align: center;
  padding: 24px !important;
}

.food-cart-empty a {
  color: #6366f1;
  font-weight: 600;
}

.food-step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #f3f4f6;
}

.food-step-actions--after {
  border-top: none;
  justify-content: flex-start;
  margin-top: 16px;
}

.food-pay-methods {
  border: none;
  padding: 0;
  margin: 0;
}

.food-pay-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(51, 45, 108, 0.1);
  border-radius: 12px;
  margin-bottom: 10px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.food-pay-option:has(input:checked) {
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow: 0 4px 14px rgba(51, 45, 108, 0.08);
}

.food-pay-option__label {
  margin: 0;
  flex: 1;
  cursor: pointer;
  font-weight: 600;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 10px;
}

.food-booking-rest-card .booking-trip-card__badge {
  font-size: 10px;
}

.food-booking-fssai {
  padding-top: 12px;
  border-top: 1px solid #f3f4f6;
}

/* ========== Stay detail page ========== */

.stay-detail-page {
  background: #efefef;
}

.stay-detail-page .stay-detail-main {
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 100px;
}

@media (min-width: 992px) {
  .stay-detail-page .stay-detail-main {
    padding-bottom: 48px;
  }
}

.stay-detail-container {
  max-width: var(--site-container-max);
}

.stay-detail-page .stay-detail-container {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(14px, 3.5vw, 40px);
  padding-right: clamp(14px, 3.5vw, 40px);
  box-sizing: border-box;
}

@media (max-width: 991.98px) {
  .stay-detail-page .stay-detail-container {
    padding-left: clamp(12px, 3vw, 24px);
    padding-right: clamp(12px, 3vw, 24px);
  }
}

.stay-detail-breadcrumb {
  margin-bottom: 20px;
}

.stay-detail-gallery {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
  align-items: start;
}

@media (min-width: 768px) {
  .stay-detail-gallery {
    /* Thumbnails chhote — column sirf utni chaudi jitni zarurat */
    grid-template-columns: minmax(0, 1fr) clamp(100px, 14vw, 148px);
  }
}

.stay-detail-gallery__hero {
  border-radius: 18px;
  overflow: hidden;
  background: #f3f4f6;
  width: 100%;
  min-width: 0;
  aspect-ratio: 3 / 2;
  max-height: min(68vh, 560px);
}

.stay-detail-gallery__hero img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
}

.stay-detail-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (min-width: 768px) {
  /* Flex + gap: many thumbnails ke saath bhi row spacing stable (grid + scroll edge cases) */
  .stay-detail-gallery__thumbs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 12px 6px 14px 0;
    box-sizing: border-box;
    min-height: 0;
    max-height: var(--stay-thumb-max-h, min(68vh, 560px));
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-gutter: stable;
  }

  .stay-detail-gallery__thumbs::-webkit-scrollbar {
    width: 6px;
  }

  .stay-detail-gallery__thumbs::-webkit-scrollbar-thumb {
    background: rgba(51, 45, 108, 0.25);
    border-radius: 999px;
  }

  .stay-detail-gallery__thumbs::-webkit-scrollbar-track {
    background: rgba(243, 244, 246, 0.9);
    border-radius: 999px;
  }
}

.stay-detail-gallery__thumb {
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  background: #f3f4f6;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  aspect-ratio: 4 / 3;
  max-height: 132px;
  width: 100%;
  display: block;
  flex-shrink: 0;
  line-height: 0;
}

.stay-detail-gallery__thumb.is-active {
  border-color: rgba(99, 102, 241, 0.65);
  box-shadow: 0 4px 14px rgba(51, 45, 108, 0.12);
}

.stay-detail-gallery__thumb img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .stay-detail-gallery__thumb {
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 120px;
    max-height: none;
    min-height: 0;
  }
}

@media (max-width: 767.98px) {
  .stay-detail-gallery__thumb {
    aspect-ratio: 1 / 1;
    max-height: none;
  }
}

.stay-detail-layout {
  align-items: start;
}

.stay-detail-layout > [class*="col-"] {
  min-width: 0;
}

@media (max-width: 575.98px) {
  .stay-detail-page .stay-detail-section.trivozoCard {
    padding: 1.25rem !important;
  }
}

.stay-detail-trust-chips {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  color: #4b5563;
}

.stay-detail-trust-chips li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stay-detail-avail-card {
  position: sticky;
  top: clamp(104px, 12vw, 132px);
  padding: 20px 20px 22px;
  border-radius: 18px !important;
  border: 1px solid rgba(51, 45, 108, 0.1);
  box-shadow: 0 20px 48px rgba(17, 24, 39, 0.08);
}

@media (max-width: 991.98px) {
  .stay-detail-avail-card {
    position: relative;
    top: auto;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 4px;
  }
}

@media (max-width: 575.98px) {
  .stay-detail-avail-card {
    padding: 18px 16px 20px;
  }

  .stay-detail-avail-card > .themeBtn {
    white-space: normal;
    line-height: 1.35;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

.stay-detail-widget-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8e2a81;
  margin-bottom: 6px;
}

.stay-detail-widget-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
  margin-bottom: 14px;
}

.stay-detail-field {
  min-width: 0;
}

.stay-detail-field--full {
  grid-column: 1 / -1;
}

@media (max-width: 575.98px) {
  .stay-detail-widget-fields {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .stay-detail-field--full {
    grid-column: auto;
  }
}

.stay-detail-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.stay-detail-input {
  border-radius: 12px !important;
  border: 1px solid rgba(51, 45, 108, 0.14) !important;
  font-size: 14px;
  padding: 10px 12px;
  width: 100%;
  min-height: 44px;
  box-sizing: border-box;
}

@media (max-width: 575.98px) {
  .stay-detail-input {
    font-size: 16px;
  }
}

.stay-detail-input:focus {
  border-color: rgba(99, 102, 241, 0.45) !important;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

.stay-check-avail-btn {
  border-radius: 12px;
  border: 1px solid rgba(99, 102, 241, 0.35);
  background: linear-gradient(180deg, #faf5ff 0%, #f5f3ff 100%);
  color: #4338ca;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 14px;
}

.stay-check-avail-btn:hover {
  background: #ede9fe;
  color: #3730a3;
}

.stay-avail-panel {
  padding: 12px 14px;
  border-radius: 12px;
  background: #ecfdf5;
  border: 1px solid rgba(16, 185, 129, 0.28);
  margin-bottom: 14px;
}

.stay-avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: #047857;
}

.stay-avail-badge i {
  color: #059669;
}

.stay-avail-meta {
  line-height: 1.4;
}

.stay-avail-hint {
  color: #6b7280;
  font-style: italic;
}

.stay-widget-summary {
  padding-top: 14px;
  border-top: 1px solid #f3f4f6;
  margin-top: 4px;
}

.stay-widget-error {
  color: #b91c1c;
  margin-top: 10px !important;
}

.stay-detail-cta--disabled {
  pointer-events: none;
  opacity: 0.55;
  cursor: not-allowed;
}

.stay-detail-amenity-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.stay-detail-amenity-item {
  font-size: 14px;
  color: #374151;
}

.stay-detail-rules {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.stay-detail-map-placeholder {
  border: 1px dashed rgba(51, 45, 108, 0.2);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  color: #6b7280;
  background: #fafafa;
}

.stay-detail-map-placeholder i {
  font-size: 2rem;
  color: #6366f1;
  margin-bottom: 8px;
  display: block;
}

.stay-detail-review {
  border-color: #f3f4f6 !important;
}

/* Room type cards (stay detail) — horizontal on desktop, stack on mobile */
.stay-detail-room-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stay-room-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(17, 24, 39, 0.06);
  transition:
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

@media (min-width: 768px) {
  .stay-room-card {
    grid-template-columns: minmax(200px, 32%) 1fr;
  }
}

.stay-room-card:hover {
  box-shadow: 0 16px 44px rgba(51, 45, 108, 0.12);
  transform: translateY(-2px);
}

.stay-room-card__media {
  position: relative;
  background: #f3f4f6;
  align-self: start;
}

.stay-room-card__media img {
  width: 100%;
  height: 148px;
  min-height: 0;
  max-height: 148px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .stay-room-card__media img {
    height: 168px;
    max-height: 168px;
  }
}

.stay-room-card__body {
  padding: 14px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.stay-room-card__badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5b21b6;
  background: linear-gradient(135deg, rgba(91, 33, 182, 0.1), rgba(142, 42, 129, 0.08));
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 5px 10px;
  border-radius: 8px;
  margin-bottom: 6px;
}

.stay-room-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 4px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.stay-room-card__capacity {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
  margin: 0 0 6px;
}

.stay-room-card__desc {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.45;
  margin: 0 0 10px;
}

.stay-room-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.stay-room-card__tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #059669, #0d9488);
  padding: 5px 10px;
  border-radius: 8px;
}

.stay-room-card__footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #f3f4f6;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

.stay-room-card__price {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
}

.stay-room-card__per {
  font-size: 13px;
  color: #6b7280;
  margin-top: 4px;
}

.stay-room-card__book {
  flex-shrink: 0;
  /* min-height: 32px; */
  padding: 8px 18px !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  color: #fff !important;
}

@media (max-width: 767.98px) {
  .stay-room-card__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .stay-room-card__book {
    width: 100%;
    justify-content: center;
    display: inline-flex;
    align-items: center;
  }
}

.stay-detail-mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 -8px 30px rgba(17, 24, 39, 0.08);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
}

.stay-detail-mobile-bar__inner {
  max-width: min(720px, 100%);
  width: 100%;
  margin: 0 auto;
  padding-left: clamp(8px, 2.5vw, 16px);
  padding-right: clamp(8px, 2.5vw, 16px);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.stay-detail-mobile-bar__inner .themeBtn {
  flex-shrink: 0;
  padding-inline: 16px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.stay-detail-mobile-bar__info {
  flex: 1 1 auto;
  min-width: 0;
}

@media (max-width: 380px) {
  .stay-detail-mobile-bar__inner .themeBtn {
    padding-inline: 12px;
    font-size: 11px;
  }
}

.stay-booking-preview {
  border-radius: 14px !important;
  border: 1px solid rgba(51, 45, 108, 0.08);
}

.stay-booking-dates-row .booking-input {
  min-height: 44px;
}

.stay-booking-page .food-step-actions {
  flex-wrap: wrap;
}

/* ========== About page ========== */

.about-page {
  background: #efefef;
}

.about-main {
  padding-top: max(116px, calc(env(safe-area-inset-top, 0px) + 96px));
}

.about-hero {
  background: linear-gradient(
    135deg,
    rgba(51, 45, 108, 0.08) 0%,
    rgba(142, 42, 129, 0.06) 50%,
    rgba(99, 102, 241, 0.05) 100%
  );
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
  padding: 32px 20px 48px;
}

.about-hero-inner {
  max-width: 800px;
}

.about-breadcrumb {
  margin-bottom: 20px;
}

.about-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111827;
  margin: 0 0 16px;
  line-height: 1.2;
}

.about-hero-lead {
  font-size: 1.05rem;
  color: #4b5563;
  margin: 0;
  line-height: 1.65;
}

.about-content {
  padding: 40px 20px 56px;
  max-width: var(--site-container-max);
}

.about-block {
  margin-bottom: 48px;
}

.about-section-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 16px;
}

.about-text {
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

.about-highlight-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 12px 36px rgba(17, 24, 39, 0.05);
}

.about-highlight-icon {
  font-size: 1.75rem;
  color: #8e2a81;
  margin-bottom: 12px;
  display: block;
}

.about-stats {
  margin-bottom: 48px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 767px) {
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-stat {
  background: #fff;
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  border: 1px solid #f3f4f6;
}

.about-stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, rgba(51, 45, 108, 1) 0%, rgba(142, 42, 129, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  margin-top: 6px;
  display: block;
}

.about-value-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 20px;
  height: 100%;
  border: 1px solid rgba(17, 24, 39, 0.06);
  text-align: center;
}

.about-value-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(51, 45, 108, 0.08);
  color: #332d6c;
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.about-cta {
  padding: 36px 24px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 12px 36px rgba(17, 24, 39, 0.05);
}

@media (prefers-reduced-motion: reduce) {
  .home-food-spotlight-card {
    transition: none;
  }

  .home-food-spotlight-card:hover {
    transform: none;
  }
}

/* ========== Auth (login / sign up) ========== */

a.icon-badge {
  text-decoration: none;
}

.auth-nav-pill {
  display: none;
  align-items: center;
  padding: 0 16px;
  height: 44px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
  color: #332d6c;
  border: 1px solid rgba(51, 45, 108, 0.25);
  background: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.auth-nav-pill:hover {
  background: rgba(51, 45, 108, 0.06);
  color: #332d6c;
}

@media (min-width: 921px) {
  .auth-nav-pill.desktop-only {
    display: inline-flex;
  }
}

.auth-page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(142, 42, 129, 0.12), transparent),
    linear-gradient(180deg, #f3f4f6 0%, #efefef 45%, #e5e7eb 100%);
}

.auth-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(118px, calc(env(safe-area-inset-top, 0px) + 100px)) 20px 10px;
}

.auth-shell {
  width: 100%;
  max-width: 440px;
}

.auth-shell--wide {
  max-width: 560px;
}

.auth-card {
  background: #fff;
  border-radius: 22px;
  padding: 32px 28px 36px;
  border: 1px solid rgba(17, 24, 39, 0.07);
  box-shadow:
    0 4px 6px -1px rgba(17, 24, 39, 0.06),
    0 24px 48px -12px rgba(51, 45, 108, 0.14);
}

.auth-card__title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111827;
  margin: 0 0 8px;
}

.auth-card__sub {
  font-size: 14px;
  line-height: 1.5;
}

.auth-form-group {
  margin-bottom: 18px;
}

.auth-form .booking-label {
  margin-bottom: 6px;
}

.auth-form-error {
  background: #fef2f2;
  color: #991b1b;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.auth-password-wrap {
  position: relative;
}

.auth-password-wrap .booking-input {
  padding-right: 48px !important;
}

.auth-toggle-pass {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: #6b7280;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-toggle-pass:hover {
  background: #f3f4f6;
  color: #111827;
}

.auth-link-small {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  text-decoration: none;
}

.auth-link-small:hover {
  color: #332d6c;
  text-decoration: underline;
}

.auth-submit-btn {
  padding: 14px 20px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  border-radius: 14px !important;
  margin-top: 8px;
}

.auth-switch {
  font-size: 14px;
  color: #6b7280;
}

.auth-switch-link {
  font-weight: 700;
  color: #332d6c;
  text-decoration: none;
}

.auth-switch-link:hover {
  text-decoration: underline;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0 20px;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

.auth-social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.auth-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #fafafa;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  cursor: not-allowed;
}

.auth-back-home {
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  text-decoration: none;
}

.auth-back-home:hover {
  color: #332d6c;
}

.auth-footer-min {
  margin-top: auto;
}

@media (max-width: 520px) {
  .auth-card {
    padding: 24px 20px 28px;
  }
}

.productSearchBar {
  position: relative;
}

.productSearchInput {
  width: 100%;
  height: 42px;
  padding: 8px 12px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
  background: #fff;
}

.productSearchInput:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

.riderlist-label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

/* Date & Time same look fix */
input[type="date"],
input[type="time"] {
  appearance: none;
  -webkit-appearance: none;
}

.subHeading {
  margin: 0 auto;
  max-width: 40ch;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
}

/* ========== Site-wide responsive pass ========== */

@media (max-width: 991.98px) {
  .trusted-carousel {
    margin-top: 36px;
  }

  .trusted-carousel__track {
    gap: 18px;
  }

  .searchTabs {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
  }

  .form-block {
    width: 100%;
    flex: 1 1 100%;
    max-width: 100%;
  }

  .searchRow > .form-block.active {
    flex-direction: column;
    align-items: stretch;
  }

  .searchRow .form-block > div {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .searchRow input,
  .searchRow select {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .goBtn {
    width: 100%;
  }

  .promo-slider-ui {
    height: min(360px, 62vw);
    min-height: 220px;
  }

  .promo-copy-ui,
  .promo-media-ui {
    min-width: 0;
  }
}

@media (max-width: 767.98px) {
  .food-pro-content h3 {
    font-size: clamp(1.35rem, 4vw, 32px);
  }

  .food-pro-wrapper {
    gap: 28px;
  }

  .food-pro-ui {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }
}

@media (max-width: 520px) {
  .navbar-wrap {
    left: max(10px, env(safe-area-inset-left));
    right: max(10px, env(safe-area-inset-right));
    top: 24px;
  }

  .navbar {
    --nav-w: 100%;
    width: 100%;
    max-width: none;
  }

  .homeHero {
    padding: 14px 12px;
    border-radius: 14px;
  }

  .searchBox {
    padding: 16px 14px;
    border-radius: 14px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .food-pro-visual {
    height: clamp(200px, 52vw, 280px);
    max-width: 100%;
    margin-inline: auto;
  }

  .subHeading {
    padding: 0 6px;
  }
}

/* Inner pages: <main> follows fixed .booking-nav-section — keep last so padding shorthands don’t erase it */
.booking-nav-section + .riderlist-main,
.booking-nav-section + .booking-main,
.booking-nav-section + .staylist-main,
.booking-nav-section + .stay-detail-main,
.booking-nav-section + .about-main,
.booking-nav-section + .auth-main {
  padding-top: max(120px, calc(env(safe-area-inset-top, 0px) + 108px));
}