/* Global App Styles */
main {
  padding-top: 80px;
}

@media (max-width: 1100px) {
  main { padding-top: 80px; }
}
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #E2C97E;
  --gold-dark: #9A7A2E;
  --black: #0D0D0D;
  --charcoal: #1A1A1A;
  --dark-card: #141414;
  --text-muted: #888;
  --text-light: #ccc;
  --white: #FFFFFF;
  --off-white: #F7F5F0;
  --section-bg: #F2EFE8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; }
ul { list-style: none; }

.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: contain;
}

.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--black);
}

.logo-text .brand {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  line-height: 1;
}

.logo-text .tagline {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  display: block;
  width: 30px; height: 2px;
  background: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-sub {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 56px;
}

.view-all-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: gap 0.2s;
  cursor: pointer;
}

.view-all-link:hover { gap: 10px; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes subtle-zoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

@media (max-width: 1100px) {
  .section-title { font-size: 36px; }
}

@media (max-width: 700px) {
  .section-title { font-size: 28px; }
}
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 2000;
  padding: 0 60px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  transition: background 0.4s;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center;
}

nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

nav a:hover, nav a.active { color: var(--gold); }

.nav-cta {
  padding: 10px 24px;
  background: var(--gold);
  color: var(--black) !important;
  border-radius: 50px;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }

@media (max-width: 1100px) {
  header { padding: 0 30px; }
}

@media (max-width: 700px) {
  nav ul { display: none; }
}
.hero {
  position: relative;
  height: 100vh;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--charcoal);
  background-image: url('/assets/hero.png');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  animation: subtle-zoom 20s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,13,13,0.88) 0%,
    rgba(13,13,13,0.65) 50%,
    rgba(13,13,13,0.25) 100%
  );
}

.hero-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 280px;
  background: linear-gradient(to top, var(--black), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 60px;
  animation: fade-up 1s ease forwards;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-text {
  max-width: 700px;
  margin-bottom: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 600;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 span { color: var(--gold); }

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 560px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-search-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 60px;
  margin-top: 48px;
  animation: fade-up 1.2s ease forwards;
}

.hero-search-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-search-bar {
  max-width: 1100px;
  background: rgba(255,255,255,0.97);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  gap: 0;
  align-items: stretch;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  border: 1px solid rgba(201,168,76,0.3);
  backdrop-filter: blur(12px);
}

.hero-search-field {
  flex: 1;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-search-field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 5px;
}

.hero-search-field input,
.hero-search-field select {
  width: 100%;
  border: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--black);
  outline: none;
}

.hero-search-divider {
  width: 1px;
  background: #E0D9CC;
  margin: 8px 0;
  align-self: stretch;
}

.hero-search-btn {
  padding: 14px 32px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: center;
  margin: 4px;
}

.hero-search-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}

@media (max-width: 1100px) {
  .hero-content { padding: 0 30px; }
  .hero-search-panel { padding: 0 30px; }
}

@media (max-width: 700px) {
  .hero-search-panel { padding: 0 15px; margin-top: 30px; }
  .hero-search-bar { 
    flex-direction: column; 
    gap: 4px; 
    padding: 15px;
    background: rgba(255, 255, 255, 0.98);
  }
  .hero-search-field {
    padding: 12px 10px;
    border-bottom: 1px solid #f0f0f0;
  }
  .hero-search-field:last-of-type {
    border-bottom: none;
  }
  .hero-search-divider { display: none; }
  .hero-search-btn { 
    width: 100%; 
    justify-content: center; 
    margin: 8px 4px 4px; 
    padding: 16px;
    font-size: 16px;
  }
  .hero-bg {
    background-image: url('/assets/hero_mobile.jpg');
    background-position: center center;
  }
  .hero h1 { font-size: 40px; }
  .hero p { font-size: 16px; margin-bottom: 30px; }
}
:root {
    --gold: #C9A84C;
    --gold-light: #E2C97E;
    --gold-dark: #9A7A2E;
    --black: #0D0D0D;
    --charcoal: #1A1A1A;
    --dark-card: #1E1E2E;
    --card-bg: #252535;
    --text-muted-card: #A0A0B0;
    --text-light-card: #E0E0E8;
    --white: #FFFFFF;
    --off-white: #F8F9FC;
    --section-bg: #F8F9FC;
    --card-shadow: rgba(0, 0, 0, 0.15);
}

