:root {
  --color-primary: #000080;
  --color-secondary: #f6f7f9;
  --color-accent: #ff8200;
  --color-deep: #540021;
  --color-pink: #d0478f;
  --color-darkpink: #ac104c;
  --color-navbar: #000d42;
  --hero-gold: #e3b344;
  --logo-gradient: linear-gradient(90deg, #da9900 0%, #e3b344 100%);

  --font-heading: "Inter", serif;
  --font-body: "Geist", sans-serif;
  --font-title: "Roboto", sans-serif;
  --font-signature: "Italianno", "cursive";
  --font-montserrat: "Montserrat", sans-serif;
  --font-10x: "Cinzel Decorative", "serif";
  --font-money: "Josefin Sans", "sans-serif";

  --border-radius: 12px;
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.3s ease;
  --nav-h: 84px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background-color: #ffffff;
  color: #111111;
  overflow-x: hidden;
}

::selection {
  background-color: var(--color-secondary);
  color: var(--color-primary);
}

.gradient-text {
  background: linear-gradient(180deg,
      #e5b93f,
      #ecb714,
      #c78c01,
      #fff89c,
      #d19f0d,
      #d19f0d,
      #b49663);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  margin: 0;
  font-weight: 400;
}

p {
  margin: 0;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}

.type-a {
  background-color: var(--color-primary);
  color: var(--color-secondary);
}

.type-b {
  background-color: var(--color-secondary);
  color: var(--color-primary);
}

.skip-link {
  position: absolute;
  top: 0;
  left: -9999px;
  z-index: 200;
  padding: 0.8rem 1.3rem;
  font-family: var(--font-montserrat);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-primary);
  background-color: var(--color-secondary);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-navbar);
  border-bottom: 1px solid rgba(255, 233, 233, 0.1);
  transition:
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 32px -14px rgba(0, 0, 0, 0.6);
  border-bottom-color: rgba(255, 233, 233, 0.18);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
  height: var(--nav-h);
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2.75rem);
}

.nav-collapse {
  display: contents;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 1.9vw, 2rem);
}

.nav-links-left {
  grid-row: 1;
  grid-column: 1;
  justify-content: flex-start;
  min-width: 0;
}

.nav-logo {
  grid-row: 1;
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo img {
  display: block;
  height: clamp(42px, 4.2vw, 55px);
  width: auto;
}

.nav-right {
  grid-row: 1;
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.85rem, 1.6vw, 1.6rem);
  min-width: 0;
}

.nav-link {
  position: relative;
  padding: 0.45rem 0;
  font-family: var(--font-montserrat);
  font-size: clamp(0.64rem, 0.78vw, 0.76rem);
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255, 233, 233, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background-color: var(--hero-gold);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #fff;
  outline: none;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

.nav-search {
  display: flex;
  align-items: center;
}

.nav-search-input {
  width: 0;
  min-width: 0;
  padding: 0;
  opacity: 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #ffffff;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 233, 233, 0.28);
  transition:
    width 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    padding 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s ease,
    border-color 0.3s ease;
}

.nav-search-input::placeholder {
  color: rgba(255, 233, 233, 0.42);
}

.nav-search-input:focus {
  outline: none;
  border-bottom-color: var(--color-accent);
}

.nav-search-input::-webkit-search-cancel-button {
  filter: invert(1) opacity(0.5);
}

.nav-search.is-open .nav-search-input {
  width: clamp(130px, 17vw, 220px);
  padding: 0.45rem 0.6rem;
  opacity: 1;
}

.nav-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: transparent;
  color: rgba(255, 233, 233, 0.88);
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.nav-search-btn:hover,
.nav-search-btn:focus-visible {
  background-color: rgba(255, 233, 233, 0.12);
  color: #ffffff;
}

.nav-search-btn svg {
  width: 19px;
  height: 19px;
}

.nav-toggle {
  display: none;
  grid-row: 1;
  grid-column: 1;
  justify-self: start;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle-bars {
  position: relative;
  display: block;
  width: 22px;
  height: 14px;
}

.nav-toggle-bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  border-radius: 2px;
  background-color: var(--color-secondary);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.25s ease,
    width 0.3s ease;
}

.nav-toggle-bars span:nth-child(1) {
  top: 0;
}

.nav-toggle-bars span:nth-child(2) {
  top: 50%;
  width: 68%;
  transform: translateY(-50%);
}

.nav-toggle-bars span:nth-child(3) {
  bottom: 0;
}

body.is-nav-open .nav-toggle-bars span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

body.is-nav-open .nav-toggle-bars span:nth-child(2) {
  width: 0;
  opacity: 0;
}

body.is-nav-open .nav-toggle-bars span:nth-child(3) {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%) rotate(-45deg);
}

.nav-panel-foot,
.nav-backdrop {
  display: none;
}

@media (max-width: 1150px) {
  :root {
    --nav-h: 68px;
  }

  body.is-nav-open {
    overflow: hidden;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-collapse {
    position: fixed;
    top: var(--nav-h);
    bottom: 0;
    left: 0;
    z-index: 90;
    display: flex;
    flex-direction: column;
    width: min(75%, 380px);
    padding: 1.75rem clamp(1.25rem, 5vw, 2rem) 2rem;
    background-color: var(--color-navbar);
    border-top: 1px solid rgba(255, 233, 233, 0.1);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(-100%);
    visibility: hidden;
    transition:
      transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0.45s linear;
  }

  body.is-nav-open .nav-collapse {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    top: var(--nav-h);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 80;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.4s ease,
      visibility 0.4s linear;
  }

  body.is-nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
  }

  .nav-links,
  .nav-right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
  }

  .nav-link {
    padding: 1.05rem 0;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    border-bottom: 1px solid rgba(255, 233, 233, 0.09);
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover {
    color: var(--hero-gold);
  }

  .nav-search {
    position: relative;
    width: 100%;
    margin-top: 1.75rem;
  }

  .nav-search-input,
  .nav-search.is-open .nav-search-input {
    width: 100%;
    padding: 0.85rem 3rem 0.85rem 1rem;
    opacity: 1;
    border: 1px solid rgba(255, 233, 233, 0.18);
    border-radius: 10px;
    background-color: rgba(255, 233, 233, 0.05);
  }

  .nav-search-input:focus {
    border-color: var(--color-accent);
  }

  .nav-search-btn {
    position: absolute;
    top: 50%;
    right: 0.3rem;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
  }

  .nav-panel-foot {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: auto;
    padding-top: 2.25rem;
  }

  .nav-panel-foot a {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.88rem;
    color: rgba(255, 233, 233, 0.72);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .nav-panel-foot a:hover {
    color: #ffffff;
  }

  .nav-panel-foot svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--hero-gold);
  }
}

@media (prefers-reduced-motion: reduce) {

  .nav-collapse,
  .nav-backdrop,
  .nav-link::after,
  .nav-search-input,
  .nav-toggle-bars span {
    transition-duration: 0.01ms;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-fast);
  border: 1px solid transparent;
}

a.btn-gradient-accent,
button.btn-gradient-accent,
.btn-gradient-accent,
a.btn-gradient-navbar,
button.btn-gradient-navbar,
.btn-gradient-navbar {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
  border-color: transparent;
  background-size: 400% 400% !important;
  animation: buttonGradientFlow 3s linear infinite;
}

a.btn-gradient-accent,
button.btn-gradient-accent,
.btn-gradient-accent {
  background-image: linear-gradient(270deg,
      var(--color-accent),
      #ff9626,
      #ffbb00,
      #fe992e,
      var(--color-accent));
}

a.btn-gradient-navbar,
button.btn-gradient-navbar,
.btn-gradient-navbar {
  background-image: linear-gradient(115deg,
      var(--color-navbar),
      #00009e,
      #0000ff,
      #00009e,
      var(--color-navbar));
}

a.btn-gradient-accent::before,
button.btn-gradient-accent::before,
.btn-gradient-accent::before,
a.btn-gradient-navbar::before,
button.btn-gradient-navbar::before,
.btn-gradient-navbar::before {
  content: none;
}

@keyframes buttonGradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 20%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 1) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 128, 0.2);
  gap: 0.8rem;
}

