:root {
  --white: #ffffff;
  --light: #fafafa;
  --light-2: #f5f5f5;
  --text: #222222;
  --muted: #777777;
  --gold: #d4af37;
  --gold-soft: #f5e6a9;
  --line: rgba(0, 0, 0, 0.08);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 18px 40px rgba(212, 175, 55, 0.16);
  --radius: 28px;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  padding-top: 88px;
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom, #ffffff, #f8f8f8);
  color: var(--text);
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

button,
input {
  font-family: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

h1,
h2,
h3 {
  letter-spacing: -0.5px;
}

.tag {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.08);
  color: #8a6a09;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1300;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 30px;
  padding: 18px 0;
}

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

.custom-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.site-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}

.logo h2 {
  color: #111111;
  font-size: 22px;
  font-weight: 700;
}

.logo p {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.desktop-nav {
  display: flex;
  justify-content: center;
}

.desktop-nav .main-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav .main-menu li {
  list-style: none;
}

.desktop-nav .main-menu a {
  color: #333333;
  position: relative;
  font-weight: 500;
}

.desktop-nav .main-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transition: 0.3s ease;
}

.desktop-nav .main-menu a:hover {
  color: var(--gold);
}

.desktop-nav .main-menu a:hover::after {
  width: 100%;
}

.desktop-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-icon-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #e8e8e8;
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  cursor: pointer;
  transition: 0.3s ease;
  font-weight: 600;
}

.header-icon-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.12);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #111111;
  font-size: 24px;
  cursor: pointer;
}

/* Side Menu */
.side-menu {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  height: 100vh;
  background: #ffffff !important;
  opacity: 1 !important;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.12);
  padding: 24px;
  transition: 0.35s ease;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.side-menu.active {
  right: 0;
}

.side-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.side-menu-top button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #eeeeee;
  background: #fff;
  color: #111;
  cursor: pointer;
  transition: 0.3s ease;
}

.side-menu-top button:hover {
  background: #f8f8f8;
}

.side-menu-account {
  display: flex;
  align-items: center;
  gap: 14px;
}

.side-account-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 20px;
}

.side-menu-account h4 {
  color: #111;
  margin-bottom: 4px;
}

.side-menu-account p {
  color: #777;
  font-size: 14px;
}

.side-menu-links .mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.side-menu-links .mobile-menu li {
  list-style: none;
}

.side-menu-links .mobile-menu a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border-radius: 18px;
  background: #f7f7f7;
  border: 1px solid transparent;
  color: #222;
  font-weight: 600;
  transition: 0.3s ease;
}

.side-menu-links .mobile-menu a:hover {
  transform: translateX(4px);
  border-color: rgba(212, 175, 55, 0.3);
  background: #fff;
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.08);
}

.side-menu-bottom {
  margin-top: auto;
  padding-top: 24px;
}

.side-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #111;
  font-weight: 700;
  transition: 0.3s ease;
}

.side-menu-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.22);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9990;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Buttons */
.btn {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.35s ease;
  font-weight: 700;
  font-size: 14px;
}

.btn-dark {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #111111;
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.btn-dark:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 30px rgba(212, 175, 55, 0.28);
}

.btn-white {
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-white:hover {
  transform: translateY(-3px);
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(255, 255, 255, 0.22);
}

/* Hero Banner */
.hero-banner {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.45) 42%,
      rgba(0, 0, 0, 0.12) 100%
    );
}

.hero-banner-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
}

.hero-banner-content .tag {
  background: rgba(255, 255, 255, 0.16);
  color: #f5e6a9;
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.hero-banner-content h1 {
  max-width: 760px;
  font-size: 72px;
  line-height: 1.03;
  color: #ffffff;
  margin-bottom: 24px;
}

.hero-banner-content p {
  max-width: 560px;
  font-size: 20px;
  color: #f2f2f2;
  margin-bottom: 34px;
}

.hero-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Properties */
.properties {
  padding: 80px 0 100px;
}

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

.section-head h2 {
  font-size: 42px;
  margin-top: 12px;
  color: #111111;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  transition: 0.35s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.35);
}

.card img {
  height: 260px;
  object-fit: cover;
}

.card-content {
  padding: 22px;
}

.card-content h3 {
  color: #111111;
  margin-bottom: 8px;
}

.card-content p {
  color: #777777;
  margin-bottom: 14px;
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  color: #8a6a09;
}

.view-all-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.view-all-btn {
  padding-left: 28px;
  padding-right: 28px;
}

/* News Carousel */
.news-section {
  padding: 70px 0 90px;
  background: linear-gradient(to bottom, #fff, #fafafa);
}

.news-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.news-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.news-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s ease;
}

.news-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: #fff;
  border: 1px solid #eee;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.35s ease;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(212, 175, 55, 0.35);
}

