.elementor-16 .elementor-element.elementor-element-15bf444{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-ceab15d */.property-section {
    background: linear-gradient(135deg, #ffffff, #fdf6e3);
    text-align: center;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

.property-section h2 {
    font-size: 36px;
    font-weight: 600;
    color: #000;
}

.section-intro {
    max-width: 700px;
    margin: 15px auto;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FCD601, #bfa034);
    margin: 20px auto 40px;
    border-radius: 2px;
}

.property-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.gold-top-card {
    border: 1px solid #ddd;
    border-top: 5px solid #FCD601;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    background: #fff;
    text-align: center;
    width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gold-top-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(212,175,55,0.3);
}

.image-container {
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gold-top-card:hover .image-container img {
    transform: scale(1.05);
}

.gold-content {
    padding: 20px;
}

.gold-content h3 {
    color: #000;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 20px;
}

.gold-content p {
    color: #444;
    font-size: 14px;
    line-height: 1.5;
}

.explore-btn {
    display: inline-block;
    margin-top: 15px;
    background: linear-gradient(135deg, #FCD601, #bfa034);
    color: #000;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.explore-btn:hover {
    background: linear-gradient(135deg, #bfa034, #FCD601);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .property-cards {
        flex-direction: centre;
        align-items: center;
    }
}/* End custom CSS */