/* ==========================================================
   PT SINERGI ASET JAGAT INTEGRASI
   Main Stylesheet
   Version : 1.0
========================================================== */

/* ==========================================================
   ROOT VARIABLES
========================================================== */

:root {
  /* Color */

  --color-primary: #081b33;

  --color-secondary: #d6a93d;

  --color-white: #ffffff;

  --color-black: #000000;

  --color-text: #374151;

  --color-heading: #111827;

  --color-border: #e5e7eb;

  --color-light: #f8f9fb;

  --color-success: #16a34a;

  --color-danger: #dc2626;

  /* Typography */

  --font-heading: "Poppins", sans-serif;

  --font-body: "Inter", sans-serif;

  /* Container */

  --container-width: 1320px;

  /* Radius */

  --radius-sm: 6px;

  --radius-md: 10px;

  --radius-lg: 16px;

  --radius-xl: 24px;

  /* Shadow */

  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);

  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);

  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);

  /* Transition */

  --transition: 0.35s ease;

  /* Navbar */

  --navbar-height: 84px;
  --navbar-scroll-height: 72px;

  /* Section */

  --section-padding: 110px;

  /* Z-index */

  --z-header: 999;

  --z-overlay: 998;

  --z-modal: 9999;
}

/* ==========================================================
   RESET
========================================================== */

*,
*::before,
*::after {
  margin: 0;

  padding: 0;

  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);

  font-size: 16px;

  color: var(--color-text);

  background: var(--color-white);

  line-height: 1.7;

  overflow-x: hidden;
}

img {
  max-width: 100%;

  display: block;
}

a {
  text-decoration: none;

  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  border: none;

  background: none;

  cursor: pointer;

  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;

  outline: none;
}

section {
  position: relative;

  padding: var(--section-padding) 0;
}

.container {
  max-width: 1280px;
  padding: 0 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);

  color: var(--color-heading);

  font-weight: 700;

  line-height: 1.2;
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 30px;
}

p {
  margin-bottom: 0;
}

.btn-primary {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  padding: 15px 32px;

  border-radius: var(--radius-md);

  background: var(--color-secondary);

  color: var(--color-white);

  font-weight: 600;

  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px);

  box-shadow: var(--shadow-md);
}

.btn-primary i {
  transition: 0.3s;
}

.btn-primary:hover i {
  transform: translateX(6px);
}