.news-card img {
  height: 230px;
  object-fit: cover;
}

.news-content {
  padding: 22px;
}

.news-content span {
  color: #8a6a09;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.news-content h3 {
  color: #111;
  margin: 10px 0;
  font-size: 21px;
  line-height: 1.25;
}

.news-content p {
  color: #666;
  font-size: 14px;
  margin-bottom: 16px;
}

.news-content a {
  color: #8a6a09;
  font-weight: 800;
}

.carousel-btn {
  min-width: 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #e7e7e7;
  background: #fff;
  color: #111;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
  z-index: 3;
}

.carousel-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  border-color: transparent;
  transform: scale(1.05);
}

/* Footer */
.footer {
  position: relative;
  background: linear-gradient(135deg, #111111, #181818, #1f1f1f);
  color: #ffffff;
  padding: 70px 0 30px;
  margin-top: 80px;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 260px;
  height: 260px;
  background: rgba(212, 175, 55, 0.08);
  filter: blur(70px);
  border-radius: 50%;
}

.footer::after {
  content: "";
  position: absolute;
  bottom: -140px;
  right: -100px;
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.04);
  filter: blur(80px);
  border-radius: 50%;
}

.footer-row {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  justify-content: center;
}

.footer .logo h2 {
  color: #ffffff;
}

.footer .logo p {
  color: #d8c27b;
}

.footer .site-logo,
.footer .custom-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-col {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 215, 120, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.footer-col:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.12);
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 18px;
  color: var(--gold-soft);
}

.footer-col p,
.footer-col a {
  display: block;
  margin-bottom: 12px;
  color: #e7e7e7;
  font-size: 14px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-col a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-col i {
  margin-right: 10px;
  color: var(--gold);
  min-width: 18px;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-menu li {
  list-style: none;
}

.footer-menu a {
  display: block;
  color: #e7e7e7;
  font-size: 14px;
}

.footer-menu a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.subscribe-box {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.subscribe-box input {
  flex: 1;
  padding: 13px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  outline: none;
  backdrop-filter: blur(12px);
}

.subscribe-box input::placeholder {
  color: #cfcfcf;
}

.subscribe-box input:focus {
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
}

.subscribe-box button {
  padding: 13px 18px;
  border-radius: 22px;
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #111111;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subscribe-box button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  padding-top: 22px;
}

.copyright {
  color: #d6d6d6;
  font-size: 14px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.18);
  backdrop-filter: blur(10px);
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.social-icons a:hover {
  transform: translateY(-5px) scale(1.08);
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #111111;
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(212, 175, 55, 0.28);
}

/* Animations */
.reveal {
  animation: fadeUp 1s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .desktop-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .header-icon-btn {
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }

  .header-icon-btn span {
    display: none;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #eaeaea;
    background: #fff;
    color: #111;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  }

  .hero-banner {
    min-height: 680px;
  }

  .hero-banner-content h1 {
    font-size: 54px;
  }

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

  .news-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }

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

/* Mobile */
@media (max-width: 768px) {
  body {
    padding-top: 78px;
  }

  .nav {
    grid-template-columns: auto 1fr auto auto;
    gap: 10px;
    padding: 14px 0;
  }

  .site-logo,
  .custom-logo {
    width: 46px;
    height: 46px;
  }

  .logo h2 {
    font-size: 20px;
  }

  .logo p {
    font-size: 10px;
  }

  .desktop-actions {
    justify-self: end;
  }

  .hero-banner {
    min-height: 620px;
    text-align: center;
  }

  .hero-banner-overlay {
    background: rgba(0, 0, 0, 0.55);
  }

  .hero-banner-content h1 {
    font-size: 40px;
  }

  .hero-banner-content p {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-banner-buttons {
    justify-content: center;
  }

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

  .section-head h2 {
    font-size: 30px;
  }

  .news-carousel {
    gap: 8px;
  }

  .news-card {
    flex: 0 0 100%;
  }

  .carousel-btn {
    min-width: 40px;
    width: 40px;
    height: 40px;
  }

  .footer {
    padding: 60px 0 25px;
  }

  .footer-logo {
    justify-content: center;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }

  .subscribe-box {
    flex-direction: column;
  }

  .subscribe-box button {
    width: 100%;
  }
}
.archive-hero {
  padding: 120px 0 70px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.45)),
    url("../images/hero.jpg") center/cover no-repeat;
  text-align: center;
  color: #fff;
}

.archive-hero .tag {
  color: #111;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  border-color: transparent;
}

.archive-hero h1 {
  font-size: 56px;
  margin-bottom: 16px;
}

.archive-hero p {
  max-width: 620px;
  margin: auto;
  color: #f1f1f1;
  font-size: 18px;
}

.archive-properties {
  padding-top: 80px;
}

.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.pagination-wrapper .nav-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.pagination-wrapper .page-numbers {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #e7e7e7;
  background: #fff;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: 0.3s ease;
}

.pagination-wrapper .page-numbers.current,
.pagination-wrapper .page-numbers:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  border-color: transparent;
  color: #111;
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.18);
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.empty-state h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.empty-state p {
  color: #777;
}

@media (max-width: 768px) {
  .archive-hero {
    padding: 90px 0 55px;
  }

  .archive-hero h1 {
    font-size: 38px;
  }

  .archive-hero p {
    font-size: 16px;
  }
}
.single-property-hero {
  padding: 120px 0 70px;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.45)),
    url("../images/hero.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
}

.single-property-hero .tag {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #111;
  border-color: transparent;
}

.single-property-hero h1 {
  font-size: 58px;
  margin-bottom: 14px;
}

.single-property-hero p {
  color: #f1f1f1;
  font-size: 18px;
}

.single-property-section {
  padding: 80px 0 100px;
}

.single-property-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 34px;
  align-items: start;
}