/* Featured Section */
.featured {
    background: var(--section-bg);
    padding: 80px 60px;
    position: relative;
    color: var(--black);
}

.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), transparent);
}

.featured-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header Section - Left Aligned */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    flex-wrap: wrap;
    gap: 20px;
}

.header-left {
    flex: 1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 16px;
}

.section-badge::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.featured .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
    line-height: 1.2;
}

.featured .section-title .highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.section-description {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    max-width: 500px;
}

/* View All Button - No Border, Right Aligned */
.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-dark);
    font-size: 14px;
    font-weight: 600;
    background: transparent;
    border: none;
    padding: 10px 0;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.view-all-btn:hover {
    gap: 12px;
    color: var(--gold);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

/* Dark Mode Cards */
.prop-card {
    background: #1e1e1e;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px var(--card-shadow);
}

.prop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--gold);
}

.card-image-wrapper {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.prop-card:hover .card-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 26, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.prop-card:hover .image-overlay {
    opacity: 1;
}

.quick-view-btn {
    padding: 8px 18px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(10px);
}

.prop-card:hover .quick-view-btn {
    transform: translateY(0);
}

.quick-view-btn:hover {
    background: var(--gold-light);
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gold);
    color: var(--black);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    z-index: 2;
}

.card-content {
    padding: 15px;
}

.property-type {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 6px;
}

.property-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.property-location {
    font-size: 12px;
    color: var(--text-muted-card);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
}

.property-location i {
    color: var(--gold);
}

.property-features {
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 15px;
    padding: 10px 0;
}

.prop-card .feature-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  color: var(--text-light-card);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.prop-card .feature-item:last-child {
  border-right: none;
}

.prop-card .feature-item i {
  color: var(--gold);
  font-size: 15px;
}

.prop-card .feature-item span {
  font-weight: 500;
}

.card-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 800;
    color: var(--gold);
}

.price-period {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: var(--text-muted-card);
    font-weight: 400;
}

.details-btn {
    padding: 8px 16px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    justify-content: center;
}

.details-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    gap: 10px;
}

.browse-all {
    text-align: center;
    margin-top: 52px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 42px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 168, 76, 0.3);
    gap: 14px;
}