.btn-primary:hover::before {
  animation: blink-sweep 5s infinite;
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-outline-blush {
  background-color: transparent;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.btn-outline-blush:hover {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  border-color: var(--color-secondary);
}

.btn-accent {
  background-color: var(--color-accent);
  color: #ffffff;
  width: 100%;
}

.btn-accent:hover {
  background-color: #e67500;
}

em {
  font-style: italic;
  color: var(--color-accent);
}

.section-title {
  font-size: 2.3rem;
  font-family: var(--font-montserrat);
}

.underline-part2 {
  font-size: 3.5rem;
  font-family: var(--font-signature);
  color: var(--hero-gold);
}

.underline-part {
  position: relative;
  display: inline-block;
  color: #1a1a8c;
  padding-bottom: 8px;
}

.taper-svg {
  position: absolute;
  left: 2%;
  bottom: 0;
  width: 100%;
  height: 10px;
  overflow: visible;
  pointer-events: none;
}

.hero {
  --hero-gold: #e3b344;
  --hero-line: rgba(255, 233, 233, 0.15);

  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  min-height: calc(100vh - var(--nav-h));
  /* padding-left: clamp(1.25rem, 5.5vw, 5.5rem); */
  /* background:
    radial-gradient(
      70% 62% at 4% 30%,
      rgba(255, 255, 255, 0.055) 0%,
      rgba(255, 255, 255, 0) 65%
    ),
    linear-gradient(180deg, var(--color-primary) 0%, #00003c 100%); */
  background-color: var(--color-navbar);
  color: var(--color-secondary);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 1;
  grid-row: 1;
  grid-column: 1;
  max-width: 40rem;
  /* padding-left: clamp(2.5rem, 6vh, 4.5rem) clamp(1.5rem, 3vw, 3.25rem)
    clamp(2.5rem, 6vh, 4.5rem) 0; */
  padding-left: 3rem;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.4rem;
  font-family: var(--font-montserrat);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 233, 233, 0.6);
}

.hero-eyebrow-rule {
  flex-shrink: 0;
  width: 34px;
  height: 1px;
  background-color: var(--hero-gold);
}

.hero-title {
  margin: 0;
  font-weight: 400;
}

.hero-title-strong {
  display: block;
  font-family: var(--font-10x);
  font-size: clamp(2rem, 4.2vw, 3.85rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--hero-gold);
  text-wrap: balance;
}

.hero-title-script {
  /* display: block; */
  margin-top: clamp(0.5rem, 5.4vw, 0.06rem);
  font-family: var(--font-money);
  font-size: clamp(1.8rem, 5.4vw, 3.5rem);
  line-height: 0.94;
  font-weight: 700;
  color: var(--hero-gold);
}

.hero-desc {
  max-width: 62ch;
  margin: 1.2rem 0 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255, 233, 233, 0.66);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.55rem;
  font-family: var(--font-montserrat);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.hero-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.hero-btn-primary {
  background-color: var(--color-accent);
  color: #ffffff;
}

.hero-btn-primary:hover,
.hero-btn-primary:focus-visible {
  background-color: #c06300;
  transform: translateY(-2px);
}

.hero-btn-primary:hover svg {
  transform: translateX(4px);
}

.hero-btn-ghost {
  color: var(--color-secondary);
  border: 1x solid rgba(255, 233, 233, 0.26);
}

.hero-ghost-dash {
  --hero-ghost-dash-color: rgba(255, 233, 233, 0.48);

  position: relative;
  border-color: transparent;
}

.hero-ghost-dash::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--hero-ghost-dash-color) 50%, transparent 0) 0 0 / 14px 1px repeat-x,
    linear-gradient(90deg, var(--hero-ghost-dash-color) 50%, transparent 0) 0 100% / 14px 1px repeat-x,
    linear-gradient(0deg, var(--hero-ghost-dash-color) 50%, transparent 0) 0 0 / 1px 14px repeat-y,
    linear-gradient(0deg, var(--hero-ghost-dash-color) 50%, transparent 0) 100% 0 / 1px 14px repeat-y;
  animation: heroGhostDashMove 0.85s linear infinite;
}

.hero-btn-ghost:hover,
.hero-btn-ghost:focus-visible {
  border-color: var(--color-accent);
}

.hero-btn-ghost.hero-ghost-dash:hover,
.hero-btn-ghost.hero-ghost-dash:focus-visible {
  --hero-ghost-dash-color: var(--color-accent);

  border-color: transparent;
}

@keyframes heroGhostDashMove {
  to {
    background-position:
      14px 0,
      -14px 100%,
      0 -14px,
      100% 14px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .btn-gradient-accent,
  .btn-gradient-navbar,
  .hero-ghost-dash::before {
    animation: none;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(0, 0, 26, 0.97) 0%,
      rgba(0, 0, 26, 0.82) 13%,
      rgba(0, 0, 26, 0.28) 30%,
      rgba(0, 0, 26, 0) 46%),
    linear-gradient(to right,
      rgba(0, 0, 42, 0.97) 0%,
      rgba(0, 0, 45, 0.88) 28%,
      rgba(0, 0, 48, 0.42) 58%,
      rgba(0, 0, 50, 0) 80%);
}

.hero-stats {
  position: relative;
  z-index: 1;
  grid-row: 2;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--hero-line);
  padding-left: clamp(1.25rem, 3vw, 3rem);
}

.hero-stat {
  padding: 1.55rem 1.4rem 1.55rem 0;
  border-right: 1px solid var(--hero-line);
}

.hero-stat+.hero-stat {
  padding-left: 1.4rem;
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.3vw, 2.15rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--hero-gold);
  font-variant-numeric: tabular-nums;
}

.hero-stat-num .counter {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.hero-stat-unit {
  font-size: 0.55em;
  color: rgba(255, 233, 233, 0.45);
}

.hero-stat-label {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-montserrat);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 233, 233, 0.5);
}

@media (max-width: 1150px) {
  .hero-copy {
    max-width: 34rem;
  }

  .hero-desc {
    font-size: 0.95rem;
  }
}

@media (max-width: 992px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 1fr auto;
    min-height: calc(100vh - var(--nav-h));
    padding-left: 0;
  }

  .hero-bg-img {
    object-position: 62% center;
  }

  .hero-scrim {
    background: linear-gradient(to bottom,
        rgba(0, 0, 38, 0.74) 0%,
        rgba(0, 0, 38, 0.7) 38%,
        rgba(0, 0, 34, 0.6) 64%,
        rgba(0, 0, 26, 0.88) 90%,
        rgba(0, 0, 26, 0.97) 100%);
  }

  .hero-copy {
    grid-row: 1;
    grid-column: 1;
    max-width: none;
    padding: clamp(2.5rem, 7vw, 4rem) clamp(1.25rem, 6vw, 3rem);
    margin-top: 2rem;
  }

  .hero-stats {
    grid-row: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
    padding: 0 clamp(1.25rem, 6vw, 3rem);
  }

  .hero-stat {
    padding: 1.35rem 1rem 1.35rem;
    border-bottom: 1px solid var(--hero-line);
  }

  .hero-stat+.hero-stat {
    padding-left: 1.25rem;
  }

  .hero-stat:nth-child(2n) {
    border-right: none;
  }

  .hero-stat:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

@media (max-width: 560px) {
  .hero-eyebrow {
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.5rem;
    letter-spacing: 0.15em;
  }

  .hero-eyebrow-rule {
    width: 22px;
    margin-top: 0.45em;
  }

  .hero-ctas {
    gap: 0.7rem;
  }

  .hero-btn {
    flex: 1 1 100%;
    justify-content: center;
  }

  .hero-btn-ghost {
    /* background-color: #ffffff1d; */
    backdrop-filter: blur(2px);
    color: var(--color-secondary);
    border: 1px solid rgba(255, 233, 233, 0.26);
  }
}

