@charset "UTF-8";
:root {
  --bg:#f7f4ed;
  --primary-clr: #C0392B;
  --orange:#E8602C;
  --yellow:#d78600;
  --green:#2D6A4F;
  --primary-blue:#0f4a95;
  --sec-blue:#009CB3;
  --primary-grey:#E9E9E9;
  --primary-green:#027822;
  --clr-txt: #1A1A1A;
  --main-font: "Playfair Display", serif;
  --body-font: "Inter", sans-serif;
  --phone-width: clamp(260px,20vw,360px);
  --screen-width: calc(var(--phone-width) * 0.895); }

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  font-size: 100% !important;
  font-family: inherit;
  scroll-behavior: smooth; }

body {
  box-sizing: border-box;
  font-family: var(--body-font) !important;
  font-size: 100% !important;
  color: #383838;
  background-color: var(--bg);
  overflow-x: hidden; }

h1 {
  color: var(--primary-clr); }

.img-responsive {
  width: 100%;
  max-width: 100%;
  height: auto; }

.mt-10 {
  margin-top: 10px; }

.mt-20 {
  margin-top: 20px; }

.mt-40 {
  margin-top: 40px; }

.pt-10 {
  padding-top: 10px; }

.pt-20 {
  padding-top: 20px; }

.header {
  padding: 0 20px;
  background-color: white; }
  .header__fbox {
    display: flex; }
  @media (min-width: 320px) and (max-width: 767px) {
    .header {
      padding: 5px 10px; } }

/* ── Navbar shell ────────────────────────────────── */
.navbar {
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 5px 2rem;
  /* start transparent on hero, transitions to solid */
  background: white;
  transition: background 0.35s ease, box-shadow 0.35s ease, height 0.3s ease; }

/* Scrolled state — added via JS */
.navbar.scrolled {
  background: #fefcf9;
  box-shadow: 0 1px 0 #00000012, 0 4px 20px #0000000f;
  height: 60px; }

/* ── Logo ────────────────────────────────────────── */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0; }

.logo-emblem {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease; }

.navbar__logo:hover .logo-emblem {
  transform: rotate(-8deg) scale(1.05); }

.logo-emblem svg {
  width: 22px;
  height: 22px;
  fill: #fff; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1; }

.logo-text__main {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em; }

.logo-text__sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px; }

/* Invert logo text on transparent (hero) bg */
.navbar:not(.scrolled) .logo-text__main,
.navbar:not(.scrolled) .logo-text__sub {
  color: #fff; }

.navbar:not(.scrolled) .logo-text__sub {
  color: #ffffffbf; }

/* ── Nav links (desktop) ─────────────────────────── */
.navbar__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
  list-style: none; }

.navbar__links li a {
  display: block;
  padding: 7px 16px;
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-clr);
  text-decoration: none;
  border-radius: 8px;
  position: relative;
  transition: color 0.2s, background 0.2s; }

/* underline bar */
.navbar__links li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left; }

.navbar__links li a:hover {
  color: var(--primary);
  background: #c0392b0f; }

.navbar__links li a:hover::after {
  transform: scaleX(1); }

.navbar__links li a.active {
  color: var(--primary); }

.navbar__links li a.active::after {
  transform: scaleX(1); }

/* Invert links on hero */
.navbar:not(.scrolled) .navbar__links li a {
  color: var(--primary-clr); }

.navbar:not(.scrolled) .navbar__links li a:hover {
  color: var(--primary-clr);
  background: #ffffff1f; }

.navbar:not(.scrolled) .navbar__links li a::after {
  background: var(--primary-clr); }

/* CTA button */
.navbar__cta {
  margin-left: 0.75rem;
  padding: 9px 20px !important;
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: 40px !important;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important;
  white-space: nowrap; }

.navbar__cta::after {
  display: none !important; }

.navbar__cta:hover {
  background: var(--accent) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px #c0392b59 !important; }

.navbar:not(.scrolled) .navbar__cta {
  background: #fff !important;
  color: var(--primary) !important; }

.navbar:not(.scrolled) .navbar__cta:hover {
  background: var(--primary) !important;
  color: #fff !important; }

/* ── Hamburger button ────────────────────────────── */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s; }

.navbar__hamburger:hover {
  background: #0000000f; }

.navbar__hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--dark);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, width 0.3s ease;
  transform-origin: center; }

.navbar:not(.scrolled) .navbar__hamburger span {
  background: #fff; }

.navbar__hamburger span:nth-child(1) {
  width: 24px; }

.navbar__hamburger span:nth-child(2) {
  width: 18px; }

.navbar__hamburger span:nth-child(3) {
  width: 24px; }

/* Open state animation */
.navbar__hamburger.open span:nth-child(1) {
  width: 24px;
  transform: translateY(7px) rotate(45deg); }

.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0); }

.navbar__hamburger.open span:nth-child(3) {
  width: 24px;
  transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu drawer ──────────────────────────── */
.navbar__mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: #fefcf9;
  padding: 1rem 1.5rem 2rem;
  box-shadow: 0 20px 40px #0000001f;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  border-bottom: 3px solid var(--primary); }

.navbar.scrolled ~ .navbar__mobile-menu,
.navbar__mobile-menu {
  top: var(--nav-h); }

.navbar__mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all; }

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px; }