/* Responsive */
@media (max-width: 1200px) {
    .properties-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1100px) {
    .featured {
        padding: 60px 30px;
    }
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .featured {
        padding: 50px 20px;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .properties-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }
    .card-footer {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    .details-btn {
        justify-content: center;
    }
    .price {
        text-align: center;
    }
}
.modal-overlay {
  z-index: 1000;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  padding: 20px;
  animation: 0.3s fadeIn;
  display: flex;
  position: fixed;
  inset: 0;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-container {
  background: #111;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 12px;
  width: 100%;
  max-width: 1000px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-close {
  color: #fff;
  cursor: pointer;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 24px;
  transition: all 0.2s;
  display: flex;
  position: absolute;
  top: 20px;
  right: 20px;
}

.modal-close:hover {
  background: var(--gold);
  color: var(--black);
  transform: rotate(90deg);
}

.modal-content {
  flex-direction: column;
  display: flex;
}

.carousel-main {
  background: #000;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 500px;
  display: flex;
  position: relative;
}

.image-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.modal-image {
  object-fit: contain;
  -webkit-user-select: none;
  user-select: none;
  max-width: 100%;
  max-height: 100%;
}

.nav-btn {
  color: var(--gold);
  border: 1px solid var(--gold);
  cursor: pointer;
  z-index: 5;
  background: rgba(201, 168, 76, 0.2);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 24px;
  transition: all 0.3s;
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.nav-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.nav-btn.prev { left: 20px; }
.nav-btn.next { right: 20px; }

.modal-info {
  background: #1a1a1a;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  display: flex;
}

.modal-header-info { flex: 1; }

.modal-title {
  color: #fff;
  margin-bottom: 4px;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
}

.modal-location {
  color: var(--text-muted-card);
  align-items: center;
  gap: 6px;
  font-size: 14px;
  display: flex;
}

.modal-location i { color: var(--gold); }

.carousel-indicators {
  gap: 8px;
  display: flex;
}

.indicator-dot {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  padding: 0;
  transition: all 0.3s;
}

.indicator-dot.active {
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .carousel-main { height: 350px; }
  .nav-btn { width: 40px; height: 40px; font-size: 20px; }
  .modal-info { flex-direction: column; align-items: flex-start; gap: 16px; }
  .carousel-indicators { justify-content: center; width: 100%; }
}

@media (max-width: 480px) {
  .carousel-main { height: 250px; }
  .modal-title { font-size: 20px; }
}

.stats-bar {
  background: var(--charcoal);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.stats-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  justify-content: space-around;
}

.stat-item {
  padding: 32px 20px;
  text-align: center;
  flex: 1;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .stats-inner { padding: 0 30px; }
}

@media (max-width: 700px) {
  .stats-inner { flex-wrap: wrap; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
}
.why-us {
  background: #0A0A0F;
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A84C, #E2C97E, transparent);
}

.why-us::after {
  content: '🏠';
  position: absolute;
  bottom: -80px;
  right: -80px;
  font-size: 300px;
  opacity: 0.02;
  pointer-events: none;
  transform: rotate(-15deg);
}

.why-us-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header Section - Stacked */
.why-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 56px;
}

.why-header-left {
  width: 100%;
}

.why-header-right {
  width: 100%;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #E2C97E;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #C9A84C;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0;
  line-height: 1.2;
}

.section-title .highlight {
  background: linear-gradient(135deg, #C9A84C, #E2C97E);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 0;
  max-width: 850px;
}

/* Services Grid - 3 cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

/* Card Styles */
.svc-card {
  background: #1e1e1e;
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid rgba(201, 168, 76, 0.15);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Animated gradient border on hover */
.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.08), transparent);
  transition: left 0.6s ease;
}

.svc-card:hover::before {
  left: 100%;
}

.svc-card:hover {
  transform: translateY(-6px);
  border-color: #C9A84C;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.4);
}

/* Icon */
.svc-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.svc-card:hover .svc-icon {
  border-radius: 50%;
  background: #C9A84C;
  transform: scale(1.05);
}

.svc-icon i {
  font-size: 32px;
  color: #C9A84C;
  transition: all 0.4s ease;
}

.svc-card:hover .svc-icon i {
  color: #0D0D0D;
  transform: scale(1.1);
}

/* Title */
.svc-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.svc-card:hover h3 {
  color: #C9A84C;
}

/* Description */
.svc-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* Feature List */
.feature-list {
  text-align: center;
  margin-top: 16px;
  margin-bottom: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.feature-item i {
  color: #C9A84C;
  font-size: 14px;
}

/* Link Button */
.svc-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  background: transparent;
  border: 1.5px solid #C9A84C;
  color: #C9A84C;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.svc-link i {
  transition: transform 0.3s ease;
  font-size: 12px;
}

.svc-card:hover .svc-link {
  background: #C9A84C;
  color: #0D0D0D;
  gap: 12px;
}

.svc-card:hover .svc-link i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1100px) {
  .why-us {
    padding: 60px 30px;
  }
  .section-title {
    font-size: 36px;
  }
  .services-grid {
    gap: 18px;
  }
}

@media (max-width: 900px) {
  .why-top {
    flex-direction: column;
    gap: 30px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .section-title {
    font-size: 32px;
  }
  .why-header-right {
    flex: auto;
  }
}

@media (max-width: 768px) {
  .why-us {
    padding: 50px 20px;
  }
  .section-title {
    font-size: 28px;
  }
  .section-label::before {
    width: 30px;
  }
  .svc-card {
    padding: 28px 20px;
  }
  .svc-card h3 {
    font-size: 20px;
  }
  .svc-icon {
    width: 60px;
    height: 60px;
  }
  .svc-icon i {
    font-size: 28px;
  }
  .feature-item {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
  }
  .svc-card {
    padding: 24px 18px;
  }
  .svc-link {
    padding: 8px 20px;
    font-size: 12px;
  }
}
.contact {
  background: var(--off-white);
  padding: 100px 60px;
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact .section-label { color: var(--gold-dark); }
.contact .section-title { color: var(--black); }

.info-items { margin-top: 40px; }

.info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.info-ico {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--black);
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}

.info-text p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 48px;
  border: 1px solid #E0D9CC;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--black);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #E0D9CC;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--black);
  background: var(--off-white);
  outline: none;
  transition: border-color 0.2s;
}

.form-control:focus { border-color: var(--gold); background: var(--white); }

textarea.form-control { height: 130px; resize: none; }

.submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  margin-top: 6px;
}

.submit-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

@media (max-width: 1100px) {
  .contact { padding-left: 30px; padding-right: 30px; }
}

@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}
footer {
  background: var(--charcoal);
  border-top: 3px solid var(--gold);
  padding: 72px 60px 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-about p {
  color: #777;
  font-size: 14px;
  line-height: 1.7;
  margin: 20px 0 24px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
}

.socials a:hover { background: var(--gold); color: var(--black); }

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: #777;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold); }

.footer-subscribe p {
  color: #777;
  font-size: 13px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.sub-row {
  display: flex;
  overflow: hidden;
  border-radius: 50px;
  border: 1px solid rgba(201,168,76,0.3);
}

.sub-row input {
  flex: 1;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--white);
  outline: none;
}

.sub-row button {
  padding: 12px 18px;
  background: var(--gold);
  border: none;
  color: var(--black);
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s;
}

.sub-row button:hover { background: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #555;
}

.footer-bottom a {
  color: #555;
  text-decoration: none;
  margin-left: 24px;
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--gold); }

