/*!
Theme Name: Bidyarthigroupofcompanies
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: bidyarthigroupofcompanies
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Bidyarthigroupofcompanies is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

:root {
  --primary: #d53449;
  --nav-float: /*#edffbfcd;*/ #dedbc6;
  --nav-sticky: /*#edffbf;*/ var(--nav-float);
  --bg: /*#edffbf;*/ var(--nav-float);
  --text: #333;
  --white: #fff;
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 2px 20px rgba(0, 0, 0, 0.15);
  --radius-full: 50px;
  --radius-md: 25px;
  --radius-sm: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --z-nav: 1000;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  background: var(--bg);
  min-height: 300vh;
}

.navbar {
  position: fixed;
  top: 10.5px;
  left: 50%;
  width: min(85%, 1200px);
  background: var(--nav-float);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  border-radius: var(--radius-full);
  padding: 10px 5px;
  box-shadow: var(--shadow-sm);
  transform: translateX(-50%);
  transition: var(--transition);
  z-index: var(--z-nav);
  will-change: transform, width, border-radius, padding, background;
}

.navbar.scrolled {
  top: 0;
  left: 50%;
  width: 100%;
  border-radius: 0;
  padding: 12px 0;
  background: var(--nav-sticky);
  box-shadow: var(--shadow-md);
  transform: translateX(-50%);
}

.navbar-content {
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar.scrolled .navbar-content {
  padding: 0 60px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: var(--transition);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 22.5px;
  align-items: center;
  margin: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  position: relative;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  display: block;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--white);
  background: var(--text);
  outline: 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  transform: translateX(-50%) scaleX(1);
}

.cta-button {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-md);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  transition: var(--transition);
}

.cta-button:hover,
.cta-button:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 33, 33, 0.4);
  background: #232323 !important;
  color: var(--white) !important;
}

.cta-button::after {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  background: 0;
  border: 0;
  border-radius: 4px;
  transition: var(--transition);
  position: relative;
  z-index: calc(var(--z-nav) + 1);
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: rgba(102, 126, 234, 0.1);
  outline: 2px solid rgba(102, 126, 234, 0.3);
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text);
  margin: 2px 0;
  transition: var(--transition);
  border-radius: 2px;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.content {
  padding: 0;
  max-width: 100%;
  margin: 0;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: /* #ff4a62; */ #ffe668;
  text-align: left;
  padding: 2rem 0rem 0rem 1rem;
  width: 100%;
  height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 20px;
  font-weight: 500;
  text-shadow: 2px 2px 5px rgba(56, 56, 56, 0.7);
  margin-left: 7.5vw;
  margin-top: 2vh;
  color: #eeece9;
  line-height: 1.1;
  font-family: "Playfair Display", Georgia, serif;
  max-width: 800px;
}

.hero p {
  font-size: clamp(0.95rem, 1.75vw, 1rem);
  opacity: 1;
  max-width: 400px;
  margin: 0 0 40px 7.5vw;
  text-shadow: none;
  color: #fffadb;
  font-weight: 500;
  line-height: 1.5;
}

.hero-year {
  position: absolute;
  bottom: 0px;
  right: 10px;
  font-size: clamp(4rem, 7vw, 10rem);
  font-weight: 300;
  color: rgba(252, 249, 224, 0.65);
  text-shadow: 2px 2px 5px rgba(91, 91, 91, 0.47);
  line-height: 1;
  font-family: "Playfair Display", Georgia, serif;
  pointer-events: none;
}

.hero-period {
  position: absolute;
  bottom: -37px;
  right: 230px;
  font-size: 30px !important;
  font-weight: 300;
  color: rgba(250, 221, 107, 0.893);
  text-shadow: 2px 2px 5px rgba(250, 223, 113, 0.175);
  line-height: 1;
  font-family: "Playfair Display", Georgia, serif;
  pointer-events: none;
}

.hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  background: #e1dcbfdf;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 0;
  z-index: 2;
  transition: var(--transition);
}

.marquee-content {
  display: flex;
  gap: 60px;
  will-change: transform;
}

