

.lead-form {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sticky-form {
    position: sticky;
    top: 100px;
}

.property-info-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #2c3e50;
    color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-item {
    text-align: center;
    padding: 15px;
    border-right: 1px solid #eee;
}

.info-item span {
    font-size: 12px;
    color: goldenrod;
}

.property-tabs {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    /* border-bottom: 1px solid #eee; */
}

.property-tabs li a {
    text-decoration: none;
    padding: 10px 0;
    color: #666;
    font-weight: 500;
    position: relative;
}

.property-tabs li a.active {
    color: goldenrod;
}

.property-tabs li a.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: goldenrod;
    border-radius: 2px;
}
.property-tabs a:hover {
    color: goldenrod;
}

.section-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.amenity {
    text-align: center;
}

.amenity img {
    border-radius: 8px;
}

@media (min-width: 992px) {
    .amenities-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}