.admin-footer-link {
  color: var(--gold) !important;
  font-size: 10px;
  opacity: 0.4;
  margin-right: 15px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.admin-footer-link:hover {
  opacity: 0.8;
  color: var(--gold) !important;
}

@media (max-width: 1100px) {
  footer { padding-left: 30px; padding-right: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom a { margin: 0 12px; }
}
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: #0d0d0d;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 2000;
    border-top: 1px solid rgba(201, 168, 76, 0.3);
    padding: 0 10px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    display: none; /* Hidden by default */
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(201, 168, 76, 0.7); /* Muted gold */
    text-decoration: none;
    gap: 4px;
    transition: all 0.3s ease;
    flex: 1;
}

.nav-item i {
    font-size: 24px;
    color: var(--gold); /* Bright gold */
    transition: all 0.3s ease;
}

.nav-item span {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Active state */
.nav-item.active {
    color: #ffffff;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 12px;
    margin: 5px;
    height: 55px;
}

.nav-item.active i {
    color: var(--gold);
    transform: scale(1.1);
}

/* Mobile visibility */
@media (max-width: 768px) {
    .bottom-nav {
        display: flex;
    }
}

/* Add padding to bottom of main container to prevent content hiding behind nav */
@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
    }
}
.about-page {
  background: var(--white);
  color: var(--black);
}

.about-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.about-hero {
  background: linear-gradient(rgba(13, 13, 13, 0.8), rgba(13, 13, 13, 0.8)), url('/assets/hero.png');
  background-size: cover;
  background-position: center;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
}

