/* ============================================
   RENTOHOMES — Luxury Design System
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --primary: #111111;
  --primary-rgb: 17, 17, 17;
  --secondary: #666666;
  --secondary-light: #999999;
  --background: #F8F6F2;
  --background-alt: #F0EDE7;
  --surface: #FFFFFF;
  --surface-alt: #FAFAF8;
  --border: #E8E6E1;
  --border-light: #F0EEE9;

  --gold: #FFA500;
  --gold-light: #FFC04D;
  --gold-dark: #E69500;
  --gold-rgb: 255, 165, 0;

  --success: #3F7D58;
  --error: #C0392B;
  --warning: #E67E22;
  --info: #2980B9;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, .04);
  --shadow: 0 20px 60px rgba(0, 0, 0, .06);
  --shadow-lg: 0 32px 80px rgba(0, 0, 0, .08);
  --shadow-xl: 0 40px 100px rgba(0, 0, 0, .12);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, .05);
  --shadow-card-hover: 0 24px 64px rgba(0, 0, 0, .1);
  --shadow-gold: 0 8px 32px rgba(255, 165, 0, .25);

  /* Radii */
  --radius-xs: 8px;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --radius-full: 9999px;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --space-4xl: 128px;

  /* Typography */
  --font-display: 'Clash Display', sans-serif;
  --font-heading: 'General Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --fs-display: clamp(3rem, 6vw, 6rem);
  --fs-h1: clamp(2.5rem, 5vw, 5.5rem);
  --fs-h2: clamp(2rem, 4vw, 4.5rem);
  --fs-h3: clamp(1.5rem, 3vw, 3rem);
  --fs-h4: clamp(1.25rem, 2vw, 2rem);
  --fs-h5: clamp(1.125rem, 1.5vw, 1.5rem);
  --fs-body: clamp(1rem, 1.1vw, 1.125rem);
  --fs-small: clamp(0.875rem, 1vw, 1rem);
  --fs-xs: clamp(0.75rem, 0.9vw, 0.875rem);

  /* Layout */
  --container-max: 1440px;
  --container-padding: clamp(20px, 4vw, 80px);
  --nav-height: 90px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-luxury: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

  /* Z-index */
  --z-dropdown: 100;
  --z-nav: 500;
  --z-modal: 1000;
  --z-overlay: 900;
  --z-toast: 1100;
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: auto;
  /* Lenis handles this */
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--primary);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

::selection {
  background: var(--gold);
  color: var(--surface);
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.container--narrow {
  max-width: 960px;
}

.container--wide {
  max-width: 1600px;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1,
.h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h2,
.h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h3,
.h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 600;
  line-height: 1.15;
}

h4,
.h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  font-weight: 500;
  line-height: 1.2;
}

h5,
.h5 {
  font-family: var(--font-heading);
  font-size: var(--fs-h5);
  font-weight: 500;
  line-height: 1.3;
}

.text-display {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
}

.text-body {
  font-size: var(--fs-body);
}

.text-small {
  font-size: var(--fs-small);
}

.text-xs {
  font-size: var(--fs-xs);
}

.text-secondary {
  color: var(--secondary);
}

.text-gold {
  color: var(--gold);
}

.text-white {
  color: var(--surface);
}