.mobile-nav-list li {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease; }

.navbar__mobile-menu.open .mobile-nav-list li {
  opacity: 1;
  transform: translateX(0); }

.navbar__mobile-menu.open .mobile-nav-list li:nth-child(1) {
  transition-delay: 0.05s; }

.navbar__mobile-menu.open .mobile-nav-list li:nth-child(2) {
  transition-delay: 0.10s; }

.navbar__mobile-menu.open .mobile-nav-list li:nth-child(3) {
  transition-delay: 0.15s; }

.navbar__mobile-menu.open .mobile-nav-list li:nth-child(4) {
  transition-delay: 0.20s; }

.mobile-nav-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s, padding-left 0.2s; }

.mobile-nav-list li a:hover {
  background: #c0392b12;
  color: var(--primary);
  padding-left: 22px; }

.mobile-nav-list li a.active {
  color: var(--primary);
  background: #c0392b12; }

.mobile-nav-icon {
  width: 34px;
  height: 34px;
  background: #f0ebe3;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s; }

.mobile-nav-list li a:hover .mobile-nav-icon,
.mobile-nav-list li a.active .mobile-nav-icon {
  background: #c0392b1f; }

.mobile-nav-icon svg {
  width: 16px;
  height: 16px; }

.mobile-divider {
  height: 1px;
  background: #ece7df;
  margin: 12px 0; }

.mobile-cta {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  background: var(--primary);
  color: #fff !important;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s; }

.mobile-cta:hover {
  background: var(--accent) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px #c0392b4d; }

.mobile-tagline {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
  letter-spacing: 0.04em; }

/* Overlay behind mobile menu */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: #1a120859;
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999; }

.nav-overlay.open {
  opacity: 1;
  pointer-events: all; }

/* ── Responsive breakpoint ───────────────────────── */
@media (max-width: 768px) {
  .navbar__links {
    display: none; }
  .navbar__hamburger {
    display: flex; }
  .navbar {
    padding: 0 1.25rem; } }

/* ── Demo hero (just to show transparent→solid effect) */
.demo-hero {
  height: 100vh;
  background: linear-gradient(160deg, #1a3320 0%, #2d6a4f 50%, #1a1208 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  text-align: center; }

.demo-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 5vw, 52px);
  color: #fff; }

.demo-hero p {
  font-size: 16px;
  color: #ffffffb3; }

.demo-hero small {
  position: absolute;
  bottom: 1.5rem;
  color: #ffffff73;
  font-size: 12px; }

.demo-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center; }

.demo-section p {
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--muted); }

.hm__top {
  padding: 100px 3%;
  background-color: var(--bg);
  /* ── Outer pill wrapper ── */
  /* Search icon */
  /* Input field */
  /* Clear button — shows when typing */
  /* ── The rounded Search button ── */
  /* shimmer on hover */
  /* ── Autocomplete dropdown ── */
  /* ── Quick pill tags below search ── */ }
  @media (min-width: 320px) and (max-width: 767px) {
    .hm__top {
      padding: 60px 3%; } }
  .hm__top--fbox {
    display: flex;
    flex-direction: column;
    height: 60vh;
    justify-content: center;
    align-items: center; }
    .hm__top--fbox h1 {
      font-size: 3.5rem;
      text-align: center;
      line-height: 1.2;
      color: var(--clr-txt);
      padding: 10px 0;
      font-family: var(--main-font);
      font-weight: 500; }
      @media (min-width: 320px) and (max-width: 767px) {
        .hm__top--fbox h1 {
          font-size: 1.5625rem; } }
    .hm__top--fbox .tagline {
      display: flex;
      background-color: var(--primary-clr);
      color: white;
      padding: 5px 20px;
      font-family: var(--body-font);
      border-radius: 25px;
      font-weight: 300;
      font-size: 0.875rem; }
      .hm__top--fbox .tagline p {
        padding: 0 5px; }
    .hm__top--fbox .desc {
      font-family: var(--body-font);
      font-size: 1.25rem;
      padding: 5px 0; }
      @media (min-width: 320px) and (max-width: 767px) {
        .hm__top--fbox .desc {
          font-size: 1.125rem;
          text-align: center; } }
  .hm__top .search-section {
    width: 100%;
    max-width: 640px; }
  .hm__top .search-heading {
    font-family: var(--font-head);
    font-size: clamp(22px, 4vw, 32px);
    color: var(--dark);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.25; }
  .hm__top .search-wrapper {
    position: relative;
    width: 100%; }
  .hm__top .search-bar {
    display: flex;
    align-items: center;
    background: var(--card);
    border: 1.5px solid var(--clr-txt);
    border-radius: 60px;
    padding: 6px 6px 6px 22px;
    gap: 10px;
    box-shadow: 0 2px 12px #00000038;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    background-color: white;
    font-family: var(--body-font);
    margin-top: 25px; }
  .hm__top .search-bar:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px #c0392b1a, 0 4px 20px #1a12081a; }
  .hm__top .search-icon {
    flex-shrink: 0;
    color: var(--muted);
    display: flex;
    align-items: center;
    transition: color 0.2s; }
  .hm__top .search-bar:focus-within .search-icon {
    color: var(--primary); }
  .hm__top .search-icon svg {
    width: 18px;
    height: 18px; }
  .hm__top .search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--dark);
    outline: none;
    min-width: 0;
    padding: 8px 0; }
  .hm__top .search-input::placeholder {
    color: #b0a396; }
  .hm__top .search-clear {
    display: none;
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border: none;
    background: #ede7de;
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: background 0.2s, color 0.2s; }
  .hm__top .search-clear:hover {
    background: #ddd3c6;
    color: var(--dark); }
  .hm__top .search-clear.visible {
    display: flex; }
  .hm__top .search-clear svg {
    width: 12px;
    height: 12px; }
  .hm__top .search-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    background: var(--primary-clr);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.01em;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
    font-family: var(--body-font); }
  .hm__top .search-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, #ffffff2e 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.4s ease; }
  .hm__top .search-btn:hover::before {
    transform: translateX(100%); }
  .hm__top .search-btn:hover {
    background: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px #c0392b61;
    color: var(--primary-clr); }
  .hm__top .search-btn:active {
    transform: translateY(0px);
    box-shadow: 0 2px 8px #c0392b4d; }
  .hm__top .search-btn svg {
    width: 15px;
    height: 15px; }
  .hm__top .search-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 8px 30px #1a12081f;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 100; }
  .hm__top .search-dropdown.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all; }
  .hm__top .dropdown-section-title {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 12px 18px 6px; }
  .hm__top .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    cursor: pointer;
    transition: background 0.15s; }
  .hm__top .dropdown-item:hover {
    background: #faf7f2; }
  .hm__top .dropdown-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f0ebe3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px; }
  .hm__top .dropdown-item-text {
    flex: 1; }
  .hm__top .dropdown-item-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark); }
  .hm__top .dropdown-item-meta {
    font-size: 11px;
    color: var(--muted);
    margin-top: 1px; }
  .hm__top .dropdown-item-count {
    font-size: 11px;
    color: var(--primary);
    font-weight: 600; }
  .hm__top .dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 18px; }
  .hm__top .dropdown-footer {
    padding: 10px 18px 14px;
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px; }
  .hm__top .dropdown-footer svg {
    width: 13px;
    height: 13px; }
  .hm__top .quick-search {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 14px;
    padding: 0 4px; }
  .hm__top .quick-label {
    font-size: 12px;
    color: var(--muted);
    flex-shrink: 0; }
  .hm__top .quick-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 13px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 40px;
    font-size: 12px;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.15s;
    user-select: none; }
  .hm__top .quick-pill:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--primary-clr);
    transform: translateY(-1px); }
  .hm__top .quick-pill span {
    font-size: 13px; }