.about-hero-content {
  max-width: 800px;
}

.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  margin: 20px 0;
  line-height: 1.1;
}

.about-hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* Labels */
.section-label {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
  display: block;
}

.highlight {
  color: var(--gold);
}

/* Mission Section */
.about-mission {
  padding: 100px 0;
  background: #fdfdfd;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 25px;
}

.mission-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.mission-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.about-stat-item {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-left: 4px solid var(--gold);
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Values Section */
.about-values {
  padding: 100px 0;
  background: #0d0d0d;
  color: var(--white);
}

.section-header.center {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 42px);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--gold);
  transform: translateY(-5px);
}

.value-icon {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 25px;
}

.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 15px;
}

.value-card p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  font-size: 15px;
}

/* Different Section */
.about-different {
  padding: 100px 0;
}

.different-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.different-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.different-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 42px);
  margin-bottom: 25px;
}

.different-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

.different-list {
  list-style: none;
  padding: 0;
}

.different-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-weight: 500;
  color: var(--black);
}

.different-list li i {
  color: var(--gold);
  font-size: 20px;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .mission-grid, .different-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .about-hero {
    height: 50vh;
  }
  
  .mission-stats {
    order: 1;
  }
  
  .mission-text {
    order: 2;
  }
}
:root {
  --properties-bg: #F8F9FC;
  --properties-text: #0D0D0D;
  --properties-card-bg: #1e1e1e; /* Dark theme for cards */
  --properties-muted: #A0A0B0;
  --properties-border: rgba(201, 168, 76, 0.2);
  --properties-shadow: rgba(0, 0, 0, 0.15);
}

.properties-page {
  background: var(--properties-bg);
  color: var(--properties-text);
  min-height: 100vh;
  padding-top: 80px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.properties-hero {
  padding: 60px 0 40px;
  text-align: center;
  background: white;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.back-nav {
  text-align: left;
  margin-bottom: 20px;
}

.back-btn {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.back-btn:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateX(-4px);
}

.properties-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 800;
  color: #000000;
  margin: 16px 0;
}

.highlight {
  color: var(--gold);
}

.properties-subtitle {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px;
}

.properties-filter-section {
  padding: 25px 0;
  background: white;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: sticky;
  top: 80px;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.search-container {
  display: flex;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.search-wrapper {
  position: relative;
  flex-grow: 1;
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 20px;
}

.search-input {
  width: 100%;
  padding: 12px 20px 12px 55px;
  background: #f1f3f6;
  border: 1px solid transparent;
  border-radius: 50px;
  color: var(--black);
  font-size: 16px;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
}

.search-btn-primary {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 0 30px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.search-btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.2);
}

.properties-list {
  padding: 60px 0 100px;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card Styles matching Homepage */
.properties-page .prop-card {
  background: var(--properties-card-bg);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--properties-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 20px var(--properties-shadow);
}

.properties-page .prop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.2);
  border-color: var(--gold);
}

.properties-page .card-image-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.properties-page .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.properties-page .prop-card:hover .card-image {
  transform: scale(1.05);
}

.properties-page .image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 26, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.properties-page .prop-card:hover .image-overlay {
  opacity: 1;
}

.properties-page .quick-view-btn {
  padding: 8px 18px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translateY(10px);
}

.properties-page .prop-card:hover .quick-view-btn {
  transform: translateY(0);
}

.properties-page .card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gold);
  color: var(--black);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

.properties-page .card-content {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.properties-page .property-type {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 6px;
  display: block;
}

.properties-page .property-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  line-height: 1.3;
}

.properties-page .property-location {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--properties-muted);
  font-size: 12px;
  margin-bottom: 12px;
}

.properties-page .property-location i {
  color: var(--gold);
}

.properties-page .property-features {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
}

.properties-page .feature-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: #E0E0E8;
  font-size: 11px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.properties-page .feature-item:last-child {
  border-right: none;
}