.text-center {
  text-align: center;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-30 {
  margin-top: 30px;
}

@media (max-width: 1200px) {
  :root {
    --container-width: 1140px;
  }
}

@media (max-width: 992px) {
  :root {
    --navbar-height: 80px;

    --section-padding: 90px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .container {
    padding: 0 20px;
    max-width: 1280px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }
}

/* ==========================================================
   HEADER
========================================================== */

.header {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: var(--navbar-height);

  display: flex;

  align-items: center;

  z-index: var(--z-header);

  transition: 0.35s ease;

  background: transparent;
}

.header.scrolled {
  height: var(--navbar-scroll-height);

  background: rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(15px);

  -webkit-backdrop-filter: blur(15px);

  box-shadow: var(--shadow-sm);

  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.scrolled .navbar__link {
  color: var(--color-heading);
}

.header.scrolled .navbar__toggle span {
  background: var(--color-heading);
}

.navbar {
  display: grid;

  grid-template-columns: 220px 1fr 220px;

  align-items: center;

  height: 100%;
}

.navbar__logo {
  display: flex;

  align-items: center;
}

.navbar__logo img {
  height: 64px;
  width: auto;
  transition: 0.35s;
}

.header.scrolled .navbar__logo img {
  height: 50px;
}

.navbar__menu {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 52px;

  margin: 0;

  padding: 0;
}

.navbar__item {
  position: relative;
}

.navbar__link {
  position: relative;

  color: var(--color-white);

  font-size: 15px;

  font-weight: 500;

  letter-spacing: 0.3px;

  transition: 0.3s;
}

.navbar__link::after {
  content: "";

  position: absolute;

  bottom: -10px;

  left: 0;

  width: 0;

  height: 3px;

  border-radius: 20px;

  background: var(--color-secondary);

  transition: 0.3s;
}

.navbar__link:hover {
  color: var(--color-secondary);
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__link.active {
  color: var(--color-secondary);
}

.navbar__link.active::after {
  width: 100%;
}

.navbar__action {
  display: flex;

  align-items: center;

  justify-content: flex-end;

  gap: 20px;
}

.btn-whatsapp {
  display: flex;

  align-items: center;

  gap: 8px;

  height: 52px;

  padding: 0 30px;

  border-radius: 999px;

  font-size: 16px;

  background: var(--color-secondary);

  color: #fff;

  font-weight: 600;

  transition: 0.3s;
}

.btn-whatsapp:hover {
  color: #fff;

  transform: translateY(-2px);

  box-shadow: var(--shadow-md);
}

.btn-full {
  justify-content: center;

  width: 100%;
}

.navbar__toggle {
  width: 48px;

  height: 48px;

  display: none;

  align-items: center;

  justify-content: center;

  flex-direction: column;

  gap: 6px;
}

.navbar__toggle span {
  width: 26px;

  height: 2px;

  background: #fff;

  border-radius: 10px;

  transition: 0.3s;
}

.navbar__toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-overlay {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.45);

  opacity: 0;

  visibility: hidden;

  transition: 0.35s;

  z-index: 998;
}

.mobile-overlay.active {
  opacity: 1;

  visibility: visible;
}

.mobile-menu {
  position: fixed;

  top: 0;

  right: -360px;

  width: 340px;

  max-width: 90%;

  height: 100vh;

  background: #fff;

  z-index: 999;

  transition: 0.4s ease;

  display: flex;

  flex-direction: column;

  padding: 28px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu__header {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 40px;
}

.mobile-menu__header img {
  height: 46px;
}

.mobile-menu__close {
  font-size: 24px;

  color: var(--color-heading);
}

.mobile-menu__nav {
  display: flex;

  flex-direction: column;

  gap: 25px;
}

.mobile-menu__nav a {
  color: var(--color-heading);

  font-weight: 600;

  transition: 0.3s;
}

.mobile-menu__nav a:hover {
  color: var(--color-secondary);
}

.mobile-menu__footer {
  margin-top: auto;
}

@media (max-width: 991px) {
  .navbar__menu {
    display: none;
  }

  .navbar__toggle {
    display: flex;
  }

  .btn-whatsapp {
    display: none;
  }

  .navbar__logo img {
    height: 52px;
  }

  .navbar {
    display: flex;

    justify-content: space-between;

    align-items: center;

    width: 100%;
  }

  .navbar__action {
    margin-left: auto;
  }

  .container {
    padding: 0 22px;
    max-width: auto;
  }

  :root {
    --navbar-height: 72px;
  }
}

@media (min-width: 992px) {
  .mobile-menu {
    display: none;
  }

  .mobile-overlay {
    display: none;
  }
}

/* ==========================================================
   HERO
========================================================== */

.hero {
  position: relative;

  min-height: 95vh;

  display: flex;

  align-items: center;

  overflow: hidden;

  color: var(--color-white);

  padding-top: 50px;
}

.hero__background {
  position: absolute;

  inset: 0;

  z-index: 1;
}

.hero__background img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero__overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(5, 18, 40, 0.92) 0%,

    rgba(5, 18, 40, 0.72) 45%,

    rgba(5, 18, 40, 0.28) 100%
  );

  z-index: 2;
}

.hero .container {
  position: relative;

  z-index: 3;
}

.hero__wrapper {
  display: grid;

  grid-template-columns: 1.2fr 0.8fr;

  align-items: center;

  gap: 80px;

  min-height: 100vh;
}

.hero__content {
  max-width: 720px;
}

.hero__subtitle {
  display: flex;

  align-items: center;

  gap: 18px;

  margin-bottom: 24px;

  color: var(--color-secondary);

  font-size: 14px;

  font-weight: 600;

  letter-spacing: 3px;

  text-transform: uppercase;

  max-width: 540px;
}

.hero__subtitle::before {
  content: "";

  width: 60px;

  height: 2px;

  background: var(--color-secondary);
}

.hero__title {
  margin-bottom: 30px;

  color: #fff;

  font-size: 64px;

  line-height: 1.1;

  font-weight: 700;
}

.hero__description {
  max-width: 560px;

  margin-bottom: 40px;

  color: rgba(255, 255, 255, 0.85);

  font-size: 18px;

  line-height: 1.8;
}

.hero__button {
  display: flex;

  gap: 18px;

  flex-wrap: wrap;
}

.btn-outline {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 15px 34px;

  border: 2px solid rgba(255, 255, 255, 0.35);

  border-radius: 50px;

  color: #fff;

  font-weight: 600;

  transition: 0.35s;
}

.btn-outline:hover {
  background: #fff;

  color: var(--color-primary);
}

.hero__highlights {
  display: flex;

  flex-wrap: wrap;

  gap: 24px;

  margin-top: 35px;
}

.hero__highlight {
  display: flex;

  align-items: center;

  gap: 10px;

  color: rgba(255, 255, 255, 0.85);

  font-size: 15px;
}

.hero__highlight i {
  color: var(--color-secondary);

  font-size: 15px;
}

.hero__card {
  display: flex;

  justify-content: flex-end;
  transform: translateY(-30px);
}

.hero-card {
  width: 360px;

  padding: 35px;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 24px;

  animation: floating 5s ease-in-out infinite;

  position: relative;

  overflow: hidden;
}

.hero-card::before {
  content: "";

  position: absolute;

  inset: 0;

  background: radial-gradient(
    circle at top right,

    rgba(255, 255, 255, 0.12),
    transparent 45%
  );

  pointer-events: none;
}

.hero-card h4 {
  margin-bottom: 25px;

  color: #fff;

  font-size: 22px;

  font-weight: 600;
}

.hero-card ul {
  margin: 0;

  padding: 0;

  list-style: none;
}

.hero-card li {
  display: flex;

  align-items: center;

  gap: 14px;

  padding: 14px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  color: rgba(255, 255, 255, 0.85);
}

.hero-card li:last-child {
  border: none;
}

.hero-card i {
  color: var(--color-secondary);

  font-size: 18px;
}

.hero-card__item {
  padding: 30px;
}

.hero-card__item h3 {
  margin-bottom: 6px;

  color: #fff;

  font-size: 28px;
}

.hero-card__item p {
  color: rgba(255, 255, 255, 0.75);

  margin: 0;
}

.hero-card__divider {
  height: 1px;

  background: rgba(255, 255, 255, 0.12);
}

.hero__scroll {
  position: absolute;

  left: 50%;

  bottom: 30px;

  transform: translateX(-50%);

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 12px;

  z-index: 5;
}

.hero__scroll span {
  font-size: 12px;

  letter-spacing: 3px;

  text-transform: uppercase;

  color: #fff;
}

.hero__scroll-line {
  width: 1px;

  height: 45px;

  background: rgba(255, 255, 255, 0.6);
}

.hero__scroll i {
  font-size: 18px;

  animation: bounce 2s infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translate(-50%, 0);
  }

  40% {
    transform: translate(-50%, -10px);
  }

  60% {
    transform: translate(-50%, -5px);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

@media (max-width: 991px) {
  .hero {
    text-align: center;
  }

  .hero__wrapper {
    grid-template-columns: 1fr;

    gap: 50px;

    padding: 100px 0 100px;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__title {
    font-size: 46px;
  }

  .hero__description {
    margin: 0 auto 35px;
  }

  .hero__button {
    justify-content: center;
  }

  .hero__card {
    justify-content: center;
  }

  .hero__highlights {
    justify-content: center;

    gap: 16px;
  }

  .hero-card {
    width: 100%;

    max-width: 420px;

    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .hero__title {
    font-size: 36px;
  }

  .hero__description {
    font-size: 16px;
  }

  .hero__button {
    flex-direction: column;
  }

  .hero__subtitle {
    justify-content: center;
  }

  .hero__subtitle::before {
    width: 40px;
  }

  .hero__highlights {
    flex-direction: column;

    align-items: center;

    gap: 12px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
  }
}

.section-divider {
  display: flex;

  justify-content: center;

  margin: 0 auto;

  padding: 30px 0;
  background: #f8fafc;
}

.section-divider span {
  width: 90px;

  height: 3px;

  border-radius: 50px;

  background: var(--color-secondary);
}

/* ==========================================================
   SECTION TITLE
========================================================== */

.section {
  padding: 0px 0px 70px 0px;
  background: #f8fafc;
}

.section-heading {
  max-width: 680px;

  margin: 0 auto 70px;
}

.section-subtitle {
  display: inline-block;

  margin-bottom: 15px;

  color: var(--color-secondary);

  font-weight: 600;

  letter-spacing: 3px;

  text-transform: uppercase;
}

.section-title {
  color: var(--color-primary);

  font-size: 48px;

  font-weight: 700;

  line-height: 1.2;
}

.about__wrapper {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 70px;

  align-items: center;
}

.about__image {
  position: relative;
  transform: translateY(-8px);
}

.about__image::before {
  content: "";

  position: absolute;

  top: -18px;

  left: -18px;

  width: 120px;

  height: 120px;

  border: 2px solid rgba(218, 165, 32, 0.2);

  border-radius: 20px;
}

.about__image img {
  width: 100%;

  border-radius: 24px;

  display: block;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.about__experience {
  position: absolute;

  right: -25px;

  bottom: 35px;

  width: 180px;

  padding: 28px;

  border-radius: 24px;

  background: var(--color-secondary);

  color: #fff;

  text-align: center;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);

  transform: translateY(-10px);
}

.about__experience h3 {
  margin: 0;

  font-size: 42px;

  font-weight: 700;
}

.about__experience p {
  margin: 8px 0 0;

  font-size: 15px;
}

.about__content h3 {
  margin-bottom: 20px;

  color: var(--color-primary);

  font-size: 36px;
}

.about__content p {
  margin-bottom: 35px;

  color: #666;

  line-height: 1.9;
}

.about__features {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 18px;
}

.about__feature {
  display: flex;

  align-items: center;

  gap: 12px;

  font-weight: 500;
}

.about__feature i {
  color: var(--color-secondary);
}

@media (max-width: 991px) {
  .section {
    padding: 0px 0px 70px 0px;
  }

  .section-title {
    font-size: 36px;
  }

  .about__wrapper {
    grid-template-columns: 1fr;
  }

  .about__experience {
    right: 20px;

    bottom: 20px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 30px;
  }

  .about__features {
    grid-template-columns: 1fr;
  }

  .about__experience {
    width: 150px;

    padding: 20px;
  }

  .about__experience h3 {
    font-size: 34px;
  }
}

/* ==========================================================
WHY CHOOSE US
========================================================== */

.why {
  background: linear-gradient(180deg, #f7f9fc, #f2f5f9);
}

.why__wrapper {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 28px;
}

.why-card {
  padding: 40px 30px;

  border-radius: 24px;

  background: #fff;

  transition: 0.35s;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);

  height: 100%;

  position: relative;

  overflow: hidden;
}

.why-card::before {
  content: "";

  position: absolute;

  top: 0;

  left: 30px;

  width: 60px;

  height: 4px;

  background: var(--color-secondary);

  border-radius: 999px;
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: rgba(218, 165, 32, 0.3);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.why-card__icon {
  width: 70px;

  height: 70px;

  display: flex;

  justify-content: center;

  align-items: center;

  margin-bottom: 25px;

  border-radius: 20px;

  background: rgba(218, 165, 32, 0.12);

  color: var(--color-secondary);
}

.why-card:hover .why-card__icon {
  background: var(--color-secondary);

  color: #fff;
}

.why-card__icon i {
  font-size: 30px;
}

.why-card h3 {
  margin-bottom: 16px;

  color: var(--color-primary);

  font-size: 24px;
}

.why-card p {
  margin: 0;

  color: #666;

  line-height: 1.8;
}

@media (max-width: 991px) {
  .why__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why__wrapper {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   SERVICES
========================================================== */

.services {
  background: #fff;
}

.services__list {
  max-width: 1000px;

  margin: auto;
}

.service-item {
  display: grid;

  grid-template-columns: 80px 1fr 50px;

  align-items: center;

  gap: 40px;

  padding: 35px 0;

  border-bottom: 1px solid #ececec;

  transition: 0.35s;

  position: relative;
}

.service-item::before {
  content: "";

  position: absolute;

  left: 0;

  bottom: -1px;

  width: 0;

  height: 2px;

  background: var(--color-secondary);

  transition: 0.35s;
}

.service-item:hover::before {
  width: 100%;
}

.service-item__number {
  color: var(--color-secondary);

  font-size: 52px;

  font-weight: 700;
}

.service-item h3 {
  margin-bottom: 10px;

  color: var(--color-primary);

  font-size: 30px;
}

.service-item p {
  margin: 0;

  color: #666;

  line-height: 1.8;
}

.service-item__arrow {
  display: flex;

  justify-content: flex-end;

  font-size: 26px;

  color: #bbb;

  transition: 0.3s;

  position: relative;
}

.service-item__arrow::before {
  content: "";

  width: 0;

  height: 2px;

  background: var(--color-secondary);

  position: absolute;

  right: 24px;

  top: 50%;

  transition: 0.3s;
}

.service-item:hover .service-item__arrow::before {
  width: 35px;
}

.service-item:hover {
  padding-left: 25px;
}

.service-item:hover .service-item__arrow {
  color: var(--color-secondary);

  transform: translateX(10px);
}

.service-item:hover h3 {
  color: var(--color-secondary);
}

.service-item__content {
  max-width: 620px;
}

@media (max-width: 768px) {
  .service-item {
    grid-template-columns: 1fr;

    gap: 20px;

    text-align: left;
  }

  .service-item__arrow {
    justify-content: flex-start;
  }
}

/* ==========================================================
   FEATURED PROPERTY
========================================================== */

.featured-property {
  background: #fff;
}

.featured-grid {
  display: grid;

  grid-template-columns: 1.6fr 0.9fr;

  gap: 28px;

  margin-top: 60px;
}

.featured-right {
  display: grid;

  grid-template-rows: 1fr 1fr;

  gap: 28px;
}

/* ==========================================================
   FEATURED CARD
========================================================== */

.featured-card {
  position: relative;

  display: block;

  overflow: hidden;

  border-radius: 24px;

  min-height: 320px;

  text-decoration: none;

  background: #081b33;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);

  transition: 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.featured-card--large {
  min-height: 670px;
}

.featured-card__image {
  position: absolute;

  inset: 0;
}

.featured-card__image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.8s ease;
}

.featured-card__overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,

    rgba(8, 27, 51, 0.45) 45%,

    rgba(8, 27, 51, 0.92) 100%
  );

  transition: 0.4s;
}

.featured-card__content {
  position: absolute;

  left: 32px;

  right: 32px;

  bottom: 30px;

  z-index: 3;
}

.featured-card__badge {
  display: inline-flex;

  align-items: center;

  padding: 8px 18px;

  margin-bottom: 18px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(10px);

  -webkit-backdrop-filter: blur(10px);

  color: #fff;

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 1px;

  text-transform: uppercase;
}

.featured-card h3 {
  margin-bottom: 10px;

  color: #fff;

  font-size: 32px;

  line-height: 1.2;

  font-weight: 700;
}

.featured-right .featured-card h3 {
  font-size: 24px;
}

.featured-card p {
  margin-bottom: 24px;

  color: rgba(255, 255, 255, 0.82);

  font-size: 16px;
}

.featured-card__footer {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding-top: 18px;

  border-top: 1px solid rgba(255, 255, 255, 0.18);

  color: #fff;

  font-weight: 600;
}

.featured-card__footer i {
  transition: 0.35s;

  font-size: 22px;
}

/* ==========================================================
   FEATURED HOVER
========================================================== */

.featured-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.18);
}

.featured-card:hover img {
  transform: scale(1.08);
}

.featured-card:hover .featured-card__overlay {
  background: linear-gradient(
    180deg,
    rgba(8, 27, 51, 0.08),
    rgba(8, 27, 51, 0.55),
    rgba(8, 27, 51, 0.95)
  );
}

.featured-card:hover .featured-card__footer i {
  transform: translateX(8px);
}

.featured-card:hover .featured-card__badge {
  background: var(--color-secondary);

  color: #fff;
}

.featured-card::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18),
    transparent 35%
  );

  opacity: 0;

  transition: 0.45s;

  z-index: 2;
}

.featured-card:hover::before {
  opacity: 1;
}

.featured-bottom {
  max-width: 720px;

  margin: 70px auto 0;

  text-align: center;
}

.featured-bottom p {
  margin-bottom: 28px;

  color: #666;

  line-height: 1.8;
}

@media (max-width: 991px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .featured-right {
    grid-template-columns: 1fr 1fr;

    grid-template-rows: none;
  }

  .featured-card--large {
    min-height: 480px;
  }
}

@media (max-width: 768px) {
  .featured-right {
    grid-template-columns: 1fr;
  }

  .featured-card {
    min-height: 320px;
  }

  .featured-card--large {
    min-height: 360px;
  }

  .featured-card__content {
    left: 24px;

    right: 24px;

    bottom: 22px;
  }

  .featured-card h3 {
    font-size: 24px;
  }

  .featured-card p {
    font-size: 15px;

    margin-bottom: 18px;
  }
}

/* ==========================================================
PROCESS
========================================================== */

.process {
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
}

.process__wrapper {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 30px;

  position: relative;
}

.process__wrapper::before {
  content: "";

  position: absolute;

  left: 10%;

  right: 10%;

  top: 42px;

  height: 2px;

  background: #e6eaf0;

  z-index: 1;
}

.process-item {
  position: relative;

  z-index: 2;

  text-align: center;
}

.process-item__number {
  width: 84px;

  height: 84px;

  margin: 0 auto 28px;

  border-radius: 50%;

  background: #fff;

  border: 3px solid var(--color-secondary);

  display: flex;

  justify-content: center;

  align-items: center;

  color: var(--color-secondary);

  font-size: 28px;

  font-weight: 700;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.process-item h3 {
  margin-bottom: 15px;

  color: var(--color-primary);

  font-size: 22px;
}

.process-item p {
  margin: 0;

  color: #666;

  line-height: 1.8;

  font-size: 15px;
}

.process-item:hover .process-item__number {
  background: var(--color-secondary);

  color: #fff;

  transform: translateY(-6px);

  transition: 0.3s;
}

@media (max-width: 991px) {
  .process__wrapper {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .process__wrapper::before {
    display: none;
  }
}

/* ==========================================================
   CTA BANNER
========================================================== */

.cta-banner {
  padding: 100px 0;

  background: #fff;
}

.cta-banner__wrapper {
  position: relative;

  overflow: hidden;

  border-radius: 28px;

  padding: 80px;

  background: linear-gradient(135deg, #071934, #0d2f5f);

  text-align: center;

  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.18);
}

.cta-banner__wrapper::before {
  content: "";

  position: absolute;

  width: 500px;

  height: 500px;

  background: rgba(255, 255, 255, 0.04);

  border-radius: 50%;

  top: -220px;

  right: -180px;
}

.cta-banner__wrapper::after {
  content: "";

  position: absolute;

  width: 280px;

  height: 280px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 50%;

  left: -100px;

  bottom: -100px;
}

.cta-banner__subtitle {
  display: inline-block;

  margin-bottom: 20px;

  letter-spacing: 2px;

  color: #d4af37;

  font-weight: 700;

  font-size: 14px;
}

.cta-banner h2 {
  max-width: 700px;

  margin: auto;

  color: #fff;

  font-size: 48px;

  line-height: 1.25;

  font-weight: 700;
}

.cta-banner p {
  max-width: 720px;

  margin: 28px auto 45px;

  color: rgba(255, 255, 255, 0.82);

  line-height: 1.9;

  font-size: 17px;
}

.cta-banner__action {
  display: flex;

  justify-content: center;

  gap: 18px;

  flex-wrap: wrap;
}

.btn-gold {
  background: #d4af37;

  color: #fff;

  padding: 16px 34px;

  border-radius: 50px;

  font-weight: 600;

  transition: 0.35s;

  text-decoration: none;
}

.btn-gold:hover {
  background: #c79c1b;

  color: #fff;

  transform: translateY(-4px);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.35);

  color: #fff;

  padding: 16px 34px;

  border-radius: 50px;

  text-decoration: none;

  transition: 0.35s;
}

.btn-outline-light:hover {
  background: #fff;

  color: #071934;
}

.cta-banner__highlights {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;

  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.cta-banner__highlights span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-banner__highlights i {
  color: #d4af37;
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 70px 0;
  }

  .cta-banner__wrapper {
    padding: 50px 28px;
  }

  .cta-banner h2 {
    font-size: 32px;
  }

  .cta-banner p {
    font-size: 15px;
  }

  .cta-banner__action {
    flex-direction: column;
  }

  .cta-banner__action a {
    width: 100%;
  }
}

/* ==========================================================
   FOOTER
========================================================== */

.footer {
  background: #071934;

  color: #fff;

  padding: 80px 0 30px;
}

.footer-divider {
  width: 80px;

  height: 3px;

  background: #d4af37;

  border-radius: 10px;

  margin: 30px 0;
}

.footer-logo {
  max-width: 180px;

  margin-bottom: 25px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.72);

  line-height: 1.9;

  margin-bottom: 30px;
}

.footer h5 {
  color: #fff;

  margin-bottom: 25px;

  font-size: 18px;

  font-weight: 600;
}

.footer ul {
  list-style: none;

  padding: 0;

  margin: 0;
}

.footer ul li {
  margin-bottom: 15px;
}

.footer a {
  color: rgba(255, 255, 255, 0.72);

  text-decoration: none;

  transition: 0.3s;
}

.footer a:hover {
  color: #d4af37;
}

.footer-contact li {
  display: flex;

  align-items: flex-start;

  gap: 12px;

  color: rgba(255, 255, 255, 0.72);
}

.footer-contact i {
  color: #d4af37;

  margin-top: 4px;
}

.footer-social {
  display: flex;

  gap: 15px;
}

.footer-social a {
  width: 42px;

  height: 42px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);

  display: flex;

  justify-content: center;

  align-items: center;

  transition: 0.35s;
}

