/* Product Features Grid - 5 columns for housing loan page */
.product-features-section .product-features-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.product-features-section .product-feature-card {
    min-height: 260px;
    padding: 28px 12px;
}

.product-features-section .product-feature-title {
    margin-bottom: 0;
}

.product-features-section .product-feature-desc {
    margin-top: 16px;
}

/* Responsive Styles for Product Features Grid */
@media (max-width: 1400px) {
    .product-features-section .product-features-grid {
        gap: 18px;
    }

    .product-features-section .product-feature-card {
        padding: 24px 16px;
        min-height: 250px;
    }
}

@media (max-width: 1200px) {
    .product-features-section .product-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .product-features-section .product-feature-card {
        min-height: 240px;
    }
}

@media (max-width: 992px) {
    .product-features-section .product-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .product-features-section .product-feature-card {
        min-height: 220px;
        padding: 22px 16px;
    }
}

@media (max-width: 768px) {
    .product-features-section .product-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-features-section .product-feature-card {
        min-height: auto;
        padding: 20px 16px;
    }
}

/* Property Types Section */
.property-types-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 40px auto 0;
    text-align: center;
}

.property-types-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 32px 0;
    line-height: 1.3;
}

.property-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.property-type-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    background-color: #ffffff;
    border: 2px solid rgba(244, 128, 36, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 140px;
}

.property-type-item:hover {
    transform: translateY(-4px);
    border-color: rgba(244, 128, 36, 0.4);
    box-shadow: 0 4px 16px rgba(244, 128, 36, 0.15);
}

.property-type-item-highlighted {
    border: 2px dashed #ff4444;
    border-color: #ff4444;
    background-color: rgba(255, 68, 68, 0.02);
}

.property-type-item-highlighted:hover {
    border-color: #ff4444;
    background-color: rgba(255, 68, 68, 0.05);
}

.property-type-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.property-type-name {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.4;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .property-types-wrapper {
        margin: 32px auto 0;
        padding: 0 24px;
    }

    .property-types-title {
        font-size: 24px;
        margin-bottom: 28px;
    }

    .property-types-grid {
        gap: 16px;
    }

    .property-type-item {
        padding: 20px 12px;
        min-height: 130px;
    }

    .property-type-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .property-type-name {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .property-types-wrapper {
        margin: 28px auto 0;
        padding: 0 16px;
    }

    .property-types-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .property-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .property-type-item {
        padding: 18px 12px;
        min-height: 120px;
    }

    .property-type-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 10px;
    }

    .property-type-name {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .property-types-wrapper {
        margin: 12px auto 0;
        padding: 0 12px;
    }

    .property-types-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .property-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .property-type-item {
        padding: 16px 10px;
        min-height: 110px;
    }

    .property-type-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 8px;
    }

    .property-type-name {
        font-size: 14px;
    }
}