.is-hidden {
  opacity: 0;
  transform: translateY(30px);
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.listings {
  padding: 3rem 0;
}

.section-header {
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.section-subtext {
  font-size: 1rem;
  opacity: 0.65;
  margin-top: 0.5rem;
  /* margin-bottom: 2rem; */
  max-width: 560px;
  line-height: 1.6;
}

.filter-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-tabs {
  display: flex;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.06);
  padding: 4px;
  border-radius: 50px;
  margin-top: 10px;
}

.filter-btn {
  background: none;
  border: none;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8em;
  font-weight: 500;
  cursor: pointer;
  color: inherit;
  opacity: 0.6;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}

.filter-btn:hover {
  opacity: 1;
}

.filter-btn.active {
  background: var(--color-primary);
  color: #fff;
  opacity: 1;
  box-shadow: 0 2px 10px rgba(0, 0, 128, 0.15);
}

/* .filter-dropdown-wrapper {
    display: none;
    position: relative;
    width: 100%;
} */

.filter-dropdown {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
}

.listing-card.filter-hidden {
  display: none;
}

.listing-card.filter-fade-in {
  animation: cardFadeIn 0.35s ease forwards;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.listing-card {
  background-color: #ffffff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 128, 0.05);
  display: flex;
  flex-direction: column;
}

.hidden-card {
  display: none;
}

.reveal-card {
  transform: translateY(40px);
  opacity: 0;
}

.reveal-card.revealed {
  transform: translateY(0);
  opacity: 1;
  transition:
    transform 1s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 1s ease,
    box-shadow 0.6s ease;
}

.reveal-card.revealed:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(84, 0, 33, 0.5);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.listing-img-wrapper {
  overflow: hidden;
  height: 280px;
  position: relative;
}

.parallax-img {
  position: absolute;
  top: -15%;
  width: 120%;
  height: 130%;
  object-fit: cover;
  transform-origin: center;
  transition: transform 0.5s ease;
  will-change: transform;
  transform: translateY(calc(var(--parallax-offset, 0) * 1px));
}

.listing-card:hover .parallax-img {
  transform: scale(1.05) translate(var(--mouse-x, 0px),
      calc(var(--parallax-offset, 0) * 1px + var(--mouse-y, 0px)));
  transition: transform 0.15s ease-out;
}

.listing-info {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.top-row {
  margin-bottom: 0.5rem;
}

.listing-title {
  font-size: 1.1rem;
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 500;
}

.price-container {
  text-align: right;
  display: flex;
  flex-direction: column;
  margin-left: 1rem;
}

.price-label {
  font-size: 0.6rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.price {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1.15rem;
  white-space: nowrap;
}

.middle-row {
  margin-bottom: 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #555555;
  align-items: center;
}

.location {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  opacity: 0.8;
}

.location svg {
  width: 14px;
  height: 14px;
  color: var(--color-navbar);
}

.area {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  opacity: 0.8;
  white-space: nowrap;
  margin-left: 1rem;
}

.size-icon {
  width: 16px;
  height: 16px;
}

.view-details {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.view-details::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 20%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 1) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: none;
}

.view-details:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 15px rgba(0, 0, 128, 0.2);
  gap: 0.8rem;
  /* background-color: var(--color-secondary);
  color: var(--color-primary);
  border: 1px solid var(--color-navbar); */
  font-weight: 700;
}

.view-details:hover::before {
  animation: blink-sweep 5s infinite;
}

@keyframes blink-sweep {
  0% {
    left: -100%;
  }

  50% {
    left: 200%;
  }

  100% {
    left: 200%;
  }
}

.latest-listings {
  padding: 6rem 0;
  background-color: var(--color-navbar);
  color: var(--color-secondary);
}

.latest-grid-wrapper {
  overflow: hidden;
  width: 100%;
}

.latest-grid {
  display: flex;
  gap: 2.5rem;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.latest-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.latest-nav-btn {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 233, 233, 0.45);
  border-radius: 50%;
  background: transparent;
  color: var(--color-secondary);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.latest-nav-btn:hover,
.latest-nav-btn:focus-visible {
  background: var(--color-secondary);
  color: var(--color-navbar);
  border-color: var(--color-secondary);
  outline: none;
}

.latest-nav-btn:active {
  transform: scale(0.92);
}

.latest-nav-btn svg {
  width: 20px;
  height: 20px;
}

.latest-nav-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.latest-dot {
  position: relative;
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 233, 233, 0.35);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition:
    width 0.3s ease,
    background 0.3s ease,
    border-radius 0.3s ease;
}

.latest-dot::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -6px;
  bottom: -10px;
  left: -6px;
}

.latest-dot:hover {
  background: rgba(255, 233, 233, 0.7);
}

.latest-dot.active {
  width: 26px;
  border-radius: 999px;
  background: var(--color-secondary);
}

.latest-card {
  flex: 0 0 calc(33.333% - 1.666rem);
  background: var(--color-secondary);
  /* border-radius: 16px; */
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  /* border: 1px solid rgba(0, 0, 0, 0.03); */
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.latest-action-btn svg {
  transition: transform 0.3s ease;
}

.latest-card:hover .latest-action-btn svg {
  transform: translateX(4px);
}

.latest-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.latest-img-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.latest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.latest-card:hover .latest-img {
  transform: scale(1.08);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.7rem;
  font-family: var(--font-heading);
  font-weight: 300;
  text-transform: uppercase;
  /* letter-spacing: 0.05em; */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.badge-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.badge-popular {
  background: #16b729;
  color: white;
}

.badge-new {
  background: #5127b1;
  color: white;
}

.badge-discount {
  background: #f2334c;
  color: white;
}

.latest-info {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* .latest-underline-part2 {
    font-size: 3.5rem;
    font-family: var(--font-signature);
    color: var(--color-secondary);
} */

.latest-underline-part {
  font-size: 4rem;
  position: relative;
  font-family: var(--font-signature);
  display: inline-block;
  color: var(--color-secondary);
  padding-bottom: 8px;
}

.latest-taper-svg {
  color: #fff;
  position: absolute;
  left: 2%;
  bottom: 0;
  width: 100%;
  height: 10px;
  overflow: visible;
  pointer-events: none;
}

.latest-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.latest-section-title {
  font-size: 4rem;
  font-family: var(--font-signature);
  font-weight: 500;
  color: var(--color-secondary);
}

.latest-title {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-primary);
}

.latest-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
  flex-shrink: 0;
}

.latest-action-btn:hover {
  transform: scale(1.05);
  background-color: var(--color-accent);
}

.latest-action-btn svg {
  width: 18px;
  height: 18px;
}

.latest-location {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.loc-icon {
  width: 16px;
  height: 16px;
  color: var(--color-navbar);
}

.latest-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: auto;
}

.latest-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
}

.price-wrapper {
  display: flex;
  flex-direction: column;
}

.latest-price-label {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 0.1rem;
  font-weight: 500;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.8rem;
  font-weight: 500;
}

.center-meta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-secondary);
  background: var(--color-navbar);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}