.hm__location {
  padding: 50px 3%; }
  .hm__location .main-title {
    font-family: var(--main-font);
    color: var(--primary-clr);
    font-size: 2.1875rem;
    text-align: center;
    margin: 20px 0;
    font-weight: 500; }
    @media (min-width: 320px) and (max-width: 767px) {
      .hm__location .main-title {
        margin: 10px 0;
        font-size: 1.5625rem; } }
  .hm__location--fbox {
    display: flex; }
    @media (min-width: 320px) and (max-width: 767px) {
      .hm__location--fbox {
        flex-wrap: wrap;
        justify-content: space-evenly; } }
    .hm__location--fbox > div {
      flex-basis: 20%;
      background-color: aquamarine;
      min-height: 400px;
      margin: 5px;
      border-radius: 7px;
      transition: all ease 0.35s;
      position: relative;
      background-size: cover;
      background-position: center center; }
      @media (min-width: 320px) and (max-width: 767px) {
        .hm__location--fbox > div {
          flex-basis: 42%;
          min-height: 200px; } }
      .hm__location--fbox > div:hover {
        flex-basis: 50%; }
        @media (min-width: 320px) and (max-width: 767px) {
          .hm__location--fbox > div:hover {
            flex-basis: 42%; } }
        .hm__location--fbox > div:hover .data {
          opacity: 1;
          transform: translateY(0);
          margin-top: 8px;
          max-height: 200px;
          /* enough for your text */ }
      .hm__location--fbox > div a {
        text-decoration: none; }
      .hm__location--fbox > div .title {
        font-size: 2.5rem;
        color: white;
        text-decoration: none;
        font-weight: 400;
        font-family: var(--main-font); }
        @media (min-width: 320px) and (max-width: 767px) {
          .hm__location--fbox > div .title {
            font-size: 1.25rem; } }
      .hm__location--fbox > div .data {
        font-size: 17px;
        color: white;
        font-weight: 300;
        line-height: 1.2;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
        max-height: 0;
        overflow: hidden;
        margin-top: 0; }
      .hm__location--fbox > div .data-container {
        position: absolute;
        bottom: 10px;
        left: 0;
        padding: 10px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end; }
      .hm__location--fbox > div.one {
        background-image: linear-gradient(to bottom, #7e7c7c26 0%, #010101 100%), url(../images/location-alibag.webp); }
      .hm__location--fbox > div.two {
        background-image: linear-gradient(to bottom, #7e7c7c26 0%, #010101 100%), url(../images/location-karjat.webp); }
      .hm__location--fbox > div.three {
        background-image: linear-gradient(to bottom, #7e7c7c26 0%, #010101 100%), url(../images/location-lonavala.webp); }
      .hm__location--fbox > div.four {
        background-image: linear-gradient(to bottom, #7e7c7c26 0%, #010101 100%), url(../images/location-neral.webp); }
      .hm__location--fbox > div.five {
        background-image: linear-gradient(to bottom, #7e7c7c26 0%, #010101 100%), url(../images/location-badlapur.webp); }

.hm__card {
  padding: 50px 3%; }
  @media (min-width: 320px) and (max-width: 767px) {
    .hm__card {
      padding: 30px 3%; } }
  .hm__card .main-title {
    font-family: var(--main-font);
    color: var(--primary-clr);
    font-size: 2.1875rem;
    text-align: center;
    margin: 20px 0;
    font-weight: 500; }
    @media (min-width: 320px) and (max-width: 767px) {
      .hm__card .main-title {
        font-size: 1.5625rem;
        margin: 0; } }
  .hm__card--fbox {
    display: flex;
    flex-wrap: wrap;
    /* Image */
    /* Overlay (for readability + anti-lens trick) */
    /* Content */
    /* Title */
    /* Meta */
    /* CTA */
    /* Hover Effects */ }
    .hm__card--fbox > div {
      width: 25%; }
      @media (min-width: 320px) and (max-width: 767px) {
        .hm__card--fbox > div {
          width: 100%; } }
    .hm__card--fbox .card {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      background: #fff;
      margin: 10px; }
    .hm__card--fbox .card-image {
      position: relative;
      display: block; }
    .hm__card--fbox .card-image img {
      width: 100%;
      height: 320px;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease; }
    .hm__card--fbox .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent); }
    .hm__card--fbox .prop-name {
      color: var(--clr-txt);
      font-size: 17px;
      font-weight: 600; }
    .hm__card--fbox .prop-type {
      position: absolute;
      right: 10px;
      top: 10px; }
      .hm__card--fbox .prop-type.resort p {
        background-color: var(--orange); }
      .hm__card--fbox .prop-type.villa p {
        background-color: var(--yellow); }
      .hm__card--fbox .prop-type p {
        color: white;
        padding: 5px 10px;
        font-size: 14px;
        border-radius: 5px; }
    .hm__card--fbox .prod-cost-title {
      font-size: 13px;
      color: var(--clr-txt);
      font-weight: 500; }
    .hm__card--fbox .prod-cost {
      color: var(--bg);
      background-color: var(--green);
      padding: 5px 10px;
      font-size: 1rem;
      border: 1px solid var(--primary-green);
      border-radius: 5px;
      font-weight: 600; }
    .hm__card--fbox .prod-detail-fbox {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      /* flex-direction: column-reverse; */
      padding-top: 10px; }
    .hm__card--fbox .card-content {
      position: absolute;
      bottom: 6px;
      color: #fff;
      padding: 10px 5px;
      width: 96%;
      border-radius: 5px;
      background-color: #ffffffeb;
      margin: auto;
      left: 6px; }
      .hm__card--fbox .card-content-inner-fbox {
        display: flex;
        flex-direction: column; }
    .hm__card--fbox .location-fbox {
      display: flex;
      justify-content: space-between;
      color: var(--clr-txt);
      margin: 10px 0;
      font-size: 15px; }
      .hm__card--fbox .location-fbox span {
        font-weight: 500;
        background-color: var(--primary-clr);
        color: var(--bg);
        padding: 5px;
        font-size: 12px;
        border-radius: 5px; }
    .hm__card--fbox .card-title {
      display: block;
      font-family: var(--body-font);
      font-size: 18px;
      color: var(--clr-txt);
      text-decoration: none;
      margin-bottom: 4px;
      font-weight: 600; }
    .hm__card--fbox .card-meta {
      font-size: 14px;
      background-color: #E8602C;
      font-weight: 600;
      padding: 5px;
      border-radius: 5px;
      margin: 5px 0; }
    .hm__card--fbox .card-cta {
      font-size: 15px;
      color: var(--primary-clr);
      text-decoration: none;
      font-weight: 600;
      display: inline-block;
      transition: all 0.3s ease; }
    .hm__card--fbox .card:hover img {
      transform: scale(1.05); }
    .hm__card--fbox .card:hover .card-cta {
      border-color: #fff; }
  .hm__card--ctabox {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0; }
    .hm__card--ctabox a {
      background-color: var(--primary-clr);
      color: white;
      font-size: 16px;
      border-radius: 5px;
      padding: 7px 14px; }

.hm__why {
  padding: 100px 3%;
  background-color: #e6e6e6; }
  @media (min-width: 320px) and (max-width: 767px) {
    .hm__why {
      padding: 50px 3%; } }
  .hm__why .main-title {
    font-family: var(--main-font);
    color: var(--clr-txt);
    font-size: 2.1875rem;
    text-align: center;
    margin: 20px 0;
    font-weight: 500; }
    @media (min-width: 320px) and (max-width: 767px) {
      .hm__why .main-title {
        font-size: 1.5625rem; } }
    .hm__why .main-title span {
      color: var(--primary-clr); }
  .hm__why--fbox {
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 60px; }
    @media (min-width: 320px) and (max-width: 767px) {
      .hm__why--fbox {
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center; } }
    .hm__why--fbox .line {
      position: absolute;
      top: 40px;
      left: 26px;
      height: 3px;
      width: 0%;
      background: #C0392B;
      z-index: 0; }
      @media (min-width: 320px) and (max-width: 767px) {
        .hm__why--fbox .line {
          display: none; } }
    .hm__why--fbox > div {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-width: 120px; }
      @media (min-width: 320px) and (max-width: 767px) {
        .hm__why--fbox > div {
          width: 42%; } }
    .hm__why--fbox .title {
      color: var(--clr-txt);
      font-weight: 500;
      font-size: 1rem;
      font-family: var(--body-font);
      text-align: center; }
    .hm__why--fbox svg {
      width: 75px;
      height: 75px;
      z-index: 5;
      position: relative; }

.hm__review {
  padding: 50px 0;
  /* SECTION */
  /* CAROUSEL */
  /* SLIDES */
  /* ACTIVE CENTER */
  /* PHONE MOCKUP */ }
  .hm__review .main-title {
    font-family: var(--main-font);
    color: var(--primary-clr);
    font-size: 2.1875rem;
    text-align: center;
    margin: 20px 0 0;
    font-weight: 500; }
    @media (min-width: 320px) and (max-width: 767px) {
      .hm__review .main-title {
        font-size: 1.5625rem; } }
  .hm__review .sub-title {
    font-size: 1rem;
    text-align: center; }
    @media (min-width: 320px) and (max-width: 767px) {
      .hm__review .sub-title {
        padding: 10px; } }
  .hm__review--cta {
    margin-top: 30px; }
    .hm__review--cta a {
      color: white;
      background-color: var(--primary-clr);
      padding: 10px 15px;
      font-size: 1.1rem;
      font-weight: 400;
      text-decoration: none;
      border-radius: 5px; }
  .hm__review .phone-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden; }
  .hm__review .carousel {
    display: flex;
    align-items: center;
    gap: 0;
    transition: transform .8s ease;
    will-change: transform; }
  .hm__review .slide {
    width: var(--screen-width);
    flex-shrink: 0;
    opacity: .25;
    transform: scale(0.82);
    transition: all .8s ease; }
  .hm__review .slide.active {
    opacity: 1;
    transform: scale(1); }
  .hm__review .slide img {
    width: 102%;
    height: 102%;
    border-radius: 40px;
    object-fit: cover; }
  .hm__review .phone-mockup {
    position: absolute;
    left: 50%;
    top: 50%;
    width: var(--phone-width);
    aspect-ratio: 9/19;
    transform: translate(-50%, -50%);
    background: url("../mockup.webp") center/contain no-repeat;
    pointer-events: none;
    z-index: 10; }

.prod__top {
  position: relative;
  z-index: 99; }
  .prod__top--bg > img {
    width: 100%;
    height: auto; }

.prod__fold1 {
  margin: -130px 5% 0;
  display: flex;
  z-index: 999;
  position: relative;
  gap: 10px; }
  @media (min-width: 320px) and (max-width: 767px) {
    .prod__fold1 {
      margin: -30px 3% 0;
      flex-direction: column;
      align-items: center; } }
  .prod__fold1--fbox {
    display: flex;
    flex-direction: column; }
    .prod__fold1--fbox > div:nth-child(2) {
      margin-top: 3px;
      display: flex;
      column-gap: 10px; }
  .prod__fold1 > div:nth-child(1) {
    width: 20%;
    padding: 5px;
    background-color: var(--bg); }
    @media (min-width: 320px) and (max-width: 767px) {
      .prod__fold1 > div:nth-child(1) {
        width: 60%; } }
  .prod__fold1 > div:nth-child(2) {
    width: 80%;
    background-color: var(--bg);
    padding: 10px;
    gap: 5px; }
    @media (min-width: 320px) and (max-width: 767px) {
      .prod__fold1 > div:nth-child(2) {
        width: 100%; } }
    .prod__fold1 > div:nth-child(2) h1 {
      color: var(--primary-clr);
      font-family: var(--main-font);
      font-size: 30px;
      margin: 0;
      padding: 0; }
    .prod__fold1 > div:nth-child(2) .prop-location {
      background-color: var(--primary-blue);
      color: white;
      padding: 5px 10px;
      border-radius: 5px;
      font-size: 0.8125rem;
      display: flex; }
      .prod__fold1 > div:nth-child(2) .prop-location svg {
        width: 13px;
        height: 13px; }
    .prod__fold1 > div:nth-child(2) .prop-type {
      color: white;
      padding: 5px 10px;
      font-size: 0.8125rem;
      border-radius: 5px;
      background-color: var(--yellow); }
    .prod__fold1 > div:nth-child(2) .prop-distance {
      padding: 5px 10px;
      font-size: 0.8125rem;
      border-radius: 5px;
      background-color: var(--bg);
      color: var(--primary-blue);
      border: 1px solid var(--primary-blue); }
    .prod__fold1 > div:nth-child(2) .fbox--info {
      display: flex;
      width: 100%;
      column-gap: 20px;
      border: 1px dashed #00000024;
      /* row-gap: 10px; */
      padding: 10px 5px;
      border-radius: 3px;
      justify-content: space-around;
      background-color: white; }
      @media (min-width: 320px) and (max-width: 767px) {
        .prod__fold1 > div:nth-child(2) .fbox--info {
          flex-wrap: wrap;
          row-gap: 15px; } }
      .prod__fold1 > div:nth-child(2) .fbox--info-inner {
        display: flex;
        align-items: center;
        gap: 5px; }
        @media (min-width: 320px) and (max-width: 767px) {
          .prod__fold1 > div:nth-child(2) .fbox--info-inner {
            width: 45%; } }
        .prod__fold1 > div:nth-child(2) .fbox--info-inner .title {
          font-size: 12px;
          color: var(--primary-clr);
          font-weight: 600; }
        .prod__fold1 > div:nth-child(2) .fbox--info-inner .data {
          font-size: 14px; }
          .prod__fold1 > div:nth-child(2) .fbox--info-inner .data.other {
            color: #383838;
            padding: 1px 0; }
          .prod__fold1 > div:nth-child(2) .fbox--info-inner .data.amount {
            background-color: var(--green);
            font-weight: 400;
            color: white;
            text-align: center;
            padding: 3px 0;
            border-radius: 2px; }
        .prod__fold1 > div:nth-child(2) .fbox--info-inner svg {
          width: 40px;
          height: 40px; }
    .prod__fold1 > div:nth-child(2) .cta-call {
      margin: 15px 0;
      display: flex; }
      @media (min-width: 320px) and (max-width: 767px) {
        .prod__fold1 > div:nth-child(2) .cta-call {
          justify-content: center;
          position: fixed;
          bottom: 0;
          left: 0;
          width: 100%;
          background-color: var(--primary-clr);
          margin: 0;
          z-index: 99999;
          padding: 5px 0; } }
      .prod__fold1 > div:nth-child(2) .cta-call svg {
        width: 13px;
        height: 13px; }
      .prod__fold1 > div:nth-child(2) .cta-call a {
        text-decoration: none;
        color: white;
        background-color: var(--primary-clr);
        padding: 10px;
        font-size: 15px; }

.prod__fold2 {
  padding: 50px 5%; }
  @media (min-width: 320px) and (max-width: 767px) {
    .prod__fold2 {
      padding: 30px 3%; } }
  .prod__fold2--bar {
    display: flex;
    gap: 10px; }
    .prod__fold2--bar > div {
      padding: 10px;
      background-color: white; }
      @media (min-width: 320px) and (max-width: 767px) {
        .prod__fold2--bar > div {
          padding: 0; } }
      .prod__fold2--bar > div a {
        text-decoration: none;
        color: var(--primary-clr); }
  .prod__fold2 .sec__overview {
    padding: 25px;
    margin-top: 20px;
    background-color: white; }
    @media (min-width: 320px) and (max-width: 767px) {
      .prod__fold2 .sec__overview {
        padding: 5px; } }
  .prod__fold2 .sec__inner--fbox {
    display: flex; }

.fbox__icondata--outer {
  display: flex;
  gap: 25px;
  flex-wrap: wrap; }
  @media (min-width: 320px) and (max-width: 767px) {
    .fbox__icondata--outer {
      column-gap: 5px; } }

.maintitle-icondata {
  color: var(--primary-clr);
  font-size: 1.625rem;
  font-weight: 500; }
  @media (min-width: 320px) and (max-width: 767px) {
    .maintitle-icondata {
      font-size: 1.4375rem; } }
  .maintitle-icondata span {
    position: relative;
    display: inline-block;
    z-index: 1; }
    .maintitle-icondata span::after {
      content: "";
      position: absolute;
      left: -4px;
      bottom: 6px;
      width: calc(100% + 8px);
      height: 16px;
      background: #ffe66d;
      border-radius: 4px;
      z-index: -1;
      transform: scaleX(var(--scaleValue, 0)) rotate(var(--rotateValue, -1.5deg));
      transform-origin: left center; }

@keyframes markerSwipe {
  to {
    width: calc(100% + 8px); } }

.title-icondata {
  color: var(--primary-clr);
  font-size: 1.125rem;
  margin: 10px 0; }
  @media (min-width: 320px) and (max-width: 767px) {
    .title-icondata {
      margin: 20px 0 5px; } }

.fbox__icondata {
  display: flex;
  width: 20%; }
  @media (min-width: 320px) and (max-width: 767px) {
    .fbox__icondata {
      width: 45%; } }
  .fbox__icondata svg {
    width: 36px;
    height: 36px; }
  .fbox__icondata .title {
    font-size: 0.75rem;
    color: var(--primary-clr);
    font-weight: 600; }
  .fbox__icondata .data {
    color: #383838;
    padding: 1px 0;
    font-size: 0.875rem; }

.iframe-yt {
  width: 80%;
  height: 400px;
  border-radius: 15px; }
  @media (min-width: 320px) and (max-width: 767px) {
    .iframe-yt {
      width: 100%;
      height: auto;
      border-radius: 5px; } }

/* Gallery Wrapper */
.akxGalleryWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px; }

/* Gallery Item */
.akxGalleryItem {
  width: calc(25% - 12px);
  cursor: pointer;
  overflow: hidden;
  border-radius: 14px;
  position: relative;
  background: #ddd; }

.akxGalleryItem img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease; }

.akxGalleryItem:hover img {
  transform: scale(1.08); }

/* =========================
   MODAL
========================= */
.akxGalleryModal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
  z-index: 99999; }

.akxGalleryModal.akxGalleryActive {
  opacity: 1;
  visibility: visible; }

/* Modal Image */
.akxGalleryModalInner {
  width: 90%;
  max-width: 900px;
  position: relative; }

.akxGalleryModalImg {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 14px; }

/* Close Button */
.akxGalleryClose {
  position: absolute;
  top: -50px;
  right: 0;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  line-height: 1; }

/* Arrow Buttons */
.akxGalleryArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 26px;
  z-index: 2; }

.akxGalleryPrev {
  left: -80px; }

.akxGalleryNext {
  right: -80px; }

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .akxGalleryItem {
    width: calc(50% - 8px); }
  .akxGalleryItem img {
    height: 180px; }
  .akxGalleryArrow {
    width: 42px;
    height: 42px;
    font-size: 20px; }
  .akxGalleryPrev {
    left: -10px; }
  .akxGalleryNext {
    right: -10px; } }

.inner-videotitle {
  text-align: center;
  font-size: 1.25rem;
  color: var(--clr-txt); }
  .inner-videotitle span {
    color: var(--primary-clr); }

.fbox__htb {
  display: flex;
  align-items: baseline;
  margin-top: 10px; }
  .fbox__htb > div:nth-child(2) {
    padding-left: 5px; }
    .fbox__htb > div:nth-child(2) span {
      color: var(--primary-clr); }
  .fbox__htb .counter {
    color: white;
    font-size: 1rem;
    background-color: var(--primary-clr);
    border-radius: 15px;
    padding: 5px 10px; }
  .fbox__htb .data {
    font-size: 1rem;
    line-height: 1.4; }
  .fbox__htb .ext-link {
    text-decoration: none;
    color: var(--primary-clr);
    padding: 5px 10px;
    font-weight: 500; }

.hr-line {
  margin: 10px 0; }

/* Sticky Bar */
.prod__fold2--bar {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 15px 20px;
  border-bottom: 1px solid #ddd; }
  @media (min-width: 320px) and (max-width: 767px) {
    .prod__fold2--bar {
      gap: 5px;
      justify-content: space-between;
      padding: 10px 0;
      z-index: 10;
      width: 100%; } }

.prod__fold2--bar div a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  transition: 0.3s; }
  @media (min-width: 320px) and (max-width: 767px) {
    .prod__fold2--bar div a {
      font-weight: 500;
      font-size: 0.75rem; } }

.prod__fold2--bar div a:hover,
.prod__fold2--bar div a.active {
  color: #c0392b; }

/* Demo section height */
.prodSection {
  min-height: 100vh;
  padding: 120px 20px;
  border-bottom: 1px solid #eee;
  /* Offset for sticky bar */
  scroll-margin-top: 90px; }

.footer {
  padding: 50px 3% 0;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center; }
  @media (min-width: 320px) and (max-width: 767px) {
    .footer {
      flex-wrap: wrap; } }
  .footer .tagline {
    color: var(--primary-clr);
    background-color: white;
    padding: 5px;
    font-size: 0.8125rem;
    border-radius: 3px;
    border: 1px solid var(--primary-clr);
    font-weight: 600; }
  .footer__fbox {
    display: flex;
    gap: 20px;
    width: 100%;
    margin-top: 30px; }
    @media (min-width: 320px) and (max-width: 767px) {
      .footer__fbox {
        flex-wrap: wrap;
        padding: 5px 20px; } }
    .footer__fbox .title {
      font-size: 20px;
      font-weight: 500;
      color: var(--primary-clr); }
    .footer__fbox .ftr-link {
      padding: 5px; }
      .footer__fbox .ftr-link a {
        text-decoration: none;
        color: var(--clr-txt);
        transition: all ease 0.35s;
        font-size: 16px; }
        .footer__fbox .ftr-link a:hover {
          color: var(--primary-clr); }
    .footer__fbox > div {
      width: 25%; }
      @media (min-width: 320px) and (max-width: 767px) {
        .footer__fbox > div {
          width: 100%; } }
  .footer .footer-bottom {
    padding: 5px 0;
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #c3c3c3;
    width: 100%; }
    .footer .footer-bottom p {
      font-size: 0.875rem; }

/* Right Sticky Bar */
.ak-fixed-bar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99999; }
  .ak-fixed-bar svg {
    width: 40px;
    height: 40px; }

.ak-fixed-bar ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px; }

.ak-fixed-bar ul li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-size: 14px;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px #00000026;
  border: 1px solid #c0392b;
  padding: 6px; }

.ak-fixed-bar ul li a:hover {
  transform: translateX(-5px);
  background: #f3f3f3; }

/* Demo content */
.demo-section {
  padding: 80px 20px; }

.prop {
  display: flex;
  padding: 50px 5%; }
  .prop > div:nth-child(1) {
    width: 28%; }
  .prop > div:nth-child(2) {
    width: 78%; }
  .prop__card {
    padding: 50px 3%; }
    .prop__card .main-title {
      font-family: var(--main-font);
      color: var(--primary-clr);
      font-size: 35px;
      text-align: center;
      margin: 20px 0;
      font-weight: 500; }
    .prop__card--fbox {
      display: flex;
      flex-wrap: wrap;
      /* Image */
      /* Overlay (for readability + anti-lens trick) */
      /* Content */
      /* Title */
      /* Meta */
      /* CTA */
      /* Hover Effects */ }
      .prop__card--fbox > div {
        width: 33.33%; }
      .prop__card--fbox .card {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        background: #fff;
        margin: 10px; }
      .prop__card--fbox .card-image {
        position: relative;
        display: block; }
      .prop__card--fbox .card-image img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease; }
      .prop__card--fbox .overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent); }
      .prop__card--fbox .prop-name {
        color: var(--clr-txt);
        font-size: 17px;
        font-weight: 600; }
      .prop__card--fbox .prop-type {
        position: absolute;
        right: 10px;
        top: 10px; }
        .prop__card--fbox .prop-type.resort p {
          background-color: var(--orange); }
        .prop__card--fbox .prop-type.villa p {
          background-color: var(--yellow); }
        .prop__card--fbox .prop-type p {
          color: white;
          padding: 5px 10px;
          font-size: 14px;
          border-radius: 5px; }
      .prop__card--fbox .prod-cost-title {
        font-size: 13px;
        color: var(--clr-txt);
        font-weight: 500; }
      .prop__card--fbox .prod-cost {
        color: var(--bg);
        background-color: var(--green);
        padding: 5px 10px;
        font-size: 1rem;
        border: 1px solid var(--primary-green);
        border-radius: 5px;
        font-weight: 600; }
      .prop__card--fbox .prod-detail-fbox {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        /* flex-direction: column-reverse; */
        padding-top: 10px; }
      .prop__card--fbox .card-content {
        position: absolute;
        bottom: 6px;
        color: #fff;
        padding: 10px 5px;
        width: 96%;
        border-radius: 5px;
        background-color: #ffffffeb;
        margin: auto;
        left: 6px; }
        .prop__card--fbox .card-content-inner-fbox {
          display: flex;
          flex-direction: column; }
      .prop__card--fbox .location-fbox {
        display: flex;
        justify-content: space-between;
        color: var(--clr-txt);
        margin: 10px 0;
        font-size: 15px; }
        .prop__card--fbox .location-fbox span {
          font-weight: 500;
          background-color: var(--primary-clr);
          color: var(--bg);
          padding: 5px;
          font-size: 12px;
          border-radius: 5px; }
      .prop__card--fbox .card-title {
        display: block;
        font-family: var(--body-font);
        font-size: 18px;
        color: var(--clr-txt);
        text-decoration: none;
        margin-bottom: 4px;
        font-weight: 600; }
      .prop__card--fbox .card-meta {
        font-size: 14px;
        background-color: #E8602C;
        font-weight: 600;
        padding: 5px;
        border-radius: 5px;
        margin: 5px 0; }
      .prop__card--fbox .card-cta {
        font-size: 15px;
        color: var(--primary-clr);
        text-decoration: none;
        font-weight: 600;
        display: inline-block;
        transition: all 0.3s ease; }
      .prop__card--fbox .card:hover img {
        transform: scale(1.05); }
      .prop__card--fbox .card:hover .card-cta {
        border-color: #fff; }
    .prop__card--ctabox {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 10px 0; }
      .prop__card--ctabox a {
        background-color: var(--primary-clr);
        color: white;
        font-size: 16px;
        border-radius: 5px;
        padding: 7px 14px; }