.text-center {
  text-align: center;
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.section-label {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.section-subtitle {
  font-size: var(--fs-body);
  color: var(--secondary);
  max-width: 600px;
  line-height: 1.8;
}

/* --- Section Spacing --- */
.section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.section--sm {
  padding: var(--space-3xl) 0;
}

.section--lg {
  padding: 160px 0;
}

.section--dark {
  background: var(--primary);
  color: var(--surface);
}

.section--alt {
  background: var(--surface);
}

.section-header {
  margin-bottom: var(--space-3xl);
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-subtitle {
  margin: var(--space-md) auto 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 500;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transition: transform var(--transition-luxury);
  transform: scaleX(0);
  transform-origin: left;
}

.btn:hover::before {
  transform: scaleX(1);
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn i,
.btn svg {
  position: relative;
  z-index: 1;
  transition: transform var(--transition-base);
}

.btn:hover i,
.btn:hover svg {
  transform: translateX(4px);
}

.btn--primary {
  background: var(--primary);
  color: var(--surface);
}

.btn--primary::before {
  background: var(--gold);
}

.btn--primary:hover {
  color: var(--surface);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn--gold {
  background: var(--gold);
  color: var(--surface);
}

.btn--gold::before {
  background: var(--gold-dark);
}

.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--border);
}

.btn--outline::before {
  background: var(--primary);
}

.btn--outline:hover {
  color: var(--surface);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.btn--ghost {
  background: transparent;
  color: var(--primary);
  padding: 12px 0;
}

.btn--ghost::before {
  display: none;
}

.btn--ghost:hover {
  color: var(--gold);
}

.btn--white {
  background: var(--surface);
  color: var(--primary);
}

.btn--white::before {
  background: var(--gold);
}

.btn--white:hover {
  color: var(--surface);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn--lg {
  padding: 20px 48px;
  font-size: var(--fs-body);
}

.btn--sm {
  padding: 12px 24px;
  font-size: var(--fs-xs);
}

.btn--icon {
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
}

.btn--icon.btn--sm {
  width: 44px;
  height: 44px;
}

/* Text link with animated underline */
.link-underline {
  position: relative;
  display: inline-block;
  font-weight: 500;
}

.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-base);
}

.link-underline:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: var(--z-nav);
  transition: 
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s ease,
    backdrop-filter 0.3s ease,
    -webkit-backdrop-filter 0.3s ease,
    box-shadow 0.3s ease,
    height 0.25s ease,
    border-bottom-color 0.3s ease;
  background: transparent;
}

.navbar.scrolled,
.navbar.menu-open {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  height: 76px;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--primary);
  z-index: calc(var(--z-nav) + 10);
}

.nav-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.navbar--light .nav-logo {
  color: var(--surface);
}

.navbar--light.scrolled .nav-logo,
.navbar--light.menu-open .nav-logo {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 450;
  color: var(--primary);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.navbar--light .nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.navbar--light.scrolled .nav-link,
.navbar--light.menu-open .nav-link {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: calc(var(--z-nav) + 10);
}

.nav-cta {
  padding: 12px 28px;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 32px;
  cursor: pointer;
  z-index: calc(var(--z-nav) + 10);
  padding: 4px 0;
}

.nav-hamburger span {
  width: 100%;
  height: 2px;
  background: var(--primary);
  transition: all var(--transition-base);
  transform-origin: center;
}

.navbar--light .nav-hamburger span {
  background: var(--surface);
}

.navbar--light.scrolled .nav-hamburger span,
.navbar--light.menu-open .nav-hamburger span {
  background: var(--primary);
}

.navbar--light .nav-hamburger.active span {
  background: var(--primary);
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--surface);
  z-index: calc(var(--z-nav) - 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu .nav-link {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--primary);
  opacity: 0;
  transform: translateY(30px);
}

.mobile-menu.active .nav-link {
  opacity: 1;
  transform: translateY(0);
  transition: all var(--transition-slow);
}

.mobile-menu.active .nav-link:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu.active .nav-link:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-menu.active .nav-link:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-menu.active .nav-link:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-menu.active .nav-link:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-menu.active .nav-link:nth-child(6) {
  transition-delay: 0.35s;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.hero-background .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg-swiper {
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(64, 69, 107, 0.85) 0%,
      rgba(38, 40, 66, 0.95) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: var(--nav-height);
}

.hero-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--nav-height));
}

.hero-text {
  color: var(--surface);
  max-width: 680px;
  width: 100%;
  text-align: center;
}

.hero-main-title {
  margin-bottom: var(--space-xl);
  text-align: center;
}

.hero-main-title h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--surface);
  margin-bottom: 12px;
}