.footer-social a:hover {
  background: #d4af37;

  color: #fff;

  transform: translateY(-4px);
}

.footer-bottom {
  margin-top: 20px;

  padding-top: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  text-align: center;
}

.footer-bottom p {
  margin: 0;

  color: rgba(255, 255, 255, 0.55);

  font-size: 14px;
}

.footer ul li a {
  display: inline-flex;
  align-items: center;
  gap: 0;
  transition: 0.3s;
}

.footer ul li a::before {
  content: "→";

  opacity: 0;

  width: 0;

  transition: 0.3s;
}

.footer ul li a:hover {
  color: #d4af37;
}

.footer ul li a:hover::before {
  opacity: 1;

  width: 18px;
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 25px;
  }

  .footer h5 {
    margin-top: 10px;
  }

  .footer-bottom {
    margin-top: 40px;
  }
}

/* ==========================================================
PAGE HERO
========================================================== */

.page-hero {
  position: relative;

  height: 500px;

  display: flex;

  align-items: center;

  background:
    linear-gradient(rgba(7, 25, 52, 0.82), rgba(7, 25, 52, 0.82)),
    url("../img/hero-building.jpg") center center/cover;
}

.page-hero__content {
  color: #fff;

  max-width: 650px;
}

.page-hero__subtitle {
  color: #d4af37;

  letter-spacing: 2px;

  font-size: 13px;

  font-weight: 700;
}