.properties-page .feature-item i {
  color: var(--gold);
  font-size: 15px;
}

.properties-page .card-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  margin-top: auto;
}

.properties-page .price {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--gold);
}

.properties-page .price-period {
  font-size: 11px;
  color: var(--properties-muted);
  font-weight: 400;
}

.properties-page .details-btn {
  background: var(--gold);
  border: none;
  color: var(--black);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.properties-page .details-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

@media (max-width: 1400px) {
  .properties-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1200px) {
  .properties-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .properties-title {
    font-size: 32px;
  }
  
  .properties-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .search-container {
    flex-direction: column;
    gap: 10px;
    padding: 0 10px;
  }

  .search-btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 16px;
  }

  .properties-filter-section {
    padding: 15px 0;
    top: 60px; /* Adjust for potentially smaller header */
  }
}
:root {
    --gold: #C9A84C;
    --gold-light: #E2C97E;
    --gold-dark: #9A7A2E;
    --black: #0D0D0D;
    --charcoal: #1A1A1A;
    --dark-card: #1E1E2E;
    --card-bg: #252535;
    --text-muted-card: #A0A0B0;
    --text-light-card: #E0E0E8;
    --white: #FFFFFF;
    --off-white: #F8F9FC;
    --section-bg: #F8F9FC;
    --card-shadow: rgba(0, 0, 0, 0.15);
}

.property-details-container {
    background: var(--section-bg);
    color: var(--black);
    min-height: 100vh;
}

/* Custom gradient text */
.gradient-text {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Image gallery thumbnails */
.thumbnail-img {
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    border-radius: 12px;
}
.thumbnail-img:hover {
    transform: scale(1.02);
    border-color: var(--gold);
}
.active-thumbnail {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.3);
}

/* Feature badges */
.feature-badge {
    background: var(--card-bg);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light-card);
    border: 1px solid rgba(201, 168, 76, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    height: 100%;
}

.feature-badge i {
    color: var(--gold);
    margin-right: 8px;
}

.feature-badge:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25D366;
    transition: all 0.3s ease;
    border: none;
}
.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.02);
    color: white;
}

/* Contact Agent Button */
.contact-agent-btn {
    border: 1.5px solid var(--gold);
    color: var(--gold);
    background: transparent;
    transition: all 0.3s ease;
}
.contact-agent-btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 168, 76, 0.2);
}

/* Send Message Button */
.send-message-btn {
    background: var(--gold);
    color: var(--black);
    border: none;
    transition: all 0.3s ease;
}
.send-message-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* Share Button */
.share-btn {
    border: 1.5px solid var(--text-muted-card);
    color: var(--text-muted-card);
    background: transparent;
    transition: all 0.3s ease;
}
.share-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* Cards */
.info-card {
    background: var(--white);
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 12px var(--card-shadow);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Back Button */
.back-btn {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    border-radius: 50px;
    padding: 10px 24px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.back-btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateX(-4px);
}

/* Loading state */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--gold);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Thumbnail gallery scrollbar */
.thumbnail-gallery::-webkit-scrollbar {
    height: 6px;
}
.thumbnail-gallery::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.thumbnail-gallery::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .property-title {
        font-size: 1.5rem;
    }
    .feature-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-container {
    position: relative;
    background: #111;
    width: 100%;
    max-width: 1000px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
    font-size: 24px;
}

.modal-close:hover {
    background: var(--gold);
    color: var(--black);
    transform: rotate(90deg);
}

.modal-content {
    display: flex;
    flex-direction: column;
}

.carousel-main {
    position: relative;
    width: 100%;
    height: 500px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    user-select: none;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(201, 168, 76, 0.2);
    color: var(--gold);
    border: 1px solid var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
    font-size: 24px;
}

.nav-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.nav-btn.prev {
    left: 20px;
}

.nav-btn.next {
    right: 20px;
}