.hero-main-title p {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--gold-light);
  font-weight: 400;
}

/* Hero Top Stats */
.hero-top-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  color: white;
  flex-wrap: wrap;
}

.top-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-stat-item i {
  font-size: 1.5rem;
  color: var(--gold-light);
}

.top-stat-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.top-stat-text strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
}

.top-stat-text span {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.8);
}

/* Hero Locations Marquee */
.hero-locations-marquee {
  overflow: hidden;
  margin-top: var(--space-2xl);
  max-width: 100vw;
  position: relative;
  width: 100%;
}

.hero-locations-track {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  animation: marquee 20s linear infinite;
  width: max-content;
}

.hero-locations-marquee:hover .hero-locations-track {
  animation-play-state: paused;
}

.hero-location {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform var(--transition-base);
}

.hero-location img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hero-location:hover img {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 165, 0, 0.4);
}

.hero-location span {
  color: var(--surface);
  font-size: var(--fs-xs);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}



/* --- Search Widget --- */
.search-widget {
  background: var(--surface);
  border-radius: 50px;
  padding: 8px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 2px;
  position: relative;
  z-index: 50;
  margin-top: var(--space-xl);
}

.search-widget--hero {
  max-width: 800px;
  margin: 0 auto;
}

.custom-dropdown {
  position: relative;
  cursor: pointer;
  padding: 12px 24px;
  min-width: 200px;
}

.custom-dropdown-selected {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.custom-dropdown-selected::after {
  content: '\f0d7';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--secondary);
  font-size: 0.8rem;
  transition: transform var(--transition-fast);
}

.custom-dropdown.open .custom-dropdown-selected::after {
  transform: rotate(180deg);
}

.custom-dropdown-options {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 250px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
  z-index: var(--z-dropdown);
  border: 1px solid var(--border-light);
  max-height: 160px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

/* Custom scrollbar for dropdown to ensure visibility on Mac */
.custom-dropdown-options::-webkit-scrollbar {
  width: 6px;
}

.custom-dropdown-options::-webkit-scrollbar-track {
  background: transparent;
}

.custom-dropdown-options::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 10px;
}

.custom-dropdown-options::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

.custom-dropdown.open .custom-dropdown-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-dropdown-option {
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--secondary);
  border-radius: var(--radius-xs);
  transition: background var(--transition-fast), color var(--transition-fast);
  cursor: pointer;
}

.custom-dropdown-option:hover:not(.disabled) {
  background: var(--background);
  color: var(--primary);
}

.custom-dropdown-option.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  font-size: 0.9rem;
}

.custom-dropdown-option.selected {
  background: rgba(255, 165, 0, 0.1);
  color: var(--gold);
  font-weight: 500;
}

.search-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 4px;
}

.search-field {
  flex: 1;
  padding: 12px 24px;
  border-radius: 50px;
  transition: background var(--transition-fast);
  position: relative;
}

.search-field:hover {
  background: var(--background);
}

.search-field-label {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 6px;
}

.search-field input {
  width: 100%;
  font-size: 1.1rem;
  color: var(--primary);
  background: transparent;
}

.search-field input::placeholder {
  color: var(--secondary-light);
}

.search-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
}

.search-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all var(--transition-base);
  margin-left: 8px;
}

.search-btn:hover {
  background: var(--gold-dark);
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
}

/* --- Cards --- */

/* Property Card */
.property-card {
  display: block;
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-luxury);
  cursor: pointer;
}

.property-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-card-hover);
}

.property-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.property-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-luxury);
}

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

.property-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: white;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.property-card-favorite {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  transition: all var(--transition-fast);
  font-size: 1.1rem;
}

.property-card-favorite:hover,
.property-card-favorite.active {
  color: #e74c3c;
  transform: scale(1.1);
}

.property-card-body {
  padding: var(--space-md) var(--space-md) var(--space-lg);
}

.property-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-xs);
  color: var(--secondary);
  margin-bottom: 8px;
}