.page-hero h1 {
  margin: 18px 0;

  font-size: 48px;

  line-height: 1.2;

  color: #fff;
}

.breadcrumb {
  display: flex;

  gap: 10px;
}

.breadcrumb a {
  color: white;

  text-decoration: none;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.7);
}

.property-filter {
  margin-top: -130px;

  position: relative;

  z-index: 5;

  padding: 50px 0px;
}

.property-filter__wrapper {
  background: #fff;

  border-radius: 24px;

  padding: 30px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.property-filter label {
  display: block;

  margin-bottom: 10px;

  font-size: 14px;

  font-weight: 600;

  color: #071934;
}

.property-filter .form-control,
.property-filter .form-select {
  height: 56px;

  border-radius: 14px;
}

/*==================================================
PROPERTY RESULT
==================================================*/

.property-result-section {
  padding: 0px 0 50px;
}

.property-result-header {
  display: flex;

  justify-content: space-between;

  align-items: flex-end;

  gap: 30px;
}

.property-result-left {
  max-width: 600px;
}

.property-result-left .section-subtitle {
  display: inline-block;

  color: #d4af37;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 3px;

  text-transform: uppercase;

  margin-bottom: 12px;
}

.property-result-left .section-title {
  font-size: 42px;

  font-weight: 700;

  color: #071934;

  margin-bottom: 15px;
}

.property-result-left .section-description {
  color: #6b7280;

  font-size: 16px;

  margin: 0;

  line-height: 1.8;
}

.property-result-right {
  min-width: 180px;
}

.property-result-right label {
  display: block;

  margin-bottom: 8px;

  font-size: 14px;

  font-weight: 600;

  color: #071934;
}

.property-result-right .form-select {
  height: 52px;

  border-radius: 14px;

  border: 1px solid #e5e7eb;
}

@media (max-width: 991px) {
  .property-result-header {
    flex-direction: column;

    align-items: flex-start;
  }

  .property-result-right {
    width: 100%;
  }
}

/* ==========================================================
   FEATURED PROPERTY BANNER
========================================================== */

.property-featured-banner {
  padding: 0 0 55px;
}

.property-featured-banner__wrapper {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

  padding: 34px 40px;

  overflow: hidden;

  background: linear-gradient(135deg, #071934 0%, #0d2f5f 100%);

  border-radius: 22px;

  color: #fff;
  text-decoration: none;

  box-shadow: 0 20px 50px rgba(7, 25, 52, 0.12);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* Decorative element */

.property-featured-banner__wrapper::before {
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  right: -100px;
  top: -150px;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;

  pointer-events: none;
}

.property-featured-banner__wrapper::after {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  right: 30px;
  bottom: -140px;

  background: rgba(255, 255, 255, 0.025);

  border-radius: 50%;

  pointer-events: none;
}

.property-featured-banner__wrapper:hover {
  transform: translateY(-5px);

  box-shadow: 0 30px 70px rgba(7, 25, 52, 0.18);
}

/* Content */

.property-featured-banner__content {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 40px;
}

/* Label */

.property-featured-banner__label {
  display: flex;
  align-items: center;
  gap: 10px;

  padding-right: 40px;

  border-right: 1px solid rgba(255, 255, 255, 0.15);

  color: #d4af37;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 2px;
}

.property-featured-banner__label i {
  font-size: 14px;
}

/* Property information */

.property-featured-banner__info h3 {
  margin: 0 0 10px;

  color: #fff;

  font-size: 24px;
  font-weight: 700;
}

.property-featured-banner__meta {
  display: flex;
  align-items: center;
  gap: 12px;

  color: rgba(255, 255, 255, 0.7);

  font-size: 14px;
}

.property-featured-banner__meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.property-featured-banner__meta i {
  color: #d4af37;
}

.property-featured-banner__dot {
  width: 4px;
  height: 4px;

  background: rgba(255, 255, 255, 0.4);

  border-radius: 50%;
}

/* Action */

.property-featured-banner__action {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 18px;

  flex-shrink: 0;

  color: #fff;

  font-size: 14px;
  font-weight: 600;
}

.property-featured-banner__arrow {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  background: #d4af37;

  border-radius: 50%;

  color: #fff;

  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.property-featured-banner__wrapper:hover .property-featured-banner__arrow {
  transform: rotate(45deg);
}

/* ==========================================================
   PROPERTY GRID
========================================================== */

.property-grid {
  padding: 0 0 110px;
}

/* ==========================================================
   PROPERTY CARD
========================================================== */

.property-card {
  position: relative;

  display: flex;
  flex-direction: column;

  height: 100%;

  overflow: hidden;

  background: #fff;

  border: 1px solid #eef1f5;

  border-radius: 26px;

  text-decoration: none;

  box-shadow: 0 12px 35px rgba(7, 25, 52, 0.05);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

/* Hover */

.property-card:hover {
  transform: translateY(-8px);

  border-color: rgba(212, 175, 55, 0.55);

  box-shadow: 0 28px 65px rgba(7, 25, 52, 0.11);
}

/* ==========================================================
   PROPERTY IMAGE
========================================================== */

.property-card__image {
  position: relative;

  height: 300px;

  overflow: hidden;
}

.property-card__image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.5s ease;
}

.property-card:hover .property-card__image img {
  transform: scale(1.07);

  filter: brightness(0.92);
}

/* Image overlay */

.property-card__overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(7, 25, 52, 0) 45%,
    rgba(7, 25, 52, 0.35) 100%
  );

  pointer-events: none;

  transition: 0.4s ease;
}

.property-card:hover .property-card__overlay {
  background: linear-gradient(
    180deg,
    rgba(7, 25, 52, 0.03) 30%,
    rgba(7, 25, 52, 0.48) 100%
  );
}

/* ==========================================================
   FLOATING CATEGORY
========================================================== */

.property-card__category {
  position: relative;
  z-index: 3;

  align-self: flex-start;

  margin: -21px 0 0 26px;

  padding: 10px 18px;

  background: #fff;

  border: 1px solid #eef1f5;

  border-radius: 999px;

  box-shadow: 0 10px 25px rgba(7, 25, 52, 0.09);

  color: #071934;

  font-size: 12px;
  font-weight: 600;

  transition:
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}

.property-card:hover .property-card__category {
  background: #d4af37;

  border-color: #d4af37;

  color: #fff;
}

/* ==========================================================
   CARD CONTENT
========================================================== */

.property-card__content {
  display: flex;
  flex-direction: column;

  flex: 1;

  padding: 24px 28px 28px;
}

/* Label */

.property-card__label {
  display: block;

  margin-bottom: 9px;

  color: #d4af37;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 1.8px;

  text-transform: uppercase;
}

/* Title */

.property-card__title {
  margin: 0 0 15px;

  color: #071934;

  font-size: 22px;
  font-weight: 700;

  line-height: 1.35;

  transition: color 0.35s ease;
}

.property-card:hover .property-card__title {
  color: #b89224;
}

/* Location */

.property-card__location {
  display: flex;
  align-items: center;

  gap: 8px;

  margin-bottom: 17px;

  color: #6b7280;

  font-size: 14px;
}

.property-card__location i {
  color: #d4af37;
}

/* Meta */

.property-card__meta {
  align-self: flex-start;

  margin-bottom: 25px;

  padding: 8px 14px;

  background: #f5f7fa;

  border-radius: 999px;

  color: #344054;

  font-size: 12px;
  font-weight: 500;
}

/* ==========================================================
   CARD FOOTER
========================================================== */

.property-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-top: auto;

  padding-top: 20px;

  border-top: 1px solid #eef1f5;

  color: #071934;

  font-size: 14px;
  font-weight: 600;
}

.property-card__footer > span {
  transition: color 0.35s ease;
}

.property-card:hover .property-card__footer > span {
  color: #d4af37;
}

/* Arrow */

.property-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  background: #071934;

  border-radius: 50%;

  color: #fff;

  transition:
    background 0.35s ease,
    transform 0.35s ease;
}