.marquee-item {
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.marquee-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.sections-container {
  padding: 30px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.section {
  margin: 100px 0;
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.section h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 20px;
  text-align: center;
  color: var(--primary);
}

.section p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  text-align: center;
  opacity: 0.9;
  line-height: 1.7;
}

@media (max-width: 1200px) {
  .navbar.scrolled .navbar-content {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .navbar {
    width: 95%;
  }
  .navbar-content {
    padding: 0 20px;
  }
  .navbar.scrolled .navbar-content {
    padding: 0 20px;
  }
  .nav-links {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--nav-sticky);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-sm);
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    min-width: 200px;
    max-width: 90vw;
    pointer-events: none;
  }
  .nav-links.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .navbar.scrolled .nav-links {
    top: 60px;
  }
  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero-content {
    padding-left: 2rem;
  }
  .hero h1 {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
  .hero-year {
    font-size: clamp(6rem, 20vw, 10rem);
    bottom: 100px;
    right: 20px;
  }
  .hero-star {
    font-size: 1.5rem;
    top: 80px;
    left: 30px;
  }
  .hero-marquee {
    padding: 15px 0;
  }
  .marquee-content {
    gap: 40px;
  }
  .marquee-item {
    font-size: 1rem;
  }
  .marquee-item svg {
    width: 20px;
    height: 20px;
  }
  .sections-container {
    padding: 30px 15px;
  }
  .section {
    padding: 30px 20px;
    margin: 60px 0;
  }
}

@media (max-width: 480px) {
  .navbar-content,
  .navbar.scrolled .navbar-content {
    padding: 0 15px;
  }
  .logo {
    font-size: 1.3rem;
  }
  .nav-links {
    padding: 15px;
    gap: 10px;
  }
  .nav-links a {
    padding: 10px 12px;
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

@media (prefers-contrast: high) {
  .navbar {
    background: #fff;
    border: 2px solid #000;
  }
  .nav-links a {
    color: #000;
  }
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #000;
  color: #fff;
  padding: 8px;
  text-decoration: none;
  z-index: calc(var(--z-nav) + 10);
  border-radius: 4px;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 6px;
}

/* The Latest properties/Drop Section */
.drop-main-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px 0px 100px 0px;
  display: flex;
  gap: 60px;
  align-items: center;
}

.drop-sidebar-fixed {
  flex: 0 0 380px;
  max-width: 380px;
}

.drop-label-new {
  font-size: 15px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #f94a4a;
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
  font-weight: 500;
}

.drop-title-main h1 {
  font-size: 72px;
  font-weight: 600;
  margin-bottom: 35px;
  color: #1a1a1a;
  line-height: 1;
}

.drop-description-text {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 45px;
}

.drop-cta-button {
  display: inline-block;
  padding: 16px 42px;
  border: 1.5px solid #333;
  background: transparent;
  color: #333;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.drop-cta-button:hover {
  background: #333;
  color: #fff;
}

.drop-carousel-wrapper {
  flex: 1;
  position: relative;
  min-width: 0;
}

.drop-carousel-overflow {
  overflow: hidden;
  position: relative;
  /* padding-bottom: 20px; */
}

.drop-carousel-slider {
  display: flex;
  gap: 25px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.drop-property-item {
  flex: 0 0 calc(33.333% - 17px);
  background: transparent;
  min-width: 280px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.drop-property-item:hover {
  transform: translateY(-5px);
}

.drop-image-wrapper {
  width: 100%;
  height: 420px;
  overflow: hidden;
  position: relative;
  border: 3px solid var(--primary) /* #c9b88a */;
  margin-bottom: 20px;
  cursor: grab;
  user-select: none;
}

.drop-image-wrapper:active {
  cursor: grabbing;
}

.drop-image-slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.drop-single-image {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  object-fit: cover;
  pointer-events: none;
}

.drop-image-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  opacity: 0;
}

.drop-property-item:hover .drop-image-arrow {
  opacity: 1;
}

.drop-image-arrow:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.drop-arrow-prev {
  left: 12px;
}

.drop-arrow-next {
  right: 12px;
}

.drop-image-arrow svg {
  width: 16px;
  height: 16px;
  stroke: #333;
  stroke-width: 2.5;
  fill: none;
}

.drop-indicator-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.drop-single-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  cursor: pointer;
}

.drop-single-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.drop-single-dot.drop-dot-active {
  background: white;
  width: 9px;
  height: 9px;
}

.drop-property-details {
  padding: 0;
}

.drop-location-tag {
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  font-family: Arial, sans-serif;
  font-weight: 500;
}

.drop-property-title {
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #1a1a1a;
  line-height: 1.2;
}

.drop-price-display {
  font-size: 13px;
  color: #666;
  font-family: Arial, sans-serif;
}

.drop-nav-controls {
  position: absolute;
  bottom: -80px;
  right: 0;
  display: flex;
  gap: 15px;
  align-items: center;
}

.drop-carousel-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 20px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: #666;
}

.drop-progress-bar {
  width: 120px;
  height: 3px;
  background: #e0e0e0;
  border-radius: 2px;
  overflow: hidden;
}

.drop-progress-fill {
  height: 100%;
  background: #333;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.drop-nav-circle {
  width: 52px;
  height: 52px;
  border: 1.5px solid #d5d5d5;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.drop-nav-circle:hover:not(:disabled) {
  border-color: #333;
  background: #333;
  transform: scale(1.05);
}

.drop-nav-circle:hover:not(:disabled) svg {
  stroke: white;
}

.drop-nav-circle:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.drop-nav-circle svg {
  width: 18px;
  height: 18px;
  stroke: #333;
  stroke-width: 2.5;
  fill: none;
}

@media (max-width: 1400px) {
  .drop-main-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .drop-sidebar-fixed {
    flex: 0 0 auto;
    margin-bottom: 60px;
    max-width: 100%;
  }

  .drop-property-item {
    flex: 0 0 calc(50% - 12.5px);
  }
}

@media (max-width: 1024px) {
  .drop-property-item {
    flex: 0 0 calc(50% - 12.5px);
  }

  .demo-title {
    font-size: 48px;
  }

  .demo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .drop-main-wrapper {
    padding: 40px 20px;
  }

  .drop-title-main h1 {
    font-size: 52px;
  }

  .drop-property-item {
    flex: 0 0 100%;
    min-width: 280px;
  }

  .drop-nav-controls {
    bottom: -60px;
    flex-wrap: wrap;
  }

  .drop-carousel-progress {
    order: -1;
    width: 100%;
    justify-content: center;
    margin-bottom: 15px;
  }

  .demo-section {
    padding: 80px 20px;
  }

  .demo-title {
    font-size: 36px;
  }

  .demo-subtitle {
    font-size: 16px;
  }

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

/* Property Listings Section with filters */
.filters {
  background: #fbf1dc;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 2px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.filter-row {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  padding: 30px;
  flex-wrap: wrap;
}

.filter-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 140px;
  flex: 1;
}

.price-filter-item {
  min-width: 300px;
  flex: 1.5;
}

.filter-label {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-select {
  padding: 12px 16px;
  border: 1px solid rgba(213, 52, 73, 0.2);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  background: white;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23d53449' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
  font-weight: 500;
}

.filter-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(213, 52, 73, 0.1);
}

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

.price-range-container {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 12px 16px;
  border: 1px solid rgba(213, 52, 73, 0.2);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.price-range-container:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(213, 52, 73, 0.1);
}

.price-input {
  width: 50px;
  border: none;
  outline: none;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text);
  background: transparent;
  font-weight: 500;
}

