/* Pure Vanilla CSS - JS Realtors
   Luxury Real Estate Theme */
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,300..900;1,300..900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg-dark: #0c0c0e;
  --bg-footer: #08080a;
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --text-dim: rgba(255, 255, 255, 0.5);
  --text-soft: rgba(255, 255, 255, 0.85);
  --accent-amber: #f59e0b;
  --border-glass: rgba(255, 255, 255, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-pill-bg: rgba(255, 255, 255, 0.15);
  --glass-blur: 20px;
  --font-family: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container-max-width: 1280px;
}

/* Base & Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.5;
}

/* Typography & Links */
a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font-family: inherit;
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

/* Glassmorphism Components */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border-glass);
}

.glass-pill {
  background: var(--glass-pill-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transition: border-color 0.2s, background-color 0.2s;
}

.glass-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.glass-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
}

/* Header Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2), transparent);
  transition: all 0.3s ease;
}

.navbar-inner {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  transition: opacity 0.2s;
}

.brand-logo:hover {
  opacity: 0.9;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.25rem 0;
  position: relative;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link.active {
  color: #ffffff;
  border-bottom: 2px solid rgba(217, 119, 6, 0.8);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-tour {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  background: rgba(23, 23, 23, 0.8);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.2s ease;
}

.btn-tour:hover {
  background: #171717;
}

.mobile-toggle {
  display: none;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: none;
  color: #ffffff;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  margin-top: 1rem;
  padding: 1.5rem;
  border-radius: 1rem;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu.active {
  display: flex;
}

.mobile-link {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.mobile-btn-tour {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  background: #ffffff;
  color: #000000;
}

/* Hero Section */
.hero-scroll-track {
  position: relative;
  width: 100%;
  height: 300vh;
}

.hero-sticky {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  overflow: hidden;
  z-index: 10;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: var(--container-max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-box {
  max-width: 42rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  margin-top: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  line-height: 1.625;
  max-width: 36rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
}

.btn-primary {
  padding: 0.875rem 1.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: #171717;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  background: #222222;
  transform: scale(1.02);
}

.btn-secondary {
  padding: 0.875rem 1.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.95);
  color: #000000;
  transition: all 0.2s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
  background: #ffffff;
  transform: scale(1.02);
}

.hero-tagline-bar {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-tagline {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  max-width: 42rem;
}

/* General Sections */
.section {
  position: relative;
  padding: 7rem 1.5rem;
  background-color: var(--bg-dark);
}

.section-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  display: block;
}

.section-heading {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #ffffff;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 36rem;
  line-height: 1.625;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 4rem;
}

/* About Section */
.about-heading {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #ffffff;
  line-height: 1.15;
  max-width: 56rem;
  margin-bottom: 3rem;
}

.about-banner {
  position: relative;
  width: 100%;
  height: 650px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-glass);
}

.about-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease-out;
}

.about-banner:hover img {
  transform: scale(1.05);
}

/* Properties Section Redesign */
.properties-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  gap: 2rem;
}

.view-all-link {
  color: var(--accent-amber);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 0.25rem;
  transition: border-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.view-all-link:hover {
  border-color: var(--accent-amber);
}

/* Properties Filter Bar - Luxury System */
.filter-section-wrapper {
  margin-bottom: 2.5rem;
}

.filter-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.category-tabs-container {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.25rem;
  border-radius: 2rem;
  border: 1px solid rgba(168, 124, 67, 0.3);
}

/* =========================================
   PROPERTY SEARCH FILTER REDESIGN (MARQUEE & DUAL SLIDERS)
========================================= */
.filter-section-wrapper {
  margin-bottom: 3rem;
}

/* Category Marquee Ticker */
.category-marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  background: rgba(10, 10, 13, 0.95);
  border-top: 1px solid rgba(168, 124, 67, 0.35);
  border-bottom: 1px solid rgba(168, 124, 67, 0.35);
  padding: 0.9rem 0;
  margin-bottom: 2rem;
  position: relative;
  cursor: default;
  user-select: none;
  pointer-events: none;
  mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}

.category-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 1.75rem;
  animation: marqueeLoop 38s linear infinite;
  will-change: transform;
}

@keyframes marqueeLoop {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-item {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.65);
  font-family: 'Cinzel', 'Playfair Display', 'Inter', serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: default;
  pointer-events: none;
  padding: 0.35rem 0.65rem;
  white-space: nowrap;
}