.property-card:hover .property-card__arrow {
  background: #d4af37;

  transform: rotate(45deg);
}

/* ==========================================================
   PROPERTY PAGINATION
========================================================== */

.property-pagination {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  margin: -45px 0 100px;
}

.property-pagination__button {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 46px;
  height: 46px;

  background: #fff;

  border: 1px solid #e5e7eb;

  border-radius: 50%;

  color: #071934;

  font-size: 14px;
  font-weight: 600;

  text-decoration: none;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.property-pagination__button:hover {
  background: #071934;

  border-color: #071934;

  color: #fff;

  transform: translateY(-3px);
}

.property-pagination__button.active {
  background: #d4af37;

  border-color: #d4af37;

  color: #fff;

  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.property-pagination__dots {
  color: #98a2b3;
}

/* ==========================================================
   PROPERTY LISTING RESPONSIVE
========================================================== */

@media (max-width: 991px) {
  /* Result Header */

  .property-result-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .property-result-right {
    width: 100%;
  }

  /* Featured Banner */

  .property-featured-banner__wrapper {
    padding: 30px;
  }

  .property-featured-banner__content {
    gap: 25px;
  }

  .property-featured-banner__label {
    padding-right: 25px;
  }

  /* Property Card */

  .property-card__image {
    height: 270px;
  }
}

@media (max-width: 767px) {
  /* ==============================
       PAGE HERO
    ============================== */

  .page-hero {
    height: auto;

    min-height: 390px;

    padding: 120px 0 70px;
  }

  .page-hero h1 {
    font-size: 36px;
  }

  /* ==============================
       FILTER
    ============================== */

  .property-filter {
    margin-top: -35px;
  }

  .property-filter__wrapper {
    padding: 24px;

    border-radius: 20px;
  }

  .property-filter .btn {
    min-height: 54px;
  }

  /* ==============================
       RESULT HEADER
    ============================== */

  .property-result-section {
    padding: 0px 0 40px;
  }

  .property-result-left .section-title {
    font-size: 32px;
  }

  /* ==============================
       FEATURED BANNER
    ============================== */

  .property-featured-banner {
    padding-bottom: 45px;
  }

  .property-featured-banner__wrapper {
    display: block;

    padding: 28px 25px;
  }

  .property-featured-banner__content {
    display: block;
  }

  .property-featured-banner__label {
    padding: 0 0 18px;

    margin-bottom: 20px;

    border-right: 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .property-featured-banner__info h3 {
    font-size: 22px;
  }

  .property-featured-banner__meta {
    flex-wrap: wrap;
  }

  .property-featured-banner__action {
    justify-content: space-between;

    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  /* ==============================
       PROPERTY CARD
    ============================== */

  .property-grid {
    padding-bottom: 90px;
  }

  .property-card {
    border-radius: 22px;
  }

  .property-card__image {
    height: 260px;
  }

  .property-card__category {
    margin-left: 22px;
  }

  .property-card__content {
    padding: 23px 22px 24px;
  }

  .property-card__title {
    font-size: 21px;
  }

  /* ==============================
       PAGINATION
    ============================== */

  .property-pagination {
    gap: 7px;

    margin: -35px 0 80px;
  }

  .property-pagination__button {
    width: 42px;
    height: 42px;
  }
}

/* ==========================================================
   PROPERTY DETAIL
   HEADER
========================================================== */

.property-detail-header {
  padding: calc(var(--navbar-height) + 70px) 0 45px;

  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
  padding-top: 100px;
}

/* ==========================================================
   BREADCRUMB
========================================================== */

.property-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 10px;

  margin-bottom: 38px;

  color: #98a2b3;

  font-size: 13px;
}

.property-breadcrumb a {
  color: #667085;

  text-decoration: none;

  transition: color 0.3s ease;
}

.property-breadcrumb a:hover {
  color: #d4af37;
}

.property-breadcrumb i {
  color: #d0d5dd;

  font-size: 10px;
}

.property-breadcrumb span {
  color: #071934;

  font-weight: 500;
}

/* ==========================================================
   HEADER CONTENT
========================================================== */

.property-detail-header__content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 50px;
}

/* Category */

.property-detail-header__category {
  display: inline-flex;
  align-items: center;

  margin-bottom: 18px;

  color: #d4af37;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;
}

/* Title */

.property-detail-header__main h1 {
  max-width: 800px;

  margin: 0 0 18px;

  color: #071934;

  font-size: clamp(42px, 5vw, 68px);

  font-weight: 700;

  line-height: 1.05;

  letter-spacing: -2px;
}

/* Meta */

.property-detail-header__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 12px;

  color: #667085;

  font-size: 15px;
}

.property-detail-header__meta span {
  display: flex;
  align-items: center;

  gap: 7px;
}

.property-detail-header__meta i {
  color: #d4af37;
}

.property-detail-header__dot {
  width: 4px;
  height: 4px;

  background: #d0d5dd;

  border-radius: 50%;
}

/* ==========================================================
   HEADER ACTION
========================================================== */

.property-detail-header__actions {
  display: flex;
  align-items: center;

  gap: 12px;

  flex-shrink: 0;
}

/* Share */

.property-action-button {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 52px;
  height: 52px;

  background: #fff;

  border: 1px solid #e4e7ec;

  border-radius: 50%;

  color: #071934;

  cursor: pointer;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.property-action-button:hover {
  background: #071934;

  border-color: #071934;

  color: #fff;

  transform: translateY(-3px);
}

/* Contact Button */

.property-detail-header__contact {
  display: flex;
  align-items: center;

  gap: 12px;

  min-height: 52px;

  padding: 0 24px;

  background: #d4af37;

  border-radius: 999px;

  color: #fff;

  font-size: 13px;
  font-weight: 600;

  text-decoration: none;

  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.property-detail-header__contact:hover {
  background: #be982c;

  color: #fff;

  transform: translateY(-3px);

  box-shadow: 0 12px 25px rgba(212, 175, 55, 0.22);
}

/* ==========================================================
   PROPERTY GALLERY
========================================================== */

.property-gallery {
  padding: 0 0 20px;
}

/* Grid */

.property-gallery__grid {
  display: flex;

  gap: 14px;

  height: 540px;

  overflow: hidden;

  border-radius: 28px;

  background: #f2f4f7;
}

.property-gallery__grid {
  /* box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08); */
}

/* ==========================================================
   GALLERY ITEM
========================================================== */

.property-gallery__item {
  position: relative;

  display: block;

  width: 100%;
  height: 100%;

  padding: 0;

  overflow: hidden;

  background: #071934;

  border: 0;

  cursor: pointer;
}

/* Image */

.property-gallery__item img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Hover */

.property-gallery__item:hover img {
  transform: scale(1.045);
}

/* Overlay */

.property-gallery__overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(7, 25, 52, 0) 50%,
    rgba(7, 25, 52, 0.22) 100%
  );

  pointer-events: none;

  transition: background 0.4s ease;
}

.property-gallery__item:hover .property-gallery__overlay {
  background: linear-gradient(
    180deg,
    rgba(7, 25, 52, 0.03) 30%,
    rgba(7, 25, 52, 0.34) 100%
  );
}

/* ==========================================================
   MAIN IMAGE
========================================================== */

.property-gallery__main {
  flex: 2;

  overflow: hidden;

  border-radius: 24px;
}

/* Expand Icon */

.property-gallery__expand {
  position: absolute;

  top: 24px;
  left: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 54px;
  height: 54px;

  padding: 0;

  border: 0;

  border-radius: 18px;

  background: rgba(255, 255, 255, 0.88);

  backdrop-filter: blur(20px);

  color: #071934;

  cursor: pointer;

  box-shadow: 0 10px 25px rgba(7, 25, 52, 0.15);

  transition: 0.3s ease;

  z-index: 5;
}

.property-gallery__expand:hover {
  background: #d4af37;

  color: #fff;

  transform: scale(1.06);
}

.property-gallery__main:hover .property-gallery__expand {
  transform: scale(1.08);

  background: #d4af37;

  color: #fff;
}

/* ==========================================================
   SIDE GALLERY
========================================================== */

.property-gallery__side {
  flex: 1;

  display: flex;

  flex-direction: column;

  gap: 14px;
}

.property-gallery__side .property-gallery__item {
  flex: 1;

  border-radius: 24px;

  overflow: hidden;
}

/* ==========================================================
   VIEW ALL PHOTOS
========================================================== */

.property-gallery__view-all {
  position: absolute;

  right: 20px;
  bottom: 20px;

  display: flex;
  align-items: center;

  gap: 12px;

  padding: 12px 18px;

  border: 0;

  border-radius: 50px;

  background: #fff;

  color: #071934;

  cursor: pointer;

  box-shadow: 0 15px 35px rgba(7, 25, 52, 0.15);

  transition: 0.3s;

  z-index: 5;
}

.property-gallery__view-all i {
  color: #d4af37;

  font-size: 18px;
}

.property-gallery__view-all strong {
  display: block;

  font-size: 13px;

  font-weight: 600;
}

.property-gallery__view-all small {
  display: block;

  color: #98a2b3;

  font-size: 11px;
}

.property-gallery__view-all:hover {
  transform: translateY(-4px);
}

/* ==========================================================
   MOBILE BAR
========================================================== */

.property-gallery__mobile-bar {
  display: none;
}

@media (max-width: 991px) {
  /* Header */

  .property-detail-header {
    padding: calc(var(--navbar-scroll-height) + 55px) 0 35px;
  }

  .property-detail-header__content {
    align-items: flex-start;
    flex-direction: column;

    gap: 30px;
  }

  .property-detail-header__actions {
    width: 100%;
  }

  .property-detail-header__contact {
    justify-content: center;

    flex: 1;
  }

  /* Gallery */

  .property-gallery__grid {
    height: 500px;

    border-radius: 24px;
  }
}

@media (max-width: 767px) {
  /* ======================================================
       PROPERTY DETAIL HEADER
    ====================================================== */

  .property-detail-header {
    padding: calc(var(--navbar-scroll-height) + 38px) 0 28px;
  }

  /* Breadcrumb */

  .property-breadcrumb {
    gap: 7px;

    margin-bottom: 28px;

    font-size: 11px;
  }

  .property-breadcrumb span {
    max-width: 150px;

    overflow: hidden;

    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Category */

  .property-detail-header__category {
    margin-bottom: 13px;

    font-size: 10px;

    letter-spacing: 1.7px;
  }

  /* Title */

  .property-detail-header__main h1 {
    margin-bottom: 15px;

    font-size: 34px;

    line-height: 1.08;

    letter-spacing: -1px;
  }

  /* Meta */

  .property-detail-header__meta {
    gap: 9px;

    font-size: 12px;
  }

  /* Actions */

  .property-detail-header__actions {
    gap: 10px;

    margin-top: 2px;
  }

  .property-action-button {
    width: 48px;
    height: 48px;

    flex-shrink: 0;
  }

  .property-detail-header__contact {
    min-height: 48px;

    padding: 0 18px;

    font-size: 12px;
  }

  /* ======================================================
       PROPERTY GALLERY
    ====================================================== */

  .property-gallery {
    padding-bottom: 55px;
  }

  .property-gallery__grid {
    height: 410px;

    border-radius: 20px;
  }

  /* Main image */

  .property-gallery__main {
    height: 100%;
  }

  /* Hide secondary desktop gallery */

  .property-gallery__side {
    display: none;
  }

  /* Expand */

  .property-gallery__expand {
    top: 18px;
    left: 18px;

    width: 42px;
    height: 42px;
  }

  /* Mobile bar */

  .property-gallery__mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 15px;
  }

  .property-gallery__mobile-bar > span {
    display: flex;
    align-items: center;

    gap: 7px;

    color: #667085;

    font-size: 12px;
  }

  .property-gallery__mobile-bar > span i {
    color: #d4af37;
  }

  .property-gallery__mobile-bar button {
    display: flex;
    align-items: center;

    gap: 7px;

    padding: 0;

    background: transparent;

    border: 0;

    color: #071934;

    font-size: 12px;
    font-weight: 600;
  }
}

/* ==========================================================
   PROPERTY DETAIL CONTENT
========================================================== */

.property-detail-content {
  padding: 20px 0 0px;

  background: #fff;
}

.property-detail-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    360px;

  gap: 80px;

  align-items: start;
}