.center-meta.reduced-price {
  color: #f2334c;
  background: none;
  padding: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.latest-area {
  font-size: 0.9rem;
  font-weight: 500;
  color: #555;
  background: rgba(0, 0, 0, 0.04);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.size-icon-small {
  width: 14px;
  height: 14px;
}

.about {
  /* background-image: url("assets/about-cover.jpeg");
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat; */
  padding: 7rem 0;
  background-color: var(--color-navbar);
  color: var(--color-secondary);
}

.about .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.about-img-col {
  position: relative;
}

.about-img-wrapper {
  position: relative;
  border-radius: 20px;
  max-height: 500px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 128, 0.12);
  aspect-ratio: 4/5;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-img-wrapper:hover .about-img {
  transform: scale(1.04);
}

.about-img-badge {
  position: absolute;
  bottom: 1.5rem;
  right: -0.1rem;
  background: var(--color-primary);
  color: #fff;
  padding: 1rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 128, 0.2);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.year-badge {
  font-size: 0.9rem;
}

.badge-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.badge-label {
  display: block;
  font-size: 0.7rem;
  padding-left: 2px;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.about-header-mobile {
  display: none;
  text-align: center;
  margin-bottom: 2.5rem;
}

.about-text-col {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-self: flex-start;
}

.about-eyebrow {
  display: inline;
  width: fit-content;
  font-family: var(--font-montserrat);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  background-color: var(--color-secondary);
  text-transform: uppercase;
  color: var(--color-primary);
  padding: 0.25rem 0.75rem;
  border: 3px solid var(--color-secondary);
  border-radius: 50px;
}

.about-eyebrow2 {
  display: inline;
  width: fit-content;
  font-family: var(--font-montserrat);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  background-color: var(--color-primary);
  text-transform: uppercase;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border: 3px solid var(--color-primary);
  border-radius: 50px;
}

.about-quote {
  margin: 0;
  padding: 1.5rem 2rem;
  border-left: 5px solid #2626de;
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 0 12px 12px 0;
  position: relative;
}

.quote-mark {
  width: 28px;
  height: 21px;
  color: var(--color-primary);
  /* opacity: 0.4; */
  margin-bottom: 0.75rem;
  display: block;
}

.about-quote p {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.65;
  margin: 0 0 0.75rem 0;
  font-weight: 400;
}

.about-quote cite {
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 600;
  opacity: 0.6;
  letter-spacing: 0.04em;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-quote-text {
  font-family: var(--font-italic);
}

/* .about-quote-text::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-primary);
} */
.about-body-title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

.about-body p {
  font-size: 0.97rem;
  line-height: 1.75;
  opacity: 0.75;
  margin: 0;
}

.about-stats-row {
  display: flex;
  gap: 2rem;
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-stat-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.55;
  font-weight: 500;
}

.about-headline {
  font-size: 4rem;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.about-text p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 3rem;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-left: 2rem;
  border-left: 1px solid rgba(255, 233, 233, 0.2);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-data);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.7;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.manifesto {
  padding: 3rem 0;
  background-color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.manifesto-text {
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1.2;
  text-align: center;
  color: #e5e5e5;
  background: linear-gradient(to right, #252d74 50%, #afb1c1 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.1s ease-out;
}

.manifesto-description {
  font-size: clamp(0.5rem, 5vw, 1.5rem);
  font-family: var(--font-heading);
  font-weight: 200;
  line-height: 1.2;
  text-align: center;
  opacity: 0.8;
  color: var(--color-navbar);
  width: 70%;
  margin: 20px auto;
}

.manifesto-description em {
  color: var(--color-navbar);
  font-weight: 500;
}

.trust-bar {
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 128, 0.1);
  border-bottom: 1px solid rgba(0, 0, 128, 0.1);
}

.trust-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
  margin-bottom: 2rem;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-style: italic;
  color: var(--color-primary);
  filter: grayscale(1) opacity(0.5);
  transition: var(--transition-fast);
  cursor: default;
}

.logo:hover {
  filter: grayscale(0) opacity(1);
}

.why-us {
  padding: 8rem 0;
  background-color: #ffffff;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 0.5rem;
}

.bento-card {
  background: #ffffff;
  border: 1px solid var(--color-navbar);
  border-radius: var(--border-radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(255, 130, 0, 0.1);
}

.bento-card svg {
  width: 48px;
  height: 48px;
  color: var(--color-accent);
}

.bento-card h3 {
  font-size: 2rem;
  font-family: var(--font-heading);
  color: var(--color-primary);
}

.bento-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
  justify-content: flex-end;
}

.bento-large svg {
  width: 80px;
  height: 80px;
  margin-bottom: auto;
}

.bento-wide {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-tall {
  grid-column: span 1;
  grid-row: span 2;
}

.bento-square {
  grid-column: span 1;
  grid-row: span 1;
}

.progress-bar-container {
  width: 100%;
  height: 4px;
  background-color: #eaeaea;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: auto;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background-color: var(--color-accent);
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.counter-wrap {
  margin-bottom: auto;
}

.counter {
  font-family: var(--font-data);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent);
}

.packages {
  padding: 8rem 0;
  background-color: #fafafa;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.package-card {
  background-color: #ffffff;
  border-radius: var(--border-radius);
  padding: 3rem 2rem;
  position: relative;
  border: 1px solid #eaeaea;
}

.package-card h3 {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.package-card .divider {
  height: 1px;
  border-bottom: 2px dotted var(--color-accent);
  margin: 1.5rem 0;
}

.package-card .price {
  font-family: var(--font-data);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-card ul li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
  color: #444;
}

.package-card ul li:last-child {
  border-bottom: none;
}

.tier-2 {
  border: 2px solid var(--color-accent);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.tier-2 .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-accent);
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.tier-3 {
  background-color: var(--color-deep);
  color: var(--color-secondary);
  border: none;
}

.tier-3 h3,
.tier-3 .price {
  color: var(--color-accent);
}

.tier-3 ul li {
  color: var(--color-secondary);
  border-bottom-color: rgba(255, 233, 233, 0.1);
}

.manifesto-faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .manifesto-faq-wrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 6rem;
  }
}

.manifesto-faq-img-col {
  flex: 1;
  width: 100%;
}

.manifesto-faq-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.manifesto-faq-content {
  font-family: var(--font-title);
  flex: 1;
  width: 100%;
}

.faq-list {
  width: 100%;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
  text-align: left;
  background: none;
  border: none;
  padding: 2rem 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-primary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item:hover .faq-question {
  color: var(--color-navbar);
}

.faq-answer {
  max-height: 0;
  opacity: 0.6;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-bottom: 2rem;
  opacity: 0.8;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.footer {
  position: relative;
  padding: 8rem 0 4rem;
  background-color: var(--color-primary);
  color: var(--color-secondary);
  overflow: hidden;
}

.footer-gradient {
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 150vw;
  height: 100%;
  background: radial-gradient(ellipse at bottom,
      var(--color-deep) 0%,
      var(--color-primary) 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.footer-logo {
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1;
  margin-bottom: 2rem;
}

.status-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-data);
  font-size: 0.85rem;
  margin-bottom: 3rem;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: #00ff88;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(0, 255, 136, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
  }
}

.footer-links {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-links a {
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-accent);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
}

.btn-whatsapp:hover {
  background-color: #1ebe57;
  transform: translateY(-2px);
}

.lead-form {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: var(--border-radius);
}

.lead-form h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.lead-form input,
.lead-form select {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.5rem;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 233, 233, 0.3);
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-fast);
  box-sizing: border-box;
}

.lead-form input:focus,
.lead-form select:focus {
  outline: none;
  border-bottom-color: var(--color-accent);
}

.lead-form input::placeholder {
  color: rgba(255, 233, 233, 0.5);
}

.lead-form select option {
  background-color: var(--color-primary);
  color: var(--color-secondary);
}

.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
}

@media (max-width: 900px) {
  .section-header {
    flex-direction: column;
    align-items: start;
    gap: 1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255, 233, 233, 0.2);
    padding-top: 2rem;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .about-header-mobile {
    display: block;
  }

  .about-text-col .about-eyebrow {
    display: none;
  }

  .about .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-img-wrapper {
    aspect-ratio: 4/5;
    max-height: 600px;
  }

  .about-img-badge {
    bottom: 1rem;
    /* right: 1rem; */
  }

  .about-stats-row {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .about-img-badge {
    right: -0.1rem;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .manifesto-faq-img-col {
    display: none;
  }

  .manifesto-description {
    width: 90%;
  }
  
  .latest-title{
    font-size: 1.4rem;
 }

  .bento-large,
  .bento-wide,
  .bento-tall,
  .bento-square {
    grid-column: span 1;
    grid-row: auto;
    min-height: 250px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-body-title {
    font-size: 1.3rem;
  }

  .filter-btn {
    font-size: 11.5px;
  }

  .filter-tabs {
    margin-top: 20px;
    gap: 0px;
    padding: 0;
  }

  .section-header {
    flex-direction: column;
  }

  .section-title {
    font-size: 2rem;
  }

  .underline-part2 {
    font-size: 3rem;
  }
}

.testimonials {
  background-color: var(--color-secondary);
  padding: 6rem 0;
  overflow: hidden;
}

.testimonials-top-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 5rem;
}

.testimonials-main-title {
  font-size: 3rem;
  font-family: var(--font-heading);
  color: var(--color-darkpink);
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.testimonials-main-title span {
  /* font-family: var(--font-signature); */
  font-weight: 500;
}

.testimonials-trust-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.1rem;
  color: #555;
}

.trust-logo {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 700;
  font-size: 1rem;
}

.trust-logo svg {
  margin-top: -2px;
}

.testimonials-container {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.testimonials-left {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
}

.testimonials-quote-mark {
  width: 60px;
  height: 60px;
  color: var(--color-primary);
  opacity: 0.3;
  margin-bottom: 1.5rem;
}

.testimonials-heading {
  font-size: 3rem;
  font-family: var(--font-signature);
  color: var(--color-primary);
  font-weight: 200;
  line-height: 1.1;
  margin-bottom: 3rem;
}

.testimonials-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.testimonials-eyebrow {
  /* display: inline; */
  width: fit-content;
  font-family: var(--font-montserrat);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  background-color: var(--color-primary);
  text-transform: uppercase;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border: 3px solid var(--color-primary);
  border-radius: 50px;
  margin-bottom: 2rem;
}

.nav-btn {
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.nav-btn:hover {
  transform: scale(1.1);
}

.nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

.nav-btn svg {
  width: 24px;
  height: 24px;
}

.nav-dots {
  display: flex;
  gap: 0.6rem;
}

.dot {
  width: 30px;
  height: 2px;
  background-color: var(--color-primary);
  opacity: 0.2;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.dot.active {
  opacity: 1;
}

.testimonials-right {
  flex: 1;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-slide {
  flex: 0 0 calc(50% - 1rem);
  display: flex;
  flex-direction: column;
}

.testimonial-bubble {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  position: relative;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 220px;
}

.testimonial-bubble::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 40px;
  border-width: 15px 15px 0;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
  display: block;
  width: 0;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-stars {
  color: var(--color-primary);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 20px;
}

.user-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #eee;
}

.user-details {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 0.2rem 0;
}

.user-time {
  font-size: 0.85rem;
  color: #888;
}

@media (max-width: 992px) {
  .latest-card {
    flex: 0 0 calc(50% - 1.25rem);
  }

  .testimonials-container {
    flex-direction: column;
    gap: 3rem;
  }

  .testimonials-left {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .testimonials-right {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .quote-mark {
    margin-bottom: 1rem;
  }

  .testimonials-heading {
    display: none;
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .testimonial-slide {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .testimonials-eyebrow {
    font-size: 0.6rem;
  }

  .testimonials-main-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .latest-card {
    flex: 0 0 100%;
  }

  .latest-nav {
    gap: 1rem;
    margin-top: 2rem;
  }

  .latest-nav-btn {
    width: 38px;
    height: 38px;
  }

  .latest-nav-btn svg {
    width: 18px;
    height: 18px;
  }
}

.enquire {
  position: relative;
  padding: 6rem 0 7rem;
  background-color: var(--color-secondary);
}

.enquire-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  background-color: #ffffff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow:
    0 40px 90px -40px rgba(84, 0, 33, 0.45),
    0 2px 0 rgba(255, 255, 255, 0.6) inset;
}

.enquire-panel.reveal-card.revealed:hover {
  transform: none;
  box-shadow: 0 40px 90px -40px rgba(84, 0, 33, 0.45);
}

.enquire-info {
  position: relative;
  padding: 3rem 4rem;
  background: linear-gradient(240deg,
      var(--color-primary) 0%,
      var(--color-navbar) 100%);
  /* background-color: var(--color-navbar); */

  color: var(--color-secondary);
  overflow: hidden;
  isolation: isolate;
}

/* .enquire-info::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -25%;
  width: 70%;
  aspect-ratio: 1;
  background: radial-gradient(
    circle,
    rgba(255, 233, 233, 0.16) 0%,
    rgba(255, 233, 233, 0) 68%
  );
  z-index: -1;
} */
/* 
.enquire-info::after {
  content: "";
  position: absolute;
  bottom: -35%;
  left: -22%;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle,
    rgba(255, 233, 233, 0.07) 0 1px,
    rgba(255, 233, 233, 0) 1px 26px
  );
  z-index: -1;
} */

.enquire-info-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.enquire-eyebrow {
  width: fit-content;
  font-family: var(--font-montserrat);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-deep);
  background-color: var(--color-secondary);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.75rem;
}

.enquire-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.enquire-title-script {
  display: block;
  font-family: var(--font-signature);
  font-size: clamp(2.9rem, 4.2vw, 4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-secondary);
  margin-top: 0.15rem;
}

.enquire-desc {
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255, 233, 233, 0.78);
  margin-top: 1.4rem;
  max-width: 42ch;
}

.enquire-contact {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.enquire-contact a {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 0.9rem;
  margin-left: -0.9rem;
  border-radius: 14px;
  color: inherit;
  text-decoration: none;
  transition:
    background-color 0.35s ease,
    transform 0.35s ease;
}

/* .enquire-contact a:hover {
  background-color: rgba(255, 233, 233, 0.09);
  transform: translateX(4px);
} */

.enquire-contact-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: rgba(255, 233, 233, 0.12);
  border: 1px solid rgba(255, 233, 233, 0.16);
  color: var(--color-secondary);
  transition:
    background-color 0.35s ease,
    color 0.35s ease;
}

/* .enquire-contact a:hover .enquire-contact-icon {
  background-color: var(--color-secondary);
  color: var(--color-darkpink);
} */

.enquire-contact-icon svg {
  width: 19px;
  height: 19px;
}

.enquire-contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 0.15rem;
}

.enquire-contact-label {
  font-family: var(--font-montserrat);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 233, 233, 0.55);
}

.enquire-contact-value {
  font-size: 0.97rem;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
}

.enquire-rera {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 2.5rem;
}

.enquire-rera::before {
  content: "";
  height: 1px;
  background: linear-gradient(to right,
      rgba(255, 233, 233, 0.28),
      rgba(255, 233, 233, 0));
  margin-bottom: 1.5rem;
}

.enquire-rera-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-montserrat);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 233, 233, 0.6);
}

.enquire-rera-label svg {
  width: 15px;
  height: 15px;
  color: var(--color-accent);
}

.enquire-rera-no {
  font-family: var(--font-montserrat);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #ffffff;
}

.enquire-form-col {
  padding: 3.75rem 3.25rem;
  background-color: #ffffff;
}

.enquire-form-head {
  margin-bottom: 2.25rem;
}

.enquire-form-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary);
}

.enquire-form-sub {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(17, 17, 17, 0.55);
  margin-top: 0.4rem;
}

.enquire-form {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.enquire-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
}

.enquire-field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 0;
}

