
/* Categories Section */
.landing-categories {
    padding: 80px 0;
    background: #f8f9fa;
}

.landing-categories .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.landing-categories h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.landing-categories p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

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

.category-card {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: #ffffff !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: block;
}

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

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0) 100%);
    padding: 30px 20px;
    text-align: center;
}

.category-card h3 {
    margin: 0 0 5px 0;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 0.5px;
}

.category-card span {
    font-size: 1rem;
    opacity: 1;
    color: #f0f0f0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
    font-weight: 500;
}

/* Recovered Styles */
.property-title {
    font-size: 1.2rem;
    margin: 10px 0;
    color: var(--secondary-color);
    text-decoration: none;
    display: block;
}

.property-title:hover {
    color: var(--primary-color);
}

.property-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.property-location i {
    color: var(--primary-color);
}

.property-features {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 15px;
    font-size: 0.9rem;
    color: #555;
}

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

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

/* How It Works */
.how-it-works {
    padding: 60px 0;
}

.steps {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 30px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.step p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Features Section */
.landing-features {
    padding: 80px 0;
}

.landing-features .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.landing-features .col-md-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
    text-align: center;
    margin-bottom: 30px;
}

.feature-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 20px;
}

.landing-features h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.landing-features p {
    color: #7f8c8d;
}

/* Landing CTA */
.landing-cta {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: white;
    margin-bottom: 0;
}

.landing-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.landing-cta p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.landing-cta .btn {
    background: white;
    color: #3498db;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s;
    display: inline-block;
}

.landing-cta .btn:hover {
    transform: scale(1.05);
}

/* Nearby Button */
#btn-show-nearby {
    border: 1px solid #3498db;
    color: #3498db;
    background: transparent;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

#btn-show-nearby:hover {
    background: #3498db;
    color: white;
}
