/* ===================== PROPERTY TYPE SECTION ===================== */
.property-type-section {
    padding: 80px 20px;
    background: var(--anti-flash-white-color);
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.property-type-section .section-title {
    font-size: 36px;
    color: var(--rich-black-color);
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
}

.property-type-section .section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--lime-green-color);
    display: block;
    margin: 10px auto 0;
    border-radius: 5px;
}

/* GRID LAYOUT */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    justify-items: center;
}

/* CARD STYLE */
.property-card {
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    width: 100%;
    max-width: 220px;
}

.property-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}

.property-card h3 {
    font-size: 18px;
    color: var(--dark-charcoal-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

/* HOVER EFFECT */
.property-card:hover {
    background: var(--lime-green-color);
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Keep icon original color */
.property-card:hover img {
    transform: scale(1.15);
    filter: none !important;
    /* 👈 keeps icon color */
}

/* Text color changes only */
.property-card:hover h3 {
    color: var(--white-color);
}

/* RESPONSIVE DESIGN */
@media screen and (max-width: 992px) {
    .property-type-section .section-title {
        font-size: 32px;
    }
}

@media screen and (max-width: 768px) {
    .property-type-section {
        padding: 60px 15px;
    }

    .property-grid {
        gap: 20px;
    }

    .property-card {
        max-width: 180px;
        padding: 25px 15px;
    }

    .property-card img {
        width: 60px;
        height: 60px;
    }

    .property-card h3 {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .property-type-section .section-title {
        font-size: 26px;
    }

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