.enquire-field label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-montserrat);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(84, 0, 33, 0.7);
}

.enquire-req {
  color: var(--color-accent);
  font-size: 0.85rem;
  line-height: 1;
}

.enquire-optional {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: rgba(84, 0, 33, 0.5);
  background-color: rgba(172, 16, 76, 0.07);
  border-radius: 50px;
  padding: 0.18rem 0.5rem;
}

.enquire-field input,
.enquire-field textarea {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: #1a1a1a;
  background-color: #fffbfb;
  border: 1px solid rgba(172, 16, 76, 0.16);
  border-radius: 12px;
  padding: 0.95rem 1.1rem;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.enquire-field textarea {
  min-height: 100px;
  line-height: 1.6;
  resize: vertical;
}

.enquire-field input::placeholder,
.enquire-field textarea::placeholder {
  color: rgba(17, 17, 17, 0.3);
}

.enquire-field input:hover,
.enquire-field textarea:hover {
  border-color: rgba(172, 16, 76, 0.32);
}

.enquire-field input:focus,
.enquire-field textarea:focus {
  outline: none;
  background-color: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(172, 16, 76, 0.1);
}

.enquire-error {
  display: none;
  font-size: 0.78rem;
  color: #c1273c;
}

.enquire-field.has-error input,
.enquire-field.has-error textarea {
  border-color: #c1273c;
  background-color: #fff7f8;
}

.enquire-field.has-error input:focus,
.enquire-field.has-error textarea:focus {
  box-shadow: 0 0 0 4px rgba(193, 39, 60, 0.12);
}

.enquire-field.has-error .enquire-error {
  display: block;
}

.enquire-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  margin-top: 0.4rem;
  padding: 1.05rem 2rem;
  font-family: var(--font-montserrat);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--color-primary);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    opacity 0.3s ease;
}

.enquire-submit svg {
  width: 17px;
  height: 17px;
  transition: transform 0.35s ease;
}

.enquire-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(172, 16, 76, 0.65);
}

.enquire-submit:hover svg {
  transform: translateX(4px);
}

.enquire-submit:active {
  transform: translateY(0);
}

.enquire-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.enquire-status {
  font-size: 0.88rem;
  line-height: 1.5;
  margin: -0.4rem 0 0;
}

.enquire-status:empty {
  display: none;
}

.enquire-status.is-success {
  color: #12794f;
}

.enquire-status.is-error {
  color: #c1273c;
}

.enquire-consent {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(17, 17, 17, 0.42);
  margin: -0.35rem 0 0;
}

.enquire-consent svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.enquire-form-col .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.enquire-form-col .wpcf7-form>p {
  margin: 0;
}

.enquire-field .wpcf7-form-control-wrap {
  display: block;
}

.enquire-field .wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: #c1273c;
}

.enquire-field input.wpcf7-not-valid,
.enquire-field textarea.wpcf7-not-valid {
  border-color: #c1273c;
  background-color: #fff7f8;
}

.enquire-form-col input.enquire-submit {
  display: block;
  width: 100%;
  padding: 1.05rem 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.6rem center;
  background-size: 17px 17px;
}

.enquire-form-col .wpcf7-spinner {
  margin: 0 auto;
}

.enquire-form-col .wpcf7-response-output {
  margin: 0 !important;
  padding: 0.85rem 1.1rem !important;
  border: 1px solid rgba(172, 16, 76, 0.25) !important;
  border-radius: 10px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.enquire-form-col form.sent .wpcf7-response-output {
  border-color: rgba(18, 121, 79, 0.45) !important;
  color: #12794f;
}

.enquire-form-col form.invalid .wpcf7-response-output,
.enquire-form-col form.unaccepted .wpcf7-response-output,
.enquire-form-col form.failed .wpcf7-response-output {
  border-color: rgba(193, 39, 60, 0.5) !important;
  color: #c1273c;
}

.site-footer {
  --f-ink: #19060c;
  --f-line: rgba(255, 233, 233, 0.11);
  --f-line-soft: rgba(255, 233, 233, 0.06);
  --f-mute: rgba(255, 233, 233, 0.54);
  --f-dim: rgba(255, 233, 233, 0.38);
  --f-cream: #ffe9e9;

  position: relative;
  padding: 0 0 1rem;
  background-color: var(--color-navbar);
  color: var(--f-mute);
  font-family: var(--font-body);
  font-size: 0.94rem;
  overflow: hidden;
  isolation: isolate;
}

.footer-glow {
  position: absolute;
  top: -230px;
  left: 50%;
  width: min(1080px, 130%);
  height: 470px;
  transform: translateX(-50%);
  background: radial-gradient(50% 50% at 50% 50%,
      rgba(172, 16, 76, 0.55) 0%,
      rgba(84, 0, 33, 0.3) 42%,
      rgba(13, 4, 7, 0) 72%);
  filter: blur(24px);
  pointer-events: none;
  z-index: -1;
}

.f-channels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--f-line);
  border-left: 1px solid var(--f-line);
}