/* ==========================================================
   MAIN CONTENT
========================================================== */

.property-detail-main {
  min-width: 0;
}

.property-detail-block {
  padding: 0 0 60px;

  margin-bottom: 60px;

  border-bottom: 1px solid #eaecf0;
}

.property-detail-block:last-child {
  margin-bottom: 0;

  border-bottom: 0;
}

/* Section Label */

.property-section-label {
  position: relative;

  margin-bottom: 15px;

  padding-left: 43px;

  color: #d4af37;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.property-section-label::before {
  content: "";

  position: absolute;

  top: 50%;
  left: 0;

  width: 28px;
  height: 1px;

  background: #d4af37;
}

/* Heading */

.property-detail-block h2 {
  margin: 0 0 25px;

  color: #071934;

  font-size: 32px;
  font-weight: 700;

  line-height: 1.2;
}

/* Description */

.property-description {
  max-width: 800px;

  color: #667085;

  font-size: 16px;

  line-height: 1.9;
}

/* ==========================================================
   PROPERTY INFORMATION
========================================================== */

.property-info-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  border: 1px solid #eaecf0;

  border-radius: 22px;

  overflow: hidden;

  background: #fff;
}

/* Item */

.property-info-item {
  display: flex;
  align-items: center;

  gap: 16px;

  min-height: 125px;

  padding: 25px;

  border-right: 1px solid #eaecf0;

  border-bottom: 1px solid #eaecf0;

  transition: 0.35s;
}