.property-card-location i {
  color: var(--gold);
  font-size: 0.85rem;
}

.property-card-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h5);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.property-card-description {
  font-size: var(--fs-small);
  color: var(--secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.property-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.property-card-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}

.property-card-price span {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 400;
  color: var(--secondary);
}

.property-card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 500;
}

.property-card-rating i {
  color: var(--gold);
}

.property-card-btn {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  transition: all var(--transition-base);
}

.property-card:hover .property-card-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Destination Card */
.dest-card {
  display: block;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: var(--primary);
}

.dest-card-image {
  position: absolute;
  inset: 0;
}

.dest-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-luxury);
}

.dest-card:hover .dest-card-image img {
  transform: scale(1.08);
}

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.1) 50%,
      transparent 100%);
  z-index: 2;
}

.dest-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  z-index: 3;
  color: white;
}

.dest-card-name {
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  font-weight: 600;
  margin-bottom: 8px;
}

.dest-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.75);
}

.dest-card:hover {
  transform: translateY(-8px);
  transition: transform var(--transition-luxury);
}

/* Feature Card */
.feature-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-luxury);
  text-align: center;
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--gold-light);
}

.feature-card-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(255, 165, 0, 0.05));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 1.8rem;
  color: var(--gold);
  transition: all var(--transition-base);
}

.feature-card:hover .feature-card-icon {
  background: var(--gold);
  color: white;
  transform: rotate(10deg) scale(1.05);
}

.feature-card-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h5);
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card-text {
  font-size: var(--fs-small);
  color: var(--secondary);
  line-height: 1.7;
}

/* Property Category Card */
.prop-card {
  position: relative;
  min-width: 380px;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
}

.prop-card-image {
  position: absolute;
  inset: 0;
}

.prop-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-luxury);
}

.prop-card:hover .prop-card-image img {
  transform: scale(1.08);
}

.prop-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.2) 40%,
      transparent 100%);
  z-index: 2;
}

.prop-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl);
  z-index: 3;
  color: white;
}

.prop-card-category {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.prop-card-title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  margin-bottom: 12px;
}

.prop-card-count {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.7);
}

/* Testimonial Card */
.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-card);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(255, 165, 0, 0.1);
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

.testimonial-text {
  font-size: var(--fs-body);
  color: var(--secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 600;
}

.testimonial-role {
  font-size: var(--fs-xs);
  color: var(--secondary);
}

/* --- Stats Section --- */
.stats-section {
  background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1600&q=80&auto=format');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.92) 0%, rgba(38, 40, 66, 0.88) 100%);
  z-index: -1;
}

.stats-section .stat-label {
  color: rgba(255, 255, 255, 0.85);
}

/* Stat Card */
.stat-card {
  text-align: center;
  padding: var(--space-xl);
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: var(--fs-small);
  color: var(--secondary);
  font-weight: 450;
}

/* --- Marquee --- */
.marquee-section {
  padding: var(--space-3xl) 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: var(--space-3xl);
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 500;
  color: var(--secondary-light);
  white-space: nowrap;
  opacity: 0.5;
  transition: opacity var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 12px;
}

.marquee-item:hover {
  opacity: 1;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

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

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

/* --- Grids --- */
.grid {
  display: grid;
  gap: var(--space-lg);
}

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

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

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

.grid-destinations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: var(--space-md);
}

.grid-destinations .dest-card:first-child {
  grid-row: span 2;
}

/* Horizontal Scroll Container */
.horizontal-scroll {
  display: flex;
  gap: var(--space-lg);
  overflow: visible;
  padding: var(--space-md) 0;
}

/* --- Forms --- */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
  color: var(--primary);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 165, 0, 0.1);
}

.form-input::placeholder {
  color: var(--secondary-light);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

/* --- Booking Widget --- */
.booking-widget {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 110px;
}

.booking-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.booking-price span {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 400;
  color: var(--secondary);
}

.booking-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}

