.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

.hero-section {
    height: 600px;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    background-color: #f0f0f0;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: brightness(0.85); */ 
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.4));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 80px; /* Space for stats */
}

.hero-title {
    color: white;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Floating Search Bar */
.search-bar-lg {
    background: white;
    border-radius: 50px;
    padding: 8px 8px 8px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    max-width: 800px;
    width: 100%;
}

.search-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.search-input-group:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: #eee;
}

.search-input-group i {
    color: #999;
}

.search-input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 16px;
    color: #333;
    background: transparent;
}

.search-input::placeholder {
    color: #777;
}

.search-btn-lg {
    background: #000000; /* Use Black as requested */
    color: white;
    border: none;
    border-radius: 40px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.1s;
}

.search-btn-lg:hover {
    transform: scale(1.02);
}

/* Stats Overlay */
.hero-stats {
    position: absolute;
    bottom: 40px;
    left: 60px;
    right: 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: white;
}

.hero-stat-text {
    max-width: 400px;
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.9;
}

.stats-grid {
    display: flex;
    gap: 60px;
}

.stat-item h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
}
.stat-item p {
    font-size: 13px;
    opacity: 0.8;
}

/* Content Sections */
.content-container {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.section-header {
    margin-bottom: 32px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 16px;
}

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

.property-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s;
}

/* .property-card:hover { transform: translateY(-4px); } */

.property-img {
    width: 100%;
    aspect-ratio: 1/1; /* Square images like Airbnb or 4:3 */
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 12px;
    background: #f0f0f0;
}

.property-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    display: flex;
    justify-content: space-between;
}

.property-info p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 4px;
}

.price {
    margin-top: 8px;
    font-size: 16px;
}

/* Inline Extracted Classes */
.hero-categories-list {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.category-link {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: 0.2s;
}

.category-link:hover {
    background: rgba(255,255,255,0.3);
}

.card-image-wrapper {
    position: relative;
}

.property-img-nomb {
    margin-bottom: 0;
}

.wishlist-btn-card-style {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    z-index: 2;
}

.wishlist-icon {
    font-size: 24px;
    -webkit-text-stroke: 2px white;
    text-shadow: 0 0 4px rgba(0,0,0,0.3);
}

.wishlist-icon.active {
    color: #ff385c;
}

.wishlist-icon.inactive {
    color: rgba(0,0,0,0.3);
}

.property-info-mt {
    margin-top: 12px;
}

.font-weight-normal {
    font-weight: 400;
}

.font-size-small {
    font-size: 13px;
}