.property-info-item:hover {
  background: #fafbfd;

  transform: translateY(-4px);
}

.property-info-item:hover .property-info-item__icon {
  background: #d4af37;

  color: #fff;
}

/* Remove right border */

.property-info-item:nth-child(3n) {
  border-right: 0;
}

/* Remove bottom row border */

.property-info-item:nth-last-child(-n + 3) {
  border-bottom: 0;
}

/* Icon */

.property-info-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 46px;
  height: 46px;

  flex-shrink: 0;

  background: rgba(212, 175, 55, 0.1);

  border-radius: 14px;

  color: #d4af37;

  font-size: 18px;
}

/* Text */

.property-info-item > div:last-child {
  display: flex;
  flex-direction: column;

  gap: 5px;
}

.property-info-item span {
  color: #98a2b3;

  font-size: 11px;
  font-weight: 500;

  text-transform: uppercase;

  letter-spacing: 0.6px;
}

.property-info-item strong {
  color: #071934;

  font-size: 14px;
  font-weight: 600;

  line-height: 1.4;
}

/* ==========================================================
   PROPERTY LOCATION
========================================================== */

.property-location-box {
  display: flex;

  gap: 22px;

  padding: 30px;

  background: #f7f9fc;

  border: 1px solid #eaecf0;

  border-radius: 20px;
}

.property-location-box__icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 54px;
  height: 54px;

  flex-shrink: 0;

  background: #fff;

  border-radius: 50%;

  color: #d4af37;

  font-size: 20px;

  box-shadow: 0 8px 20px rgba(7, 25, 52, 0.06);
}

.property-location-box span {
  display: block;

  margin-bottom: 5px;

  color: #98a2b3;

  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: 1px;
}

.property-location-box h3 {
  margin: 0 0 9px;

  color: #071934;

  font-size: 20px;
}

.property-location-box p {
  max-width: 600px;

  margin: 0;

  color: #667085;

  font-size: 13px;

  line-height: 1.7;
}

/* ==========================================================
   PROPERTY INQUIRY SIDEBAR
========================================================== */

.property-detail-sidebar {
  position: relative;
}

/* Card */

.property-inquiry-card {
  position: sticky;

  top: calc(var(--navbar-scroll-height) + 30px);

  padding: 34px;

  overflow: hidden;

  background: linear-gradient(145deg, #071934 0%, #0b2d5b 100%);

  border-radius: 26px;

  color: #fff;

  box-shadow: 0 25px 60px rgba(7, 25, 52, 0.15);

  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Decorative circle */

.property-inquiry-card::before {
  content: "";

  position: absolute;

  top: -100px;
  right: -100px;

  width: 240px;
  height: 240px;

  border: 1px solid rgba(255, 255, 255, 0.06);

  border-radius: 50%;
}

.property-inquiry-card::after {
  content: "";

  position: absolute;

  top: -55px;
  right: -55px;

  width: 150px;
  height: 150px;

  background: rgba(255, 255, 255, 0.025);

  border-radius: 50%;
}

/* Icon */

.property-inquiry-card__icon {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 52px;
  height: 52px;

  margin-bottom: 28px;

  background: rgba(212, 175, 55, 0.14);

  border: 1px solid rgba(212, 175, 55, 0.25);

  border-radius: 16px;

  color: #d4af37;

  font-size: 21px;
}

/* Label */

.property-inquiry-card__label {
  position: relative;
  z-index: 2;

  display: block;

  margin-bottom: 11px;

  color: #d4af37;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 2px;
}

/* Heading */

.property-inquiry-card h3 {
  position: relative;
  z-index: 2;

  margin: 0 0 15px;

  color: #fff;

  font-size: 27px;
  font-weight: 700;

  line-height: 1.2;
}

/* Paragraph */

.property-inquiry-card > p {
  position: relative;
  z-index: 2;

  margin: 0 0 27px;

  color: rgba(255, 255, 255, 0.65);

  font-size: 13px;

  line-height: 1.7;
}

/* ==========================================================
   INQUIRY PROPERTY INFO
========================================================== */

.property-inquiry-card__property {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;

  gap: 5px;

  margin-bottom: 22px;

  padding: 18px;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 15px;
}

.property-inquiry-card__property span {
  color: rgba(255, 255, 255, 0.45);

  font-size: 10px;
}

.property-inquiry-card__property strong {
  color: #fff;

  font-size: 14px;
}

.property-inquiry-card__property small {
  display: flex;
  align-items: center;

  gap: 5px;

  color: rgba(255, 255, 255, 0.55);

  font-size: 10px;
}

.property-inquiry-card__property i {
  color: #d4af37;
}

/* ==========================================================
   WHATSAPP
========================================================== */

.property-inquiry-whatsapp {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;

  gap: 10px;

  min-height: 54px;

  padding: 0 18px;

  background: #d4af37;

  border-radius: 14px;

  color: #fff;

  font-size: 12px;
  font-weight: 600;

  text-decoration: none;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.property-inquiry-whatsapp span {
  flex: 1;
}

.property-inquiry-whatsapp:hover {
  background: #be982c;

  color: #fff;

  transform: translateY(-3px);
}

/* Secondary Contact */

.property-inquiry-contact {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 52px;

  margin-top: 10px;

  padding: 0 18px;

  border: 1px solid rgba(255, 255, 255, 0.16);

  border-radius: 14px;

  color: #fff;

  font-size: 12px;
  font-weight: 500;

  text-decoration: none;

  transition: background 0.3s ease;
}

.property-inquiry-contact:hover {
  background: rgba(255, 255, 255, 0.07);

  color: #fff;
}

/* Note */

.property-inquiry-card__note {
  position: relative;
  z-index: 2;

  display: flex;

  gap: 8px;

  margin-top: 22px;

  color: rgba(255, 255, 255, 0.4);

  font-size: 10px;

  line-height: 1.5;
}

.property-inquiry-card__note i {
  color: #d4af37;
}

@media (max-width: 991px) {
  .property-detail-layout {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .property-detail-sidebar {
    width: 100%;
  }

  .property-inquiry-card {
    position: relative;

    top: auto;
  }
}

@media (max-width: 767px) {
  /* Content */

  .property-detail-content {
    padding: 10px 0 75px;
  }

  .property-detail-block {
    padding-bottom: 45px;

    margin-bottom: 45px;
  }

  /* Heading */

  .property-detail-block h2 {
    margin-bottom: 20px;

    font-size: 26px;
  }

  .property-section-label {
    font-size: 9px;

    letter-spacing: 1.7px;
  }

  /* Description */

  .property-description {
    font-size: 14px;

    line-height: 1.85;
  }

  /* Information */

  .property-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    border-radius: 18px;
  }

  .property-info-item {
    min-height: 125px;

    padding: 20px 16px;

    flex-direction: column;
    align-items: flex-start;

    gap: 13px;
  }

  .property-info-item:nth-child(3n) {
    border-right: 1px solid #eaecf0;
  }

  .property-info-item:nth-child(2n) {
    border-right: 0;
  }

  .property-info-item:nth-last-child(-n + 3) {
    border-bottom: 1px solid #eaecf0;
  }

  .property-info-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .property-info-item__icon {
    width: 40px;
    height: 40px;

    border-radius: 12px;

    font-size: 16px;
  }

  .property-info-item span {
    font-size: 9px;
  }

  .property-info-item strong {
    font-size: 12px;
  }

  /* Location */

  .property-location-box {
    padding: 22px;

    gap: 16px;

    border-radius: 17px;
  }

  .property-location-box__icon {
    width: 44px;
    height: 44px;

    font-size: 17px;
  }

  /* Inquiry */

  .property-inquiry-card {
    padding: 28px 24px;

    border-radius: 22px;
  }

  .property-inquiry-card h3 {
    font-size: 24px;
  }
}

/* ==========================================================
RELATED PROPERTY
========================================================== */

.related-property {
  padding: 90px 0;

  background: #f8fafc;
}

.related-property-grid {
  display: grid;

  grid-template-columns: 2fr 1fr;

  gap: 24px;

  margin-top: 55px;
}

.related-property-side {
  display: grid;

  gap: 24px;
}

.related-property-featured,
.related-property-small {
  position: relative;

  overflow: hidden;

  border-radius: 28px;

  display: block;

  text-decoration: none;

  color: #fff;
}

.related-property-featured {
  height: 520px;
}

.related-property-small {
  height: 248px;
}

.related-property-featured img,
.related-property-small img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.6s;
}

.related-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 10%,

    rgba(7, 25, 52, 0.85) 100%
  );
}