.booking-rating i {
  color: var(--gold);
}

.booking-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: var(--space-sm);
}

.booking-date {
  padding: 14px 16px;
}

.booking-date:first-child {
  border-right: 1.5px solid var(--border);
}

.booking-date-label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 4px;
}

.booking-date input {
  width: 100%;
  font-size: var(--fs-small);
  color: var(--secondary);
}

.booking-guests {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: var(--space-md);
}

.booking-guests-label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.guest-counter {
  display: flex;
  align-items: center;
  gap: 16px;
}

.guest-counter-btn {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition-fast);
}

.guest-counter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.guest-counter-value {
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-weight: 600;
  min-width: 24px;
  text-align: center;
}

.booking-total {
  display: flex;
  justify-content: space-between;
  padding: var(--space-md) 0;
  border-top: 1px solid var(--border);
  margin-top: var(--space-sm);
}

.booking-total-label {
  font-weight: 500;
}

.booking-total-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
}

/* --- Calendar --- */
.calendar {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--border);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.calendar-title {
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-weight: 600;
}

.calendar-nav {
  display: flex;
  gap: 8px;
}

.calendar-nav button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.calendar-nav button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.calendar-weekday {
  text-align: center;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--secondary);
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-small);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-weight: 450;
}

.calendar-day:hover {
  background: rgba(255, 165, 0, 0.1);
  color: var(--gold);
}

.calendar-day.today {
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
}

.calendar-day.selected {
  background: var(--gold);
  color: white;
  font-weight: 600;
}

.calendar-day.in-range {
  background: rgba(255, 165, 0, 0.12);
  border-radius: 0;
  color: var(--gold-dark);
}

.calendar-day.disabled {
  color: var(--border);
  cursor: default;
  pointer-events: none;
}

.calendar-day.empty {
  cursor: default;
  pointer-events: none;
}

/* --- Newsletter --- */
.newsletter-section {
  background: var(--primary);
  border-radius: var(--radius-xl);
  padding: var(--space-4xl) var(--space-3xl);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  margin: 0 var(--container-padding);
}

.newsletter-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--gold);
}

.newsletter-shape--1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
}

.newsletter-shape--2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -60px;
}

.newsletter-shape--3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 60%;
}

.newsletter-content {
  position: relative;
  z-index: 2;
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  margin-bottom: var(--space-md);
}

.newsletter-text {
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin: 0 auto var(--space-xl);
  line-height: 1.8;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  color: white;
  font-size: var(--fs-small);
  transition: all var(--transition-fast);
}

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

.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
}

/* --- Footer --- */
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr) 1.5fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: var(--space-md);
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-description {
  font-size: var(--fs-small);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  font-size: 1rem;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 600;
  color: white;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: var(--fs-small);
  transition: all var(--transition-fast);
  display: inline-block;
}

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

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: var(--fs-small);
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: var(--fs-xs);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* --- Page Hero (Subpages) --- */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--primary);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

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

.page-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-bottom: var(--space-3xl);
}

.page-hero-content h1 {
  color: #ffffff;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.3) 40%,
      rgba(0, 0, 0, 0.15) 100%);
  z-index: 2;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-md);
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb-separator {
  font-size: 0.7rem;
}

.breadcrumb-current {
  color: var(--gold);
}

/* --- Filters --- */
.filter-bar {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow);
  margin-top: calc(-1 * var(--space-xl));
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 160px;
}

.filter-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary);
}

.filter-select,
.filter-input {
  padding: 10px 0;
  font-size: var(--fs-small);
  color: var(--primary);
  border: none;
  background: transparent;
  cursor: pointer;
  appearance: none;
}