.modal-info {
    padding: 24px;
    background: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.modal-header-info {
    flex: 1;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: white;
    margin-bottom: 4px;
}

.modal-location {
    color: var(--text-muted-card);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-location i {
    color: var(--gold);
}

.carousel-indicators {
    display: flex;
    gap: 8px;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.indicator-dot.active {
    background: var(--gold);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--gold);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .carousel-main {
        height: 350px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .modal-info {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .carousel-indicators {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .carousel-main {
        height: 250px;
    }
    
    .modal-title {
        font-size: 20px;
    }
}
:root {
    --gold: #C9A84C;
    --gold-light: #E2C97E;
    --gold-dark: #9A7A2E;
    --black: #0D0D0D;
    --charcoal: #1A1A1A;
    --dark-card: #1e1e1e;
    --text-muted: #888;
    --text-light: #ccc;
    --white: #FFFFFF;
    --off-white: #F7F5F0;
    --section-bg: #F2EFE8;
}

.rent-property-page {
    font-family: 'DM Sans', sans-serif;
    background: var(--section-bg);
    color: var(--black);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Back Button */
.back-btn {
    position: fixed;
    top: 100px;
    left: 30px;
    z-index: 1000;
    background: var(--dark-card);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(201, 168, 76, 0.3);
}

/* Hero Section */
.hero-section-rent {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 20px 80px;
    background: var(--off-white);
    overflow: hidden;
}

.hero-section-rent::before {
    content: '🏠';
    position: absolute;
    bottom: -80px;
    right: -80px;
    font-size: 250px;
    opacity: 0.06;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.hero-section-rent::after {
    content: '🔑';
    position: absolute;
    top: 80px;
    left: -60px;
    font-size: 180px;
    opacity: 0.06;
    pointer-events: none;
    transform: rotate(-15deg);
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content-rent {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUpRent 0.8s ease-out;
}

@keyframes fadeInUpRent {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge-rent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.12);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 24px;
    animation: fadeInUpRent 0.8s ease-out 0.1s both;
}

.hero-title-rent {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--black);
    animation: fadeInUpRent 0.8s ease-out 0.2s both;
}

.hero-title-rent .highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description-rent {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUpRent 0.8s ease-out 0.3s both;
}

/* Main Content */
.main-content-rent {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px;
}

/* Benefits Section */
.benefits-section-rent {
    margin-bottom: 60px;
}

.section-header-rent {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-rent h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.section-header-rent p {
    color: var(--text-muted);
    font-size: 16px;
}

.benefits-grid-rent {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card-rent {
    background: var(--dark-card);
    border-radius: 24px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(201, 168, 76, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: cardRevealRent 0.6s ease-out forwards;
}

@keyframes cardRevealRent {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card-rent:nth-child(1) { animation-delay: 0.1s; }
.benefit-card-rent:nth-child(2) { animation-delay: 0.2s; }
.benefit-card-rent:nth-child(3) { animation-delay: 0.3s; }
.benefit-card-rent:nth-child(4) { animation-delay: 0.4s; }

.benefit-card-rent:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.2);
}

.benefit-icon-rent {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.benefit-card-rent:hover .benefit-icon-rent {
    background: var(--gold);
    border-radius: 50%;
    transform: scale(1.05) rotate(5deg);
}

.benefit-icon-rent i {
    font-size: 32px;
    color: var(--gold);
    transition: all 0.4s ease;
}

.benefit-card-rent:hover .benefit-icon-rent i {
    color: var(--black);
    transform: scale(1.1);
}

.benefit-card-rent h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.benefit-card-rent p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Form and Info Section */
.form-section-rent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    animation: fadeInUpRent 0.8s ease-out 0.5s both;
}

.form-section-rent:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.15);
}

.info-panel-rent {
    background: var(--dark-card);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}

.info-panel-rent::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.05), transparent);
    animation: rotateRent 20s linear infinite;
}

@keyframes rotateRent {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.info-panel-rent h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.info-panel-rent p {
    color: var(--text-light);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.info-list-rent {
    list-style: none;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.info-list-rent li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 15px;
    color: var(--text-light);
    animation: slideInRightRent 0.5s ease-out forwards;
    opacity: 0;
    transform: translateX(-20px);
}

.info-list-rent li:nth-child(1) { animation-delay: 0.6s; }
.info-list-rent li:nth-child(2) { animation-delay: 0.7s; }
.info-list-rent li:nth-child(3) { animation-delay: 0.8s; }
.info-list-rent li:nth-child(4) { animation-delay: 0.9s; }
.info-list-rent li:nth-child(5) { animation-delay: 1s; }

@keyframes slideInRightRent {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.info-list-rent li i {
    color: var(--gold);
    font-size: 18px;
    width: 25px;
}

.stats-rent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.stat-rent {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-rent:hover {
    transform: scale(1.05);
}

.stat-number-rent {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--gold);
}

.stat-label-rent {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Form Styles */
.form-panel-rent {
    padding: 48px 40px;
    background: var(--white);
}

.form-panel-rent h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.form-panel-rent p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 30px;
}

.form-group-rent {
    margin-bottom: 20px;
}

.form-group-rent label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--black);
}

.form-group-rent input,
.form-group-rent select,
.form-group-rent textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--off-white);
    border: 2px solid #e0dcd3;
    border-radius: 12px;
    font-size: 14px;
    color: var(--black);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group-rent input:focus,
.form-group-rent select:focus,
.form-group-rent textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group-rent input::placeholder,
.form-group-rent textarea::placeholder {
    color: #aaa;
}

.form-row-rent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn-rent {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.submit-btn-rent::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn-rent:hover::before {
    width: 300px;
    height: 300px;
}

.submit-btn-rent:hover {
    transform: translateY(-3px);
    gap: 15px;
    box-shadow: 0 10px 25px rgba(201, 168, 76, 0.3);
}

.success-message-rent {
    display: none;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--gold);
    padding: 15px;
    border-radius: 12px;
    margin-top: 20px;
    text-align: center;
    color: var(--gold-dark);
    font-weight: 500;
    animation: fadeInUpRent 0.5s ease;
}

.success-message-rent.visible {
    display: block;
}

/* Footer */
.footer-rent {
    background: var(--white);
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    margin-top: 60px;
}

.footer-rent p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 968px) {
    .form-section-rent {
        grid-template-columns: 1fr;
    }
    .hero-title-rent {
        font-size: 40px;
    }
    .section-header-rent h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .main-content-rent {
        padding: 40px 20px;
    }
    .hero-title-rent {
        font-size: 32px;
    }
    .hero-description-rent {
        font-size: 16px;
    }
    .form-row-rent {
        grid-template-columns: 1fr;
    }
    .back-btn {
        top: 20px;
        left: 20px;
        padding: 8px 20px;
        font-size: 12px;
    }
    .info-panel-rent, .form-panel-rent {
        padding: 30px 25px;
    }
    .info-panel-rent h3 {
        font-size: 26px;
    }
    .benefits-grid-rent {
        grid-template-columns: 1fr;
    }
    .stats-rent {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px - 70px);
  padding: 80px 20px;
  text-align: center;
}

.error-content {
  max-width: 600px;
}

.error-code {
  font-family: 'Playfair Display', serif;
  font-size: 150px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

.error-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.error-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .error-code {
    font-size: 100px;
  }
  .error-title {
    font-size: 28px;
  }
}

.breadcrumb {
  background: transparent;
  padding: 8px 0;
  margin: 0;
}
.breadcrumb-item a {
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
}
.breadcrumb-item a:hover {
  text-decoration: underline;
}
.breadcrumb-item.active {
  color: var(--text-muted);
  font-size: 13px;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-muted);
  content: "/";
}
