/* Featured Properties Section Professional Theme */

.featured-properties-section {
    background-color: #f8f9fa; /* Light Gray Background */
    border-radius: 1rem;
    padding: 3rem 1.5rem;
}

.prop-card {
    border: none;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.prop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(26, 42, 74, 0.12);
}

.prop-img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.prop-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.badge-featured {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #1a2a4a; /* Navy Blue */
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 5;
}

.badge-type {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #1a2a4a;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-new {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ef4444; /* Vibrant Red */
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 5;
}

.latest-listings-section {
    padding: 3rem 0;
}

.prop-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.prop-title {
    color: #1a2a4a;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.prop-location {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.prop-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a2a4a;
    margin-top: auto;
}

.prop-price small {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 600;
}

.prop-desc {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.prop-footer {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.prop-footer .btn {
    flex: 1;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.6rem;
}

.btn-prop-wa {
    background-color: #25d366;
    color: #fff;
    border: none;
}

.btn-prop-wa:hover {
    background-color: #128c7e;
    color: #fff;
}

.btn-prop-details {
    background-color: #f1f5f9;
    color: #1a2a4a;
    border: none;
}

.btn-prop-details:hover {
    background-color: #e2e8f0;
    color: #1a2a4a;
}

.btn-icon-only {
    flex: 0 0 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    font-size: 1.3rem !important;
    margin-left: auto; /* Push it to the right if there's space */
}