.sort-dropdown {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.sort-dropdown label {
  font-size: var(--fs-small);
  color: var(--secondary);
  white-space: nowrap;
}

.sort-dropdown select {
  padding: 10px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  font-size: var(--fs-small);
  color: var(--primary);
  cursor: pointer;
  background: var(--surface);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

/* --- Pagination --- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-3xl);
}

.pagination-btn {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.pagination-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.pagination-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

.pagination-dots {
  padding: 0 4px;
  color: var(--secondary);
}

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--space-sm);
  height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-luxury);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-more {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: var(--fs-small);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* --- Amenities --- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: var(--space-md);
  background: var(--surface-alt);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.amenity-item:hover {
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.amenity-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 165, 0, 0.1);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.amenity-name {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 500;
}

/* --- Review Card --- */
.review-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--border-light);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author-name {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 600;
}

.review-date {
  font-size: var(--fs-xs);
  color: var(--secondary);
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 0.9rem;
}

.review-text {
  font-size: var(--fs-small);
  color: var(--secondary);
  line-height: 1.7;
}

/* --- FAQ Accordion --- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--gold);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.faq-item.active .faq-question {
  color: var(--gold);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
  font-size: 0.9rem;
}

.faq-item.active .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer-content {
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: var(--fs-small);
  color: var(--secondary);
  line-height: 1.8;
}

/* --- Blog Card --- */
.blog-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-luxury);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.blog-card-image {
  height: 220px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-luxury);
}

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

.blog-card-body {
  padding: var(--space-md) var(--space-md) var(--space-lg);
}

.blog-card-category {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h5);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-excerpt {
  font-size: var(--fs-small);
  color: var(--secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: var(--secondary);
}

/* --- Sticky Mobile Booking --- */
.mobile-booking-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 16px var(--container-padding);
  z-index: var(--z-overlay);
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.08);
}

/* --- Loading / Skeleton --- */
.skeleton {
  background: linear-gradient(90deg, var(--border-light) 25%, var(--background) 50%, var(--border-light) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: var(--radius-xs);
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* --- Swiper Overrides --- */
.swiper-button-prev,
.swiper-button-next {
  width: 52px !important;
  height: 52px !important;
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: 50% !important;
  box-shadow: var(--shadow-sm) !important;
  color: var(--primary) !important;
  transition: all var(--transition-fast) !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1rem !important;
  font-weight: 700 !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: white !important;
  transform: scale(1.05);
}

.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: var(--border) !important;
  opacity: 1 !important;
  transition: all var(--transition-fast) !important;
}

.swiper-pagination-bullet-active {
  background: var(--gold) !important;
  width: 32px !important;
  border-radius: 5px !important;
}

/* --- Utility Classes --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-col {
  flex-direction: column;
}

.gap-sm {
  gap: var(--space-sm);
}

.gap-md {
  gap: var(--space-md);
}

.gap-lg {
  gap: var(--space-lg);
}

.gap-xl {
  gap: var(--space-xl);
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.mt-2xl {
  margin-top: var(--space-2xl);
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

.overflow-hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

/* Reveal animation states */
[data-animate] {
  opacity: 0;
  transform: translateY(60px);
  transition: none;
}

[data-animate].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- Confirmation Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

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

.modal {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  max-width: 480px;
  width: 90%;
  text-align: center;
  transform: scale(0.9) translateY(30px);
  transition: transform var(--transition-luxury);
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-icon {
  width: 72px;
  height: 72px;
  background: rgba(63, 125, 88, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 2rem;
  color: var(--success);
}

.modal-title {
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  margin-bottom: 12px;
}

.modal-text {
  color: var(--secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

/* --- Property List Card (for single property page) --- */
.property-list-card {
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-md);
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.property-list-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-card);
}

.property-list-image {
  height: 180px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.property-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-list-info h4 {
  margin-bottom: 8px;
}

.property-list-features {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.property-list-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-xs);
  color: var(--secondary);
}

.property-list-feature i {
  color: var(--gold);
}

.property-list-pricing {
  text-align: right;
}

/* --- Blog Article --- */
.article-content {
  max-width: 740px;
  margin: 0 auto;
  font-size: var(--fs-body);
  line-height: 1.9;
  color: var(--secondary);
}

.article-content h2 {
  color: var(--primary);
  margin: var(--space-2xl) 0 var(--space-md);
  font-size: var(--fs-h3);
}

.article-content h3 {
  color: var(--primary);
  margin: var(--space-xl) 0 var(--space-sm);
  font-size: var(--fs-h4);
}

.article-content p {
  margin-bottom: var(--space-md);
}

.article-content blockquote {
  border-left: 4px solid var(--gold);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-xl) 0;
  background: var(--surface-alt);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  font-size: var(--fs-h5);
  color: var(--primary);
  line-height: 1.6;
}

.article-content img {
  border-radius: var(--radius-md);
  margin: var(--space-xl) 0;
}

.article-content ul,
.article-content ol {
  padding-left: 24px;
  margin-bottom: var(--space-md);
}

.article-content li {
  margin-bottom: 8px;
  list-style: disc;
}

.author-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  margin-top: var(--space-3xl);
}

.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-weight: 600;
  margin-bottom: 4px;
}