.f-channel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.3rem 3.4rem;
  border-right: 1px solid var(--f-line);
  border-bottom: 1px solid var(--f-line);
  color: var(--f-cream);
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.35s ease;
}

.f-channel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(172, 16, 76, 0.06) 0%,
      rgba(3, 79, 171, 0.32) 100%);
  transform: translateY(101%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.f-channel:hover::before,
.f-channel:focus-visible::before {
  transform: translateY(0);
}

.f-channel:focus-visible {
  outline: 1px solid var(--color-accent);
  outline-offset: -1px;
}

.f-channel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--f-cream);
  transition: color 0.35s ease;
}

.f-channel-icon svg {
  width: 100%;
  height: 100%;
}

.f-channel:hover .f-channel-icon {
  color: var(--brand, var(--color-accent));
}

.f-channel-name {
  flex: 1;
  min-width: 0;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.f-channel-arrow {
  display: flex;
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  color: var(--f-dim);
  transition:
    color 0.35s ease,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.f-channel-arrow svg {
  width: 100%;
  height: 100%;
}

.f-channel:hover .f-channel-arrow {
  color: var(--color-accent);
  transform: translateX(5px);
}

.f-cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid var(--f-line);
}

.f-col {
  padding: 2.75rem 3.4rem 3.25rem;
  border-right: 1px solid var(--f-line);
  border-bottom: 1px solid var(--f-line);
}

.f-label {
  font-family: var(--font-montserrat);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--f-dim);
  margin: 0 0 1.5rem;
}

.f-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.f-list a {
  color: var(--f-mute);
  text-decoration: none;
  transition: color 0.3s ease;
}

.f-list a:hover,
.f-list a:focus-visible {
  color: var(--f-cream);
}

.f-list-note {
  font-size: 0.85rem;
  color: rgba(255, 233, 233, 0.34);
}

.site-footer a:focus-visible {
  outline: 1px solid var(--color-accent);
  outline-offset: 3px;
}

.f-address {
  font-style: normal;
  line-height: 1.85;
  color: var(--f-mute);
}

.f-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-montserrat);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hero-gold);
  text-decoration: none;
  transition: gap 0.3s ease;
}

.f-inline-link svg {
  width: 11px;
  height: 11px;
  transition: transform 0.3s ease;
}

.f-inline-link:hover svg {
  transform: translate(2px, -2px);
}

.f-cred-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.9rem;
  color: var(--f-cream);
}

.f-cred-badge svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--color-accent);
}

.f-cred-no {
  width: fit-content;
  margin: 0.9rem 0 0;
  padding: 0.35rem 0.6rem;
  border: 1px dashed var(--f-line);
  font-family: var(--font-montserrat);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: rgba(255, 233, 233, 0.72);
  text-transform: uppercase;
}

.f-brand-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 3rem;
  padding: 3.5rem 0 3.75rem;
}

.f-lockup {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.f-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--f-cream);
}

.f-mark svg {
  width: 100%;
  height: 100%;
}

.f-mark svg path:last-of-type {
  stroke: var(--color-accent);
}

.f-wordmark {
  font-family: var(--font-heading);
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}

.f-wordmark-dot {
  color: var(--color-accent);
}

.f-about {
  display: flex;
  justify-content: space-between;
  /* max-width: 46ch; */
  margin: 1.4rem 0 0;
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--f-mute);
}

.footer-rera-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 100%;
  padding: 0.2rem 0.4rem;
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.35s ease,
    background-color 0.35s ease;
}

.footer-rera-card:hover {
  border-color: rgba(255, 130, 0, 0.45);
  background-color: rgba(255, 233, 233, 0.03);
}

.footer-rera-img {
  display: block;
  width: 86px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.9);
}

.footer-rera-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 86px;
  flex-shrink: 0;
  padding: 1.1rem 0.5rem;
  border: 1px dashed var(--f-line);
  font-family: var(--font-montserrat);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: var(--f-dim);
}

.footer-rera-fallback svg {
  width: 26px;
  height: 26px;
  color: var(--color-accent);
}

.footer-rera-card.is-fallback .footer-rera-img {
  display: none;
}

.footer-rera-card.is-fallback .footer-rera-fallback {
  display: flex;
}

.footer-rera-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.footer-rera-label {
  font-family: var(--font-montserrat);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--f-dim);
}

.footer-rera-no {
  font-family: var(--font-montserrat);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--f-cream);
  word-break: break-word;
}

.f-mega {
  /* padding: 3.25rem 0 2.75rem; */
  overflow: hidden;
  text-align: left;
}

.f-mega-text {
  display: block;
  font-family: var(--font-montserrat);
  font-size: clamp(1.35rem, 5.6vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.2em;
  text-indent: 0.26em;
  white-space: nowrap;
  background: linear-gradient(180deg, var(--hero-gold) 0%, #674905 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-user-select: none;
  user-select: none;
}

.f-baseline {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.6rem;
  border-top: 1px solid var(--f-line-soft);
}

.f-copy {
  margin: 0;
  font-size: 0.84rem;
  color: var(--f-dim);
}

.f-locale {
  margin: 0;
  font-family: var(--font-montserrat);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--f-dim);
}

.s-fb {
  --brand: #4a9bff;
}

.s-ig {
  --brand: #f5679b;
}

.s-yt {
  --brand: #ff4b4b;
}

.s-li {
  --brand: #4c9fe8;
}

.s-pin {
  --brand: #ff4757;
}

.s-tb {
  --brand: #8fa7c4;
}

.s-x {
  --brand: #ffffff;
}

.s-wa {
  --brand: #3ddc7f;
}

@media (max-width: 1100px) {

  .f-channels,
  .f-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .f-brand-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0;
  }

  .footer-rera-card {
    width: fit-content;
  }

  .f-mega {
    text-align: center;
    padding: 2.5rem 0 2rem;
  }
}