.marquee-diamond {
  color: #966A38;
  font-size: 0.65rem;
  opacity: 0.7;
  pointer-events: none;
}

/* Filter Header Bar & Toggle Button */
.filter-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.filter-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(15, 15, 18, 0.9);
  border: 1px solid rgba(168, 124, 67, 0.35);
  color: var(--accent-amber);
  height: 44px;
  padding: 0 1.25rem;
  border-radius: 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-toggle-btn:hover,
.filter-toggle-btn.active {
  background: var(--accent-amber);
  color: #0c0c0e;
  border-color: var(--accent-amber);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.25);
}

.filter-toggle-btn .chevron-icon {
  transition: transform 0.3s ease;
}

.filter-toggle-btn.active .chevron-icon {
  transform: rotate(180deg);
}

/* Filter Controls Row (Hidden by default, shown when active) */
.filter-controls-row {
  display: none;
  grid-template-columns: 220px 1fr 1fr 180px;
  gap: 1.75rem;
  align-items: end;
  background: rgba(14, 14, 18, 0.92);
  border: 1px solid rgba(168, 124, 67, 0.35);
  border-radius: 0.5rem;
  padding: 1.5rem 1.75rem;
  margin-top: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.filter-controls-row.active {
  display: grid !important;
  animation: slideDownFade 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideDownFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

.filter-field-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-field-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-amber);
  font-weight: 700;
  display: block;
}

.filter-select-wrapper {
  position: relative;
  width: 100%;
}

.filter-select-wrapper::after {
  content: "";
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--accent-amber);
  pointer-events: none;
}

.filter-select-element {
  background: #0a0a0d;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  height: 48px;
  padding: 0 2rem 0 0.85rem;
  border-radius: 0.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.25s ease;
  outline: none;
  width: 100%;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.filter-select-element:focus {
  border-color: var(--accent-amber);
  box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.15);
  background: #0f0f14;
}

.filter-select-element option {
  background-color: #0c0c0e;
  color: #ffffff;
  padding: 0.5rem;
}

/* Dual Range Slider Component (Price & Size) */
.slider-field-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.65rem;
}

.slider-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.slider-display-val {
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Inter Tight', 'Inter', sans-serif;
  letter-spacing: 0.02em;
}

.mini-select {
  height: 30px !important;
  font-size: 0.75rem !important;
  padding: 0 0.5rem !important;
}

.dual-range-slider-container {
  position: relative;
  width: 100%;
  height: 28px;
  display: flex;
  align-items: center;
}

.range-track-bg {
  position: absolute;
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  pointer-events: none;
}

.range-track-fill {
  position: absolute;
  height: 5px;
  background: var(--accent-amber);
  border-radius: 3px;
  pointer-events: none;
  transition: background 0.2s ease;
}

.dual-range-slider-container input[type="range"] {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 5px;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  pointer-events: none;
  margin: 0;
  outline: none;
}

/* Custom Handles (Thumbs) */
.dual-range-slider-container input[type="range"]::-webkit-slider-thumb {
  pointer-events: auto;
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-amber);
  border: 2px solid #0c0c0e;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(245, 158, 11, 0.4);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dual-range-slider-container input[type="range"]::-webkit-slider-thumb:hover,
.dual-range-slider-container input[type="range"]::-webkit-slider-thumb:active {
  transform: scale(1.25);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.5), 0 0 0 2px var(--accent-amber);
}

.dual-range-slider-container input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-amber);
  border: 2px solid #0c0c0e;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(245, 158, 11, 0.4);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.filter-actions-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}

.results-count-indicator {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}

.results-count-number {
  color: var(--accent-amber);
  font-weight: 700;
  font-size: 0.9rem;
}

.filter-apply-cta {
  background: var(--accent-amber);
  color: #0c0c0e;
  border: 1px solid var(--accent-amber);
  height: 48px;
  width: 100%;
  border-radius: 0.25rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-apply-cta:hover {
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.filter-reset-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  height: 36px;
  width: 100%;
  border-radius: 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-reset-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 1024px) {
  .filter-controls-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .filter-controls-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.25rem;
  }

  .category-marquee-track {
    gap: 1.25rem;
  }

  .marquee-item {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
  }
}



.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.property-card {
  background-color: #FAF9F6;
  border-radius: 0.75rem;
  border: 1px solid rgba(168, 124, 67, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
  text-decoration: none;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(168, 124, 67, 0.45);
}

.property-image-wrapper {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.property-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.property-card:hover .property-image-wrapper img {
  transform: scale(1.06);
}

.property-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 40%);
  pointer-events: none;
}

