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

 body {
     font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
     background: #f5f5f5;
 }


 /* Hero Section */
 .hero {
     max-width: 100%;
     margin: 30px auto;
     padding: 0 20px;
 }

 .hero-slider {
     position: relative;
     height: 450px;
     border-radius: 24px;
     overflow: hidden;
 }

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

 .hero-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to right,
             rgba(0, 0, 0, 0.7),
             rgba(0, 0, 0, 0.1));
 }

 .hero-content {
     position: relative;
     z-index: 2;
     max-width: 520px;
     padding: 80px;
     color: #fff;
 }

 .hero-meta {
     font-size: 16px;
     opacity: 0.9;
     margin-bottom: 15px;
 }

 .hero-content h1 {
     font-size: 48px;
     font-weight: 700;
     margin-bottom: 20px;
     line-height: 1.2;
 }

 .hero-content p {
     color: #e5e5e5;
     font-size: 15px;
     line-height: 1.7;
     margin-bottom: 25px;
 }

 .hero-price {
     font-size: 36px;
     font-weight: 700;
 }

 .nav-arrow {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(255, 255, 255, 0.3);
     color: #fff;
     border: none;
     font-size: 24px;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     cursor: pointer;
     z-index: 10;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .nav-arrow.left {
     left: 20px;
 }

 .nav-arrow.right {
     right: 20px;
 }

 .hero-dots {
     position: absolute;
     bottom: 20px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     gap: 10px;
     z-index: 10;
 }

 .dot {
     width: 10px;
     height: 10px;
     background: rgba(255, 255, 255, 0.5);
     border-radius: 50%;
     cursor: pointer;
 }

 .dot.active {
     background: #fff;
 }

 /* Property Page Section */
 .property-page {
     background: linear-gradient(135deg, #3a0c6d, #5b5dd6);
     padding: 40px 60px;
     margin: 30px 60px;
     border-radius: 24px;
 }

 /* Search Bar */
 .search-section {
     margin-bottom: 40px;
 }

 .search-title {
     color: #fff;
     font-size: 28px;
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     gap: 10px;
 }
 .search-box {
     background: rgba(255, 255, 255, 0.15);
     padding: 12px;
     border-radius: 50px;
     display: flex;
     gap: 12px;
     align-items: center;
     backdrop-filter: blur(10px);
 }

 .search-box input,
 .search-box select {
     background: rgba(255, 255, 255, 0.2);
     border: 1px solid rgba(255, 255, 255, 0.3);
     color: #fff;
     padding: 12px 20px;
     border-radius: 30px;
     outline: none;
     flex: 1;
     min-width: 150px;
 }

 .search-box input::placeholder {
     color: rgba(255, 255, 255, 0.7);
 }

 .search-box select option {
     color: #333;
 }

 .search-box button {
     background: #7b5cff;
     border: none;
     padding: 12px 30px;
     border-radius: 30px;
     color: white;
     cursor: pointer;
     font-weight: 600;
 }

 /* Main Layout */
 .main-layout {
     display: grid;
     grid-template-columns: 260px 1fr;
     gap: 30px;
 }

 /* Filter Box */
 .filter-box {
     background: rgba(255, 255, 255, 0.1);
     padding: 25px;
     border-radius: 20px;
     backdrop-filter: blur(10px);
     height: fit-content;
 }

 .filter-box h3 {
     color: #fff;
     margin-bottom: 25px;
     font-size: 20px;
 }

 .filter-group {
     margin-bottom: 25px;
 }

 .filter-group label {
     display: block;
     margin-bottom: 10px;
     font-size: 14px;
     color: #fff;
     font-weight: 500;
 }

 .filter-group input[type="range"] {
     width: 100%;
     margin-top: 5px;
 }

 .price-range-label {
     display: flex;
     justify-content: space-between;
     font-size: 12px;
     color: rgba(255, 255, 255, 0.8);
     margin-top: 5px;
 }

 .tag-list {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
 }

 .tag-list span {
     font-size: 12px;
     padding: 8px 16px;
     border: 1px solid rgba(255, 255, 255, 0.4);
     border-radius: 30px;
     cursor: pointer;
     color: #fff;
     transition: all 0.3s;
 }

 .tag-list span:hover,
 .tag-list span.active {
     background: rgba(255, 255, 255, 0.2);
 }

 .filter-group select {
     width: 100%;
     padding: 10px;
     border-radius: 10px;
     border: 1px solid rgba(255, 255, 255, 0.3);
     background: rgba(255, 255, 255, 0.1);
     color: #fff;
     outline: none;
 }

 .filter-group select option {
     color: #333;
 }

 .reset-btn {
     width: 100%;
     padding: 12px;
     background: #7b5cff;
     border: none;
     border-radius: 30px;
     color: #fff;
     cursor: pointer;
     margin-top: 15px;
     font-weight: 600;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
 }

 /* Property Grid */
 .property-grid-section {
     background: rgba(255, 255, 255, 0.08);
     padding: 30px;
     border-radius: 24px;
     backdrop-filter: blur(10px);
 }

 .listing-title {
     color: #fff;
     margin-bottom: 25px;
     font-size: 24px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .property-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
     gap: 25px;
     margin-bottom: 30px;
 }

 .property-card {
     background: rgba(255, 255, 255, 0.12);
     border-radius: 20px;
     padding: 15px;
     backdrop-filter: blur(4px);
     transition: transform 0.3s;
 }

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

 .img-box {
     position: relative;
     border-radius: 16px;
     overflow: hidden;
     margin-bottom: 12px;
 }

 .img-box img {
     width: 100%;
     height: 200px;
     object-fit: cover;
     border-radius: 16px;
 }

 .tag {
     position: absolute;
     top: 12px;
     font-size: 10px;
     padding: 6px 12px;
     border-radius: 6px;
     font-weight: 600;
 }

 .tag.featured {
     left: 12px;
     background: #8affb0;
     color: #000;
 }

 .tag.sale {
     right: 12px;
     background: #ff8a8a;
     color: #000;
 }

 .card-rating {
     position: absolute;
     bottom: 12px;
     right: 12px;
     background: rgba(0, 0, 0, 0.6);
     color: #fff;
     padding: 5px 10px;
     border-radius: 8px;
     font-size: 12px;
     font-weight: 600;
 }

 .card-nav {
     display: flex !important;
 }

 .property-card h4 {
     color: #fff;
     margin-bottom: 8px;
     font-size: 16px;
 }

 .location {
     font-size: 13px;
     color: rgba(255, 255, 255, 0.7);
     margin-bottom: 10px;
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .info-row {
     display: flex;
     gap: 15px;
     font-size: 12px;
     color: rgba(255, 255, 255, 0.8);
     margin: 12px 0;
 }

 .info-row span {
     display: flex;
     align-items: center;
     gap: 4px;
 }

 .price-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: 15px;
 }

 .price-row strong {
     font-size: 18px;
     color: #fff;
 }

 .price-row a {
     font-size: 12px;
     color: #cfcbff;
     text-decoration: none;
     background: rgba(255, 255, 255, 0.15);
     padding: 8px 15px;
     border-radius: 20px;
     transition: all 0.3s;
 }

 .price-row a:hover {
     background: rgba(255, 255, 255, 0.25);
 }

 /* Pagination */
 .pagination {
     display: flex;
     justify-content: center;
     gap: 10px;
     margin-top: 30px;
 }

 .pagination button {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     border: none;
     background: rgba(255, 255, 255, 0.15);
     color: #fff;
     cursor: pointer;
     font-size: 14px;
     transition: all 0.3s;
 }

 .pagination button:hover {
     background: rgba(255, 255, 255, 0.25);
 }

 .pagination .active {
     background: #7b5cff;
 }

 /* Upcoming Section */
 .upcoming-section {
     padding: 70px 60px;
     background: #f6fbff;
     background-image: radial-gradient(circle at 1px 1px,
             #e8f1f8 1px,
             transparent 0);
     background-size: 26px 26px;
 }

 .upcoming-header {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     margin-bottom: 50px;
     gap: 40px;
 }

 .upcoming-header h2 {
     font-size: 40px;
     font-weight: 700;
     line-height: 1.2;
     color: #333;
 }

 .arrow-icon {
     display: inline-block;
     transform: rotate(-30deg);
     margin-left: 8px;
 }

 .upcoming-header p {
     max-width: 450px;
     font-size: 16px;
     line-height: 1.7;
     color: #666;
 }

 /* Property Slider */
 .property-slider {
     position: relative;
 }

 .property-track {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 30px;
 }

 .upcoming-card {
     background: #fff;
     border-radius: 18px;
     padding: 15px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     transition: transform 0.3s;
 }

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

 .image-box {
     position: relative;
     border-radius: 14px;
     overflow: hidden;
     margin-bottom: 12px;
 }

 .image-box img {
     width: 100%;
     height: 220px;
     object-fit: cover;
     border-radius: 14px;
 }

 .img-nav {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(0, 0, 0, 0.5);
     color: #fff;
     width: 36px;
     height: 36px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     font-size: 16px;
     cursor: pointer;
 }

 .img-nav.left {
     left: 10px;
 }

 .img-nav.right {
     right: 10px;
 }

 .upcoming-card h4 {
     font-size: 16px;
     font-weight: 600;
     margin-bottom: 6px;
     color: #333;
 }

 .upcoming-card .location {
     font-size: 13px;
     color: #777;
     margin-bottom: 8px;
 }

 .date {
     font-size: 13px;
     color: #999;
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .slide-btn {
     position: absolute;
     top: 45%;
     transform: translateY(-50%);
     background: #666;
     color: #fff;
     width: 50px;
     height: 50px;
     border: none;
     border-radius: 50%;
     cursor: pointer;
     font-size: 20px;
 }

 .slide-btn.left {
     left: -60px;
 }

 .slide-btn.right {
     right: -60px;
 }

 /* Responsive Design */
 @media (max-width: 1200px) {
     .property-track {
         grid-template-columns: repeat(3, 1fr);
     }
 }

 @media (max-width: 991px) {
     .header {
         padding: 15px 30px;
     }

     .hero {
         margin: 20px 30px;
     }

     .property-page {
         padding: 30px 30px;
         margin: 20px 30px;
     }

     .main-layout {
         grid-template-columns: 1fr;
     }

     .filter-box {
         display: grid;
         grid-template-columns: repeat(2, 1fr);
         gap: 20px;
     }

     .filter-box h3 {
         grid-column: 1 / -1;
     }

     .reset-btn {
         grid-column: 1 / -1;
     }

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

     .upcoming-section {
         padding: 50px 30px;
     }

     .slide-btn {
         display: none;
     }
 }

 @media (max-width: 768px) {
     .header {
         flex-direction: column;
         gap: 15px;
     }

     .nav {
         flex-wrap: wrap;
         justify-content: center;
     }

     .hero-content {
         padding: 40px 30px;
     }

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

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

     .search-box input,
     .search-box select {
         width: 100%;
     }

     .filter-box {
         grid-template-columns: 1fr;
     }

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

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

     .upcoming-header {
         flex-direction: column;
     }

     .upcoming-header h2 {
         font-size: 32px;
     }

     .nav-arrow {
         width: 40px;
         height: 40px;
         font-size: 18px;
     }
 }

 @media (max-width: 600px) {
     .header {
         padding: 15px 20px;
     }

     .hero {
         margin: 15px 20px;
     }

     .hero-slider {
         height: 350px;
     }

     .property-page {
         padding: 25px 20px;
         margin: 15px 20px;
     }

     .upcoming-section {
         padding: 40px 20px;
     }

     .hero-content {
         padding: 30px 20px;
     }

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

     .hero-price {
         font-size: 28px;
     }

     .nav-arrow {
         display: none;
     }
 }

 .container {
     max-width: 100%;
     margin: 0 auto;
     padding: 20px;
          background-image: url("../assets/images/Frame\ 476.png");

     background-size: cover;
     background-repeat: no-repeat;
     background-attachment: fixed;
     color: white;
 }


 .search-section {
     padding: 40px 0;
     display: flex;
     justify-content: space-evenly;
     position: relative;
     z-index: 50;
 }

 .search-title {
     font-size: 2.5rem;
     color: white;
     margin-bottom: 30px;
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .arrow-icon {
     width: 60px;
     height: 3px;
     background: white;
     position: relative;
 }

 .arrow-icon::after {
     content: '';
     position: absolute;
     right: 0;
     top: -4px;
     width: 12px;
     height: 12px;
     border-top: 3px solid white;
     border-right: 3px solid white;
     transform: rotate(45deg);
 }

 .search-form {
     display: flex;
     gap: 15px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50px;
     padding: 8px;
     backdrop-filter: blur(10px);
     align-items: center;
     flex-direction: unset;
 }

 .search-input-wrapper {
     flex: 1;
     position: relative;
     min-width: 250px;
 }

 .search-input {
     width: 100%;
     padding: 16px 20px 16px 50px;
     border-radius: 50px;
     border: none;
     background: rgba(255, 255, 255, 0.15);
     color: white;
     font-size: 1rem;
     backdrop-filter: blur(10px);
     outline: none;
 }

 .search-input::placeholder {
     color: rgba(255, 255, 255, 0.8);
 }

 .search-icon {
     position: absolute;
     left: 18px;
     top: 50%;
     transform: translateY(-50%);
     width: 22px;
     height: 22px;
     opacity: 0.8;
 }

 .select-box {
     padding: 16px 45px 16px 25px;
     border-radius: 50px;
     border: none;
     background: rgba(255, 255, 255, 0.15);
     color: white;
     font-size: 1rem;
     cursor: pointer;
     backdrop-filter: blur(10px);
     position: relative;
     appearance: none;
     min-width: 140px;
     outline: none;
 }

 .select-wrapper {
     position: relative;
 }


 .search-btn {
     background: #8b5cf6;
     color: white;
     border: none;
     border-radius: 50px;
     padding: 16px 30px;
     font-size: 1rem;
     font-weight: 600;
     cursor: pointer;
     display: flex;
     align-items: center;
     gap: 10px;
     transition: all 0.3s;
     white-space: nowrap;
 }

 .search-btn:hover {
     background: white;
     color: #8b5cf6;
 }

 .search-btn svg {
     fill: currentColor;
     transition: fill 0.3s;
 }

 /* Dropdown Styles */
 .custom-dropdown {
     position: absolute;
     top: calc(100% + 15px);
     left: 0;
     width: 100%;
     background: #ffffff;
     border-radius: 20px;
     padding: 15px;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
     z-index: 9999;
     border: 1px solid #e5e5e5;
     min-width: 250px;
     display: flex;
     flex-direction: column;
     gap: 10px;
 }

 .dropdown-search-wrapper {
     margin-bottom: 5px;
 }

 .dropdown-search {
     width: 100%;
     padding: 12px 15px;
     border-radius: 12px;
     border: 1px solid #e5e5e5;
     background: #f9f9f9;
     color: #333;
     font-size: 0.95rem;
     outline: none;
     transition: all 0.3s;
 }

 .dropdown-search:focus {
     background: #fff;
     border-color: #8b5cf6;
 }

 .dropdown-search::placeholder {
     color: #999;
 }

 .dropdown-options {
     max-height: 250px;
     overflow-y: auto;
     display: flex;
     flex-direction: column;
     gap: 5px;
     padding-right: 5px;
 }

 /* Scrollbar for dropdown */
 .dropdown-options::-webkit-scrollbar {
     width: 4px;
 }

 .dropdown-options::-webkit-scrollbar-track {
     background: #f5f5f5;
     border-radius: 4px;
 }

 .dropdown-options::-webkit-scrollbar-thumb {
     background: #ddd;
     border-radius: 4px;
 }

 .dropdown-option {
     padding: 12px 15px;
     border-radius: 12px;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     color: #333;
     transition: all 0.2s;
     font-size: 0.95rem;
 }

 .dropdown-option:hover {
     background: #f5f5f5;
     color: #000;
 }

 .dropdown-option.selected {
     background: #8b5cf6;
     color: white;
 }

 .dropdown-arrow {
     transition: transform 0.3s;
     margin-left: 10px;
     opacity: 0.7;
 }

 .select-box:hover .dropdown-arrow {
     opacity: 1;
 }

 .dropdown-arrow.rotate {
     transform: rotate(180deg);
 }

 .select-box {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding-right: 20px;
     /* Reduced right padding since arrow is flex item */
 }

 .checkmark {
     width: 20px;
     height: 20px;
     background: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
 }

 .checkmark::after {
     content: '✓';
     color: #8b5cf6;
     font-size: 14px;
     font-weight: 800;
 }

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

 .city-name {
     font-size: 1rem;
 }

 @media (max-width: 768px) {
     .search-form {
         width: 100%;
         justify-content: start;
         align-items: start;
     }

     .search-section {
         flex-wrap: wrap;

     }

     .search-input-wrapper {
         width: 100%;
     }

     .select-box {
         flex: 1;
     }
 }

 /* Main Content Layout */
 .main-content {
     display: flex;
     gap: 30px;
     margin-top: 40px;


 }

 /* Filter Sidebar */
 .filter-sidebar {
     width: 280px;
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     padding: 30px;
     border-radius: 20px;
     height: fit-content;
 }

 .filter-title {
     font-size: 1.5rem;
     margin-bottom: 25px;
     padding-bottom: 15px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.3);
 }

 .filter-group {
     margin-bottom: 30px;
 }

 .filter-label {
     font-size: 1rem;
     margin-bottom: 10px;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .filter-value {
     background: rgba(255, 255, 255, 0.2);
     padding: 4px 12px;
     border-radius: 15px;
     font-size: 0.85rem;
 }

 .range-slider {
     width: 100%;
     margin-top: 10px;
 }

 .range-labels {
     display: flex;
     justify-content: space-between;
     font-size: 0.85rem;
     margin-top: 5px;
     opacity: 0.8;
 }

 .filter-options {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     margin-top: 10px;
 }

 .filter-chip {
     padding: 5px 12px;
     border-radius: 20px;
     background: rgba(255, 255, 255, 0.2);
     border: none;
     color: white;
     cursor: pointer;
     font-size: 14px;
     font-weight: 500;
     transition: all 0.3s;
 }

 .filter-chip.active {
     background: #7c5cdb;
 }

 .filter-chip:hover {
     background: rgba(255, 255, 255, 0.3);
 }

 .filter-select {
     width: 100%;
     padding: 12px;
     border-radius: 20px;
     border: 1px solid rgba(255, 255, 255, 0.3);
     background: rgba(255, 255, 255, 0.1);
     cursor: pointer;
     margin-top: 10px;
     color: white;
 }

 .reset-btn {
     width: 100%;
     padding: 10px 20px;
     border-radius: 50px;
     border: none;
     background: #7c5cdb;
     color: white;
     font-size: 1rem;
     font-weight: 600;
     cursor: pointer;
     margin-top: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 15px;
     transition: all 0.3s;
     position: relative;
 }

 .reset-btn:hover {
     background: #fff;
     color: #7c5cdb;
 }

 .reset-icon-circle {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 25px;
     height: 25px;
     background: rgba(255, 255, 255, 0.9);
     border-radius: 50%;
     position: absolute;
     right: 8px;
 }

 .reset-btn:hover .reset-icon-circle {
     background: #7c5cdb;
 }

 .reset-btn:hover .reset-icon-circle svg {
     color: #fff;
     fill: #fff;
 }

 .reset-arrow {
     width: 10px;
     height: 10px;
     border-top: 2.5px solid #7c5cdb;
     border-right: 2.5px solid #7c5cdb;
     transform: rotate(45deg);
 }

 /* Property Listing */
 .property-listing {
     flex: 1;
 }

 .listing-title {
     font-size: 2rem;
     margin-bottom: 30px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .property-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
     gap: 25px;
 }

 .property-card {
     padding: 20px;
     backdrop-filter: blur(10px);
     border-radius: 20px;
     overflow: hidden;
     transition: all 0.3s;
 }

 .property-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 30px rgba(245, 245, 245, 0.545);
 }

 .property-image {
     position: relative;
     border-radius: 10px;
     width: 100%;
     height: 200px;
     overflow: hidden;
 }

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

 .property-badges {
     position: absolute;
     top: 15px;
     right: 15px;
     display: flex;
     gap: 8px;
 }

 .badge {
     padding: 5px 12px;
     border-radius: 5px;
     font-size: 0.7rem;
     font-weight: 50px;

     text-transform: uppercase;
 }

 .badge-featured {
     background: rgba(255, 255, 255, 0.192);
     color: rgba(0, 128, 0, 0.705);
 }

 .badge-sale {
     background: rgba(255, 255, 255, 0.192);
     color: red;
 }

 .image-counter {
     position: absolute;
     bottom: 15px;
     right: 15px;
     background: rgba(0, 0, 0, 0.7);
     padding: 5px 12px;
     border-radius: 5px;
     font-size: 0.85rem;
 }

 .property-details {
     padding-top: 5px;
 }

 .property-title {
     font-size: 1.2rem;
     margin-bottom: 10px;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .property-location {
     display: flex;
     align-items: center;
     gap: 5px;
     font-size: 0.9rem;
     opacity: 0.8;
     margin-bottom: 15px;
 }

 .property-location span {
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
     flex: 1;
     min-width: 0;
 }

 .property-features {
     display: flex;
     gap: 15px;
     margin-bottom: 15px;
     font-size: 0.9rem;
 }

 .feature {
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .property-footer {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding-top: 15px;
     border-top: 1px solid rgba(255, 255, 255, 0.2);
 }

 .property-price {
     font-size: 1.2rem;
     font-weight: bold;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
     max-width: 60%;
 }


 .button-container {
     display: inline-flex;
     align-items: center;
     gap: 9px;
     border: none;
     background: transparent;
     cursor: pointer;
     transition: all 0.3s ease;
 }


 .button-text {
     font-size: 15px;
     font-weight: 600;
     color: white;
     letter-spacing: 0.5px;
     margin: 0;
 }

 .icon-circle {
     width: 30px;
     height: 30px;
     border-radius: 50%;
     background: #6a4bc4;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .arrow {
     width: 24px;
     height: 24px;
     transform: rotate(10deg);
     position: relative;
     top: 2px;
     right: -2px;
 }




 /* Responsive */
 @media (max-width: 1024px) {
     .main-content {
         flex-direction: column;
     }

     .filter-sidebar {
         width: 100%;
     }

     .property-grid {
         grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
     }
 }

 @media (max-width: 768px) {
     .search-form {
         flex-direction: column;
     }

     .search-section {
         flex-wrap: wrap;
     }

     .search-input-wrapper,
     .select-box,
     .search-btn {
         width: 100%;
     }

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

     .search-title,
     .listing-title {
         font-size: 1.5rem;
     }
 }


 .pagination {
     display: flex;
     justify-content: flex-end;
     margin-top: 40px;
     width: 100%;
 }

 .custom-pagination-wrapper {
     display: flex;
     flex-direction: column;
     align-items: flex-end;
     gap: 10px;
 }

 .pagination-info {
     color: rgba(255, 255, 255, 0.9);
     font-size: 0.9rem;
     margin-bottom: 5px;
 }

 .pagination-nav {
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .pagination-pages {
     display: flex;
     gap: 5px;
 }

 .pagination-btn {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     border: none;
     background: rgba(255, 255, 255, 0.1);
     color: white;
     font-size: 14px;
     font-weight: 500;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .pagination-btn:hover {
     background: rgba(255, 255, 255, 0.2);
     transform: scale(1.05);
 }

 .pagination-btn.active {
     background: #a78bfa;
     box-shadow: 0 4px 12px rgba(167, 139, 250, 0.4);
 }

 .pagination-arrow {
     background: rgba(255, 255, 255, 0.1);
 }

 .pagination-arrow:hover {
     background: rgba(255, 255, 255, 0.15);
 }

 .pagination-arrow:disabled {
     opacity: 0.4;
     cursor: not-allowed;
 }

 .pagination-arrow:disabled:hover {
     background: rgba(255, 255, 255, 0.1);
     transform: none;
 }

 /* Arrow styles */
 .arrow {
     width: 8px;
     height: 8px;
     border-top: 2px solid white;
     border-right: 2px solid white;
 }

 .arrow-left {
     transform: rotate(-135deg);
 }

 .arrow-right {
     transform: rotate(45deg);
 }

 /* Responsive design */
 @media (max-width: 480px) {
     .pagination {
         gap: 8px;
     }

     .pagination-btn {
         width: 40px;
         height: 40px;
         font-size: 14px;
     }
 }

 @media (max-width: 360px) {
     .pagination-btn {
         width: 36px;
         height: 36px;
         font-size: 13px;
     }
 }

 /* Main Container */
 .upcoming-properties-container {
     max-width: 100%;
     margin: 0 auto;
     padding: 60px 20px;
     background: #fdfdfd;
 }

 /* Header Content */
 .upcoming-header-content {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     margin-bottom: 50px;
     gap: 40px;
     flex-wrap: wrap;
 }

 .upcoming-header-left {
     flex: 1;
     min-width: 300px;
 }

 .upcoming-header-left h1 {
     font-size: 42px;
     color: #2d3436;
     margin-bottom: 10px;
     font-weight: 700;
     line-height: 1.2;
 }

 .upcoming-subtitle {
     font-size: 32px;
     color: #2d3436;
     font-weight: 600;
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .upcoming-key-icon {
     width: 35px;
     height: 35px;
     opacity: 0.7;
 }

 .upcoming-header-right {
     flex: 1;
     min-width: 300px;
 }

 .upcoming-description {
     color: #636e72;
     font-size: 16px;
     line-height: 1.8;
     text-align: justify;
 }

 /* Carousel Section */
 .upcoming-carousel-wrapper {
     position: relative;
     overflow: hidden;
     padding: 0 60px;
 }

 .upcoming-carousel-container {
     display: flex;
     gap: 25px;
     transition: transform 0.5s ease;
     overflow-x: auto;
     scroll-behavior: smooth;
     scrollbar-width: none;
     -ms-overflow-style: none;
 }

 .upcoming-carousel-container::-webkit-scrollbar {
     display: none;
 }

 /* Property Card */
 .upcoming-property-card {
     flex: 0 0 calc(25% - 18.75px);
     min-width: 280px;
     background: #fff;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
 }

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

 .upcoming-property-image {
     width: 100%;
     height: 220px;
     overflow: hidden;
     background: #e0e0e0;
     position: relative;
 }

 .upcoming-property-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s ease;
 }

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

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

 .upcoming-property-title {
     font-size: 18px;
     font-weight: 600;
     color: #2d3436;
     margin-bottom: 10px;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .upcoming-property-location {
     color: #636e72;
     font-size: 14px;
     margin-bottom: 8px;
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .upcoming-property-date {
     color: #b2bec3;
     font-size: 13px;
     display: flex;
     align-items: center;
     gap: 5px;
 }

 /* Navigation Buttons */
 .upcoming-nav-btn {
     position: absolute;
     top: 110px;
     transform: translateY(-50%);
     width: 45px;
     height: 45px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.95);
     border: none;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 24px;
     color: #6b3b84;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
     transition: all 0.3s ease;
     z-index: 10;
 }

 .upcoming-nav-btn:hover {
     background: #6b3b84;
     color: #fff;
     transform: translateY(-50%) scale(1.1);
 }

 .upcoming-nav-btn.prev {
     left: 10px;
 }

 .upcoming-nav-btn.next {
     right: 10px;
 }

 /* Responsive Design */
 @media (max-width: 1200px) {
     .upcoming-property-card {
         flex: 0 0 calc(33.333% - 16.66px);
     }
 }

 @media (max-width: 992px) {
     .upcoming-header-content {
         flex-direction: column;
     }

     .upcoming-header-left h1 {
         font-size: 36px;
     }

     .upcoming-subtitle {
         font-size: 28px;
     }

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

     .upcoming-carousel-wrapper {
         padding: 0 50px;
     }
 }

 @media (max-width: 768px) {
     .upcoming-properties-container {
         padding: 40px 15px;
     }

     .upcoming-header-left h1 {
         font-size: 32px;
     }

     .upcoming-subtitle {
         font-size: 24px;
     }

     .upcoming-description {
         font-size: 15px;
     }

     .upcoming-property-card {
         flex: 0 0 calc(100% - 0px);
         min-width: 250px;
     }

     .upcoming-carousel-wrapper {
         padding: 0 40px;
     }

     .upcoming-nav-btn {
         width: 40px;
         height: 40px;
         font-size: 20px;
     }
 }

 @media (max-width: 480px) {
     .upcoming-header-left h1 {
         font-size: 28px;
     }

     .upcoming-subtitle {
         font-size: 22px;
     }

     .upcoming-carousel-wrapper {
         padding: 0 35px;
     }

     .upcoming-nav-btn {
         width: 35px;
         height: 35px;
         font-size: 18px;
     }

     .upcoming-nav-btn.prev {
         left: 5px;
     }

     .upcoming-nav-btn.next {
         right: 5px;
     }
 }

 /* Transition Utilities */
 .opacity-0 {
     opacity: 0;
 }

 .opacity-100 {
     opacity: 1;
 }

 .translate-y-2 {
     transform: translateY(0.5rem);
 }

 .translate-y-0 {
     transform: translateY(0);
 }

 .transition {
     transition-property: all;
     transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
     transition-duration: 150ms;
 }

 .ease-out {
     transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
 }

 .ease-in {
     transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
 }

 .duration-200 {
     transition-duration: 200ms;
 }

 .duration-150 {
     transition-duration: 150ms;
 }