.author-bio {
  font-size: var(--fs-small);
  color: var(--secondary);
  line-height: 1.6;
}
/* ============================================
   STICKY SIDEBAR FILTERS
   ============================================ */
.sidebar-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

@media (max-width: 992px) {
  .sidebar-layout {
    grid-template-columns: 1fr;
  }
}

.filter-sidebar {
  position: relative;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
}

.filter-mobile-toggle {
  display: none;
  background: var(--surface);
  padding: 12px 16px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border);
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
  transition: all var(--transition-fast);
}

.filter-mobile-toggle:hover {
  border-color: var(--gold);
}

.filter-mobile-toggle .toggle-icon {
  transition: transform var(--transition-base);
}

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

.filter-sidebar-content {
  display: block;
}

/* Tabs: Filters / Premium Filters */
.filter-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-lg);
}

.filter-tab {
  flex: 1;
  text-align: center;
  padding: var(--space-sm) 0;
  font-weight: 600;
  color: var(--secondary);
  cursor: pointer;
  position: relative;
}

.filter-tab.active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.filter-header-action {
  display: flex;
  justify-content: flex-end;
  margin-bottom: var(--space-md);
}

.filter-reset {
  background: none;
  border: none;
  color: var(--secondary);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-sm);
  transition: color var(--transition);
}

.filter-reset:hover {
  color: var(--primary);
}

/* Sidebar Search */
.sidebar-search {
  margin-bottom: var(--space-lg);
}

.sidebar-search input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
}

/* Filter Sections */
.filter-section {
  margin-bottom: 24px;
}

.filter-section-title {
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 1.05rem;
}

/* BHK Grid */
.bhk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.bhk-btn {
  background: var(--background-alt);
  border: 1px solid transparent;
  padding: 8px 4px;
  text-align: center;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.bhk-btn.active {
  background: var(--primary);
  color: white;
}

/* Dual Slider Track and Handles */
.dual-range-container {
  position: relative;
  width: 100%;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
}

.dual-range-container input[type="range"] {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}

/* Chrome, Safari, Opera, Edge */
.dual-range-container input[type="range"]::-webkit-slider-thumb {
  pointer-events: auto;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: transform 0.1s ease;
}

.dual-range-container input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* Firefox */
.dual-range-container input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: transform 0.1s ease;
}

.dual-range-container input[type="range"]::-moz-range-thumb:hover {
  transform: scale(1.2);
}

/* Checkboxes & Radios */
.filter-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.filter-options-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--secondary);
  cursor: pointer;
}
.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
}

/* Amenities filter chips grid */
.amenities-filter-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Individual amenity button chip */
.amenity-btn {
  background: rgba(23, 162, 184, 0.05);
  color: #17a2b8;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.amenity-btn:hover {
  background: rgba(23, 162, 184, 0.1);
  transform: translateY(-1px);
}

.amenity-btn.active {
  background: #17a2b8;
  color: #ffffff;
}