.property-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(12, 12, 14, 0.8);
  color: #FAF9F6;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.75rem;
  border-radius: 2rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.property-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 0.65rem;
  color: #1C1C1C;
}

.property-meta-top {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #966A38;
}

.property-name {
  font-size: 1.35rem;
  font-weight: 600;
  color: #1C1C1C;
  line-height: 1.25;
}

.property-short-desc {
  font-size: 0.875rem;
  color: #555555;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  flex-grow: 1;
}

.property-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: #966A38;
  margin-top: auto;
}

.property-specs {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.75rem 0;
  margin: 0.25rem 0;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.spec-label {
  font-size: 0.65rem;
  color: #777777;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.spec-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1C1C1C;
}

.property-cta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1C1C1C;
  margin-top: 0.5rem;
  transition: color 0.3s ease;
}

.property-card:hover .property-cta {
  color: #966A38;
}

/* Property Detail Page & Subcomponents */
.property-detail-section {
  padding-top: 8rem;
}

.property-detail-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.detail-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  align-self: flex-start;
  transition: color 0.2s ease;
  border: none;
  background: none;
  padding: 0;
}

.detail-back-btn:hover {
  color: #ffffff;
}

.detail-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 12, 14, 0.95) 15%, rgba(12, 12, 14, 0.4) 60%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 3rem;
  box-sizing: border-box;
}

.detail-hero-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.detail-hero-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.detail-hero-title {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  font-family: var(--font-family);
}

.detail-hero-loc {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.detail-hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.25rem;
}

.detail-hero-price {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
}

.detail-hero-btn {
  background-color: var(--accent-amber);
  color: #0c0c0e;
  border: none;
  border-radius: 0.35rem;
  padding: 0.9rem 1.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.detail-hero-btn:hover {
  background-color: #f59e0b;
  transform: translateY(-2px);
}

.detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gallery-main-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 0.75rem;
  overflow: hidden;
  background-color: #16161a;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: opacity 0.25s ease-in-out;
}

.gallery-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(12, 12, 14, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
  z-index: 5;
}

.gallery-control:hover {
  background-color: var(--accent-amber);
  color: #0c0c0e;
  border-color: var(--accent-amber);
}

.gallery-prev {
  left: 1.25rem;
}

.gallery-next {
  right: 1.25rem;
}

.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.5rem;
}

.gallery-thumb {
  aspect-ratio: 4 / 3;
  border-radius: 0.35rem;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.55;
  transition: all 0.2s ease;
}

.gallery-thumb.active {
  border-color: var(--accent-amber);
  opacity: 1;
}

.gallery-thumb:hover {
  opacity: 0.9;
}

.detail-content-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3.5rem;
  margin-top: 1rem;
}

.detail-main-flow {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.detail-sidebar-flow {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.section-subheading {
  font-size: 1.35rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 1.25rem;
  font-family: var(--font-family);
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 0.5rem;
}

.detail-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.detail-spec-card {
  background: var(--glass-bg);
  border: 1px solid var(--border-glass);
  border-radius: 0.75rem;
  padding: 1.25rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  transition: border-color 0.2s;
}

.detail-spec-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
}

.detail-spec-card svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent-amber);
}

.detail-spec-label {
  font-size: 0.65rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.detail-spec-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

.detail-description-text {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.detail-amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.detail-amenity-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.detail-amenity-bullet {
  width: 0.35rem;
  height: 0.35rem;
  background-color: var(--accent-amber);
  border-radius: 50%;
}

.floorplan-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.floorplan-tab {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.floorplan-tab.active {
  color: var(--accent-amber);
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
}

.floorplan-image-wrapper {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-glass);
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 16 / 10;
}

.floorplan-image-wrapper svg {
  max-width: 100%;
  max-height: 100%;
}

.detail-location-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-location-info {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.detail-map-placeholder {
  height: 250px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 0.75rem;
  position: relative;
  overflow: hidden;
}

.detail-map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(245, 158, 11, 0.15) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.7;
}

.map-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.map-marker-pin {
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--accent-amber);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  animation: bounce 2s infinite alternate;
}

.map-marker-shadow {
  width: 0.5rem;
  height: 0.2rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
}

@keyframes bounce {
  0% {
    transform: translate(0, 0) rotate(-45deg);
  }

  100% {
    transform: translate(0, -8px) rotate(-45deg);
  }
}

.sidebar-cta-card {
  background: linear-gradient(135deg, rgba(20, 20, 24, 0.9) 0%, rgba(12, 12, 14, 0.95) 100%);
  border: 1px solid rgba(168, 124, 67, 0.3);
  border-radius: 1rem;
  padding: 2.25rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 6.5rem;
}

.sidebar-cta-title {
  font-size: 1.35rem;
  font-weight: 600;
  font-family: var(--font-family);
  color: #ffffff;
  line-height: 1.3;
}

.sidebar-cta-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.sidebar-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sidebar-btn-primary {
  background-color: var(--accent-amber);
  color: #0c0c0e;
  border: none;
  border-radius: 0.35rem;
  padding: 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.sidebar-btn-primary:hover {
  background-color: #f59e0b;
  transform: translateY(-2px);
}

.sidebar-btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.35rem;
  padding: 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sidebar-btn-secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.03);
}