.price-separator {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 500;
}

.price-slider {
  width: 140px;
  height: 4px;
  background: rgba(213, 52, 73, 0.2);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--primary);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(213, 52, 73, 0.4);
  transition: var(--transition);
}

.price-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(213, 52, 73, 0.5);
}

.price-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: var(--primary);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(213, 52, 73, 0.4);
  transition: var(--transition);
}

.price-slider::-moz-range-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(213, 52, 73, 0.5);
}

.currency {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
}

.search-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  height: 44px;
  align-self: flex-end;
  box-shadow: 0 4px 15px rgba(213, 52, 73, 0.3);
}

.search-btn:hover {
  background: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(51, 51, 51, 0.4);
}

.sort-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.sort-btn {
  padding: 10px 20px;
  border: 1px solid rgba(213, 52, 73, 0.2);
  background: white;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--text);
  transition: var(--transition);
  font-weight: 500;
}

.sort-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.sort-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(213, 52, 73, 0.3);
}

.clear-filters-btn {
  padding: 10px 20px;
  border: 1px solid rgba(213, 52, 73, 0.2);
  background: white;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--text);
  transition: var(--transition);
  font-weight: 500;
  margin-left: auto;
}

.clear-filters-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.properties-container {
  display: grid;
  gap: 25px;
  margin-bottom: 35px;
}

.property-card {
  background: #fffdf9;
  border-radius: 8px;
  border: #ed566a 1px solid;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 1fr 420px;
  height: 320px;
  transition: all 0.3s;
  cursor: pointer;
}

.property-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.property-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.property-badge {
  display: inline-block;
  background: #2c2c2c;
  color: white;
  padding: 6px 12px;
  /* border-radius: 6px; */
  font-size: 0.7rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.property-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 8px;
}