@media (max-width: 768px) {
  .f-channels {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .f-channel {
    justify-content: center;
    padding: 1.15rem 0.5rem;
    gap: 0;
  }

  .f-channel-name {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .f-channel-arrow {
    display: none;
  }

  .f-channel-icon {
    width: 22px;
    height: 22px;
  }

  .f-col {
    text-align: center;
    padding: 2.25rem 1.15rem 2.5rem;
  }

  .f-cred-no {
    margin-inline: auto;
  }

  .f-mega {
    text-align: center;
    padding: 2.5rem 0 2rem;
  }

  .f-mega-text {
    letter-spacing: 0.16em;
    text-indent: 0.16em;
  }

  .f-brand-row {
    justify-items: center;
    text-align: center;
  }

  .f-lockup {
    justify-content: center;
  }

  .f-about {
    margin-inline: auto;
  }

  .footer-rera-card {
    width: fit-content;
    margin-inline: auto;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.1rem;
  }

  .footer-rera-img,
  .footer-rera-fallback {
    width: 124px;
  }

  .footer-rera-meta {
    align-items: center;
  }

  .f-baseline {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }
}

@media (max-width: 520px) {
  .f-cols {
    grid-template-columns: minmax(0, 1fr);
  }

  .f-channel {
    padding: 1rem 0.35rem;
  }

  .f-channel-icon {
    width: 20px;
    height: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .f-channel::before,
  .f-channel-arrow,
  .f-inline-link svg,
  .footer-rera-card {
    transition: none;
  }

  .f-channel:hover .f-channel-arrow {
    transform: none;
  }
}

.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 60;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 14px;
  background-color: var(--color-primary);
  color: #ffffff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.94);
  /* box-shadow: 0 12px 28px -10px rgba(255, 130, 0, 0.8); */
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0.35s ease,
    background-color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background-color: #e67500;
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 21px;
  height: 21px;
}

@media (max-width: 992px) {
  .enquire {
    padding: 4.5rem 0 5rem;
  }

  .enquire-panel {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .enquire-info,
  .enquire-form-col {
    padding: 3rem 2.25rem;
  }

  .enquire-desc {
    max-width: none;
  }

  .enquire-rera {
    padding-top: 2rem;
  }
}

@media (max-width: 768px) {
  .enquire {
    padding: 3.5rem 0 4rem;
  }

  .enquire-info,
  .enquire-form-col {
    padding: 2.5rem 1.5rem;
  }

  .enquire-field-row {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .enquire-contact a {
    padding: 0.75rem 0.75rem;
    margin-left: -0.75rem;
  }

  .back-to-top {
    right: 1rem;
    bottom: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .back-to-top svg {
    width: 18px;
    height: 18px;
  }
}

.float-dock {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 70;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.float-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #ffffff;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease,
    background-color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.float-btn svg {
  width: 25px;
  height: 25px;
}

.float-btn:hover {
  transform: translateY(-3px);
}

.float-wa {
  background-color: #25d366;
  /* box-shadow: 0 10px 24px -8px rgba(37, 211, 102, 0.85); */
}

.float-wa:hover {
  background-color: #1ebe57;
}

.float-chat {
  background-color: var(--color-primary);
  /* box-shadow: 0 10px 24px -8px rgba(0, 0, 90, 0.9); */
}

.float-chat svg {
  width: 24px;
  height: 24px;
}

.float-chat-close {
  display: none;
}

body.is-chat-open .float-chat-open {
  display: none;
}

body.is-chat-open .float-chat-close {
  display: block;
}

.float-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: #ffffff;
  font-family: var(--font-montserrat);
  font-size: 0.6rem;
  font-weight: 600;
  border: 2px solid var(--color-primary);
}

body.is-chat-open .float-badge {
  display: none;
}

.chat-panel {
  position: fixed;
  right: 1.5rem;
  bottom: calc(1.5rem + 52px + 0.9rem);
  z-index: 71;
  display: flex;
  flex-direction: column;
  width: min(370px, calc(100vw - 3rem));
  max-height: min(72vh, 620px);
  background-color: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 70px -25px rgba(0, 0, 40, 0.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.98);
  transform-origin: bottom right;
  transition:
    opacity 0.3s ease,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.35s linear;
}

body.is-chat-open .chat-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  background-color: var(--color-navbar);
  color: var(--color-secondary);
}

.chat-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 233, 233, 0.12);
  border: 1px solid rgba(227, 179, 68, 0.55);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #e3b344;
}

.chat-head-text {
  flex: 1;
  min-width: 0;
}

.chat-head-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

.chat-head-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.15rem 0 0;
  font-size: 0.72rem;
  color: rgba(255, 233, 233, 0.65);
}

.chat-online {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #3ddc7f;
}

.chat-x {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: transparent;
  color: rgba(255, 233, 233, 0.75);
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.chat-x:hover {
  background-color: rgba(255, 233, 233, 0.12);
  color: #ffffff;
}

.chat-x svg {
  width: 16px;
  height: 16px;
}

.chat-log {
  flex: 1;
  min-height: 120px;
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.1rem;
  background-color: #fffafa;
}

.chat-msg {
  max-width: 84%;
  padding: 0.7rem 0.95rem;
  font-size: 0.88rem;
  line-height: 1.6;
  border-radius: 14px;
}

.chat-msg-bot {
  align-self: flex-start;
  background-color: #ffffff;
  border: 1px solid rgba(172, 16, 76, 0.14);
  border-bottom-left-radius: 4px;
  color: #24242b;
}

.chat-msg-user {
  align-self: flex-end;
  background-color: var(--color-darkpink);
  border-bottom-right-radius: 4px;
  color: #ffffff;
}

.chat-msg-bot a {
  color: var(--color-darkpink);
  font-weight: 500;
}

.chat-typing {
  align-self: flex-start;
  display: flex;
  gap: 4px;
  padding: 0.85rem 1rem;
  background-color: #ffffff;
  border: 1px solid rgba(172, 16, 76, 0.14);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
}

.chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(172, 16, 76, 0.45);
  animation: chatTyping 1.1s infinite ease-in-out;
}

.chat-typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.chat-typing span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes chatTyping {

  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }

  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0 1.1rem 0.9rem;
  background-color: #fffafa;
}

.chat-quick:empty {
  display: none;
}

.chat-chip {
  padding: 0.5rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--color-darkpink);
  background-color: #ffffff;
  border: 1px solid rgba(172, 16, 76, 0.3);
  border-radius: 50px;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.chat-chip:hover {
  background-color: var(--color-darkpink);
  border-color: var(--color-darkpink);
  color: #ffffff;
}

.chat-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.75rem 1.1rem 0.9rem;
  border-top: 1px solid rgba(172, 16, 76, 0.12);
  background-color: #ffffff;
}

.chat-foot-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 0.5rem;
  border-radius: 10px;
  font-family: var(--font-montserrat);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.chat-foot-btn svg {
  width: 15px;
  height: 15px;
}

.chat-foot-wa {
  background-color: #25d366;
  color: #ffffff;
}

.chat-foot-wa:hover {
  background-color: #1ebe57;
}

.chat-foot-call {
  background-color: rgba(0, 0, 128, 0.06);
  color: var(--color-primary);
}

.chat-foot-call:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

.mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 72;
  gap: 1px;
  padding-bottom: env(safe-area-inset-bottom, 0);
  background-color: rgba(255, 233, 233, 0.14);
  box-shadow: 0 -8px 24px -12px rgba(0, 0, 40, 0.6);
  transform: translateY(101%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-bar.is-visible {
  transform: translateY(0);
}

.mobile-bar-btn {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.05rem 0.5rem;
  font-family: var(--font-montserrat);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.mobile-bar-btn svg {
  width: 17px;
  height: 17px;
}

.mobile-bar-call {
  background-color: var(--color-primary);
  color: var(--color-secondary);
}

.mobile-bar-wa {
  background-color: #25d366;
  color: #ffffff;
}

@media (max-width: 768px) {
  .mobile-bar {
    display: flex;
  }

  .float-wa {
    display: none;
  }

  .float-dock {
    right: 1rem;
    bottom: calc(1rem + 56px);
  }

  .float-btn {
    width: 48px;
    height: 48px;
  }

  .chat-panel {
    right: 0.75rem;
    left: 0.75rem;
    bottom: calc(1rem + 56px + 48px + 0.75rem);
    width: auto;
    max-height: min(66vh, 520px);
  }

  .site-footer {
    padding-bottom: 5.5rem;
  }
}

.ef-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s linear;
}

body.is-enquire-open .ef-overlay {
  opacity: 1;
  visibility: visible;
}

.ef-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(2, 2, 18, 0.6);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.ef-card {
  position: relative;
  width: min(420px, 100%);
  max-height: min(90vh, 680px);
  overflow: visible;
  transform: translateY(14px) scale(0.97);
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

body.is-enquire-open .ef-card {
  transform: translateY(0) scale(1);
}

.ef-panel {
  max-height: min(90vh, 680px);
  padding: 2rem 1.85rem 1.75rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  /* background: linear-gradient(
    155deg,
    var(--color-secondary) 0%,
    var(--color-primary) 100%
  ); */
  background-color: #f6f7f9c6;
  backdrop-filter: blur(50px) saturate(300%);
  -webkit-backdrop-filter: blur(50px) saturate(300%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  /* border-radius: 20px; */
  box-shadow:
    0 30px 70px -25px rgba(0, 0, 20, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .ef-panel {
    background: rgba(255, 233, 233, 0.97);
  }
}

.ef-close {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-secondary);
  cursor: pointer;
  box-shadow: 0 10px 22px -8px rgba(0, 0, 30, 0.75);
  transition:
    background-color 0.3s ease,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ef-close:hover {
  background-color: #00005e;
  transform: rotate(90deg);
}

.ef-close svg {
  width: 14px;
  height: 14px;
}

.ef-eyebrow {
  margin: 0 0 0.4rem;
  font-family: var(--font-montserrat);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 0, 80, 0.55);
}

.ef-title {
  margin: 0;
  font-family: var(--font-montserrat);
  text-transform: uppercase;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.ef-sub {
  margin: 0.45rem 0 1.5rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(0, 0, 80, 0.62);
}

.ef-sub a {
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 128, 0.3);
}

.ef-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ef-field {
  position: relative;
}

.ef-field input,
.ef-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-primary);
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.ef-field textarea {
  min-height: 64px;
  line-height: 1.55;
  resize: vertical;
}

.ef-field label {
  position: absolute;
  top: 0.88rem;
  left: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-body);
  font-size: 0.87rem;
  color: rgba(0, 0, 80, 0.5);
  pointer-events: none;
  transform-origin: left center;
  transition:
    transform 0.22s ease,
    color 0.22s ease;
}

.ef-field input:focus+label,
.ef-field textarea:focus+label,
.ef-field input:not(:placeholder-shown)+label,
.ef-field textarea:not(:placeholder-shown)+label {
  transform: translateY(-0.62rem) scale(0.7);
  color: rgba(0, 0, 128, 0.72);
}

.ef-field input:focus,
.ef-field textarea:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.82);
  border-color: rgba(0, 0, 128, 0.4);
  box-shadow: 0 0 0 3px rgba(0, 0, 128, 0.1);
}