.related-content {
  position: absolute;

  left: 35px;

  bottom: 35px;

  z-index: 2;
}

.related-content span {
  display: inline-block;

  margin-bottom: 15px;

  padding: 8px 16px;

  border-radius: 30px;

  background: #d4af37;

  font-size: 11px;

  letter-spacing: 1px;

  text-transform: uppercase;
}

.related-content h3 {
  font-size: 34px;

  margin-bottom: 10px;
}

.related-content h4 {
  font-size: 24px;

  margin-bottom: 8px;
}

.related-content p,
.related-content small {
  color: rgba(255, 255, 255, 0.85);
}

.related-property-featured:hover img,
.related-property-small:hover img {
  transform: scale(1.08);
}

@media (max-width: 991px) {
  .related-property-grid {
    grid-template-columns: 1fr;
  }

  .related-property-featured {
    height: 320px;
  }

  .related-property-small {
    height: 220px;
  }

  .related-property-side {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
PROPERTY CTA
========================================================== */

.property-cta {
  padding: 0px 0 110px;

  background: #fff;
}

.property-cta-box {
  padding: 90px;

  border-radius: 36px;

  text-align: center;

  background: linear-gradient(135deg, #071934, #0d3567);

  position: relative;

  overflow: hidden;

  color: #fff;
}

.property-cta-box::before {
  content: "";

  position: absolute;

  width: 420px;

  height: 420px;

  border-radius: 50%;

  right: -120px;

  top: -120px;

  background: rgba(255, 255, 255, 0.04);
}

.property-cta-box span {
  color: #d4af37;

  letter-spacing: 3px;

  font-size: 12px;
}

.property-cta-box h2 {
  margin: 20px 0;

  font-size: 48px;

  line-height: 1.2;
  color: #fff;
}

.property-cta-box p {
  max-width: 700px;

  margin: 0 auto 35px;

  color: rgba(255, 255, 255, 0.75);

  line-height: 1.8;
}

@media (max-width: 991px) {
  .property-cta-box {
    padding: 30px;
    border-radius: 36px;
    text-align: center;
    background: linear-gradient(135deg, #071934, #0d3567);
    position: relative;
    overflow: hidden;
    color: #fff;
  }

  .property-cta-box h2 {
    margin: 20px 0;
    font-size: 27px;
    line-height: 1.2;
    color: #fff;
  }
}

/* ==========================================================
   PROPERTY LIGHTBOX
========================================================== */

.property-lightbox {
  position: fixed;

  inset: 0;

  z-index: 99999;

  display: flex;
  flex-direction: column;

  padding: 30px;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.property-lightbox.active {
  opacity: 1;
  visibility: visible;
}

/* Backdrop */

.property-lightbox__backdrop {
  position: absolute;

  inset: 0;

  background: rgba(3, 15, 34, 0.97);

  backdrop-filter: blur(10px);
}

/* Header */

.property-lightbox__header {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: space-between;

  height: 60px;

  color: #fff;
}

.property-lightbox__counter {
  display: flex;

  gap: 7px;

  font-size: 13px;

  color: rgba(255, 255, 255, 0.65);
}

/* Close */

.property-lightbox__close {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 46px;
  height: 46px;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.06);

  color: #fff;

  font-size: 17px;

  cursor: pointer;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.property-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.12);

  transform: rotate(90deg);
}

/* ==========================================================
   STAGE
========================================================== */

.property-lightbox__stage {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  flex: 1;

  min-height: 0;

  padding: 20px 80px;
}

/* Image */

.property-lightbox__image {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;
}

.property-lightbox__image img {
  display: block;

  max-width: 100%;
  max-height: 68vh;

  object-fit: contain;

  border-radius: 16px;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

/* Navigation */

.property-lightbox__nav {
  position: absolute;

  top: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 52px;
  height: 52px;

  padding: 0;

  transform: translateY(-50%);

  border: 1px solid rgba(255, 255, 255, 0.14);

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.06);

  color: #fff;

  cursor: pointer;

  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.property-lightbox__nav:hover {
  background: #d4af37;

  border-color: #d4af37;
}

.property-lightbox__nav--prev {
  left: 10px;
}

.property-lightbox__nav--next {
  right: 10px;
}

/* ==========================================================
   THUMBNAILS
========================================================== */

.property-lightbox__thumbnails {
  position: relative;
  z-index: 2;

  display: flex;
  justify-content: center;

  gap: 10px;

  height: 90px;

  padding-top: 10px;

  overflow-x: auto;
}

.property-lightbox__thumbnail {
  width: 100px;
  height: 65px;

  flex-shrink: 0;

  padding: 3px;

  overflow: hidden;

  border: 1px solid transparent;

  border-radius: 10px;

  background: transparent;

  opacity: 0.45;

  cursor: pointer;

  transition:
    opacity 0.3s ease,
    border-color 0.3s ease;
}

.property-lightbox__thumbnail img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 7px;
}

.property-lightbox__thumbnail:hover {
  opacity: 0.8;
}

.property-lightbox__thumbnail.active {
  opacity: 1;

  border-color: #d4af37;
}

/* Body Lock */

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .property-lightbox {
    padding: 15px;
  }

  .property-lightbox__header {
    height: 55px;
  }

  .property-lightbox__stage {
    padding: 15px 0 80px;
  }

  .property-lightbox__image img {
    max-height: 65vh;

    border-radius: 12px;
  }

  .property-lightbox__nav {
    top: auto;
    bottom: 15px;

    width: 46px;
    height: 46px;

    transform: none;

    background: rgba(255, 255, 255, 0.1);
  }

  .property-lightbox__nav--prev {
    left: calc(50% - 55px);
  }

  .property-lightbox__nav--next {
    right: calc(50% - 55px);
  }

  .property-lightbox__thumbnails {
    justify-content: flex-start;

    height: 75px;
  }

  .property-lightbox__thumbnail {
    width: 80px;
    height: 55px;
  }
}