.property-subtitle {
  color: #7f8c8d;
  font-size: 0.9rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.property-description {
  color: #7f8c8d;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.property-specs {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: #7f8c8d;
  flex-wrap: wrap;
}

.property-price {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c2c2c;
}

.property-completion {
  color: #7f8c8d;
  font-size: 0.8rem;
  margin-top: 6px;
  font-weight: 500;
}

.property-image {
  background-size: cover;
  background-position: center;
  position: relative;
}

.small-properties {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.small-property-card {
  background: #fffdf9;
  border: var(--primary) 1px solid;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.3s;
}

.small-property-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.small-property-image {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.small-property-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(44, 44, 44, 0.9);
  color: white;
  padding: 6px 10px;
  /* border-radius: 6px; */
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.small-property-info {
  padding: 20px;
}

.small-property-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 8px;
}

.small-property-subtitle {
  color: #7f8c8d;
  font-size: 0.85rem;
  margin-bottom: 12px;
  font-weight: 500;
}

.small-property-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c2c2c;
}

.btns-container {
  display: flex;
  justify-content: center;
  padding: 30px 40px 10px 40px;
}

.load-more {
  display: block;
  margin: 0px 20px;
  padding: 14px 35px;
  background: #2c2c2c;
  border: 1px solid #e0e6ed;
  color: white;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  font-weight: 500;
  text-align: center;
}

.load-more:hover {
  background: var(--primary);
  color: var(--white);
  border-color: #2c2c2c;
  transform: translateY(-1px);
}

.view-all-btn {
  display: block;
  margin: 0px 20px;
  padding: 14px 35px;
  background: #2c2c2c;
  border: 1px solid #e0e6ed;
  color: white;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  font-weight: 500;
  text-align: center;
}

.view-all-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: #2c2c2c;
  transform: translateY(-1px);
}

/* faded marquee styles */
.faded-marquee-container {
  width: 100%;
  overflow: hidden;
  /* border-top: 1px solid #917b69;
  border-bottom: 1px solid #917b69; */
  padding: 25px 0;
  background: #dedbc6;
}

.faded-marquee {
  display: flex;
  gap: 100px;
  will-change: transform;
}

.faded-marquee-item {
  flex-shrink: 0;
  font-size: 38px;
  color: #c4b5a8;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.4s ease;
}

.faded-marquee-item:hover {
  color: #8b7355;
}

/* Stories Section Container */
.stories-container {
  display: flex;
  min-height: 100vh;
}

/* Featured Story - Yellow Section */
.featured-section {
  flex: 0 0 40%;
  background-color: #fbf1dc;
  padding: 30px 60px;
  display: flex;
  flex-direction: column;
}

.featured-section h1 {
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #333;
}

.featured-card {
  max-width: 100%;
  width: 100%;
  margin-top: 20px;
}

.featured-image-wrapper {
  width: 100%;
  position: relative;
  padding-bottom: 52.5%; /* 16:9 aspect ratio */
  overflow: hidden;
  margin-bottom: 35px;
}

.featured-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.featured-title {
  font-size: 26px;
  font-weight: 450;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.featured-excerpt {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 10px;
}

.read-time {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Stories Grid - White Section */
.stories-section {
  flex: 1;
  background-color: #dedbc6;
  padding: 30px 60px;
  display: flex;
  flex-direction: column;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 20px;
}

.story-card {
  cursor: pointer;
  transition: transform 0.3s;
}

.story-card:hover {
  transform: translateY(-5px);
}

.story-image-wrapper {
  width: 100%;
  position: relative;
  padding-bottom: 50%; /* 16:9 aspect ratio */
  overflow: hidden;
  margin-bottom: 20px;
}

.story-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.story-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--primary);
  /* margin-bottom: 12px; */
  line-height: 1.4;
}

.story-read-time {
  font-size: 10px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.read-more-btn {
  text-align: center;
  margin-top: auto;
  padding-top: 25px;
}

.read-more-btn button {
  padding: 15px 35px;
  border: 1px solid #333;
  background: white;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s;
}

.read-more-btn button:hover {
  background: #333;
  color: white;
}

@media (max-width: 1200px) {
  .stories-container {
    flex-direction: column;
  }

  .featured-section h1 {
    font-size: 48px;
  }

  .featured-image {
    height: 50vh;
  }
}

@media (max-width: 768px) {
  .featured-section,
  .stories-section {
    padding: 40px 30px;
  }

  .featured-section h1 {
    font-size: 42px;
  }

  .featured-title {
    font-size: 28px;
  }

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

  .story-title {
    font-size: 18px;
  }
}

.commitment-section {
  background-color: #333;
  padding: 10px 20px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.commitment-content {
  max-width: 1200px;
  text-align: center;
}

.commitment-label {
  color: #d4e5df;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 400;
}

.commitment-text {
  color: #f4d799;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.5;
  font-weight: 400;
}

.script-text {
  font-family: "Crimson Text", serif;
  font-style: italic;
  font-weight: 400;
}

@media (max-width: 768px) {
  .commitment-section {
    padding: 60px 20px;
  }

  .commitment-text {
    font-size: 24px;
  }
}