.property-gallery {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 30px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.property-main-image img {
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
}

.property-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.property-thumb {
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  opacity: 0.75;
  transition: 0.3s ease;
}

.property-thumb:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.property-thumb img {
  height: 90px;
  object-fit: cover;
}

.property-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.property-info-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 22px;
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow);
}

.property-info-box i {
  color: var(--gold);
  font-size: 24px;
  margin-bottom: 10px;
}

.property-info-box strong {
  display: block;
  font-size: 22px;
  color: #111;
}

.property-info-box span {
  color: #777;
  font-size: 14px;
}

.property-content-block {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  
}

.property-content-block h2 {
  font-size: 28px;
  margin-bottom: 14px;
  color: #111;
}

.property-content-block p,
.property-description {
  color: #666;
}

.facility-list,
.payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.facility-list span,
.payment-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fafafa;
  border: 1px solid #eee;
  padding: 11px 16px;
  border-radius: 999px;
  color: #333;
  font-weight: 600;
}

.facility-list i,
.payment-list i {
  color: var(--gold);
}

.property-map {
  overflow: hidden;
  border-radius: 22px;
}

.property-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.property-booking-card {
  position: sticky;
  top: 120px;
}

.booking-card-inner {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow-hover);
}

.booking-label {
  color: #8a6a09;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.booking-card-inner h3 {
  font-size: 34px;
  color: #111;
  margin: 8px 0 12px;
}

.booking-card-inner p {
  color: #666;
  margin-bottom: 22px;
}

.booking-card-inner .btn {
  width: 100%;
  margin-bottom: 12px;
}

.property-outline-btn {
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: none;
}

@media (max-width: 1024px) {
  .single-property-layout {
    grid-template-columns: 1fr;
  }

  .property-booking-card {
    position: static;
  }

  .property-info-grid {
    grid-template-columns: repeat(2, 1fr);

  }
}

