/* ── More Features Section ── */
.more-features-section {
    padding: 4rem 0;
    background: #fff;
}

.more-features-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
}

.more-features-heading {
    font-size: 2.3rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.more-features-subtitle {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.more-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 2rem;
    max-width: 80%;
    margin: 0 auto;
}

.more-feature-card {
    text-align: center;
}

.more-feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    color: #28a745;
}

.more-feature-icon svg {
    width: 100%;
    height: 100%;
}

.more-feature-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.more-feature-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #555;
}

/* ── Property Types Section ── */
.property-types-section {
    padding: 4rem 0;
    background: #f8faf9;
}

.property-types-heading {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 2.5rem;
}

.property-types-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 2.5rem;
    max-width: 80%;
    margin: 0 auto;
}

.property-type-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 110px;
}

.property-type-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 0.5rem;
    color: #3a6d8c;
}

.property-type-icon svg {
    width: 100%;
    height: 100%;
}

.property-type-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
    text-align: center;
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .more-features-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 2rem;
    }

    .more-features-heading,
    .property-types-heading {
        font-size: 1.6rem;
    }

    .property-types-grid {
        max-width: 100%;
        gap: 1.5rem 1rem;
    }

    .property-type-item {
        width: 90px;
    }

    .property-type-icon {
        width: 54px;
        height: 54px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .more-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