.ef-req {
  color: var(--color-accent);
}

.ef-opt {
  font-family: var(--font-montserrat);
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 80, 0.38);
}

.country-picker-wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
}

.enquire-field-tel .country-picker-wrapper {
  background-color: #fffbfb;
  border: 1px solid rgba(172, 16, 76, 0.16);
  border-radius: 12px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.enquire-field-tel.has-error .country-picker-wrapper {
  border-color: #c1273c;
}

.enquire-field-tel .country-picker-wrapper:focus-within {
  background-color: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(172, 16, 76, 0.1);
}

.enquire-field-tel input {
  flex: 1;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 12px 12px 0 !important;
}

.ef-field-tel .country-picker-wrapper {
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.ef-field-tel.has-error .country-picker-wrapper {
  border-color: rgba(178, 31, 51, 0.65);
}

.ef-field-tel .country-picker-wrapper:focus-within {
  background-color: rgba(255, 255, 255, 0.82);
  border-color: rgba(0, 0, 128, 0.4);
  box-shadow: 0 0 0 3px rgba(0, 0, 128, 0.1);
}

.ef-field-tel input {
  flex: 1;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 12px 12px 0 !important;
}

.custom-country-select {
  position: relative;
  display: flex;
  align-items: stretch;
}

.enquire-field-tel .custom-country-select {
  border-right: 1px solid rgba(172, 16, 76, 0.16);
}

.ef-field-tel .custom-country-select {
  border-right: 1px solid rgba(0, 0, 128, 0.1);
}

.country-select-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.65rem 0.5rem 0.9rem;
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: inherit;
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
}

.enquire-field-tel .country-select-btn {
  color: #1a1a1a;
}

.ef-field-tel .country-select-btn {
  color: var(--color-primary);
}

.country-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 14px;
}

.country-flag-img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.4);
  vertical-align: middle;
  flex-shrink: 0;
  display: block;
}

.country-code {
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
}

.dropdown-icon {
  width: 13px;
  height: 13px;
  transition: transform 0.25s ease;
  opacity: 0.75;
  flex-shrink: 0;
}

.custom-country-select.open .dropdown-icon {
  transform: rotate(180deg);
}

.country-dropdown-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 10000;
  width: 290px;
  max-width: calc(100vw - 32px);
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 14px 36px rgba(0, 0, 80, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 128, 0.12);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.custom-country-select.open .country-dropdown-panel {
  display: flex;
  animation: countryDropdownFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes countryDropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.country-search-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  background: #f8fafc;
  border-bottom: 1px solid rgba(0, 0, 128, 0.08);
}

.country-search-box .search-icon {
  width: 14px;
  height: 14px;
  color: #64748b;
  flex-shrink: 0;
}

.country-search-input {
  width: 100%;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 0.84rem !important;
  color: #1e293b !important;
  font-family: var(--font-body) !important;
  padding: 0 !important;
  height: auto !important;
}

.country-search-input::placeholder {
  color: #94a3b8;
}

.country-dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
  max-height: 240px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.country-dropdown-list::-webkit-scrollbar {
  width: 5px;
}

.country-dropdown-list::-webkit-scrollbar-track {
  background: transparent;
}

.country-dropdown-list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 80, 0.15);
  border-radius: 4px;
}

.country-dropdown-list::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 80, 0.3);
}

.country-section-header {
  padding: 0.45rem 0.85rem 0.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  background: transparent;
  user-select: none;
}

.country-divider {
  height: 1px;
  background: rgba(0, 0, 80, 0.06);
  margin: 0.35rem 0;
  list-style: none;
}

.country-dropdown-list li.country-item {
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: #1e293b;
  transition: background-color 0.15s ease, color 0.15s ease;
  user-select: none;
}

.country-dropdown-list li.country-item:hover,
.country-dropdown-list li.country-item.active {
  background-color: rgba(172, 16, 76, 0.07);
  color: var(--color-primary);
}

.country-dropdown-list li.country-item.active {
  font-weight: 600;
}

.country-dropdown-list li.country-item .flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 14px;
}

.country-dropdown-list li.country-item .name {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.country-dropdown-list li.country-item .code {
  font-weight: 600;
  font-size: 0.8rem;
  color: #64748b;
  flex-shrink: 0;
}

.country-dropdown-list li.country-item:hover .code,
.country-dropdown-list li.country-item.active .code {
  color: var(--color-primary);
}

.country-no-results {
  padding: 1.2rem 0.9rem;
  text-align: center;
  color: #94a3b8;
  font-size: 0.82rem;
  list-style: none;
}

.ef-error {
  display: none;
  margin-top: 0.3rem;
  font-size: 0.73rem;
  color: #b21f33;
}

.ef-field.has-error input,
.ef-field.has-error textarea {
  border-color: rgba(178, 31, 51, 0.65);
}

.ef-field.has-error .ef-error,
.ef-error-agree.is-shown {
  display: block;
}

.ef-status {
  font-size: 0.85rem;
  line-height: 1.45;
  margin-top: 0.5rem;
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
}

.ef-status:empty {
  display: none;
}

.ef-status.is-error {
  color: #b21f33;
  background: rgba(178, 31, 51, 0.08);
  border: 1px solid rgba(178, 31, 51, 0.2);
}

.ef-status.is-success {
  color: #12794f;
  background: rgba(18, 121, 79, 0.08);
  border: 1px solid rgba(18, 121, 79, 0.2);
}

.ef-check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.35rem;
  cursor: pointer;
}

.ef-check input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.ef-check-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 128, 0.28);
  border-radius: 5px;
  color: transparent;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.ef-check-box svg {
  width: 11px;
  height: 11px;
}

.ef-check input:checked+.ef-check-box {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-secondary);
}

.ef-check input:focus-visible+.ef-check-box {
  box-shadow: 0 0 0 3px rgba(0, 0, 128, 0.18);
}

.ef-check-text {
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(0, 0, 80, 0.65);
}

.ef-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem 1.5rem;
  font-family: var(--font-montserrat);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-secondary);
  background-color: var(--color-primary);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease,
    opacity 0.3s ease;
}

.ef-submit svg {
  width: 15px;
  height: 15px;
  transition: transform 0.35s ease;
}

.ef-submit:hover {
  background-color: #00005e;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(0, 0, 128, 0.7);
}

.ef-submit:hover svg {
  transform: translateX(4px);
}

.ef-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.ef-success {
  padding: 0.5rem 0;
  text-align: center;
}

.ef-success-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 128, 0.18);
  color: var(--color-primary);
}

.ef-success-mark svg {
  width: 23px;
  height: 23px;
}

.ef-success-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
}

.ef-success-text {
  font-size: 0.86rem;
  color: rgba(0, 0, 80, 0.62);
}

.ef-success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.ef-success-wa,
.ef-success-done {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.3rem;
  font-family: var(--font-montserrat);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.ef-success-wa {
  background-color: var(--color-primary);
  color: var(--color-secondary);
}

.ef-success-wa:hover {
  background-color: #00005e;
}

.ef-success-done {
  background-color: rgba(255, 255, 255, 0.5);
  border-color: rgba(0, 0, 128, 0.22);
  color: var(--color-primary);
}

.ef-success-done:hover {
  background-color: var(--color-primary);
  color: var(--color-secondary);
}

@media (max-width: 560px) {
  .ef-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .ef-card {
    width: 100%;
    max-height: 92vh;
    transform: translateY(100%) scale(1);
  }

  body.is-enquire-open .ef-card {
    transform: translateY(0);
  }

  .ef-panel {
    max-height: 92vh;
    padding: 1.75rem 1.25rem 2rem;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
  }

  .ef-close {
    top: 2px;
    right: 0.1rem;
  }

  .ef-title {
    font-size: 1.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  .ef-overlay,
  .ef-card,
  .ef-field label,
  .ef-close {
    transition-duration: 0.01ms;
  }
}

body {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

input,
textarea,
select,
[contenteditable="true"],
.selectable {
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
  -webkit-touch-callout: default;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
  pointer-events: auto;
}