/* Lightbox UI */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 10, 0.98);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2.5rem;
  color: #ffffff;
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--accent-amber);
}

.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

/* Services Section */

/* Services / Why Choose Us Section - Architectural Editorial Redesign */
.why-us-editorial {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 2rem;
  align-items: stretch;
  margin-top: 3.5rem;
}

.why-us-primary-card {
  background: rgba(15, 15, 18, 0.6);
  border: 1px solid rgba(168, 124, 67, 0.25);
  border-top: 2px solid var(--accent-amber);
  padding: 3rem 2.5rem;
  border-radius: 0.35rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-us-primary-card:hover {
  border-color: rgba(168, 124, 67, 0.6);
  background: rgba(20, 20, 25, 0.8);
  transform: translateY(-3px);
}

.why-us-number-badge {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-amber);
  font-family: 'Inter Tight', 'Inter', sans-serif;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  display: block;
}

.why-us-primary-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-amber);
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: block;
}

.why-us-primary-title {
  font-size: 1.85rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.why-us-primary-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.why-us-secondary-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-us-secondary-card {
  background: rgba(15, 15, 18, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 2px solid rgba(168, 124, 67, 0.3);
  padding: 2.25rem 2rem;
  border-radius: 0.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
}

.why-us-secondary-card:hover {
  border-left-color: var(--accent-amber);
  border-color: rgba(168, 124, 67, 0.3);
  background: rgba(20, 20, 25, 0.7);
  transform: translateX(4px);
}

.why-us-sec-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.why-us-sec-number {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent-amber);
  font-family: 'Inter Tight', 'Inter', sans-serif;
}

.why-us-sec-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #ffffff;
}

.why-us-sec-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding-left: 2.4rem;
}

/* Horizontal Feature Statement */
.why-us-handholding-bar {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(168, 124, 67, 0.25);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  align-items: center;
}

.handholding-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-amber);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.handholding-label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent-amber);
}

.handholding-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  font-weight: 400;
}

@media (max-width: 991px) {
  .why-us-editorial {
    grid-template-columns: 1fr;
  }

  .why-us-handholding-bar {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding-top: 2rem;
  }

  .why-us-sec-desc {
    padding-left: 0;
  }
}

/* Reviews Section */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 991px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  padding: 2rem;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.star-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--accent-amber);
}

.star-rating svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.testimonial-quote {
  font-size: 1rem;
  color: var(--text-soft);
  font-style: italic;
  line-height: 1.625;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
}

.author-role {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Contact Section */
.contact-section {
  position: relative;
  min-height: 90vh;
  margin-top: 4rem;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem;
  overflow: hidden;
}

.contact-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: brightness(0.75);
}