@media (max-width: 768px) {
  .single-property-hero {
    padding: 90px 0 55px;
  }

  .single-property-hero h1 {
    font-size: 38px;
  }

  .property-main-image img {
    height: 330px;
  }

  .property-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }

  .property-info-grid {
    grid-template-columns: 1fr;
    
  }

  .property-content-block {
    padding: 22px;
  }
}
@media (max-width: 768px) {

  .single-property-layout {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  /* ORDER */
  .property-gallery {
    order: 1;
  }

  .property-info-grid {
    order: 2;
  }

  .property-booking-card {
    order: 3;
    position: static;
    width: 100%;
  }

  .property-content-block {
    order: 4;
  }

  /* GALLERY */
  .property-gallery {
    padding: 10px;
    border-radius: 22px;
  }

  .property-main-image img {
    height: 300px;
    border-radius: 18px;
  }

  .property-thumbs {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .property-thumb img {
    height: 70px;
  }

  /* INFO GRID */
  .property-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
        margin-top: 35px;
    margin-bottom: 35px;
  }

  .property-info-box {
    padding: 16px 10px;
    border-radius: 18px;
  }

  .property-info-box i {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .property-info-box strong {
    font-size: 18px;
  }

  .property-info-box span {
    font-size: 13px;
  }

  /* BOOKING CARD */
  .booking-card-inner {
    padding: 22px;
    border-radius: 22px;
  }

  .booking-card-inner .btn {
    width: 100%;
  }

  /* CONTENT BLOCKS */
  .property-content-block {
    padding: 20px;
    border-radius: 22px;
    margin-bottom: 18px;
  }

}
/* SEARCH POPUP */
.search-popup {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
}

.search-popup.active {
  opacity: 1;
  visibility: visible;
}

.search-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
}

.search-popup-box {
  position: relative;
  width: 92%;
  max-width: 700px;
  background: rgba(255,255,255,0.96);
  border-radius: 34px;
  padding: 45px;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  animation: popupFade 0.35s ease;
}

@keyframes popupFade {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.search-popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #f5f5f5;
  color: #111;
  cursor: pointer;
  transition: 0.3s ease;
}

.search-popup-close:hover {
  background: var(--gold);
}

.search-popup-box h2 {
  font-size: 36px;
  margin-bottom: 28px;
  color: #111;
}

.search-popup-form {
  display: flex;
  gap: 14px;
}

.search-popup-form input {
  flex: 1;
  height: 62px;
  border-radius: 20px;
  border: 1px solid #e8e8e8;
  padding: 0 22px;
  font-size: 16px;
  background: #fafafa;
}

.search-popup-form input:focus {
  outline: none;
  border-color: rgba(212,175,55,0.45);
}

.search-popup-form button {
  height: 62px;
  padding: 0 28px;
  border-radius: 20px;
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #111;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width:768px) {

  .search-popup-box {
    padding: 30px 22px;
    border-radius: 26px;
  }

  .search-popup-box h2 {
    font-size: 28px;
  }

  .search-popup-form {
    flex-direction: column;
  }

  .search-popup-form button {
    width: 100%;
  }

}
/* POLICY */
.policy-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.policy-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
}

/* RESTRICTED */
.policy-list .policy-restricted {
  background: #fff5f5;
  border-color: #f5c2c2;
  color: #8b1e1e;
}

.policy-list .policy-restricted i {
  color: #c62828;
}

/* PET FRIENDLY */
.policy-list .policy-friendly {
  background: #edf5ff !important;
  border-color: #bcd7ff !important;
  color: #1d4ed8 !important;
}

.policy-list .policy-friendly i {
  color: #2563eb !important;
}
/* =================================
   GALLERY LIGHTBOX
================================= */

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox img {
  max-width: 95%;
  max-height: 92vh;
  border-radius: 18px;
  object-fit: contain;
  animation: galleryZoom 0.35s ease;
}

@keyframes galleryZoom {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.gallery-lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

.gallery-lightbox-close:hover {
  background: var(--gold);
  color: #111;
}

.property-main-image img {
  cursor: zoom-in;
}

.property-thumb img {
  cursor: pointer;
}

@media (max-width:768px) {

  .gallery-lightbox {
    padding: 20px;
  }

  .gallery-lightbox-close {
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
  }

}
/*things to know*/
.things-to-know-section {
  padding: 80px 0 100px;
  background: #fff;
}

.things-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.thing-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 28px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: 0.35s ease;
}

.thing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(212, 175, 55, 0.35);
}

.thing-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.thing-card h3 {
  font-size: 21px;
  color: #111;
  margin-bottom: 10px;
}

.thing-card p {
  color: #666;
  font-size: 15px;
}

@media (max-width: 1024px) {
  .things-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .things-to-know-section {
    padding: 60px 0 75px;
  }

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

  .thing-card {
    padding: 24px 20px;
  }
}
.learn-more-btn {
  margin-top: 18px;
  border: none;
  background: transparent;
  color: var(--gold);
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  transition: 0.3s ease;
}

.learn-more-btn:hover {
  opacity: 0.7;
}

/* POPUP */
.thing-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
}

.thing-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.thing-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 92%;
  max-width: 520px;
  background: #fff;
  border-radius: 30px;
  padding: 34px;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.thing-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.thing-popup h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #111;
}

.thing-popup p {
  color: #666;
  line-height: 1.8;
}

.thing-popup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #f5f5f5;
  cursor: pointer;
  transition: 0.3s ease;
}

.thing-popup-close:hover {
  background: var(--gold);
}