.contact-card {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 36rem;
  padding: 3rem 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.contact-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.input-field {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
}

.textarea-field {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  resize: none;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  background: #ffffff;
  color: #000000;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.01);
}

.contact-subfooter {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.subfooter-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.email-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #ffffff;
  transition: background-color 0.2s;
}

.email-pill:hover {
  background: rgba(255, 255, 255, 0.2);
}

.email-pill img {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  object-fit: cover;
}

/* Footer Section */
.site-footer {
  background-color: var(--bg-footer);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-inner {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.footer-link {
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--text-dim);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Media Queries & Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }

  .about-heading {
    font-size: 2.75rem;
  }

  .about-banner {
    height: 500px;
  }

  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 991px) {
  .detail-content-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .sidebar-cta-card {
    position: static;
    margin-top: 1rem;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .about-heading {
    font-size: 2rem;
  }

  .about-banner {
    height: 380px;
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .section-heading {
    font-size: 2.25rem;
  }

  .properties-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .properties-header-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .properties-filter-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 1.25rem;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .filter-group {
    padding: 0;
    border-right: none;
    min-width: 100%;
  }

  .filter-clear-btn {
    align-self: stretch;
    margin: 0.5rem 0 0 0;
    text-align: center;
  }

  .detail-hero-title {
    font-size: 2.25rem;
  }

  .detail-hero-overlay {
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .detail-hero-right {
    align-items: flex-start;
    margin-top: 1rem;
    width: 100%;
  }

  .detail-hero-price {
    font-size: 1.75rem;
  }

  .gallery-thumbnails {
    grid-template-columns: repeat(4, 1fr);
  }

  .detail-gallery {
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero-sticky {
    padding-bottom: 2.5rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .contact-card {
    padding: 2rem 1.5rem;
  }

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

  .detail-specs-grid {
    grid-template-columns: 1fr;
  }

  .detail-amenities-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   COMPREHENSIVE MOBILE RESPONSIVENESS PASS
   (Zero overlaps, perfect touch targets & spacing)
========================================= */

@media (max-width: 768px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-box {
    margin-top: 1rem;
    gap: 1rem;
  }

  .hero-title {
    font-size: 2.3rem;
    line-height: 1.15;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .hero-buttons {
    width: 100%;
    gap: 0.75rem;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .hero-tagline-bar {
    margin-top: 2rem;
    padding-top: 1.25rem;
  }

  .hero-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
  }

  .filter-controls-row {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
    padding: 1.25rem;
  }

  .filter-header-bar {
    gap: 0.5rem;
  }

  .filter-toggle-btn {
    height: 40px;
    padding: 0 0.85rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .results-count-indicator {
    font-size: 0.72rem;
  }

  .dual-range-slider-container input[type="range"]::-webkit-slider-thumb {
    width: 22px;
    height: 22px;
  }

  .dual-range-slider-container input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
  }

  .section {
    padding: 3.75rem 1.25rem;
  }

  .section-heading {
    font-size: 2rem;
  }

  .section-desc {
    font-size: 0.95rem;
  }

  .properties-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .property-info {
    padding: 1.25rem;
  }

  .property-name {
    font-size: 1.2rem;
  }

  .property-price {
    font-size: 1.25rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-quote {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.9rem;
  }

  .about-card {
    padding: 2rem 1.25rem !important;
  }

  .detail-hero {
    height: 38vh;
    min-height: 260px;
  }

  .detail-hero-title {
    font-size: 1.65rem;
  }

  .detail-hero-price {
    font-size: 1.4rem;
  }

  .detail-specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .detail-amenities-grid {
    grid-template-columns: 1fr;
  }

  .gallery-thumbnails {
    grid-template-columns: repeat(4, 1fr);
  }

  .why-us-primary-card {
    padding: 2rem 1.5rem;
  }

  .why-us-secondary-card {
    padding: 1.5rem 1.25rem;
  }

  .why-us-primary-title {
    font-size: 1.45rem;
  }

  .why-us-sec-title {
    font-size: 1.15rem;
  }

  .handholding-text {
    font-size: 0.9rem;
  }
}

/* =========================================
   CALL & WHATSAPP QUICK ACTION BUTTONS
========================================= */
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 800;
  background: rgba(23, 23, 23, 0.85);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-phone:hover {
  background: #ffffff;
  color: #0c0c0e;
  border-color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.35);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-whatsapp:hover {
  background: #25D366;
  color: #ffffff;
  border-color: #25D366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

/* Floating Contact Widget (Bottom Right) */
.floating-contact-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.floating-btn-phone {
  background: rgba(14, 14, 18, 0.95);
  border: 1px solid rgba(168, 124, 67, 0.6);
  color: var(--accent-amber);
}

.floating-btn-phone:hover {
  background: var(--accent-amber);
  color: #0c0c0e;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

.floating-btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-btn-whatsapp:hover {
  background: #20ba5a;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
  .floating-contact-widget {
    bottom: 1.25rem;
    right: 1.25rem;
    gap: 0.6rem;
  }

  .floating-btn {
    width: 44px;
    height: 44px;
  }

  .btn-phone span,
  .btn-whatsapp span {
    display: none;
  }

  .btn-phone,
  .btn-whatsapp {
    padding: 0.5rem;
    border-radius: 50%;
  }
}