.property-filter-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow);
  margin-bottom: 45px;
}

.property-filter-form input,
.property-filter-form select {
  width: 100%;
  height: 52px;
  border: 1px solid #eeeeee;
  border-radius: 16px;
  padding: 0 16px;
  background: #fafafa;
  color: #111;
  outline: none;
}

.property-filter-form input:focus,
.property-filter-form select:focus {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
  background: #fff;
}

.property-filter-form .btn {
  height: 52px;
}

.filter-reset {
  border: 1px solid #eeeeee;
  background: #ffffff;
  box-shadow: none;
}

@media (max-width: 1024px) {
  .property-filter-form {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .property-filter-form {
    grid-template-columns: 1fr;
    padding: 14px;
    border-radius: 22px;
  }
}
.related-properties-section {
  padding: 80px 0 100px;
  background: #fafafa;
}
/* ABOUT PAGE */
.about-hero {
  padding: 140px 0 80px;
  text-align: center;
  background: #fafafa;
}

.about-hero h1 {
  max-width: 850px;
  margin: 18px auto;
}

.about-hero p {
  max-width: 720px;
  margin: auto;
}

.about-section {
  padding: 80px 0 100px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-box {
  background: #fff;
  border: 1px solid #eeeeee;
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.about-box h2 {
  margin-bottom: 12px;
}

.about-stats {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-stat-card {
  background: #fff;
  border-radius: 28px;
  padding: 34px;
  text-align: center;
  border: 1px solid #eeeeee;
  box-shadow: var(--shadow);
}

.about-stat-card h3 {
  font-size: 42px;
  color: var(--gold);
  margin-bottom: 10px;
}

.about-stat-card p {
  color: #666;
}

@media (max-width: 992px) {

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

  .about-stats {
    grid-template-columns: 1fr;
  }

}
.contact-hero {
  padding: 140px 0 80px;
  background: #fafafa;
  text-align: center;
}

.contact-hero h1 {
  max-width: 850px;
  margin: 18px auto;
}

.contact-hero p {
  max-width: 720px;
  margin: auto;
  color: #666;
}

.contact-section {
  padding: 80px 0 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
}

.contact-info-card,
.contact-form-card {
  background: #fff;
  border: 1px solid #eeeeee;
  border-radius: 30px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.contact-info-card h2,
.contact-form-card h2 {
  margin-bottom: 22px;
  color: #111;
}

.contact-info-card p {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  color: #666;
}

.contact-info-card i {
  color: var(--gold);
  min-width: 20px;
}

.contact-page-form input,
.contact-page-form textarea {
  width: 100%;
  border: 1px solid #eeeeee;
  background: #fafafa;
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 14px;
  outline: none;
}

.contact-page-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-page-form input:focus,
.contact-page-form textarea:focus {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
  background: #fff;
}

.contact-page-form button {
  width: 100%;
}

.contact-map-section {
  padding: 40px 0 100px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
/* FAQ PAGE */
.faq-hero {
  padding: 140px 0 80px;
  background: #fafafa;
  text-align: center;
}

.faq-hero h1 {
  max-width: 850px;
  margin: 18px auto;
}

.faq-hero p {
  max-width: 700px;
  margin: auto;
}

.faq-section {
  padding: 80px 0 100px;
}

.faq-wrapper {
  max-width: 950px;
  margin: auto;
}

.faq-item {
  border: 1px solid #eeeeee;
  border-radius: 24px;
  margin-bottom: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 26px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 19px;
  font-weight: 700;
  color: #111;
}

.faq-question i {
  transition: 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.35s ease;
}

.faq-answer p {
  padding: 0 28px 28px;
  color: #666;
  line-height: 1.8;
}
/* 404 PAGE */
.error-page {
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
  background:
    linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.92)),
    url("../images/hero.jpg") center/cover no-repeat;
}

.error-content {
  max-width: 720px;
  margin: auto;
  text-align: center;
  background: rgba(255,255,255,0.9);
  border: 1px solid #eeeeee;
  border-radius: 34px;
  padding: 55px 40px;
  box-shadow: var(--shadow-hover);
  backdrop-filter: blur(12px);
}

.error-content h1 {
  font-size: 64px;
  color: #111;
  margin-bottom: 18px;
}

.error-content p {
  color: #666;
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 30px;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .error-page {
    padding: 90px 0;
  }

  .error-content {
    padding: 40px 24px;
  }

  .error-content h1 {
    font-size: 42px;
  }

  .error-content p {
    font-size: 16px;
  }
}